diff --git a/README.txt b/README.txt index 2c9f4df..e850209 100644 --- a/README.txt +++ b/README.txt @@ -2,11 +2,11 @@ Minetest mod "Creatures" ======================= by BlockMen (c) 2014 -Version: 1.0.1 Beta +Version: 1.1 Beta About ~~~~~ -This mod add (currently only) hostile mobs to Minetest, so far Zombies and Ghosts. +This mod adds 2 hostile and 1 friendly mob to Minetest, so far zombies, ghosts and sheeps. Zombies can spawn to every day-time in the world as long there is not to much light. So you will find some in caves, dark forests and ofc a lot at night. If they notice you they will attack. @@ -14,14 +14,23 @@ Zombies have 20 HP (like players) and drop rotten flesh randomly. Ghosts only spawn at night-time. Also they don't spawn underground and are a bit more rare than zombies. They are flying in the world and attack you aswell if they notice you. -Ghosts have 15 HP and don't drop any items atm (might be changed if i have an idea what they could drop). +Ghosts have 12 HP and don't drop any items atm (might be changed if i have an idea what they could drop). + +Sheeps spawn only at day-time and are friendly mobs. They remain around 5 minutes in the world unless there +are other sheeps around, then there is no fixed limit. If there is grass (dirt with grass) they eat the grass +and get new wool that way. +Sheeps have 8 HP and drop 1-2 wool when punched. They need to eat grass until they can produce new wool. They can't harm you in your house (in case there is no door open). If it becomes day both mobs will take damage by the sunlight, so they will die after a while. -Notice: You weapons get damage when hitting a zombie or ghost. +Notice: Weapons and tools get damaged when hitting a zombie or ghost. The wearout is calculated on the damage amout +of the tools/weapons. The more damage they can do that longer they can be used. +Example: +- Diamond Sword: 1500 uses +- Wooden Sword: 30 uses @@ -39,6 +48,13 @@ following sounds are created by Under7dude (freesound.org) - creatures_zombie.3.ogg, CC0 - creatures_zombie_death.ogg, CC0 +following sounds are created by confusion_music (freesound.org) +- creatures_sheep.1.ogg, CC-BY 3.0 +- creatures_sheep.2.ogg, CC-BY 3.0 + +following sound is created by Yuval (freesound.org) +- creatures_sheep.3.ogg, CC-BY 3.0 + All other sounds (c) Copyright BlockMen (2014), CC-BY 3.0 Changelog: @@ -46,6 +62,15 @@ Changelog: # 1.0.1 - fixed incompatibility with pyramids mod +# 1.1 + - new mob: sheep + - fixed crash caused by unknown node + - fixed spawning, added spawn limit + - fixed weapon & tool damage + - tweaked and restructured code + - ghosts only spawn on grass and desert-sand blocks + - ghosts have now 12 HP (instead 15 HP) + 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 diff --git a/depends.txt b/depends.txt index 331d858..be420a3 100644 --- a/depends.txt +++ b/depends.txt @@ -1 +1,2 @@ -default \ No newline at end of file +default +wool \ No newline at end of file diff --git a/ghost.lua b/ghost.lua index b2d3f40..50a9655 100644 --- a/ghost.lua +++ b/ghost.lua @@ -2,17 +2,17 @@ local g_chillaxin_speed = 2 local g_animation_speed = 10 local g_mesh = "creatures_mob.x" local g_texture = {"creatures_ghost.png"} -local g_hp = 15 +local g_hp = 12 local g_drop = "" local g_player_radius = 14 local g_hit_radius = 1 -local g_ll = 7 +creatures.g_ll = 7 local g_sound_normal = "creatures_ghost" local g_sound_hit = "creatures_ghost_hit" local g_sound_dead = "creatures_ghost_death" -local g_spawn_nodes = {"default:dirt_with_grass","default:stone","default:dirt","default:desert_sand"} +creatures.g_spawn_nodes = {"default:dirt_with_grass","default:desert_sand"} local function g_get_animations() return { @@ -21,13 +21,6 @@ local function g_get_animations() } end -local ANIM_STAND = 1 -local ANIM_SIT = 2 -local ANIM_LAY = 3 -local ANIM_WALK = 4 -local ANIM_WALK_MINE = 5 -local ANIM_MINE = 6 - function g_hit(self) local sound = g_sound_hit if self.object:get_hp() < 1 then sound = g_sound_dead end @@ -85,7 +78,7 @@ GHOST_DEF.on_activate = function(self) self.anim = g_get_animations() self.object:set_animation({x=self.anim.stand_START,y=self.anim.stand_END}, g_animation_speed, 0) self.npc_anim = ANIM_STAND - self.object:setacceleration({x=0,y=0,z=0})--20 + self.object:setacceleration({x=0,y=0,z=0}) self.state = 1 self.object:set_hp(g_hp) self.object:set_armor_groups({fleshy=130}) @@ -113,19 +106,8 @@ GHOST_DEF.on_punch = function(self, puncher, time_from_last_punch, tool_capabili elseif self.state >= 2 then self.state = 9 end - --add wear to swords - if not minetest.setting_getbool("creative_mode") then - local item = puncher:get_wielded_item() - local def = item:get_definition() - if def and def.tool_capabilities and def.tool_capabilities.groupcaps - and def.tool_capabilities.groupcaps.snappy then - local uses = def.tool_capabilities.groupcaps.snappy.uses or 10 - uses = uses*2 --since default values are too low - local wear = 65535/uses - item:add_wear(wear) - puncher:set_wielded_item(item) - end - end + -- add wear to sword/tool + creatures.add_wear(puncher, tool_capabilities) end end @@ -151,7 +133,6 @@ GHOST_DEF.on_step = function(self, dtime) -- death if self.object:get_hp() < 1 then - --self.object:setvelocity({x=0,y=-20,z=0}) self.object:set_hp(0) self.attacker = "" self.state = 0 @@ -167,10 +148,12 @@ GHOST_DEF.on_step = function(self, dtime) -- die when in water, lava or sunlight local wtime = minetest.env:get_timeofday() local ll = minetest.env:get_node_light({x=current_pos.x,y=current_pos.y+1,z=current_pos.z}) or 0 - if current_node.name == "default:water_source" or - current_node.name == "default:water_flowing" or - current_node.name == "default:lava_source" or - current_node.name == "default:lava_flowing" or + local nn = nil + if current_node ~= nil then nn = current_node.name end + if nn ~= nil and nn == "default:water_source" or + nn == "default:water_flowing" or + nn == "default:lava_source" or + nn == "default:lava_flowing" or (wtime > 0.2 and wtime < 0.805 and current_pos.y > 0 and ll > 11) then self.sound_timer = self.sound_timer + dtime if self.sound_timer >= 0.8 then @@ -241,10 +224,10 @@ GHOST_DEF.on_step = function(self, dtime) self.direction = {x = math.sin(self.yaw)*-1, y = 0, z = math.cos(self.yaw)} end self.object:setvelocity({x=0,y=self.object:getvelocity().y,z=0}) - if self.npc_anim ~= ANIM_STAND then + if self.npc_anim ~= creatures.ANIM_STAND then self.anim = g_get_animations() self.object:set_animation({x=self.anim.stand_START,y=self.anim.stand_END}, g_animation_speed, 0) - self.npc_anim = ANIM_STAND + self.npc_anim = creatures.ANIM_STAND end if self.attacker ~= "" then self.direction = {x = math.sin(self.yaw)*-1, y = 0, z = math.cos(self.yaw)} @@ -264,10 +247,10 @@ GHOST_DEF.on_step = function(self, dtime) self.turn_timer = 0 self.direction = {x = math.sin(self.yaw)*-1, y = 0, z = math.cos(self.yaw)} end - if self.npc_anim ~= ANIM_WALK then + if self.npc_anim ~= creatures.ANIM_WALK then self.anim = g_get_animations() self.object:set_animation({x=self.anim.walk_START,y=self.anim.walk_END}, g_animation_speed, 0) - self.npc_anim = ANIM_WALK + self.npc_anim = creatures.ANIM_WALK end --jump if self.direction ~= nil and self.attacker ~= "" then @@ -311,58 +294,3 @@ GHOST_DEF.on_step = function(self, dtime) end minetest.register_entity("creatures:ghost", GHOST_DEF) - - ---spawn-egg - -minetest.register_craftitem("creatures:ghost_spawn_egg", { - description = "Ghost spawn-egg", - inventory_image = "creatures_egg_ghost.png", - liquids_pointable = false, - stack_max = 99, - on_place = function(itemstack, placer, pointed_thing) - if pointed_thing.type == "node" then - local p = pointed_thing.above - p.y = p.y+0.5 - creatures.spawn(p, 1, "creatures:ghost") - if not minetest.setting_getbool("creative_mode") then itemstack:take_item() end - return itemstack - end - end, - -}) - -if not minetest.setting_getbool("only_peaceful_mobs") then - -- spawn randomly in world - minetest.register_abm({ - nodenames = g_spawn_nodes, - interval = 44.0, - chance = 7500, - action = function(pos, node, active_object_count, active_object_count_wider) - if pos.y < 0 then return end - pos.y = pos.y+1 - local ll = minetest.env:get_node_light(pos) - local wtime = minetest.env:get_timeofday() - if not ll then - return - end - if ll >= g_ll then - return - end - if ll < -1 then - return - end - if minetest.env:get_node(pos).name ~= "air" then - return - end - pos.y = pos.y+1 - if minetest.env:get_node(pos).name ~= "air" then - return - end - if (wtime > 0.2 and wtime < 0.805) then - return - end - creatures.spawn(pos, 1, "creatures:ghost") - end - }) -end diff --git a/init.lua b/init.lua index 9250d2b..8257f4e 100644 --- a/init.lua +++ b/init.lua @@ -1,12 +1,100 @@ creatures = {} -function creatures.spawn(pos, number, mob) - print("spawn"..mob) - --log spawning? +creatures.ANIM_STAND = 1 +creatures.ANIM_SIT = 2 +creatures.ANIM_LAY = 3 +creatures.ANIM_WALK = 4 +creatures.ANIM_EAT = 5 +creatures.ANIM_RUN = 6 + +local tool_uses = {0, 30, 110, 150, 280, 300, 500, 1000} + +-- helping functions + +function creatures.spawn(pos, number, mob, limit, range) + if not pos or not number or not mob then return end + if number < 1 then return end + if limit == nil then limit = 1 end + if range == nil then range = 10 end + local m_name = string.sub(mob,11) + local res,mobs,player_near = creatures.find_mates(pos, m_name, range) for i=1,number do - minetest.env:add_entity(pos, mob) + local x = 1/math.random(1,3) + local z = 1/math.random(1,3) + local p = {x=pos.x+x,y=pos.y,z=pos.z+z} + if mobs+i <= limit then + minetest.after(i/5,function() + minetest.env:add_entity(p, mob) + minetest.log("action", "Spawned "..mob.." at ("..pos.x..","..pos.y..","..pos.z..")") + end) + end end end +function creatures.add_wear(player, def) + if not minetest.setting_getbool("creative_mode") then + local item = player:get_wielded_item() + if def and def.damage_groups and def.damage_groups.fleshy then + local uses = tool_uses[def.damage_groups.fleshy] or 0 + if uses > 0 then + local wear = 65535/uses + item:add_wear(wear) + player:set_wielded_item(item) + end + end + end +end + +function creatures.drop(pos, items, dir) + if dir == nil then + dir = {x=1,y=1,z=1} + end + for _,item in ipairs(items) do + for i=1,item.count do + local x = 1/math.random(1,5)*dir.x--math.random(0, 6)/3 - 0.5*dir.x + local z = 1/math.random(1,5)*dir.z--math.random(0, 6)/3 - 0.5*dir.z + local p = {x=pos.x+x,y=pos.y,z=pos.z+z} + local node = minetest.get_node_or_nil(p) + if node == nil or not node.name or node.name ~= "air" then + p = pos + end + local obj = minetest.env:add_item(p, {name=item.name}) + end + end +end + +function creatures.find_mates(pos, name, radius) + local player_near = false + local mobs = 0 + for _,obj in ipairs(minetest.env:get_objects_inside_radius(pos, radius)) do + if obj:is_player() then + player_near = true + else + if obj:get_luaentity().mob_name == name then mobs = mobs + 1 end + end + end + if mobs > 1 then + return true,mobs,player_near + end + return false,mobs,player_near +end + +function creatures.compare_pos(pos1,pos2) + if pos1.x == pos2.x and pos1.y == pos2.y and pos1.z == pos2.z then + return true + end + return false +end + +-- hostile mobs dofile(minetest.get_modpath("creatures").."/ghost.lua") -dofile(minetest.get_modpath("creatures").."/zombie.lua") \ No newline at end of file +dofile(minetest.get_modpath("creatures").."/zombie.lua") + +-- friendly mobs +dofile(minetest.get_modpath("creatures").."/sheep.lua") + +-- spawning +dofile(minetest.get_modpath("creatures").."/spawn.lua") +dofile(minetest.get_modpath("creatures").."/spawners.lua") +-- other stuff +dofile(minetest.get_modpath("creatures").."/items.lua") \ No newline at end of file diff --git a/items.lua b/items.lua new file mode 100644 index 0000000..87d273d --- /dev/null +++ b/items.lua @@ -0,0 +1,64 @@ +-- drop items +minetest.register_craftitem("creatures:flesh", { + description = "Flesh", + inventory_image = "creatures_rotten_flesh.png", + on_use = minetest.item_eat(4), +}) + +minetest.register_craftitem("creatures:rotten_flesh", { + description = "Rotten Flesh", + inventory_image = "creatures_rotten_flesh.png", + on_use = minetest.item_eat(1), +}) + +-- spawn-eggs +minetest.register_craftitem("creatures:zombie_spawn_egg", { + description = "Zombie spawn-egg", + inventory_image = "creatures_egg_zombie.png", + liquids_pointable = false, + stack_max = 99, + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.type == "node" then + local p = pointed_thing.above + p.y = p.y+1 + creatures.spawn(p, 1, "creatures:zombie", 1, 1) + if not minetest.setting_getbool("creative_mode") then itemstack:take_item() end + return itemstack + end + end, + +}) + +minetest.register_craftitem("creatures:ghost_spawn_egg", { + description = "Ghost spawn-egg", + inventory_image = "creatures_egg_ghost.png", + liquids_pointable = false, + stack_max = 99, + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.type == "node" then + local p = pointed_thing.above + p.y = p.y+0.5 + creatures.spawn(p, 1, "creatures:ghost", 1, 1) + if not minetest.setting_getbool("creative_mode") then itemstack:take_item() end + return itemstack + end + end, + +}) + +minetest.register_craftitem("creatures:sheep_spawn_egg", { + description = "Sheep spawn-egg", + inventory_image = "creatures_egg_sheep.png", + liquids_pointable = false, + stack_max = 99, + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.type == "node" then + local p = pointed_thing.above + p.y = p.y+0.5 + creatures.spawn(p, 1, "creatures:sheep", 1, 1) + if not minetest.setting_getbool("creative_mode") then itemstack:take_item() end + return itemstack + end + end, + +}) diff --git a/models/creatures_ghost_hit.png b/models/creatures_ghost_hit.png index f67ed03..4a3d5ec 100644 Binary files a/models/creatures_ghost_hit.png and b/models/creatures_ghost_hit.png differ diff --git a/models/creatures_sheep.png b/models/creatures_sheep.png new file mode 100644 index 0000000..910d8b9 Binary files /dev/null and b/models/creatures_sheep.png differ diff --git a/models/creatures_sheep.x b/models/creatures_sheep.x new file mode 100644 index 0000000..1a6d7d5 --- /dev/null +++ b/models/creatures_sheep.x @@ -0,0 +1,6751 @@ +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_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 + 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 + } // 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 { // sheep mesh + 348; + 1.998224; 6.883465; 8.227857;, + 1.998224; 6.883465;12.113163;, + 1.998223; 2.998159;12.113163;, + 1.998222; 2.998158; 8.227857;, + -1.887085; 2.998161;12.113163;, + -1.887084; 2.998160; 8.227857;, + 1.998222; 2.998158; 8.227857;, + 1.998223; 2.998159;12.113163;, + -1.887084; 2.998160; 8.227857;, + -1.887082; 6.883466; 8.227857;, + 1.998224; 6.883465; 8.227857;, + 1.998222; 2.998158; 8.227857;, + -1.887085; 2.998161;12.113163;, + 1.998223; 2.998159;12.113163;, + 1.998224; 6.883465;12.113163;, + -1.887081; 6.883467;12.113163;, + -1.887084; 2.998160; 8.227857;, + -1.887085; 2.998161;12.113163;, + -1.887081; 6.883467;12.113163;, + -1.887082; 6.883466; 8.227857;, + 1.998224; 6.883465; 8.227857;, + -1.887082; 6.883466; 8.227857;, + -1.887081; 6.883467;12.113163;, + 1.998224; 6.883465;12.113163;, + 0.595866; 5.025031; 3.317000;, + 0.595866; 5.025031; 6.125085;, + 2.704729; 5.025031; 6.125084;, + 2.704729; 5.025031; 3.316999;, + 0.595865; 3.054348; 3.317000;, + 2.704728; 3.054348; 3.317000;, + 2.704729; 3.054348; 6.125084;, + 0.595866; 3.054348; 6.125085;, + 0.595866; 5.025031; 3.317000;, + 0.595865; 3.054348; 3.317000;, + 0.595866; 3.054348; 6.125085;, + 0.595866; 5.025031; 6.125085;, + 0.595866; 5.025031; 6.125085;, + 0.595866; 3.054348; 6.125085;, + 2.704729; 3.054348; 6.125084;, + 2.704729; 5.025031; 6.125084;, + 2.704729; 5.025031; 6.125084;, + 2.704729; 3.054348; 6.125084;, + 2.704728; 3.054348; 3.317000;, + 2.704729; 5.025031; 3.316999;, + 2.704729; 5.025031; 3.316999;, + 2.704728; 3.054348; 3.317000;, + 2.445655; 3.296446; 3.317000;, + 2.445655; 4.782932; 3.317000;, + 0.854940; 4.782932; 3.317000;, + 2.445655; 4.782932; 3.317000;, + 2.445655; 4.782932;-0.213580;, + 0.854939; 4.782932;-0.213580;, + 2.445655; 4.782932; 3.317000;, + 2.445655; 3.296446; 3.317000;, + 2.445654; 3.296445;-0.213580;, + 2.445655; 4.782932;-0.213580;, + 2.445655; 3.296446; 3.317000;, + 0.854939; 3.296446; 3.317000;, + 0.854938; 3.296446;-0.213580;, + 2.445654; 3.296445;-0.213580;, + 0.854939; 4.782932;-0.213580;, + 2.445655; 4.782932;-0.213580;, + 2.445654; 3.296445;-0.213580;, + 0.854938; 3.296446;-0.213580;, + 0.595866; 5.025031; 3.317000;, + 2.704729; 5.025031; 3.316999;, + 2.445655; 4.782932; 3.317000;, + 0.854940; 4.782932; 3.317000;, + 0.595865; 3.054348; 3.317000;, + 0.595866; 5.025031; 3.317000;, + 0.854940; 4.782932; 3.317000;, + 0.854939; 3.296446; 3.317000;, + 2.704728; 3.054348; 3.317000;, + 0.595865; 3.054348; 3.317000;, + 0.854939; 3.296446; 3.317000;, + 2.445655; 3.296446; 3.317000;, + 0.854939; 3.296446; 3.317000;, + 0.854940; 4.782932; 3.317000;, + 0.854939; 4.782932;-0.213580;, + 0.854938; 3.296446;-0.213580;, + -0.241135;-2.928798; 3.317000;, + -2.349997;-2.928798; 3.316999;, + -2.349998;-2.928798; 6.125084;, + -0.241135;-2.928798; 6.125085;, + -0.241133;-4.899481; 3.317000;, + -0.241135;-4.899481; 6.125085;, + -2.349997;-4.899481; 6.125084;, + -2.349996;-4.899481; 3.317000;, + -0.241135;-2.928798; 3.317000;, + -0.241135;-2.928798; 6.125085;, + -0.241135;-4.899481; 6.125085;, + -0.241133;-4.899481; 3.317000;, + -0.241135;-2.928798; 6.125085;, + -2.349998;-2.928798; 6.125084;, + -2.349997;-4.899481; 6.125084;, + -0.241135;-4.899481; 6.125085;, + -2.349998;-2.928798; 6.125084;, + -2.349997;-2.928798; 3.316999;, + -2.349996;-4.899481; 3.317000;, + -2.349997;-4.899481; 6.125084;, + -2.349997;-2.928798; 3.316999;, + -2.090924;-3.170897; 3.317000;, + -2.090923;-4.657383; 3.317000;, + -2.349996;-4.899481; 3.317000;, + -0.500208;-3.170897; 3.317000;, + -0.500208;-3.170897;-0.213580;, + -2.090923;-3.170897;-0.213580;, + -2.090924;-3.170897; 3.317000;, + -2.090924;-3.170897; 3.317000;, + -2.090923;-3.170897;-0.213580;, + -2.090923;-4.657383;-0.213580;, + -2.090923;-4.657383; 3.317000;, + -2.090923;-4.657383; 3.317000;, + -2.090923;-4.657383;-0.213580;, + -0.500206;-4.657383;-0.213580;, + -0.500207;-4.657383; 3.317000;, + -0.500208;-3.170897;-0.213580;, + -0.500206;-4.657383;-0.213580;, + -2.090923;-4.657383;-0.213580;, + -2.090923;-3.170897;-0.213580;, + -0.241135;-2.928798; 3.317000;, + -0.500208;-3.170897; 3.317000;, + -2.090924;-3.170897; 3.317000;, + -2.349997;-2.928798; 3.316999;, + -0.241133;-4.899481; 3.317000;, + -0.500207;-4.657383; 3.317000;, + -0.500208;-3.170897; 3.317000;, + -0.241135;-2.928798; 3.317000;, + -2.349996;-4.899481; 3.317000;, + -2.090923;-4.657383; 3.317000;, + -0.500207;-4.657383; 3.317000;, + -0.241133;-4.899481; 3.317000;, + -0.500207;-4.657383; 3.317000;, + -0.500206;-4.657383;-0.213580;, + -0.500208;-3.170897;-0.213580;, + -0.500208;-3.170897; 3.317000;, + -0.500207; 3.296446; 3.317000;, + -0.500206; 3.296446;-0.213580;, + -0.500208; 4.782932;-0.213580;, + -0.500208; 4.782932; 3.317000;, + -2.349996; 3.054348; 3.317000;, + -2.090923; 3.296446; 3.317000;, + -0.500207; 3.296446; 3.317000;, + -0.241133; 3.054348; 3.317000;, + -0.241133; 3.054348; 3.317000;, + -0.500207; 3.296446; 3.317000;, + -0.500208; 4.782932; 3.317000;, + -0.241135; 5.025031; 3.317000;, + -0.241135; 5.025031; 3.317000;, + -0.500208; 4.782932; 3.317000;, + -2.090924; 4.782932; 3.317000;, + -2.349997; 5.025031; 3.316999;, + -0.500208; 4.782932;-0.213580;, + -0.500206; 3.296446;-0.213580;, + -2.090923; 3.296445;-0.213580;, + -2.090923; 4.782932;-0.213580;, + -2.090923; 3.296446; 3.317000;, + -2.090923; 3.296445;-0.213580;, + -0.500206; 3.296446;-0.213580;, + -0.500207; 3.296446; 3.317000;, + -2.090924; 4.782932; 3.317000;, + -2.090923; 4.782932;-0.213580;, + -2.090923; 3.296445;-0.213580;, + -2.090923; 3.296446; 3.317000;, + -0.500208; 4.782932; 3.317000;, + -0.500208; 4.782932;-0.213580;, + -2.090923; 4.782932;-0.213580;, + -2.090924; 4.782932; 3.317000;, + -2.349997; 5.025031; 3.316999;, + -2.090924; 4.782932; 3.317000;, + -2.090923; 3.296446; 3.317000;, + -2.349996; 3.054348; 3.317000;, + -2.349998; 5.025031; 6.125084;, + -2.349997; 5.025031; 3.316999;, + -2.349996; 3.054348; 3.317000;, + -2.349997; 3.054348; 6.125084;, + -0.241135; 5.025031; 6.125085;, + -2.349998; 5.025031; 6.125084;, + -2.349997; 3.054348; 6.125084;, + -0.241135; 3.054348; 6.125085;, + -0.241135; 5.025031; 3.317000;, + -0.241135; 5.025031; 6.125085;, + -0.241135; 3.054348; 6.125085;, + -0.241133; 3.054348; 3.317000;, + -0.241133; 3.054348; 3.317000;, + -0.241135; 3.054348; 6.125085;, + -2.349997; 3.054348; 6.125084;, + -2.349996; 3.054348; 3.317000;, + -0.241135; 5.025031; 3.317000;, + -2.349997; 5.025031; 3.316999;, + -2.349998; 5.025031; 6.125084;, + -0.241135; 5.025031; 6.125085;, + 0.854939;-4.657383; 3.317000;, + 0.854940;-3.170897; 3.317000;, + 0.854939;-3.170897;-0.213580;, + 0.854938;-4.657383;-0.213580;, + 2.704728;-4.899481; 3.317000;, + 0.595865;-4.899481; 3.317000;, + 0.854939;-4.657383; 3.317000;, + 2.445655;-4.657383; 3.317000;, + 0.595865;-4.899481; 3.317000;, + 0.595866;-2.928798; 3.317000;, + 0.854940;-3.170897; 3.317000;, + 0.854939;-4.657383; 3.317000;, + 0.595866;-2.928798; 3.317000;, + 2.704729;-2.928798; 3.316999;, + 2.445655;-3.170897; 3.317000;, + 0.854940;-3.170897; 3.317000;, + 0.854939;-3.170897;-0.213580;, + 2.445655;-3.170897;-0.213580;, + 2.445654;-4.657383;-0.213580;, + 0.854938;-4.657383;-0.213580;, + 2.445655;-4.657383; 3.317000;, + 0.854939;-4.657383; 3.317000;, + 0.854938;-4.657383;-0.213580;, + 2.445654;-4.657383;-0.213580;, + 2.445655;-3.170897; 3.317000;, + 2.445655;-4.657383; 3.317000;, + 2.445654;-4.657383;-0.213580;, + 2.445655;-3.170897;-0.213580;, + 0.854940;-3.170897; 3.317000;, + 2.445655;-3.170897; 3.317000;, + 2.445655;-3.170897;-0.213580;, + 0.854939;-3.170897;-0.213580;, + 2.704729;-2.928798; 3.316999;, + 2.704728;-4.899481; 3.317000;, + 2.445655;-4.657383; 3.317000;, + 2.445655;-3.170897; 3.317000;, + 2.704729;-2.928798; 6.125084;, + 2.704729;-4.899481; 6.125084;, + 2.704728;-4.899481; 3.317000;, + 2.704729;-2.928798; 3.316999;, + 0.595866;-2.928798; 6.125085;, + 0.595866;-4.899481; 6.125085;, + 2.704729;-4.899481; 6.125084;, + 2.704729;-2.928798; 6.125084;, + 0.595866;-2.928798; 3.317000;, + 0.595865;-4.899481; 3.317000;, + 0.595866;-4.899481; 6.125085;, + 0.595866;-2.928798; 6.125085;, + 0.595865;-4.899481; 3.317000;, + 2.704728;-4.899481; 3.317000;, + 2.704729;-4.899481; 6.125084;, + 0.595866;-4.899481; 6.125085;, + 0.595866;-2.928798; 3.317000;, + 0.595866;-2.928798; 6.125085;, + 2.704729;-2.928798; 6.125084;, + 2.704729;-2.928798; 3.316999;, + -2.644433;-5.423595; 5.058936;, + -2.644430; 5.376405; 5.058936;, + 2.755570; 5.376402; 5.058936;, + 2.755566;-5.423599; 5.058936;, + 2.755567;-5.423597;10.458936;, + 2.755571; 5.376401;10.458936;, + 2.755571; 5.376401;10.458936;, + 2.755567;-5.423597;10.458936;, + -2.644433;-5.423595; 5.058936;, + -2.644435;-5.423593;10.458936;, + -2.644428; 5.376408;10.458936;, + -2.644430; 5.376405; 5.058936;, + -2.644430; 5.376405; 5.058936;, + -2.644428; 5.376408;10.458936;, + 2.755571; 5.376401;10.458936;, + 2.755570; 5.376402; 5.058936;, + 2.755570; 5.376402; 5.058936;, + 2.755571; 5.376401;10.458936;, + 2.755567;-5.423597;10.458936;, + 2.755566;-5.423599; 5.058936;, + -0.346656;-5.423596; 9.828822;, + -0.346656;-5.423596; 7.673504;, + -0.346656;-6.180264; 7.673504;, + -0.346656;-6.180264; 9.828822;, + -0.346656;-6.180264; 9.828822;, + -0.346656;-6.180264; 7.673504;, + 0.457788;-6.180264; 7.673504;, + 0.457788;-6.180264; 9.828822;, + -2.644435;-5.423593;10.458936;, + -2.644433;-5.423595; 5.058936;, + 2.755566;-5.423599; 5.058936;, + 2.755567;-5.423597;10.458936;, + -0.346656;-5.423596; 7.673504;, + 0.457788;-5.423596; 7.673504;, + 0.457788;-6.180264; 7.673504;, + -0.346656;-6.180264; 7.673504;, + 0.457788;-5.423596; 7.673504;, + 0.457788;-5.423596; 9.828822;, + 0.457788;-6.180264; 9.828822;, + 0.457788;-6.180264; 7.673504;, + 0.457788;-5.423596; 9.828822;, + -0.346656;-5.423596; 9.828822;, + -0.346656;-6.180264; 9.828822;, + 0.457788;-6.180264; 9.828822;, + 1.668879; 7.180430; 8.557201;, + 1.668880; 7.180430;11.783818;, + 1.668878; 6.793243;11.783818;, + 1.668877; 6.793243; 8.557201;, + -1.557739; 6.793245; 8.557201;, + -1.557738; 7.180430; 8.557201;, + 1.668879; 7.180430; 8.557201;, + 1.668877; 6.793243; 8.557201;, + -1.557740; 6.793246;11.783818;, + 1.668878; 6.793243;11.783818;, + 1.668880; 7.180430;11.783818;, + -1.557737; 7.180432;11.783818;, + -1.557739; 6.793245; 8.557201;, + -1.557740; 6.793246;11.783818;, + -1.557737; 7.180432;11.783818;, + -1.557738; 7.180430; 8.557201;, + 1.668879; 7.180430; 8.557201;, + -1.557738; 7.180430; 8.557201;, + -1.557737; 7.180432;11.783818;, + 1.668880; 7.180430;11.783818;, + 1.133778; 7.466741; 8.575418;, + 1.133778; 7.466741;10.170522;, + 1.133777; 7.146296;10.170522;, + 1.133777; 7.146296; 8.575418;, + -1.022638; 7.146297; 8.575418;, + -1.022637; 7.466741; 8.575418;, + 1.133778; 7.466741; 8.575418;, + 1.133777; 7.146296; 8.575418;, + -1.022639; 7.146297;10.170522;, + 1.133777; 7.146296;10.170522;, + 1.133778; 7.466741;10.170522;, + -1.022637; 7.466742;10.170522;, + -1.022638; 7.146297; 8.575418;, + -1.022639; 7.146297;10.170522;, + -1.022637; 7.466742;10.170522;, + -1.022637; 7.466741; 8.575418;, + 1.133778; 7.466741; 8.575418;, + -1.022637; 7.466741; 8.575418;, + -1.022637; 7.466742;10.170522;, + 1.133778; 7.466741;10.170522;, + -2.644435;-5.423593;10.458936;, + 2.755567;-5.423597;10.458936;, + 2.755571; 5.376401;10.458936;, + -2.644428; 5.376408;10.458936;, + 2.755571; 5.376401;10.458936;, + -2.644428; 5.376408;10.458936;, + -2.644428; 5.376408;10.458936;, + 2.755571; 5.376401;10.458936;, + -2.644435;-5.423593;10.458936;, + 2.755567;-5.423597;10.458936;, + 2.755567;-5.423597;10.458936;, + -2.644435;-5.423593;10.458936;, + -2.644428; 5.376408;10.458936;, + -2.644435;-5.423593;10.458936;, + -2.644435;-5.423593;10.458936;, + -2.644428; 5.376408;10.458936;; + 87; + 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;, + 4;195,194,193,192;, + 4;199,198,197,196;, + 4;203,202,201,200;, + 4;207,206,205,204;, + 4;211,210,209,208;, + 4;215,214,213,212;, + 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;, + 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;; + MeshTextureCoords { // sheep UV coordinates + 348; + 0.125000; 0.640030;, + 0.125000; 0.320030;, + 0.000000; 0.319970;, + 0.000000; 0.639970;, + 0.375000; 0.320000;, + 0.375000; 0.640000;, + 0.500000; 0.640000;, + 0.500000; 0.320000;, + 0.250000; 0.000000;, + 0.250000; 0.320000;, + 0.375000; 0.320000;, + 0.375000; 0.000000;, + 0.124996; 0.320055;, + 0.250060; 0.319945;, + 0.249940;-0.000024;, + 0.125004; 0.000024;, + 0.375028; 0.640000;, + 0.374972; 0.320000;, + 0.249972; 0.320000;, + 0.250028; 0.640000;, + 0.125000; 0.640000;, + 0.250000; 0.640000;, + 0.250000; 0.320000;, + 0.125000; 0.320000;, + 0.125000; 0.760000;, + 0.125000; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 0.760000;, + 0.187500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.640000;, + 0.187500; 0.640000;, + 0.125000; 0.760000;, + 0.187500; 0.760000;, + 0.187500; 0.640000;, + 0.125000; 0.640000;, + 0.759130;-0.193221;, + 0.759130;-0.304332;, + 0.659130;-0.304332;, + 0.659130;-0.193221;, + 0.062500; 0.640000;, + -0.000000; 0.640000;, + 0.000000; 0.760000;, + 0.062500; 0.760000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.125000; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 1.000000;, + 0.125000; 1.000000;, + 0.062500; 0.639979;, + 0.000000; 0.640021;, + 0.000000; 1.000021;, + 0.062500; 0.999979;, + 0.250000; 0.639931;, + 0.187500; 0.640069;, + 0.187500; 1.000069;, + 0.250000; 0.999931;, + 0.312500; 0.840000;, + 0.250000; 0.840000;, + 0.250000; 1.000000;, + 0.312500; 1.000000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.187500; 0.640033;, + 0.125000; 0.640000;, + 0.125000; 0.999983;, + 0.187500; 1.000017;, + 0.125000; 0.760000;, + 0.062500; 0.760000;, + 0.062500; 0.640000;, + 0.125000; 0.640000;, + 0.187500; 0.760000;, + 0.187500; 0.640000;, + 0.250000; 0.640000;, + 0.250000; 0.760000;, + 0.125000; 0.760000;, + 0.125000; 0.640000;, + 0.187500; 0.640000;, + 0.187500; 0.760000;, + 0.890126;-0.161009;, + 0.790126;-0.161009;, + 0.790126;-0.272120;, + 0.890126;-0.272120;, + 0.062500; 0.640000;, + 0.062500; 0.760000;, + 0.000000; 0.760000;, + 0.000000; 0.640000;, + 0.312500; 0.719920;, + 0.312500; 0.759920;, + 0.250000; 0.760080;, + 0.250000; 0.720080;, + 0.125000; 0.640000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.640000;, + 0.250000; 0.640000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.640000;, + 0.312500; 0.840000;, + 0.312500; 1.000000;, + 0.250000; 1.000000;, + 0.250000; 0.840000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.187500; 0.640000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.640000;, + 0.187500; 0.640000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.640000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.312500; 0.840000;, + 0.312500; 1.000000;, + 0.250000; 1.000000;, + 0.250000; 0.840000;, + 0.250000; 0.640000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.640000;, + 0.125000; 0.640000;, + 0.124948; 1.000000;, + 0.062474; 1.000000;, + 0.062526; 0.640000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.062500; 0.640000;, + 0.062500; 0.760000;, + 0.000000; 0.760000;, + 0.000000; 0.640000;, + 1.015396;-0.183378;, + 0.915396;-0.183378;, + 0.915396;-0.294490;, + 1.015396;-0.294490;, + 0.125000; 0.760000;, + 0.125000; 0.640000;, + 0.187500; 0.640000;, + 0.187500; 0.760000;, + 0.187500; 0.760000;, + 0.187500; 0.640000;, + 0.250000; 0.640000;, + 0.250000; 0.760000;, + 0.125000; 0.759933;, + 0.062500; 0.760067;, + 0.062500; 0.640000;, + 0.125000; 0.639867;, + 0.187500; 0.640000;, + 0.125000; 0.640000;, + 0.125000; 1.000000;, + 0.187500; 1.000000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.312500; 0.719961;, + 0.250000; 0.720039;, + 0.250000; 0.760000;, + 0.312500; 0.759921;, + 0.312500; 0.840000;, + 0.250000; 0.840000;, + 0.250000; 1.000000;, + 0.312500; 1.000000;, + 0.250000; 0.640000;, + 0.187500; 0.640000;, + 0.187500; 1.000000;, + 0.250000; 1.000000;, + 0.062518; 0.640000;, + 0.000018; 0.640000;, + -0.000018; 1.000000;, + 0.062482; 1.000000;, + 0.125000; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 1.000000;, + 0.125000; 1.000000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.062500; 0.640000;, + 0.000000; 0.640000;, + 0.000000; 0.760000;, + 0.062500; 0.760000;, + 1.167509;-0.196800;, + 1.167509;-0.307911;, + 1.067509;-0.307911;, + 1.067509;-0.196800;, + 0.125000; 0.760000;, + 0.187500; 0.760000;, + 0.187500; 0.640000;, + 0.125000; 0.640000;, + 0.187500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.640000;, + 0.187500; 0.640000;, + 0.125000; 0.760000;, + 0.125000; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 0.760000;, + 0.625000; 0.000000;, + 0.625000; 0.640000;, + 0.750000; 0.640000;, + 0.750000; 0.000000;, + 0.022044; 1.042020;, + 0.022044; 1.514242;, + 0.022044; 1.514242;, + 0.022044; 1.042020;, + 1.000000; 0.000000;, + 0.875000; 0.000000;, + 0.875000; 0.640000;, + 1.000000; 0.640000;, + 0.625000; 0.640000;, + 0.500000; 0.640000;, + 0.500000; 0.960000;, + 0.625000; 0.960000;, + 0.750000; 0.640000;, + 0.875000; 0.640000;, + 0.875000; 0.000000;, + 0.750000; 0.000000;, + 0.750000; 0.083333;, + 0.750000; 0.194445;, + 0.775000; 0.194445;, + 0.775000; 0.083333;, + 0.775000; 0.083333;, + 0.775000; 0.194445;, + 0.825000; 0.194445;, + 0.825000; 0.083333;, + 0.750000; 0.640000;, + 0.625000; 0.640000;, + 0.625000; 0.960000;, + 0.750000; 0.960000;, + 0.775000; 0.222222;, + 0.825000; 0.222222;, + 0.825000; 0.194445;, + 0.775000; 0.194445;, + 0.850000; 0.194445;, + 0.850000; 0.083333;, + 0.825000; 0.083333;, + 0.825000; 0.194445;, + 0.825000; 0.055556;, + 0.775000; 0.055556;, + 0.775000; 0.083333;, + 0.825000; 0.083333;, + 0.140625; 0.599923;, + 0.140625; 0.359923;, + 0.125000; 0.360077;, + 0.125000; 0.600077;, + 0.250000; 0.640000;, + 0.250000; 0.600000;, + 0.125000; 0.600000;, + 0.125000; 0.640000;, + 0.250005; 0.320000;, + 0.125005; 0.320000;, + 0.124995; 0.360000;, + 0.249995; 0.360000;, + 0.250000; 0.640000;, + 0.250000; 0.320000;, + 0.234375; 0.320000;, + 0.234375; 0.640000;, + 0.140625; 0.600000;, + 0.234375; 0.600000;, + 0.234375; 0.360000;, + 0.140625; 0.360000;, + 0.156250; 0.520000;, + 0.156250; 0.600000;, + 0.171875; 0.600000;, + 0.171875; 0.520000;, + 0.156250; 0.480000;, + 0.156250; 0.520000;, + 0.218750; 0.520000;, + 0.218750; 0.480000;, + 0.156250; 0.520000;, + 0.218750; 0.520000;, + 0.218750; 0.480000;, + 0.156250; 0.480000;, + 0.203125; 0.520000;, + 0.203125; 0.600000;, + 0.218750; 0.600000;, + 0.218750; 0.520000;, + 0.218750; 0.520000;, + 0.156250; 0.520000;, + 0.156250; 0.600000;, + 0.218750; 0.600000;, + 0.625000; 0.000000;, + 0.500000; 0.000000;, + 0.500000; 0.640000;, + 0.625000; 0.640000;, + 0.040651; 1.362711;, + 0.040651; 1.140488;, + 0.040651; 1.140488;, + 0.040651; 1.362711;, + 1.000000; 0.027778;, + 1.000000; 0.250000;, + 1.000000; 0.250000;, + 1.000000; 0.027778;, + 0.004432; 1.505653;, + 0.004432; 1.033430;, + 0.004432; 1.033430;, + 0.004432; 1.505653;; + } // End of sheep UV coordinates + XSkinMeshHeader { + 5; + 15; + 6; + } + SkinWeights { + "Armature_Bone_003"; + 243; + 5, + 8, + 16, + 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, + 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, + 251, + 252, + 255, + 256, + 259, + 260, + 266, + 267, + 277, + 278, + 279, + 333, + 341, + 342; + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999417, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999417, + 1.000000, + 1.000000, + 0.999417, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.000002, + 0.000000, + 0.000000, + 0.000000, + 0.000015, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000002, + 0.000015, + 0.000000, + 0.000002, + 0.000000, + 0.000000, + 0.000015, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000192, + 0.000000, + 0.000000, + 0.000192, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000192, + 0.000000, + 0.000000, + 0.000008, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000008, + 0.000020, + 0.000020, + 0.000008, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.008993, + 0.000000, + 0.000000, + 0.008993, + 0.000000, + 0.000008, + 0.000000, + 0.000000, + 0.008993, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.002810, + 0.000000, + 0.000000, + 0.000024, + 0.000000, + 0.002810, + 0.000024, + 0.000020, + 0.000020, + 0.000024, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.002810, + 0.000000, + 0.000000, + 0.000000, + 0.000012, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000012, + 0.000000, + 0.000000, + 0.000012, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 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.469550, 5.848685, 4.064454, 1.000000;; + } // End of Armature_Bone_003 skin weights + SkinWeights { + "Armature_Bone_002"; + 59; + 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, + 175, + 178, + 186; + 1.000000, + 1.000000, + 0.999998, + 1.000000, + 1.000000, + 1.000000, + 0.999985, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999998, + 0.999985, + 1.000000, + 0.999998, + 1.000000, + 1.000000, + 0.999985, + 1.000000, + 1.000000, + 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.999751, + 1.000000, + 1.000000, + 0.999751, + 1.000000, + 1.000000, + 1.000000, + 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.999751, + 1.000000, + 1.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.429772, 5.848685,-3.642603, 1.000000;; + } // End of Armature_Bone_002 skin weights + SkinWeights { + "Armature_Bone_001"; + 56; + 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.999992, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999992, + 0.999980, + 0.999980, + 0.999992, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.991007, + 1.000000, + 1.000000, + 0.991007, + 1.000000, + 0.999992, + 1.000000, + 1.000000, + 0.991007, + 1.000000, + 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.997190, + 1.000000, + 1.000000, + 0.999976, + 1.000000, + 0.997190, + 0.999976, + 0.999980, + 0.999980, + 0.999976, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.997190; + -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_RR_leg"; + 65; + 86, + 94, + 99, + 114, + 117, + 133, + 175, + 178, + 186, + 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; + 0.000000, + 0.000000, + 0.000000, + 0.000057, + 0.000057, + 0.000057, + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999988, + 1.000000, + 1.000000, + 1.000000, + 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.999988, + 1.000000, + 1.000000, + 0.999988, + 1.000000, + 1.000000, + 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.999976, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999976, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999976, + 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_Head"; + 78; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 253, + 254, + 258, + 261, + 262, + 265, + 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, + 334, + 335, + 336, + 337, + 338, + 339, + 344, + 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, + 0.000003, + 0.000003, + 0.000000, + 0.000000, + 0.000003, + 0.000003, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.000003, + 0.000000, + 0.000003, + 0.000000, + 0.000000, + 0.000003, + 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, 0.000000, + -0.030900,-3.778762,-10.040427, 1.000000;; + } // End of Armature_Head skin weights + SkinWeights { + "Armature_Root"; + 78; + 3, + 6, + 11, + 30, + 31, + 34, + 37, + 38, + 41, + 86, + 94, + 99, + 175, + 178, + 186, + 229, + 234, + 242, + 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, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347; + 0.000000, + 0.000000, + 0.000000, + 0.000583, + 0.000000, + 0.000000, + 0.000000, + 0.000583, + 0.000583, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000024, + 0.000024, + 0.000024, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 0.999997, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 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, + 0.999997, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 0.999997, + 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 + } // End of sheep mesh + } // End of sheep + } // End of Armature +} // End of Root +AnimationSet ArmatureAction { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 189; + 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;;; + } + AnimationKey { // Scale + 1; + 189; + 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;;; + } + AnimationKey { // Position + 2; + 189; + 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;;, + 165;3; 0.020581, 0.043608, 0.162447;;, + 166;3; 0.020581, 0.043608, 0.162447;;, + 167;3; 0.020581, 0.043608, 0.162447;;, + 168;3; 0.020581, 0.043608, 0.162447;;, + 169;3; 0.020581, 0.043608, 0.162447;;, + 170;3; 0.020581, 0.043608, 0.162447;;, + 171;3; 0.020581, 0.043608, 0.162447;;, + 172;3; 0.020581, 0.043608, 0.162447;;, + 173;3; 0.020581, 0.043608, 0.162447;;, + 174;3; 0.020581, 0.043608, 0.162447;;, + 175;3; 0.020581, 0.043608, 0.162447;;, + 176;3; 0.020581, 0.043608, 0.162447;;, + 177;3; 0.020581, 0.043608, 0.162447;;, + 178;3; 0.020581, 0.043608, 0.162447;;, + 179;3; 0.020581, 0.043608, 0.162447;;, + 180;3; 0.020581, 0.043608, 0.162447;;, + 181;3; 0.020581, 0.043608, 0.162447;;, + 182;3; 0.020581, 0.043608, 0.162447;;, + 183;3; 0.020581, 0.043608, 0.162447;;, + 184;3; 0.020581, 0.043608, 0.162447;;, + 185;3; 0.020581, 0.043608, 0.162447;;, + 186;3; 0.020581, 0.043608, 0.162447;;, + 187;3; 0.020581, 0.043608, 0.162447;;, + 188;3; 0.020581, 0.043608, 0.162447;;; + } + } + Animation { + {Armature_Root} + AnimationKey { // Rotation + 0; + 189; + 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;;, + 165;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 166;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 167;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 168;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 169;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 170;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 171;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 172;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 173;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 174;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 175;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 176;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 177;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 178;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 179;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 180;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 181;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 182;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 183;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 184;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 185;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 186;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 187;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 188;4;-0.000000, 0.000000, 0.707107, 0.707107;;; + } + AnimationKey { // Scale + 1; + 189; + 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;;; + } + AnimationKey { // Position + 2; + 189; + 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;;, + 165;3; 0.030899,-0.009276, 5.987902;;, + 166;3; 0.030899,-0.009276, 5.987902;;, + 167;3; 0.030899,-0.009276, 5.987902;;, + 168;3; 0.030899,-0.009276, 5.987902;;, + 169;3; 0.030899,-0.009276, 5.987902;;, + 170;3; 0.030899,-0.009276, 5.987902;;, + 171;3; 0.030899,-0.009276, 5.987902;;, + 172;3; 0.030899,-0.009276, 5.987902;;, + 173;3; 0.030899,-0.009276, 5.987902;;, + 174;3; 0.030899,-0.009276, 5.987902;;, + 175;3; 0.030899,-0.009276, 5.987902;;, + 176;3; 0.030899,-0.009276, 5.987902;;, + 177;3; 0.030899,-0.009276, 5.987902;;, + 178;3; 0.030899,-0.009276, 5.987902;;, + 179;3; 0.030899,-0.009276, 5.987902;;, + 180;3; 0.030899,-0.009276, 5.987902;;, + 181;3; 0.030899,-0.009276, 5.987902;;, + 182;3; 0.030899,-0.009276, 5.987902;;, + 183;3; 0.030899,-0.009276, 5.987902;;, + 184;3; 0.030899,-0.009276, 5.987902;;, + 185;3; 0.030899,-0.009276, 5.987902;;, + 186;3; 0.030899,-0.009276, 5.987902;;, + 187;3; 0.030899,-0.009276, 5.987902;;, + 188;3; 0.030899,-0.009276, 5.987902;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { // Rotation + 0; + 189; + 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;;, + 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.000000, 1.000000, 0.000000,-0.000000;;, + 170;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 171;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 172;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 173;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 174;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 175;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 176;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 177;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 178;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 179;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 180;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 181;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 182;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 183;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 184;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 185;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 186;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 187;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 188;4; 0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 189; + 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;;; + } + AnimationKey { // Position + 2; + 189; + 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;;, + 165;3; 1.460671,-0.139217, 4.073730;;, + 166;3; 1.460671,-0.139217, 4.073730;;, + 167;3; 1.460671,-0.139217, 4.073730;;, + 168;3; 1.460671,-0.139217, 4.073730;;, + 169;3; 1.460671,-0.139217, 4.073730;;, + 170;3; 1.460671,-0.139217, 4.073730;;, + 171;3; 1.460671,-0.139217, 4.073730;;, + 172;3; 1.460671,-0.139217, 4.073730;;, + 173;3; 1.460671,-0.139217, 4.073730;;, + 174;3; 1.460671,-0.139217, 4.073730;;, + 175;3; 1.460671,-0.139217, 4.073730;;, + 176;3; 1.460671,-0.139217, 4.073730;;, + 177;3; 1.460671,-0.139217, 4.073730;;, + 178;3; 1.460671,-0.139217, 4.073730;;, + 179;3; 1.460671,-0.139217, 4.073730;;, + 180;3; 1.460671,-0.139217, 4.073730;;, + 181;3; 1.460671,-0.139217, 4.073730;;, + 182;3; 1.460671,-0.139217, 4.073730;;, + 183;3; 1.460671,-0.139217, 4.073730;;, + 184;3; 1.460671,-0.139217, 4.073730;;, + 185;3; 1.460671,-0.139217, 4.073730;;, + 186;3; 1.460671,-0.139217, 4.073730;;, + 187;3; 1.460671,-0.139217, 4.073730;;, + 188;3; 1.460671,-0.139217, 4.073730;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { // Rotation + 0; + 189; + 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;;, + 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.000000, 1.000000, 0.000000,-0.000000;;, + 170;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 171;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 172;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 173;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 174;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 175;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 176;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 177;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 178;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 179;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 180;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 181;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 182;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 183;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 184;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 185;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 186;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 187;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 188;4; 0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 189; + 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;;; + } + AnimationKey { // Position + 2; + 189; + 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;;, + 165;3; 1.460671,-0.139216,-3.633328;;, + 166;3; 1.460671,-0.139216,-3.633328;;, + 167;3; 1.460671,-0.139216,-3.633328;;, + 168;3; 1.460671,-0.139216,-3.633328;;, + 169;3; 1.460671,-0.139216,-3.633328;;, + 170;3; 1.460671,-0.139216,-3.633328;;, + 171;3; 1.460671,-0.139216,-3.633328;;, + 172;3; 1.460671,-0.139216,-3.633328;;, + 173;3; 1.460671,-0.139216,-3.633328;;, + 174;3; 1.460671,-0.139216,-3.633328;;, + 175;3; 1.460671,-0.139216,-3.633328;;, + 176;3; 1.460671,-0.139216,-3.633328;;, + 177;3; 1.460671,-0.139216,-3.633328;;, + 178;3; 1.460671,-0.139216,-3.633328;;, + 179;3; 1.460671,-0.139216,-3.633328;;, + 180;3; 1.460671,-0.139216,-3.633328;;, + 181;3; 1.460671,-0.139216,-3.633328;;, + 182;3; 1.460671,-0.139216,-3.633328;;, + 183;3; 1.460671,-0.139216,-3.633328;;, + 184;3; 1.460671,-0.139216,-3.633328;;, + 185;3; 1.460671,-0.139216,-3.633328;;, + 186;3; 1.460671,-0.139216,-3.633328;;, + 187;3; 1.460671,-0.139216,-3.633328;;, + 188;3; 1.460671,-0.139216,-3.633328;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { // Rotation + 0; + 189; + 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.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;;, + 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.000000, 1.000000, 0.000000,-0.000000;;, + 170;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 171;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 172;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 173;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 174;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 175;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 176;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 177;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 178;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 179;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 180;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 181;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 182;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 183;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 184;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 185;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 186;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 187;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 188;4;-0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 189; + 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;;; + } + AnimationKey { // Position + 2; + 189; + 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;;, + 165;3;-1.438651,-0.139217, 4.073730;;, + 166;3;-1.438651,-0.139217, 4.073730;;, + 167;3;-1.438651,-0.139217, 4.073730;;, + 168;3;-1.438651,-0.139217, 4.073730;;, + 169;3;-1.438651,-0.139217, 4.073730;;, + 170;3;-1.438651,-0.139217, 4.073730;;, + 171;3;-1.438651,-0.139217, 4.073730;;, + 172;3;-1.438651,-0.139217, 4.073730;;, + 173;3;-1.438651,-0.139217, 4.073730;;, + 174;3;-1.438651,-0.139217, 4.073730;;, + 175;3;-1.438651,-0.139217, 4.073730;;, + 176;3;-1.438651,-0.139217, 4.073730;;, + 177;3;-1.438651,-0.139217, 4.073730;;, + 178;3;-1.438651,-0.139217, 4.073730;;, + 179;3;-1.438651,-0.139217, 4.073730;;, + 180;3;-1.438651,-0.139217, 4.073730;;, + 181;3;-1.438651,-0.139217, 4.073730;;, + 182;3;-1.438651,-0.139217, 4.073730;;, + 183;3;-1.438651,-0.139217, 4.073730;;, + 184;3;-1.438651,-0.139217, 4.073730;;, + 185;3;-1.438651,-0.139217, 4.073730;;, + 186;3;-1.438651,-0.139217, 4.073730;;, + 187;3;-1.438651,-0.139217, 4.073730;;, + 188;3;-1.438651,-0.139217, 4.073730;;; + } + } + Animation { + {Armature_RR_leg} + AnimationKey { // Rotation + 0; + 189; + 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;;, + 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.000000, 1.000000, 0.000000,-0.000000;;, + 170;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 171;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 172;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 173;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 174;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 175;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 176;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 177;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 178;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 179;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 180;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 181;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 182;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 183;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 184;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 185;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 186;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 187;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 188;4; 0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 189; + 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;;; + } + AnimationKey { // Position + 2; + 189; + 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;;, + 165;3;-1.438651,-0.139216,-3.633328;;, + 166;3;-1.438651,-0.139216,-3.633328;;, + 167;3;-1.438651,-0.139216,-3.633328;;, + 168;3;-1.438651,-0.139216,-3.633328;;, + 169;3;-1.438651,-0.139216,-3.633328;;, + 170;3;-1.438651,-0.139216,-3.633328;;, + 171;3;-1.438651,-0.139216,-3.633328;;, + 172;3;-1.438651,-0.139216,-3.633328;;, + 173;3;-1.438651,-0.139216,-3.633328;;, + 174;3;-1.438651,-0.139216,-3.633328;;, + 175;3;-1.438651,-0.139216,-3.633328;;, + 176;3;-1.438651,-0.139216,-3.633328;;, + 177;3;-1.438651,-0.139216,-3.633328;;, + 178;3;-1.438651,-0.139216,-3.633328;;, + 179;3;-1.438651,-0.139216,-3.633328;;, + 180;3;-1.438651,-0.139216,-3.633328;;, + 181;3;-1.438651,-0.139216,-3.633328;;, + 182;3;-1.438651,-0.139216,-3.633328;;, + 183;3;-1.438651,-0.139216,-3.633328;;, + 184;3;-1.438651,-0.139216,-3.633328;;, + 185;3;-1.438651,-0.139216,-3.633328;;, + 186;3;-1.438651,-0.139216,-3.633328;;, + 187;3;-1.438651,-0.139216,-3.633328;;, + 188;3;-1.438651,-0.139216,-3.633328;;; + } + } + Animation { + {Armature_Head} + AnimationKey { // Rotation + 0; + 189; + 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.707575;;, + 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.723489;;, + 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.691348;;, + 50;4;-0.000000, 0.000000, 0.719730, 0.693920;;, + 51;4;-0.000000, 0.000000, 0.717343, 0.696415;;, + 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.702783, 0.710362;;, + 108;4;-0.000000, 0.000000, 0.689580, 0.720281;;, + 109;4;-0.000000, 0.000000, 0.667667, 0.736697;;, + 110;4;-0.000000, 0.000000, 0.638196, 0.758693;;, + 111;4;-0.000000, 0.000000, 0.603489, 0.784465;;, + 112;4;-0.000000, 0.000000, 0.566792, 0.811525;;, + 113;4;-0.000000, 0.000000, 0.531551, 0.837258;;, + 114;4;-0.000000, 0.000000, 0.500609, 0.859521;;, + 115;4;-0.000000, 0.000000, 0.475786, 0.876966;;, + 116;4;-0.000000, 0.000000, 0.457903, 0.889002;;, + 117;4; 0.000798, 0.001625, 0.444429, 0.897363;;, + 118;4; 0.003160, 0.006431, 0.433080, 0.903630;;, + 119;4; 0.006758, 0.013754, 0.424417, 0.907592;;, + 120;4; 0.010840, 0.022060, 0.418667, 0.909446;;, + 121;4; 0.014438, 0.029383, 0.415494, 0.909852;;, + 122;4; 0.016800, 0.034189, 0.414148, 0.909642;;, + 123;4; 0.017598, 0.035813, 0.413843, 0.909474;;, + 124;4; 0.017276, 0.035158, 0.413906, 0.909503;;, + 125;4; 0.016304, 0.033181, 0.414201, 0.909536;;, + 126;4; 0.014712, 0.029940, 0.414923, 0.909460;;, + 127;4; 0.012590, 0.025621, 0.416312, 0.909126;;, + 128;4; 0.010106, 0.020566, 0.418624, 0.908362;;, + 129;4; 0.007492, 0.015247, 0.422084, 0.906999;;, + 130;4; 0.005008, 0.010192, 0.426831, 0.904911;;, + 131;4; 0.002886, 0.005874, 0.432890, 0.902037;;, + 132;4; 0.001293, 0.002633, 0.440187, 0.898384;;, + 133;4; 0.000322, 0.000656, 0.448580, 0.894011;;, + 134;4;-0.000000, 0.000000, 0.457903, 0.889002;;, + 135;4;-0.000000, 0.000000, 0.471819, 0.880404;;, + 136;4;-0.000000, 0.000000, 0.494009, 0.865242;;, + 137;4;-0.000000, 0.000000, 0.523692, 0.844071;;, + 138;4;-0.000000, 0.000000, 0.558965, 0.818312;;, + 139;4;-0.000000, 0.000000, 0.596735, 0.790321;;, + 140;4;-0.000000, 0.000000, 0.633158, 0.763062;;, + 141;4;-0.000000, 0.000000, 0.664523, 0.739424;;, + 142;4;-0.000000, 0.000000, 0.688086, 0.721577;;, + 143;4;-0.000000, 0.000000, 0.702395, 0.710699;;, + 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;;, + 165;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 166;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 167;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 168;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 169;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 170;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 171;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 172;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 173;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 174;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 175;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 176;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 177;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 178;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 179;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 180;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 181;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 182;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 183;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 184;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 185;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 186;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 187;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 188;4;-0.000000, 0.000000, 0.707107, 0.707107;;; + } + AnimationKey { // Scale + 1; + 189; + 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;;; + } + AnimationKey { // Position + 2; + 189; + 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;;, + 101;3;-0.000000, 4.052526, 3.788038;;, + 102;3;-0.000000, 4.052526, 3.788038;;, + 103;3;-0.000000, 4.052526, 3.788038;;, + 104;3;-0.000000, 4.052526, 3.788038;;, + 105;3;-0.000000, 4.052526, 3.788038;;, + 106;3;-0.000000, 4.052526, 3.788038;;, + 107;3; 0.000000, 3.932556, 3.817408;;, + 108;3; 0.000000, 3.578606, 3.905683;;, + 109;3; 0.000000, 3.015022, 4.049008;;, + 110;3; 0.000000, 2.290478, 4.236245;;, + 111;3; 0.000000, 1.477738, 4.448205;;, + 112;3; 0.000000, 0.664999, 4.660165;;, + 113;3; 0.000000,-0.059545, 4.847402;;, + 114;3; 0.000000,-0.623131, 4.990727;;, + 115;3; 0.000000,-0.977079, 5.079002;;, + 116;3; 0.000000,-1.097050, 5.108373;;, + 117;3; 0.000000,-1.097050, 5.108373;;, + 118;3; 0.000000,-1.097050, 5.108373;;, + 119;3; 0.000000,-1.097050, 5.108373;;, + 120;3; 0.000000,-1.097050, 5.108373;;, + 121;3; 0.000000,-1.097050, 5.108373;;, + 122;3; 0.000000,-1.097050, 5.108373;;, + 123;3; 0.000000,-1.097050, 5.108373;;, + 124;3; 0.000000,-1.097050, 5.108373;;, + 125;3; 0.000000,-1.097050, 5.108373;;, + 126;3; 0.000000,-1.097050, 5.108373;;, + 127;3; 0.000000,-1.097050, 5.108373;;, + 128;3; 0.000000,-1.097050, 5.108373;;, + 129;3; 0.000000,-1.097050, 5.108373;;, + 130;3; 0.000000,-1.097050, 5.108373;;, + 131;3; 0.000000,-1.097050, 5.108373;;, + 132;3; 0.000000,-1.097050, 5.108373;;, + 133;3; 0.000000,-1.097050, 5.108373;;, + 134;3; 0.000000,-1.097050, 5.108373;;, + 135;3; 0.000000,-0.978723, 5.079034;;, + 136;3; 0.000000,-0.635073, 4.990970;;, + 137;3; 0.000000,-0.094211, 4.848135;;, + 138;3; 0.000000, 0.599206, 4.661588;;, + 139;3; 0.000000, 1.383935, 4.450237;;, + 140;3; 0.000000, 2.185637, 4.238466;;, + 141;3; 0.000001, 2.924005, 4.050854;;, + 142;3; 0.000001, 3.521967, 3.906768;;, + 143;3; 0.000001, 3.914200, 3.817738;;, + 144;3; 0.000001, 4.052526, 3.788038;;, + 145;3; 0.000001, 4.052526, 3.788038;;, + 146;3; 0.000001, 4.052526, 3.788038;;, + 147;3; 0.000001, 4.052526, 3.788038;;, + 148;3; 0.000001, 4.052526, 3.788038;;, + 149;3; 0.000001, 4.052526, 3.788038;;, + 150;3; 0.000001, 4.052526, 3.788038;;, + 151;3; 0.000001, 4.052526, 3.788038;;, + 152;3; 0.000001, 4.052526, 3.788038;;, + 153;3; 0.000001, 4.052526, 3.788038;;, + 154;3; 0.000001, 4.052526, 3.788038;;, + 155;3; 0.000001, 4.052526, 3.788038;;, + 156;3; 0.000001, 4.052526, 3.788038;;, + 157;3; 0.000001, 4.052526, 3.788038;;, + 158;3; 0.000001, 4.052526, 3.788038;;, + 159;3; 0.000001, 4.052526, 3.788038;;, + 160;3; 0.000001, 4.052526, 3.788038;;, + 161;3; 0.000001, 4.052526, 3.788038;;, + 162;3; 0.000001, 4.052526, 3.788038;;, + 163;3; 0.000001, 4.052526, 3.788038;;, + 164;3; 0.000001, 4.052526, 3.788038;;, + 165;3; 0.000001, 4.052526, 3.788038;;, + 166;3; 0.000001, 4.052526, 3.788038;;, + 167;3; 0.000001, 4.052526, 3.788038;;, + 168;3; 0.000001, 4.052526, 3.788038;;, + 169;3; 0.000001, 4.052526, 3.788038;;, + 170;3; 0.000001, 4.052526, 3.788038;;, + 171;3; 0.000001, 4.052526, 3.788038;;, + 172;3; 0.000001, 4.052526, 3.788038;;, + 173;3; 0.000001, 4.052526, 3.788038;;, + 174;3; 0.000001, 4.052526, 3.788038;;, + 175;3; 0.000001, 4.052526, 3.788038;;, + 176;3; 0.000001, 4.052526, 3.788038;;, + 177;3; 0.000001, 4.052526, 3.788038;;, + 178;3; 0.000001, 4.052526, 3.788038;;, + 179;3; 0.000001, 4.052526, 3.788038;;, + 180;3; 0.000001, 4.052526, 3.788038;;, + 181;3; 0.000001, 4.052526, 3.788038;;, + 182;3; 0.000001, 4.052526, 3.788038;;, + 183;3; 0.000001, 4.052526, 3.788038;;, + 184;3; 0.000001, 4.052526, 3.788038;;, + 185;3; 0.000001, 4.052526, 3.788038;;, + 186;3; 0.000001, 4.052526, 3.788038;;, + 187;3; 0.000001, 4.052526, 3.788038;;, + 188;3; 0.000001, 4.052526, 3.788038;;; + } + } +} // End of AnimationSet ArmatureAction +AnimationSet Default_Action { + Animation { + {sheep} + AnimationKey { // Rotation + 0; + 189; + 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;;; + } + AnimationKey { // Scale + 1; + 189; + 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;;; + } + AnimationKey { // Position + 2; + 189; + 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;;; + } + } +} // End of AnimationSet Default_Action diff --git a/models/creatures_sheep_hit.png b/models/creatures_sheep_hit.png new file mode 100644 index 0000000..a698ac3 Binary files /dev/null and b/models/creatures_sheep_hit.png differ diff --git a/models/creatures_sheep_shaved.png b/models/creatures_sheep_shaved.png new file mode 100644 index 0000000..8a930a5 Binary files /dev/null and b/models/creatures_sheep_shaved.png differ diff --git a/models/creatures_zombie_hit.png b/models/creatures_zombie_hit.png index 407db2d..3e6aa46 100644 Binary files a/models/creatures_zombie_hit.png and b/models/creatures_zombie_hit.png differ diff --git a/sheep.lua b/sheep.lua new file mode 100644 index 0000000..e9e1a1c --- /dev/null +++ b/sheep.lua @@ -0,0 +1,345 @@ +local s_chillaxin_speed = 1.5 +local s_animation_speed = 15 +local s_mesh = "creatures_sheep.x" +local s_texture = {"creatures_sheep.png"} +local s_hp = 8 +local s_life_max = 80 --~5min +local s_drop = "wool:white" + +local s_player_radius = 14 + +local s_sound_normal = "creatures_sheep" +local s_sound_hit = "creatures_sheep" +local s_sound_dead = "creatures_sheep" + +creatures.s_spawn_nodes = {"default:dirt_with_grass"} + +local function s_get_animations() + return { + stand_START = 0, + stand_END = 80, + walk_START = 81, + walk_END = 100, + eat_START = 107, + eat_END = 185 + } +end + +local function s_eat_anim(self) + self.object:set_animation({x=self.anim.eat_START,y=self.anim.eat_END}, s_animation_speed, 0) + self.npc_anim = creatures.ANIM_EAT +end + +function s_hit(self) + local sound = s_sound_hit + if self.object:get_hp() < 1 then sound = s_sound_dead end + minetest.sound_play(sound, {pos = self.object:getpos(), max_hear_distance = 10, loop = false, gain = 0.4}) + prop = { + mesh = s_mesh, + textures = {self.txture[1].."^creatures_sheep_hit.png"}, + } + self.object:set_properties(prop) + self.can_punch = false + minetest.after(0.4, function() + s_update_visuals_def(self) + end) +end + +function s_update_visuals_def(self) + self.txture = {"creatures_sheep.png"} + if not self.has_wool then + self.txture = {"creatures_sheep_shaved.png"} + end + prop = { + mesh = s_mesh, + textures = self.txture, + } + self.object:set_properties(prop) +end + +SHEEP_DEF = { + physical = true, + collisionbox = {-0.4, -0.01, -0.6, 0.4, 0.9, 0.4}, + visual = "mesh", + visual_size = {x=1, y=1}, + mesh = s_mesh, + textures = s_texture, + txture = s_texture, + makes_footstep_sound = true, + npc_anim = 0, + lifetime = 0, + timer = 0, + turn_timer = 0, + vec = 0, + yaw = 0, + yawwer = 0, + has_wool = true, + state = 1, + can_punch = true, + dead = false, + jump_timer = 0, + last_pos = {x=0,y=0,z=0}, + punch_timer = 0, + sound_timer = 0, + mob_name = "sheep" +} + +SHEEP_DEF.get_staticdata = function(self) + return minetest.serialize({ + itemstring = self.itemstring, + timer = self.timer, + txture = self.txture, + has_wool = self.has_wool, + lifetime = self.lifetime, + }) +end + +SHEEP_DEF.on_activate = function(self, staticdata, dtime_s) + self.txture = s_texture + s_update_visuals_def(self) + self.anim = s_get_animations() + self.object:set_animation({x=self.anim.stand_START,y=self.anim.stand_END}, s_animation_speed, 0) + self.npc_anim = ANIM_STAND + self.object:setacceleration({x=0,y=-20,z=0}) + self.object:setyaw(self.object:getyaw()+((math.random(0,90)-45)/45*math.pi)) + self.lastpos = self.object:getpos() + self.state = 1 + self.object:set_hp(s_hp) + self.object:set_armor_groups({fleshy=130}) + self.can_punch = true + self.dead = false + self.has_wool = true + self.lifetime = 0 + if staticdata then + local tmp = minetest.deserialize(staticdata) + if tmp and tmp.timer then + self.timer = tmp.timer + end + if tmp and tmp.has_wool ~= nil then + self.has_wool = tmp.has_wool + end + if tmp and tmp.lifetime ~= nil then + self.lifetime = tmp.lifetime + end + if not self.has_wool then + s_update_visuals_def(self) + end + end +end + +SHEEP_DEF.on_punch = function(self, puncher, time_from_last_punch, tool_capabilities, dir) + if not self.can_punch then return end + + --SET RUN state (panic) + self.state = 4 + self.timer = 0 + + if puncher ~= nil then + if time_from_last_punch >= 0.2 then --0.45 + s_hit(self) + local v = self.object:getvelocity() + self.direction = {x=v.x, y=v.y, z=v.z} + self.punch_timer = 0 + self.object:setvelocity({x=dir.x*2.5,y=5.2,z=dir.z*2.5}) + self.state = 9 + -- add wear to sword/tool + creatures.add_wear(puncher, tool_capabilities) + end + + local my_pos = self.object:getpos() + my_pos.y = my_pos.y + 0.5 + + -- drop 1-2 whool when punched + if self.has_wool then + self.has_wool = false + creatures.drop(my_pos, {{name=s_drop, count=math.random(1,2)}}, dir) + end + end + +end + +SHEEP_DEF.on_step = function(self, dtime) + if self.dead then return end + self.timer = self.timer + 0.01 + self.lifetime = self.lifetime + 0.01 + self.turn_timer = self.turn_timer + 0.01 + self.jump_timer = self.jump_timer + 0.01 + self.punch_timer = self.punch_timer + 0.01 + self.sound_timer = self.sound_timer + 0.01 + + local current_pos = self.object:getpos() + local current_node = minetest.env:get_node(current_pos) + + -- death + if self.object:get_hp() < 1 then + self.object:setvelocity({x=0,y=-20,z=0}) + self.object:set_hp(0) + self.state = 0 + self.dead = true + minetest.sound_play(s_sound_dead, {pos = current_pos, max_hear_distance = 10, gain = 0.9}) + self.object:set_animation({x=self.anim.lay_START,y=self.anim.lay_END}, s_animation_speed, 0) + minetest.after(1, function() + if self.has_wool then + local obj = minetest.env:add_item(current_pos, s_drop) + end + self.object:remove() + end) + end + + -- die if old and alone + if self.lifetime > s_life_max then + if creatures.find_mates(current_pos, "sheep", 18) then + self.lifetime = 0 + else + self.object:set_hp(0) + self.state = 0 + self.dead = true + self.object:remove() + return + end + end + + -- die when in water, lava + local wtime = minetest.env:get_timeofday() + local ll = minetest.env:get_node_light({x=current_pos.x,y=current_pos.y+1,z=current_pos.z}) or 0 + local nn = nil + if current_node ~= nil then nn = current_node.name end + if nn ~= nil and nn == "default:water_source" or + nn == "default:water_flowing" or + nn == "default:lava_source" or + nn == "default:lava_flowing" then + self.sound_timer = self.sound_timer + 0.1 + if self.sound_timer >= 0.8 then + local damage = 2 + self.sound_timer = 0 + self.object:set_hp(self.object:get_hp()-damage) + s_hit(self) + end + end + + -- update moving state depending on current state + if self.state < 4 then + if self.timer > 4/self.state then + self.timer = 0 + local new = math.random(1,3) + if self.state == 3 then new = 1 end + self.state = new + s_update_visuals_def(self) + end + elseif self.state == 4 and self.timer > 1.5 then + self.state = 2 + self.timer = 0 + + end + + -- play random sound + if self.sound_timer > self.timer + math.random(5,self.lifetime/2) then + minetest.sound_play(s_sound_normal, {pos = current_pos, max_hear_distance = 10, gain = 0.7}) + self.sound_timer = 0 + end + + -- after knocked back + if self.state >= 8 then + if self.punch_timer > 0.15 then + if self.state == 9 then + self.object:setvelocity({x=self.direction.x*s_chillaxin_speed,y=-20,z=self.direction.z*s_chillaxin_speed}) + self.state = 4 + self.punch_timer = 0 + elseif self.state == 8 then + self.object:setvelocity({x=0,y=-20,z=0}) + self.state = 1 + end + self.can_punch = true + end + end + + --STANDING + if self.state == 1 then + self.yawwer = true + if self.turn_timer > math.random(1,4) then + local last = self.yaw + self.yaw = last + math.random(-0.5,1) + if self.yaw > 22 or self.yaw < -17 then self.yaw = 0 end + self.object:setyaw(self.yaw) + self.turn_timer = 0 + self.direction = {x = math.sin(self.yaw)*-1, y = -20, z = math.cos(self.yaw)} + end + self.object:setvelocity({x=0,y=self.object:getvelocity().y,z=0}) + if self.npc_anim ~= creatures.ANIM_STAND then + self.anim = s_get_animations() + self.object:set_animation({x=self.anim.stand_START,y=self.anim.stand_END}, s_animation_speed, 0) + self.npc_anim = creatures.ANIM_STAND + end + + end + + -- stop walking when not moving + if self.state == 2 and creatures.compare_pos(self.object:getpos(),self.lastpos) and self.jump_timer <= 0.2 then + self.state = 1 + end + + -- WALKING + if self.state == 2 or self.state == 4 then + self.lastpos = self.object:getpos() + local speed = 1 + local anim = creatures.ANIM_WALK + if self.state == 4 then + speed = 2.2 + anim = creatures.ANIM_RUN + end + --[[if self.farmer ~= "" then + --use this for following weed, etc + self.direction = {x = math.sin(self.yaw)*-1, y = -20, z = math.cos(self.yaw)} + end]] + + if self.direction ~= nil then + self.object:setvelocity({x=self.direction.x*s_chillaxin_speed*speed,y=self.object:getvelocity().y,z=self.direction.z*s_chillaxin_speed*speed}) + end + if (self.turn_timer > math.random(0.8,2)) or (self.state == 4 and self.turn_timer > 0.2) then + if self.state == 2 then + local last = self.yaw + self.yaw = last + math.random(-1,0.5) + if self.yaw > 22 or self.yaw < -17 then self.yaw = 0 end + else + self.yaw = 360 * math.random() + end + self.object:setyaw(self.yaw) + self.turn_timer = 0 + self.direction = {x = math.sin(self.yaw)*-1, y = -20, z = math.cos(self.yaw)} + end + if self.npc_anim ~= anim then + self.object:set_animation({x=self.anim.walk_START,y=self.anim.walk_END}, s_animation_speed*speed, 0) + self.npc_anim = anim + end + --jump + if self.direction ~= nil then + if self.jump_timer > 0.2 then + self.jump_timer = 0 + local p = current_pos + local n = minetest.env:get_node({x=p.x + self.direction.x,y=p.y,z=p.z + self.direction.z}) + if n and n.name and minetest.registered_items[n.name].walkable and minetest.registered_items[n.name].groups.fences == nil and n.name ~= "default:fence_wood" then + self.object:setvelocity({x=self.object:getvelocity().x,y=6.85,z=self.object:getvelocity().z}) + end + end + end + end + + -- EATING + if self.state == 3 then--and not self.has_wool then + self.object:setvelocity({x=0,y=self.object:getvelocity().y,z=0}) + local p = {x=current_pos.x,y=current_pos.y-1,z=current_pos.z} + local n = minetest.get_node(p) or nil + if n and n.name and n.name == "default:dirt_with_grass" then + if self.timer == 0 then + s_eat_anim(self) + self.timer = 0.45 + end + minetest.after(1.8,function() + minetest.set_node(p,{name="default:dirt"}) + self.has_wool = true + end) + end + end +end + +minetest.register_entity("creatures:sheep", SHEEP_DEF) diff --git a/sounds/creatures_sheep.1.ogg b/sounds/creatures_sheep.1.ogg new file mode 100644 index 0000000..6fc54ff Binary files /dev/null and b/sounds/creatures_sheep.1.ogg differ diff --git a/sounds/creatures_sheep.2.ogg b/sounds/creatures_sheep.2.ogg new file mode 100644 index 0000000..3fdfceb Binary files /dev/null and b/sounds/creatures_sheep.2.ogg differ diff --git a/sounds/creatures_sheep.3.ogg b/sounds/creatures_sheep.3.ogg new file mode 100644 index 0000000..ab299d1 Binary files /dev/null and b/sounds/creatures_sheep.3.ogg differ diff --git a/spawn.lua b/spawn.lua new file mode 100644 index 0000000..386b8ef --- /dev/null +++ b/spawn.lua @@ -0,0 +1,88 @@ +-- hostile mobs +if not minetest.setting_getbool("only_peaceful_mobs") then + -- zombie + minetest.register_abm({ + nodenames = creatures.z_spawn_nodes, + interval = 40.0, + chance = 7600, + action = function(pos, node, active_object_count, active_object_count_wider) + local n = minetest.get_node_or_nil(pos) + --if n and n.name and n.name ~= "default:stone" and math.random(1,4)>3 then return end + pos.y = pos.y+1 + local ll = minetest.env:get_node_light(pos) + local wtime = minetest.env:get_timeofday() + if not ll then + return + end + if ll >= creatures.z_ll then + return + end + if ll < -1 then + return + end + if minetest.env:get_node(pos).name ~= "air" then + return + end + pos.y = pos.y+1 + if minetest.env:get_node(pos).name ~= "air" then + return + end + creatures.spawn(pos, 1, "creatures:zombie", 2, 20) + end}) + -- ghost + minetest.register_abm({ + nodenames = creatures.g_spawn_nodes, + interval = 44.0, + chance = 8350, + action = function(pos, node, active_object_count, active_object_count_wider) + if pos.y < 0 then return end + pos.y = pos.y+1 + local ll = minetest.env:get_node_light(pos) + local wtime = minetest.env:get_timeofday() + if not ll then + return + end + if ll >= creatures.g_ll then + return + end + if ll < -1 then + return + end + if minetest.env:get_node(pos).name ~= "air" then + return + end + pos.y = pos.y+1 + if minetest.env:get_node(pos).name ~= "air" then + return + end + if (wtime > 0.2 and wtime < 0.805) then + return + end + creatures.spawn(pos, 1, "creatures:ghost", 2, 35) + end}) + +end + +-- peaceful +minetest.register_abm({ + nodenames = creatures.s_spawn_nodes, + interval = 55.0, + chance = 7800, + action = function(pos, node, active_object_count, active_object_count_wider) + if pos.y < 0 then return end + pos.y = pos.y+1 + local ll = minetest.env:get_node_light(pos) or 0 + if ll < 14 then return end + local wtime = minetest.env:get_timeofday() + if minetest.env:get_node(pos).name ~= "air" then + return + end + if minetest.env:get_node(pos).name ~= "air" then + return + end + if (wtime < 0.2 and wtime > 0.805) then + return + end + if math.random(1,10) > 8 then return end + creatures.spawn(pos, math.random(1,2), "creatures:sheep", 5, 35) + end}) \ No newline at end of file diff --git a/spawners.lua b/spawners.lua new file mode 100644 index 0000000..f0a6a4d --- /dev/null +++ b/spawners.lua @@ -0,0 +1,94 @@ +function creatures.register_spawner(mob,size,offset,mesh,texture,range,max,max_ll,min_ll,day_only) + local DUMMY = { + hp_max = 1, + physical = true, + collisionbox = {0,0,0,0,0,0}, + visual = "mesh", + visual_size = size, + mesh = mesh, + textures = texture, + makes_footstep_sound = false, + timer = 0, + automatic_rotate = math.pi * -2.9, + m_name = "dummy" + } + + DUMMY.on_activate = function(self) + self.object:setvelocity({x=0, y=0, z=0}) + self.object:setacceleration({x=0, y=0, z=0}) + self.object:set_armor_groups({immortal=1}) + end + + DUMMY.on_step = function(self, dtime) + self.timer = self.timer + 0.01 + local n = minetest.get_node_or_nil(self.object:getpos()) + if self.timer > 1 then + if n and n.name and n.name ~= "creatures:"..mob.."_spawner" then + self.object:remove() + end + end + end + + DUMMY.on_punch = function(self, hitter) + end + + minetest.register_entity("creatures:dummy_"..mob, DUMMY) + + -- node + minetest.register_node("creatures:"..mob.."_spawner", { + description = mob.." spawner", + paramtype = "light", + tiles = {"creatures_spawner.png"}, + is_ground_content = true, + drawtype = "allfaces", + groups = {cracky=1,level=1}, + drop = "", + on_construct = function(pos) + pos.y = pos.y + offset + minetest.env:add_entity(pos,"creatures:dummy_"..mob) + end, + on_destruct = function(pos) + for _,obj in ipairs(minetest.env:get_objects_inside_radius(pos, 1)) do + if not obj:is_player() then + if obj ~= nil and obj:get_luaentity().m_name == "dummy" then + obj:remove() + end + end + end + end + }) + --abm + minetest.register_abm({ + nodenames = {"creatures:"..mob.."_spawner"}, + interval = 2.0, + chance = 20, + action = function(pos, node, active_object_count, active_object_count_wider) + local res,player_near = false + local mobs = 0 + res,mobs,player_near = creatures.find_mates(pos, mob, range) + if player_near then + if mobs < max then + pos.x = pos.x+1 + local p = minetest.find_node_near(pos, 5, {"air"}) + local ll = minetest.env:get_node_light(p) + local wtime = minetest.env:get_timeofday() + if not ll then return end + if ll > max_ll then return end + if ll < min_ll then return end + if minetest.env:get_node(p).name ~= "air" then return end + p.y = p.y+1 + if minetest.env:get_node(p).name ~= "air" then return end + if not day_only then + if (wtime > 0.2 and wtime < 0.805) and pos.y > 0 then return end + end + + p.y = p.y-1 + creatures.spawn(p, 1, "creatures:"..mob,range,max) + end + end + end }) +end + +-- spawner +creatures.register_spawner("zombie",{x=0.42,y=0.42},0.08,"creatures_mob.x",{"creatures_zombie.png"},17,6,7,-1,false) +creatures.register_spawner("sheep",{x=0.42,y=0.42},-0.3,"creatures_sheep.x",{"creatures_sheep.png"},17,6,18,10,true) diff --git a/textures/creatures_egg_sheep.png b/textures/creatures_egg_sheep.png new file mode 100644 index 0000000..7c82dc8 Binary files /dev/null and b/textures/creatures_egg_sheep.png differ diff --git a/textures/creatures_flesh.png b/textures/creatures_flesh.png new file mode 100644 index 0000000..aae12be Binary files /dev/null and b/textures/creatures_flesh.png differ diff --git a/zombie.lua b/zombie.lua index ab3b32e..efce7cc 100644 --- a/zombie.lua +++ b/zombie.lua @@ -1,10 +1,3 @@ -minetest.register_craftitem("creatures:rotten_flesh", { - description = "Rotten Flesh", - inventory_image = "creatures_rotten_flesh.png", - on_use = minetest.item_eat(1), -}) - - local z_chillaxin_speed = 1.5 local z_animation_speed = 15 local z_mesh = "creatures_mob.x" @@ -14,15 +7,15 @@ local z_drop = "creatures:rotten_flesh" local z_player_radius = 14 local z_hit_radius = 1.4 -local z_ll = 7 +creatures.z_ll = 7 local z_sound_normal = "creatures_zombie" local z_sound_hit = "creatures_zombie_hit" local z_sound_dead = "creatures_zombie_death" -local z_spawn_nodes = {"default:dirt_with_grass","default:stone","default:dirt","default:desert_sand"} -local z_spawner_range = 17 -local z_spawner_max_mobs = 6 +creatures.z_spawn_nodes = {"default:dirt_with_grass","default:stone","default:dirt","default:desert_sand"} +creatures.z_spawner_range = 17 +creatures.z_spawner_max_mobs = 6 local function z_get_animations() return { @@ -38,13 +31,6 @@ local function z_get_animations() } end -local ANIM_STAND = 1 -local ANIM_SIT = 2 -local ANIM_LAY = 3 -local ANIM_WALK = 4 -local ANIM_WALK_MINE = 5 -local ANIM_MINE = 6 - function z_hit(self) local sound = z_sound_hit if self.object:get_hp() < 1 then sound = z_sound_dead end @@ -95,40 +81,6 @@ ZOMBIE_DEF = { mob_name = "zombie" } -spawner_DEF = { - hp_max = 1, - physical = true, - collisionbox = {0,0,0,0,0,0}, - visual = "mesh", - visual_size = {x=0.42,y=0.42}, - mesh = z_mesh, - textures = z_texture, - makes_footstep_sound = false, - timer = 0, - automatic_rotate = math.pi * -2.9, - m_name = "dummy" -} - -spawner_DEF.on_activate = function(self) - z_update_visuals_def(self) - self.object:setvelocity({x=0, y=0, z=0}) - self.object:setacceleration({x=0, y=0, z=0}) - self.object:set_armor_groups({immortal=1}) -end - -spawner_DEF.on_step = function(self, dtime) - self.timer = self.timer + 0.01 - local n = minetest.get_node_or_nil(self.object:getpos()) - if self.timer > 1 then - if n and n.name and n.name ~= "creatures:zombie_spawner" then - self.object:remove() - end - end -end - -spawner_DEF.on_punch = function(self, hitter) -end - ZOMBIE_DEF.on_activate = function(self) z_update_visuals_def(self) self.anim = z_get_animations() @@ -161,24 +113,13 @@ ZOMBIE_DEF.on_punch = function(self, puncher, time_from_last_punch, tool_capabil elseif self.state >= 2 then self.state = 9 end - --add wear to swords - if not minetest.setting_getbool("creative_mode") then - local item = puncher:get_wielded_item() - local def = item:get_definition() - if def and def.tool_capabilities and def.tool_capabilities.groupcaps - and def.tool_capabilities.groupcaps.snappy then - local uses = def.tool_capabilities.groupcaps.snappy.uses or 10 - uses = uses*2 --since default values are too low - local wear = 65535/uses - item:add_wear(wear) - puncher:set_wielded_item(item) - end - end + -- add wear to sword/tool + creatures.add_wear(puncher, tool_capabilities) end end if self.object:get_hp() < 1 then - local obj = minetest.env:add_item(my_pos, z_drop.." "..math.random(0,3)) + creatures.drop(my_pos, {{name=z_drop, count=math.random(0,2)}}, dir) end end @@ -192,7 +133,7 @@ ZOMBIE_DEF.on_step = function(self, dtime) self.sound_timer = self.sound_timer + 0.01 local current_pos = self.object:getpos() - local current_node = minetest.env:get_node(current_pos) + local current_node = minetest.env:get_node_or_nil(current_pos) if self.time_passed == nil then self.time_passed = 0 end @@ -207,18 +148,22 @@ ZOMBIE_DEF.on_step = function(self, dtime) minetest.sound_play(z_sound_dead, {pos = current_pos, max_hear_distance = 10, gain = 0.9}) self.object:set_animation({x=self.anim.lay_START,y=self.anim.lay_END}, z_animation_speed, 0) minetest.after(1, function() - self.object:remove() - local obj = minetest.env:add_item(current_pos, z_drop.." "..math.random(0,3)) + self.object:remove() + if self.object:get_hp() < 1 then + creatures.drop(current_pos, {{name=z_drop, count=math.random(0,2)}}) + end end) end -- die when in water, lava or sunlight local wtime = minetest.env:get_timeofday() local ll = minetest.env:get_node_light({x=current_pos.x,y=current_pos.y+1,z=current_pos.z}) or 0 - if current_node.name == "default:water_source" or - current_node.name == "default:water_flowing" or - current_node.name == "default:lava_source" or - current_node.name == "default:lava_flowing" or + local nn = nil + if current_node ~= nil then nn = current_node.name end + if nn ~= nil and nn == "default:water_source" or + nn == "default:water_flowing" or + nn == "default:lava_source" or + nn == "default:lava_flowing" or (wtime > 0.2 and wtime < 0.805 and current_pos.y > 0 and ll > 11) then self.sound_timer = self.sound_timer + dtime if self.sound_timer >= 0.8 then @@ -282,17 +227,17 @@ ZOMBIE_DEF.on_step = function(self, dtime) end end - if self.attacker == "" and self.turn_timer > math.random(1,4) then--and yawwer == true then + if self.attacker == "" and self.turn_timer > math.random(1,4) then self.yaw = 360 * math.random() self.object:setyaw(self.yaw) self.turn_timer = 0 self.direction = {x = math.sin(self.yaw)*-1, y = -20, z = math.cos(self.yaw)} end self.object:setvelocity({x=0,y=self.object:getvelocity().y,z=0}) - if self.npc_anim ~= ANIM_STAND then + if self.npc_anim ~= creatures.ANIM_STAND then self.anim = z_get_animations() self.object:set_animation({x=self.anim.stand_START,y=self.anim.stand_END}, z_animation_speed, 0) - self.npc_anim = ANIM_STAND + self.npc_anim = creatures.ANIM_STAND end if self.attacker ~= "" then self.direction = {x = math.sin(self.yaw)*-1, y = -20, z = math.cos(self.yaw)} @@ -333,8 +278,7 @@ ZOMBIE_DEF.on_step = function(self, dtime) if self.state == 2 then if self.attacker ~= "" then - self.direction = {x = math.sin(self.yaw)*-1, y = -20, z = math.cos(self.yaw)} - --self.state = 2 + self.direction = {x=math.sin(self.yaw)*-1, y=-20, z=math.cos(self.yaw)} end if self.direction ~= nil then self.object:setvelocity({x=self.direction.x*z_chillaxin_speed,y=self.object:getvelocity().y,z=self.direction.z*z_chillaxin_speed}) @@ -343,25 +287,21 @@ ZOMBIE_DEF.on_step = function(self, dtime) self.yaw = 360 * math.random() self.object:setyaw(self.yaw) self.turn_timer = 0 - self.direction = {x = math.sin(self.yaw)*-1, y = -20, z = math.cos(self.yaw)} + self.direction = {x=math.sin(self.yaw)*-1, y=-20, z=math.cos(self.yaw)} end - if self.npc_anim ~= ANIM_WALK then - self.npc_anim = ANIM_WALK - --self.anim = z_get_animations() + if self.npc_anim ~= creatures.ANIM_WALK then + self.npc_anim = creatures.ANIM_WALK self.object:set_animation({x=self.anim.walk_START,y=self.anim.walk_END}, z_animation_speed, 0) - self.npc_anim = ANIM_WALK end --jump if self.direction ~= nil then - if self.jump_timer > 0.3 then + if self.jump_timer > 0.25 then self.jump_timer = 0 local p = current_pos - local n = minetest.env:get_node({x=p.x + self.direction.x,y=p.y-0.5,z=p.z + self.direction.z}) - --print(n.name) - if n and n.name and minetest.registered_items[n.name].walkable then - self.object:setvelocity({x=self.object:getvelocity().x,y=7,z=self.object:getvelocity().z}) + local n = minetest.env:get_node_or_nil({x=p.x + self.direction.x,y=p.y-0.5,z=p.z + self.direction.z}) + if n and n.name and minetest.registered_items[n.name].walkable and minetest.registered_items[n.name].groups.fences == nil and n.name ~= "default:fence_wood" then + self.object:setvelocity({x=self.object:getvelocity().x,y=7.1,z=self.object:getvelocity().z}) end - --end end end @@ -384,115 +324,3 @@ ZOMBIE_DEF.on_step = function(self, dtime) end minetest.register_entity("creatures:zombie", ZOMBIE_DEF) -minetest.register_entity("creatures:z_spawner_mob", spawner_DEF) - - ---spawn-egg/spawner - -minetest.register_craftitem("creatures:zombie_spawn_egg", { - description = "Zombie spawn-egg", - inventory_image = "creatures_egg_zombie.png", - liquids_pointable = false, - stack_max = 99, - on_place = function(itemstack, placer, pointed_thing) - if pointed_thing.type == "node" then - local p = pointed_thing.above - p.y = p.y+1 - creatures.spawn(p, 1, "creatures:zombie") - if not minetest.setting_getbool("creative_mode") then itemstack:take_item() end - return itemstack - end - end, - -}) - -minetest.register_node("creatures:zombie_spawner", { - description = "Zombie spawner", - paramtype = "light", - tiles = {"creatures_spawner.png"}, - is_ground_content = true, - drawtype = "allfaces", - groups = {cracky=1,level=1}, - drop = "", - on_construct = function(pos) - pos.y = pos.y + 0.08 - minetest.env:add_entity(pos,"creatures:z_spawner_mob") - end, - on_destruct = function(pos) - for _,obj in ipairs(minetest.env:get_objects_inside_radius(pos, 1)) do - if not obj:is_player() then - if obj ~= nil and obj:get_luaentity().m_name == "dummy" then - obj:remove() - end - end - end - end -}) - -if not minetest.setting_getbool("only_peaceful_mobs") then - -- spawn randomly in world - minetest.register_abm({ - nodenames = z_spawn_nodes, - interval = 40.0, - chance = 7200, - action = function(pos, node, active_object_count, active_object_count_wider) - local n = minetest.get_node(pos) - --if n and n.name and n.name ~= "default:stone" and math.random(1,4)>3 then return end - pos.y = pos.y+1 - local ll = minetest.env:get_node_light(pos) - local wtime = minetest.env:get_timeofday() - if not ll then - return - end - if ll >= z_ll then - return - end - if ll < -1 then - return - end - if minetest.env:get_node(pos).name ~= "air" then - return - end - pos.y = pos.y+1 - if minetest.env:get_node(pos).name ~= "air" then - return - end - creatures.spawn(pos, 1, "creatures:zombie") - end - }) - - minetest.register_abm({ - nodenames = {"creatures:zombie_spawner"}, - interval = 2.0, - chance = 20, - action = function(pos, node, active_object_count, active_object_count_wider) - local player_near = false - local mobs = 0 - for _,obj in ipairs(minetest.env:get_objects_inside_radius(pos, z_spawner_range)) do - if obj:is_player() then - player_near = true - else - if obj:get_luaentity().mob_name == "zombie" then mobs = mobs + 1 end - end - end - if player_near then - if mobs < z_spawner_max_mobs then - pos.x = pos.x+1 - local p = minetest.find_node_near(pos, 5, {"air"}) - --p.y = p.y+1 - local ll = minetest.env:get_node_light(p) - local wtime = minetest.env:get_timeofday() - if not ll then return end - if ll > 8 then return end - if ll < -1 then return end - if minetest.env:get_node(p).name ~= "air" then return end - p.y = p.y+1 - if minetest.env:get_node(p).name ~= "air" then return end - if (wtime > 0.2 and wtime < 0.805) and pos.y > 0 then return end - p.y = p.y-1 - creatures.spawn(p, 1, "creatures:zombie") - end - end - end - }) -end