diff --git a/mods/beds/Changelog.txt b/mods/beds/Changelog.txt new file mode 100644 index 0000000..988db2a --- /dev/null +++ b/mods/beds/Changelog.txt @@ -0,0 +1,18 @@ +1.0.1 beta +---------- +- Add backwards compatibility with PilzAdam's beds mod +- Fix placement +- Fix small bugs +- Prevent possible crash + +1.1 +--- +- Add fancy bed model (based on jp's model) +- Add API to register beds +- Allow players always to detach from bed (by donat-b) +- If more than 50% of players want sleep they can skip the night +- Don't show sleep dialog in singleplayer + +1.1.1 +----- +- Prevent possbile crash by trying to reposition leaving players diff --git a/mods/beds/README.txt b/mods/beds/README.txt new file mode 100644 index 0000000..21d4433 --- /dev/null +++ b/mods/beds/README.txt @@ -0,0 +1,29 @@ +Minetest mod "Beds" +=================== +by BlockMen (c) 2014-2015 + +Version: 1.1.1 + +About +~~~~~ +This mod adds a bed to Minetest which allows to skip the night. To sleep rightclick the bed, if playing +in singleplayer mode the night gets skipped imideatly. If playing on server you get shown how many other +players are in bed too. If all players are sleeping the night gets skipped aswell. Also the night skip can be forced +if more than 50% of the players are lying in bed and use this option. + +Another feature is a controled respawning. If you have slept in bed (not just lying in it) your respawn point +is set to the beds location and you will respawn there after death. +You can disable the respawn at beds by setting "enable_bed_respawn = false" in minetest.conf + + + +License of source code, textures: WTFPL +--------------------------------------- +(c) Copyright BlockMen (2014-2015) + + +This program is free software. It comes without any warranty, to +the extent permitted by applicable law. You can redistribute it +and/or modify it under the terms of the Do What The Fuck You Want +To Public License, Version 2, as published by Sam Hocevar. See +http://sam.zoy.org/wtfpl/COPYING for more details. diff --git a/mods/beds/api.lua b/mods/beds/api.lua new file mode 100644 index 0000000..9104ee7 --- /dev/null +++ b/mods/beds/api.lua @@ -0,0 +1,111 @@ +function beds.register_bed(name, def) + minetest.register_node(name .. "_bottom", { + description = def.description, + inventory_image = def.inventory_image, + wield_image = def.wield_image, + drawtype = "nodebox", + tiles = def.tiles.bottom, + paramtype = "light", + paramtype2 = "facedir", + is_ground_content = false, + stack_max = 1, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, bed = 1}, + sounds = default.node_sound_wood_defaults(), + node_box = { + type = "fixed", + fixed = def.nodebox.bottom, + }, + selection_box = { + type = "fixed", + fixed = def.selectionbox, + + }, + after_place_node = function(pos, placer, itemstack) + local n = minetest.get_node_or_nil(pos) + if not n or not n.param2 then + minetest.remove_node(pos) + return true + end + local dir = minetest.facedir_to_dir(n.param2) + local p = vector.add(pos, dir) + local n2 = minetest.get_node_or_nil(p) + local def = n2 and minetest.registered_items[n2.name] + if not def or not def.buildable_to then + minetest.remove_node(pos) + return true + end + minetest.set_node(p, {name = n.name:gsub("%_bottom", "_top"), param2 = n.param2}) + return false + end, + on_destruct = function(pos) + local n = minetest.get_node_or_nil(pos) + if not n then return end + local dir = minetest.facedir_to_dir(n.param2) + local p = vector.add(pos, dir) + local n2 = minetest.get_node(p) + if minetest.get_item_group(n2.name, "bed") == 2 and n.param2 == n2.param2 then + minetest.remove_node(p) + end + end, + on_rightclick = function(pos, node, clicker) + beds.on_rightclick(pos, clicker) + end, + on_rotate = function(pos, node, user, mode, new_param2) + local dir = minetest.facedir_to_dir(node.param2) + local p = vector.add(pos, dir) + local node2 = minetest.get_node_or_nil(p) + if not node2 or not minetest.get_item_group(node2.name, "bed") == 2 or + not node.param2 == node2.param2 then + return false + end + if minetest.is_protected(p, user:get_player_name()) then + minetest.record_protection_violation(p, user:get_player_name()) + return false + end + if mode ~= screwdriver.ROTATE_FACE then + return false + end + local newp = vector.add(pos, minetest.facedir_to_dir(new_param2)) + local node3 = minetest.get_node_or_nil(newp) + local def = node3 and minetest.registered_nodes[node3.name] + if not def or not def.buildable_to then + return false + end + if minetest.is_protected(newp, user:get_player_name()) then + minetest.record_protection_violation(newp, user:get_player_name()) + return false + end + node.param2 = new_param2 + minetest.swap_node(pos, node) + minetest.remove_node(p) + minetest.set_node(newp, {name = node.name:gsub("%_bottom", "_top"), param2 = new_param2}) + return true + end, + }) + + minetest.register_node(name .. "_top", { + drawtype = "nodebox", + tiles = def.tiles.top, + paramtype = "light", + paramtype2 = "facedir", + is_ground_content = false, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, bed = 2}, + sounds = default.node_sound_wood_defaults(), + node_box = { + type = "fixed", + fixed = def.nodebox.top, + }, + selection_box = { + type = "fixed", + fixed = {0, 0, 0, 0, 0, 0}, + }, + }) + + minetest.register_alias(name, name .. "_bottom") + + -- register recipe + minetest.register_craft({ + output = name, + recipe = def.recipe + }) +end diff --git a/mods/beds/beds.lua b/mods/beds/beds.lua new file mode 100644 index 0000000..43bf98e --- /dev/null +++ b/mods/beds/beds.lua @@ -0,0 +1,88 @@ +-- fancy shaped bed +beds.register_bed("beds:fancy_bed", { + description = "Fancy Bed", + inventory_image = "beds_bed_fancy.png", + wield_image = "beds_bed_fancy.png", + tiles = { + bottom = { + "beds_bed_top1.png", + "default_wood.png", + "beds_bed_side1.png", + "beds_bed_side1.png^[transformFX", + "default_wood.png", + "beds_bed_foot.png", + }, + top = { + "beds_bed_top2.png", + "default_wood.png", + "beds_bed_side2.png", + "beds_bed_side2.png^[transformFX", + "beds_bed_head.png", + "default_wood.png", + } + }, + nodebox = { + bottom = { + {-0.5, -0.5, -0.5, -0.375, -0.065, -0.4375}, + {0.375, -0.5, -0.5, 0.5, -0.065, -0.4375}, + {-0.5, -0.375, -0.5, 0.5, -0.125, -0.4375}, + {-0.5, -0.375, -0.5, -0.4375, -0.125, 0.5}, + {0.4375, -0.375, -0.5, 0.5, -0.125, 0.5}, + {-0.4375, -0.3125, -0.4375, 0.4375, -0.0625, 0.5}, + }, + top = { + {-0.5, -0.5, 0.4375, -0.375, 0.1875, 0.5}, + {0.375, -0.5, 0.4375, 0.5, 0.1875, 0.5}, + {-0.5, 0, 0.4375, 0.5, 0.125, 0.5}, + {-0.5, -0.375, 0.4375, 0.5, -0.125, 0.5}, + {-0.5, -0.375, -0.5, -0.4375, -0.125, 0.5}, + {0.4375, -0.375, -0.5, 0.5, -0.125, 0.5}, + {-0.4375, -0.3125, -0.5, 0.4375, -0.0625, 0.4375}, + } + }, + selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5}, + recipe = { + {"", "", "group:stick"}, + {"wool:red", "wool:red", "wool:white"}, + {"group:wood", "group:wood", "group:wood"}, + }, +}) + +-- simple shaped bed +beds.register_bed("beds:bed", { + description = "Simple Bed", + inventory_image = "beds_bed.png", + wield_image = "beds_bed.png", + tiles = { + bottom = { + "beds_bed_top_bottom.png^[transformR90", + "default_wood.png", + "beds_bed_side_bottom_r.png", + "beds_bed_side_bottom_r.png^[transformfx", + "beds_transparent.png", + "beds_bed_side_bottom.png" + }, + top = { + "beds_bed_top_top.png^[transformR90", + "default_wood.png", + "beds_bed_side_top_r.png", + "beds_bed_side_top_r.png^[transformfx", + "beds_bed_side_top.png", + "beds_transparent.png", + } + }, + nodebox = { + bottom = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5}, + top = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5}, + }, + selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5}, + recipe = { + {"wool:red", "wool:red", "wool:white"}, + {"group:wood", "group:wood", "group:wood"} + }, + +}) + +-- aliases for PA's beds mod +minetest.register_alias("beds:bed_bottom_red", "beds:bed_bottom") +minetest.register_alias("beds:bed_top_red", "beds:bed_top") diff --git a/mods/beds/depends.txt b/mods/beds/depends.txt new file mode 100644 index 0000000..470ec30 --- /dev/null +++ b/mods/beds/depends.txt @@ -0,0 +1,2 @@ +default +wool diff --git a/mods/beds/functions.lua b/mods/beds/functions.lua new file mode 100644 index 0000000..4c5c7d1 --- /dev/null +++ b/mods/beds/functions.lua @@ -0,0 +1,213 @@ +local player_in_bed = 0 +local is_sp = minetest.is_singleplayer() +local enable_respawn = minetest.setting_getbool("enable_bed_respawn") +if enable_respawn == nil then + enable_respawn = true +end + + +-- helper functions + +local function get_look_yaw(pos) + local n = minetest.get_node(pos) + if n.param2 == 1 then + return 7.9, n.param2 + elseif n.param2 == 3 then + return 4.75, n.param2 + elseif n.param2 == 0 then + return 3.15, n.param2 + else + return 6.28, n.param2 + end +end + +local function check_in_beds(players) + local in_bed = beds.player + if not players then + players = minetest.get_connected_players() + end + + for n, player in ipairs(players) do + local name = player:get_player_name() + if not in_bed[name] then + return false + end + end + + return #players > 0 +end + +local function lay_down(player, pos, bed_pos, state, skip) + local name = player:get_player_name() + local hud_flags = player:hud_get_flags() + + if not player or not name then + return + end + + -- stand up + if state ~= nil and not state then + local p = beds.pos[name] or nil + if beds.player[name] ~= nil then + beds.player[name] = nil + player_in_bed = player_in_bed - 1 + end + -- skip here to prevent sending player specific changes (used for leaving players) + if skip then + return + end + if p then + player:setpos(p) + end + + -- physics, eye_offset, etc + player:set_eye_offset({x=0,y=0,z=0}, {x=0,y=0,z=0}) + player:set_look_yaw(math.random(1, 180)/100) + default.player_attached[name] = false + player:set_physics_override(1, 1, 1) + hud_flags.wielditem = true + default.player_set_animation(player, "stand" , 30) + + -- lay down + else + beds.player[name] = 1 + beds.pos[name] = pos + player_in_bed = player_in_bed + 1 + + -- physics, eye_offset, etc + player:set_eye_offset({x=0,y=-13,z=0}, {x=0,y=0,z=0}) + local yaw, param2 = get_look_yaw(bed_pos) + player:set_look_yaw(yaw) + local dir = minetest.facedir_to_dir(param2) + local p = {x=bed_pos.x+dir.x/2,y=bed_pos.y,z=bed_pos.z+dir.z/2} + player:set_physics_override(0, 0, 0) + player:setpos(p) + default.player_attached[name] = true + hud_flags.wielditem = false + default.player_set_animation(player, "lay" , 0) + end + + player:hud_set_flags(hud_flags) +end + +local function update_formspecs(finished) + local ges = #minetest.get_connected_players() + local form_n = "" + local is_majority = (ges/2) < player_in_bed + + if finished then + form_n = beds.formspec .. + "label[2.7,11; Good morning.]" + else + form_n = beds.formspec .. + "label[2.2,11;"..tostring(player_in_bed).." of "..tostring(ges).." players are in bed]" + if is_majority then + form_n = form_n .. + "button_exit[2,8;4,0.75;force;Force night skip]" + end + end + + for name,_ in pairs(beds.player) do + minetest.show_formspec(name, "beds_form", form_n) + end +end + + +-- public functions + +function beds.kick_players() + for name,_ in pairs(beds.player) do + local player = minetest.get_player_by_name(name) + lay_down(player, nil, nil, false) + end +end + +function beds.skip_night() + minetest.set_timeofday(0.23) + beds.set_spawns() +end + +function beds.on_rightclick(pos, player) + local name = player:get_player_name() + local ppos = player:getpos() + local tod = minetest.get_timeofday() + + if tod > 0.2 and tod < 0.805 then + if beds.player[name] then + lay_down(player, nil, nil, false) + end + minetest.chat_send_player(name, "You can only sleep at night.") + return + end + + -- move to bed + if not beds.player[name] then + lay_down(player, ppos, pos) + else + lay_down(player, nil, nil, false) + end + + if not is_sp then + update_formspecs(false) + end + + -- skip the night and let all players stand up + if check_in_beds() then + minetest.after(2, function() + beds.skip_night() + if not is_sp then + update_formspecs(true) + end + beds.kick_players() + end) + end +end + + +-- callbacks + +minetest.register_on_joinplayer(function(player) + beds.read_spawns() +end) + +-- respawn player at bed if enabled and valid position is found +minetest.register_on_respawnplayer(function(player) + if not enable_respawn then + return false + end + local name = player:get_player_name() + local pos = beds.spawn[name] or nil + if pos then + player:setpos(pos) + return true + end +end) + +minetest.register_on_leaveplayer(function(player) + local name = player:get_player_name() + lay_down(player, nil, nil, false, true) + beds.player[name] = nil + if check_in_beds() then + minetest.after(2, function() + beds.skip_night() + update_formspecs(true) + beds.kick_players() + end) + end +end) + +minetest.register_on_player_receive_fields(function(player, formname, fields) + if formname ~= "beds_form" then + return + end + if fields.quit or fields.leave then + lay_down(player, nil, nil, false) + update_formspecs(false) + end + + if fields.force then + beds.skip_night() + update_formspecs(true) + beds.kick_players() + end +end) diff --git a/mods/beds/init.lua b/mods/beds/init.lua new file mode 100644 index 0000000..09982c2 --- /dev/null +++ b/mods/beds/init.lua @@ -0,0 +1,16 @@ +beds = {} +beds.player = {} +beds.pos = {} +beds.spawn = {} + +beds.formspec = "size[8,15;true]".. + "bgcolor[#080808BB; true]".. + "button_exit[2,12;4,0.75;leave;Leave Bed]" + +local modpath = minetest.get_modpath("beds") + +-- load files +dofile(modpath.."/functions.lua") +dofile(modpath.."/api.lua") +dofile(modpath.."/beds.lua") +dofile(modpath.."/spawns.lua") diff --git a/mods/beds/spawns.lua b/mods/beds/spawns.lua new file mode 100644 index 0000000..6e087f8 --- /dev/null +++ b/mods/beds/spawns.lua @@ -0,0 +1,58 @@ +local world_path = minetest.get_worldpath() +local org_file = world_path .. "/beds_spawns" +local file = world_path .. "/beds_spawns" +local bkwd = false + +-- check for PA's beds mod spawns +local cf = io.open(world_path .. "/beds_player_spawns", "r") +if cf ~= nil then + io.close(cf) + file = world_path .. "/beds_player_spawns" + bkwd = true +end + +function beds.read_spawns() + local spawns = beds.spawn + local input = io.open(file, "r") + if input and not bkwd then + repeat + local x = input:read("*n") + if x == nil then + break + end + local y = input:read("*n") + local z = input:read("*n") + local name = input:read("*l") + spawns[name:sub(2)] = {x = x, y = y, z = z} + until input:read(0) == nil + io.close(input) + elseif input and bkwd then + beds.spawn = minetest.deserialize(input:read("*all")) + input:close() + beds.save_spawns() + os.rename(file, file .. ".backup") + file = org_file + else + spawns = {} + end +end + +function beds.save_spawns() + if not beds.spawn then + return + end + local output = io.open(org_file, "w") + for i, v in pairs(beds.spawn) do + output:write(v.x.." "..v.y.." "..v.z.." "..i.."\n") + end + io.close(output) +end + +function beds.set_spawns() + for name,_ in pairs(beds.player) do + local player = minetest.get_player_by_name(name) + local p = player:getpos() + beds.spawn[name] = p + end + beds.save_spawns() +end diff --git a/mods/beds/textures/beds_bed.png b/mods/beds/textures/beds_bed.png new file mode 100644 index 0000000..5c0054c Binary files /dev/null and b/mods/beds/textures/beds_bed.png differ diff --git a/mods/beds/textures/beds_bed_fancy.png b/mods/beds/textures/beds_bed_fancy.png new file mode 100644 index 0000000..4f9e8a7 Binary files /dev/null and b/mods/beds/textures/beds_bed_fancy.png differ diff --git a/mods/beds/textures/beds_bed_foot.png b/mods/beds/textures/beds_bed_foot.png new file mode 100644 index 0000000..74d84c8 Binary files /dev/null and b/mods/beds/textures/beds_bed_foot.png differ diff --git a/mods/beds/textures/beds_bed_head.png b/mods/beds/textures/beds_bed_head.png new file mode 100644 index 0000000..763f5e1 Binary files /dev/null and b/mods/beds/textures/beds_bed_head.png differ diff --git a/mods/beds/textures/beds_bed_side1.png b/mods/beds/textures/beds_bed_side1.png new file mode 100644 index 0000000..1ed8158 Binary files /dev/null and b/mods/beds/textures/beds_bed_side1.png differ diff --git a/mods/beds/textures/beds_bed_side2.png b/mods/beds/textures/beds_bed_side2.png new file mode 100644 index 0000000..9d1384d Binary files /dev/null and b/mods/beds/textures/beds_bed_side2.png differ diff --git a/mods/beds/textures/beds_bed_side_bottom.png b/mods/beds/textures/beds_bed_side_bottom.png new file mode 100644 index 0000000..99ff309 Binary files /dev/null and b/mods/beds/textures/beds_bed_side_bottom.png differ diff --git a/mods/beds/textures/beds_bed_side_bottom_r.png b/mods/beds/textures/beds_bed_side_bottom_r.png new file mode 100644 index 0000000..6f870e8 Binary files /dev/null and b/mods/beds/textures/beds_bed_side_bottom_r.png differ diff --git a/mods/beds/textures/beds_bed_side_top.png b/mods/beds/textures/beds_bed_side_top.png new file mode 100644 index 0000000..b2807c5 Binary files /dev/null and b/mods/beds/textures/beds_bed_side_top.png differ diff --git a/mods/beds/textures/beds_bed_side_top_r.png b/mods/beds/textures/beds_bed_side_top_r.png new file mode 100644 index 0000000..429ad7d Binary files /dev/null and b/mods/beds/textures/beds_bed_side_top_r.png differ diff --git a/mods/beds/textures/beds_bed_top1.png b/mods/beds/textures/beds_bed_top1.png new file mode 100644 index 0000000..b6fcc2c Binary files /dev/null and b/mods/beds/textures/beds_bed_top1.png differ diff --git a/mods/beds/textures/beds_bed_top2.png b/mods/beds/textures/beds_bed_top2.png new file mode 100644 index 0000000..2fe5bf2 Binary files /dev/null and b/mods/beds/textures/beds_bed_top2.png differ diff --git a/mods/beds/textures/beds_bed_top_bottom.png b/mods/beds/textures/beds_bed_top_bottom.png new file mode 100644 index 0000000..9b78be6 Binary files /dev/null and b/mods/beds/textures/beds_bed_top_bottom.png differ diff --git a/mods/beds/textures/beds_bed_top_top.png b/mods/beds/textures/beds_bed_top_top.png new file mode 100644 index 0000000..e877c80 Binary files /dev/null and b/mods/beds/textures/beds_bed_top_top.png differ diff --git a/mods/beds/textures/beds_transparent.png b/mods/beds/textures/beds_transparent.png new file mode 100644 index 0000000..2dc0e3d Binary files /dev/null and b/mods/beds/textures/beds_transparent.png differ diff --git a/mods/boats/init.lua b/mods/boats/init.lua index da013ab..8d61dc5 100644 --- a/mods/boats/init.lua +++ b/mods/boats/init.lua @@ -34,7 +34,7 @@ local boat = { physical = true, collisionbox = {-0.5, -0.4, -0.5, 0.5, 0.3, 0.5}, visual = "mesh", - mesh = "boat.x", + mesh = "boat.obj", textures = {"default_wood.png"}, driver = nil, diff --git a/mods/boats/models/boat.x b/mods/boats/models/boat.x deleted file mode 100644 index 581998e..0000000 --- a/mods/boats/models/boat.x +++ /dev/null @@ -1,11110 +0,0 @@ -xof 0303txt 0032 - -Frame Root { - FrameTransformMatrix { - 0.000000, 0.000000, 1.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.000000, 1.000000;; - } - Frame Plane { - FrameTransformMatrix { - 0.000000,-9.104475, 0.000000, 0.000000, - 9.104475, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 9.104475, 0.000000, - -0.310965, 0.042220,-1.967153, 1.000000;; - } - Mesh { //Plane_000 Mesh - 2952; - 0.750000;-0.500000;-0.117178;, - 0.750000;-0.625000;-0.117178;, - 0.750000;-0.625000; 0.000000;, - 0.750000;-0.500000; 0.000000;, - -0.625000;-0.875000;-0.117178;, - -0.625000;-0.750000;-0.117178;, - -0.625000;-0.750000; 0.000000;, - -0.625000;-0.875000; 0.000000;, - 0.250000;-0.625000;-0.117178;, - 0.250000;-0.750000;-0.117178;, - 0.250000;-0.750000; 0.000000;, - 0.250000;-0.625000; 0.000000;, - -0.250000;-0.375000;-0.117178;, - -0.250000;-0.500000;-0.117178;, - -0.250000;-0.500000; 0.000000;, - -0.250000;-0.375000; 0.000000;, - -0.250000; 0.750000;-0.117178;, - -0.250000; 0.625000;-0.117178;, - -0.250000; 0.625000; 0.000000;, - -0.250000; 0.750000; 0.000000;, - 0.375000; 0.750000;-0.117178;, - 0.375000; 0.875000;-0.117178;, - 0.375000; 0.875000; 0.000000;, - 0.375000; 0.750000; 0.000000;, - -0.500000; 1.000000;-0.117178;, - -0.375000; 1.000000;-0.117178;, - -0.375000; 1.000000; 0.000000;, - -0.500000; 1.000000; 0.000000;, - -0.125000; 0.250000;-0.117178;, - -0.125000; 0.375000;-0.117178;, - -0.125000; 0.375000; 0.000000;, - -0.125000; 0.250000; 0.000000;, - -0.125000; 1.000000;-0.117178;, - 0.000000; 1.000000;-0.117178;, - 0.000000; 1.000000; 0.000000;, - -0.125000; 1.000000; 0.000000;, - 0.375000;-0.250000;-0.117178;, - 0.375000;-0.125000;-0.117178;, - 0.375000;-0.125000; 0.000000;, - 0.375000;-0.250000; 0.000000;, - 0.750000; 0.000000;-0.117178;, - 0.750000;-0.125000;-0.117178;, - 0.750000;-0.125000; 0.000000;, - 0.750000; 0.000000; 0.000000;, - -0.250000;-0.125000;-0.117178;, - -0.250000;-0.250000;-0.117178;, - -0.250000;-0.250000; 0.000000;, - -0.250000;-0.125000; 0.000000;, - 0.375000; 0.375000;-0.117178;, - 0.375000; 0.500000;-0.117178;, - 0.375000; 0.500000; 0.000000;, - 0.375000; 0.375000; 0.000000;, - 0.750000; 0.250000;-0.117178;, - 0.750000; 0.125000;-0.117178;, - 0.750000; 0.125000; 0.000000;, - 0.750000; 0.250000; 0.000000;, - -0.250000;-1.000000;-0.117178;, - -0.375000;-1.000000;-0.117178;, - -0.375000;-1.000000; 0.000000;, - -0.250000;-1.000000; 0.000000;, - -0.625000;-0.125000;-0.117178;, - -0.625000; 0.000000;-0.117178;, - -0.625000; 0.000000; 0.000000;, - -0.625000;-0.125000; 0.000000;, - 0.375000;-0.625000;-0.117178;, - 0.375000;-0.500000;-0.117178;, - 0.375000;-0.500000; 0.000000;, - 0.375000;-0.625000; 0.000000;, - 0.250000; 1.000000;-0.117178;, - 0.250000; 0.875000;-0.117178;, - 0.250000; 0.875000; 0.000000;, - 0.250000; 1.000000; 0.000000;, - -0.125000; 0.875000; 0.000000;, - -0.125000; 1.000000; 0.000000;, - -0.250000; 1.000000; 0.000000;, - -0.250000; 0.875000; 0.000000;, - -0.125000; 0.750000; 0.000000;, - -0.125000; 0.875000; 0.000000;, - -0.250000; 0.875000; 0.000000;, - -0.250000; 0.750000; 0.000000;, - -0.625000; 0.500000;-0.117178;, - -0.625000; 0.625000;-0.117178;, - -0.625000; 0.625000; 0.000000;, - -0.625000; 0.500000; 0.000000;, - -0.125000;-0.125000; 0.000000;, - -0.125000; 0.000000; 0.000000;, - -0.250000; 0.000000; 0.000000;, - -0.250000;-0.125000; 0.000000;, - -0.125000;-0.250000; 0.000000;, - -0.125000;-0.125000; 0.000000;, - -0.250000;-0.125000; 0.000000;, - -0.250000;-0.250000; 0.000000;, - -0.125000;-0.375000;-0.117178;, - -0.125000;-0.250000;-0.117178;, - -0.125000;-0.250000; 0.000000;, - -0.125000;-0.375000; 0.000000;, - 0.375000; 0.875000; 0.000000;, - 0.375000; 1.000000; 0.000000;, - 0.250000; 1.000000; 0.000000;, - 0.250000; 0.875000; 0.000000;, - 0.375000; 0.750000; 0.000000;, - 0.375000; 0.875000; 0.000000;, - 0.250000; 0.875000; 0.000000;, - 0.250000; 0.750000; 0.000000;, - 0.250000;-0.375000;-0.117178;, - 0.250000;-0.500000;-0.117178;, - 0.250000;-0.500000; 0.000000;, - 0.250000;-0.375000; 0.000000;, - 0.375000; 0.375000; 0.000000;, - 0.375000; 0.500000; 0.000000;, - 0.250000; 0.500000; 0.000000;, - 0.250000; 0.375000; 0.000000;, - 0.375000; 0.250000; 0.000000;, - 0.375000; 0.375000; 0.000000;, - 0.250000; 0.375000; 0.000000;, - 0.250000; 0.250000; 0.000000;, - -0.125000; 0.000000;-0.117178;, - -0.125000; 0.125000;-0.117178;, - -0.125000; 0.125000; 0.000000;, - -0.125000; 0.000000; 0.000000;, - -0.625000; 0.875000; 0.000000;, - -0.625000; 1.000000; 0.000000;, - -0.750000; 1.000000; 0.000000;, - -0.750000; 0.875000; 0.000000;, - -0.625000; 0.750000; 0.000000;, - -0.625000; 0.875000; 0.000000;, - -0.750000; 0.875000; 0.000000;, - -0.750000; 0.750000; 0.000000;, - -0.250000;-0.750000;-0.117178;, - -0.250000;-0.875000;-0.117178;, - -0.250000;-0.875000; 0.000000;, - -0.250000;-0.750000; 0.000000;, - -0.625000; 0.375000; 0.000000;, - -0.625000; 0.500000; 0.000000;, - -0.750000; 0.500000; 0.000000;, - -0.750000; 0.375000; 0.000000;, - -0.625000; 0.250000; 0.000000;, - -0.625000; 0.375000; 0.000000;, - -0.750000; 0.375000; 0.000000;, - -0.750000; 0.250000; 0.000000;, - 0.750000; 0.625000;-0.117178;, - 0.750000; 0.500000;-0.117178;, - 0.750000; 0.500000; 0.000000;, - 0.750000; 0.625000; 0.000000;, - -0.125000; 0.375000; 0.000000;, - -0.125000; 0.500000; 0.000000;, - -0.250000; 0.500000; 0.000000;, - -0.250000; 0.375000; 0.000000;, - -0.125000; 0.250000; 0.000000;, - -0.125000; 0.375000; 0.000000;, - -0.250000; 0.375000; 0.000000;, - -0.250000; 0.250000; 0.000000;, - 0.125000; 1.000000;-0.117178;, - 0.250000; 1.000000;-0.117178;, - 0.250000; 1.000000; 0.000000;, - 0.125000; 1.000000; 0.000000;, - -0.625000;-0.125000; 0.000000;, - -0.625000; 0.000000; 0.000000;, - -0.750000; 0.000000; 0.000000;, - -0.750000;-0.125000; 0.000000;, - -0.625000;-0.250000; 0.000000;, - -0.625000;-0.125000; 0.000000;, - -0.750000;-0.125000; 0.000000;, - -0.750000;-0.250000; 0.000000;, - 0.375000; 0.125000;-0.117178;, - 0.375000; 0.250000;-0.117178;, - 0.375000; 0.250000; 0.000000;, - 0.375000; 0.125000; 0.000000;, - -0.625000;-0.625000; 0.000000;, - -0.625000;-0.500000; 0.000000;, - -0.750000;-0.500000; 0.000000;, - -0.750000;-0.625000; 0.000000;, - -0.625000;-0.750000; 0.000000;, - -0.625000;-0.625000; 0.000000;, - -0.750000;-0.625000; 0.000000;, - -0.750000;-0.750000; 0.000000;, - 0.625000;-1.000000;-0.117178;, - 0.500000;-1.000000;-0.117178;, - 0.500000;-1.000000; 0.000000;, - 0.625000;-1.000000; 0.000000;, - -0.125000;-0.625000; 0.000000;, - -0.125000;-0.500000; 0.000000;, - -0.250000;-0.500000; 0.000000;, - -0.250000;-0.625000; 0.000000;, - -0.125000;-0.750000; 0.000000;, - -0.125000;-0.625000; 0.000000;, - -0.250000;-0.625000; 0.000000;, - -0.250000;-0.750000; 0.000000;, - 0.375000;-0.500000;-0.117178;, - 0.375000;-0.375000;-0.117178;, - 0.375000;-0.375000; 0.000000;, - 0.375000;-0.500000; 0.000000;, - 0.375000;-0.125000; 0.000000;, - 0.375000; 0.000000; 0.000000;, - 0.250000; 0.000000; 0.000000;, - 0.250000;-0.125000; 0.000000;, - 0.375000;-0.250000; 0.000000;, - 0.375000;-0.125000; 0.000000;, - 0.250000;-0.125000; 0.000000;, - 0.250000;-0.250000; 0.000000;, - -0.625000; 0.125000;-0.117178;, - -0.625000; 0.250000;-0.117178;, - -0.625000; 0.250000; 0.000000;, - -0.625000; 0.125000; 0.000000;, - 0.375000;-0.625000; 0.000000;, - 0.375000;-0.500000; 0.000000;, - 0.250000;-0.500000; 0.000000;, - 0.250000;-0.625000; 0.000000;, - 0.375000;-0.750000; 0.000000;, - 0.375000;-0.625000; 0.000000;, - 0.250000;-0.625000; 0.000000;, - 0.250000;-0.750000; 0.000000;, - 0.250000;-0.500000;-0.117178;, - 0.250000;-0.625000;-0.117178;, - 0.250000;-0.625000; 0.000000;, - 0.250000;-0.500000; 0.000000;, - -0.625000;-0.375000;-0.117178;, - -0.625000;-0.250000;-0.117178;, - -0.625000;-0.250000; 0.000000;, - -0.625000;-0.375000; 0.000000;, - 0.250000;-0.125000;-0.117178;, - 0.250000;-0.250000;-0.117178;, - 0.250000;-0.250000; 0.000000;, - 0.250000;-0.125000; 0.000000;, - -0.250000; 0.625000;-0.117178;, - -0.250000; 0.500000;-0.117178;, - -0.250000; 0.500000; 0.000000;, - -0.250000; 0.625000; 0.000000;, - 0.750000; 0.875000;-0.117178;, - 0.750000; 0.750000;-0.117178;, - 0.750000; 0.750000; 0.000000;, - 0.750000; 0.875000; 0.000000;, - -0.125000;-0.875000;-0.117178;, - -0.125000;-0.750000;-0.117178;, - -0.125000;-0.750000; 0.000000;, - -0.125000;-0.875000; 0.000000;, - -0.125000;-0.250000;-0.117178;, - -0.125000;-0.125000;-0.117178;, - -0.125000;-0.125000; 0.000000;, - -0.125000;-0.250000; 0.000000;, - -0.625000; 0.250000;-0.117178;, - -0.625000; 0.375000;-0.117178;, - -0.625000; 0.375000; 0.000000;, - -0.625000; 0.250000; 0.000000;, - -0.250000; 0.250000;-0.117178;, - -0.250000; 0.125000;-0.117178;, - -0.250000; 0.125000; 0.000000;, - -0.250000; 0.250000; 0.000000;, - -0.125000;-0.750000;-0.117178;, - -0.125000;-0.625000;-0.117178;, - -0.125000;-0.625000; 0.000000;, - -0.125000;-0.750000; 0.000000;, - -0.250000; 0.000000;-0.117178;, - -0.250000;-0.125000;-0.117178;, - -0.250000;-0.125000; 0.000000;, - -0.250000; 0.000000; 0.000000;, - -0.250000; 0.875000;-0.117178;, - -0.250000; 0.750000;-0.117178;, - -0.250000; 0.750000; 0.000000;, - -0.250000; 0.875000; 0.000000;, - 0.375000; 0.875000;-0.117178;, - 0.375000; 1.000000;-0.117178;, - 0.375000; 1.000000; 0.000000;, - 0.375000; 0.875000; 0.000000;, - -0.125000; 0.625000; 0.000000;, - -0.125000; 0.750000; 0.000000;, - -0.250000; 0.750000; 0.000000;, - -0.250000; 0.625000; 0.000000;, - -0.125000; 0.500000; 0.000000;, - -0.125000; 0.625000; 0.000000;, - -0.250000; 0.625000; 0.000000;, - -0.250000; 0.500000; 0.000000;, - 0.750000; 0.125000;-0.117178;, - 0.750000; 0.000000;-0.117178;, - 0.750000; 0.000000; 0.000000;, - 0.750000; 0.125000; 0.000000;, - 0.250000; 0.250000;-0.117178;, - 0.250000; 0.125000;-0.117178;, - 0.250000; 0.125000; 0.000000;, - 0.250000; 0.250000; 0.000000;, - -0.375000;-1.000000;-0.117178;, - -0.500000;-1.000000;-0.117178;, - -0.500000;-1.000000; 0.000000;, - -0.375000;-1.000000; 0.000000;, - -0.125000; 0.375000;-0.117178;, - -0.125000; 0.500000;-0.117178;, - -0.125000; 0.500000; 0.000000;, - -0.125000; 0.375000; 0.000000;, - 0.000000;-1.000000;-0.117178;, - -0.125000;-1.000000;-0.117178;, - -0.125000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.375000;-0.125000;-0.117178;, - 0.375000; 0.000000;-0.117178;, - 0.375000; 0.000000; 0.000000;, - 0.375000;-0.125000; 0.000000;, - 0.750000; 0.375000;-0.117178;, - 0.750000; 0.250000;-0.117178;, - 0.750000; 0.250000; 0.000000;, - 0.750000; 0.375000; 0.000000;, - -0.125000;-0.375000; 0.000000;, - -0.125000;-0.250000; 0.000000;, - -0.250000;-0.250000; 0.000000;, - -0.250000;-0.375000; 0.000000;, - -0.125000;-0.500000; 0.000000;, - -0.125000;-0.375000; 0.000000;, - -0.250000;-0.375000; 0.000000;, - -0.250000;-0.500000; 0.000000;, - 0.375000; 1.000000;-0.117178;, - 0.500000; 1.000000;-0.117178;, - 0.500000; 1.000000; 0.000000;, - 0.375000; 1.000000; 0.000000;, - -0.250000;-0.875000;-0.117178;, - -0.250000;-1.000000;-0.117178;, - -0.250000;-1.000000; 0.000000;, - -0.250000;-0.875000; 0.000000;, - 0.000000; 1.000000;-0.117178;, - 0.125000; 1.000000;-0.117178;, - 0.125000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.750000;-0.750000;-0.117178;, - 0.750000;-0.875000;-0.117178;, - 0.750000;-0.875000; 0.000000;, - 0.750000;-0.750000; 0.000000;, - -0.625000; 0.625000;-0.117178;, - -0.625000; 0.750000;-0.117178;, - -0.625000; 0.750000; 0.000000;, - -0.625000; 0.625000; 0.000000;, - 0.375000;-1.000000;-0.117178;, - 0.375000;-0.875000;-0.117178;, - 0.375000;-0.875000; 0.000000;, - 0.375000;-1.000000; 0.000000;, - 0.250000; 0.000000;-0.117178;, - 0.250000;-0.125000;-0.117178;, - 0.250000;-0.125000; 0.000000;, - 0.250000; 0.000000; 0.000000;, - -0.125000; 0.125000;-0.117178;, - -0.125000; 0.250000;-0.117178;, - -0.125000; 0.250000; 0.000000;, - -0.125000; 0.125000; 0.000000;, - -0.250000;-0.625000;-0.117178;, - -0.250000;-0.750000;-0.117178;, - -0.250000;-0.750000; 0.000000;, - -0.250000;-0.625000; 0.000000;, - 0.750000; 1.000000;-0.117178;, - 0.750000; 0.875000;-0.117178;, - 0.750000; 0.875000; 0.000000;, - 0.750000; 1.000000; 0.000000;, - 0.250000;-1.000000;-0.117178;, - 0.125000;-1.000000;-0.117178;, - 0.125000;-1.000000; 0.000000;, - 0.250000;-1.000000; 0.000000;, - -0.125000; 0.750000;-0.117178;, - -0.125000; 0.875000;-0.117178;, - -0.125000; 0.875000; 0.000000;, - -0.125000; 0.750000; 0.000000;, - 0.750000;-0.250000;-0.117178;, - 0.750000;-0.375000;-0.117178;, - 0.750000;-0.375000; 0.000000;, - 0.750000;-0.250000; 0.000000;, - 0.375000; 0.625000; 0.000000;, - 0.375000; 0.750000; 0.000000;, - 0.250000; 0.750000; 0.000000;, - 0.250000; 0.625000; 0.000000;, - 0.375000; 0.500000; 0.000000;, - 0.375000; 0.625000; 0.000000;, - 0.250000; 0.625000; 0.000000;, - 0.250000; 0.500000; 0.000000;, - -0.625000; 1.000000;-0.117178;, - -0.500000; 1.000000;-0.117178;, - -0.500000; 1.000000; 0.000000;, - -0.625000; 1.000000; 0.000000;, - 0.375000;-0.375000;-0.117178;, - 0.375000;-0.250000;-0.117178;, - 0.375000;-0.250000; 0.000000;, - 0.375000;-0.375000; 0.000000;, - -0.625000; 0.750000;-0.117178;, - -0.625000; 0.875000;-0.117178;, - -0.625000; 0.875000; 0.000000;, - -0.625000; 0.750000; 0.000000;, - -0.250000; 0.125000;-0.117178;, - -0.250000; 0.000000;-0.117178;, - -0.250000; 0.000000; 0.000000;, - -0.250000; 0.125000; 0.000000;, - -0.625000;-0.750000;-0.117178;, - -0.625000;-0.625000;-0.117178;, - -0.625000;-0.625000; 0.000000;, - -0.625000;-0.750000; 0.000000;, - -0.250000; 1.000000;-0.117178;, - -0.250000; 0.875000;-0.117178;, - -0.250000; 0.875000; 0.000000;, - -0.250000; 1.000000; 0.000000;, - -0.125000;-0.125000;-0.117178;, - -0.125000; 0.000000;-0.117178;, - -0.125000; 0.000000; 0.000000;, - -0.125000;-0.125000; 0.000000;, - 0.375000; 0.125000; 0.000000;, - 0.375000; 0.250000; 0.000000;, - 0.250000; 0.250000; 0.000000;, - 0.250000; 0.125000; 0.000000;, - 0.375000; 0.000000; 0.000000;, - 0.375000; 0.125000; 0.000000;, - 0.250000; 0.125000; 0.000000;, - 0.250000; 0.000000; 0.000000;, - 0.250000; 0.125000;-0.117178;, - 0.250000; 0.000000;-0.117178;, - 0.250000; 0.000000; 0.000000;, - 0.250000; 0.125000; 0.000000;, - 0.250000; 0.750000;-0.117178;, - 0.250000; 0.625000;-0.117178;, - 0.250000; 0.625000; 0.000000;, - 0.250000; 0.750000; 0.000000;, - -0.125000; 0.500000;-0.117178;, - -0.125000; 0.625000;-0.117178;, - -0.125000; 0.625000; 0.000000;, - -0.125000; 0.500000; 0.000000;, - -0.625000; 0.375000;-0.117178;, - -0.625000; 0.500000;-0.117178;, - -0.625000; 0.500000; 0.000000;, - -0.625000; 0.375000; 0.000000;, - -0.250000; 0.375000;-0.117178;, - -0.250000; 0.250000;-0.117178;, - -0.250000; 0.250000; 0.000000;, - -0.250000; 0.375000; 0.000000;, - -0.125000;-0.625000;-0.117178;, - -0.125000;-0.500000;-0.117178;, - -0.125000;-0.500000; 0.000000;, - -0.125000;-0.625000; 0.000000;, - 0.375000; 0.500000;-0.117178;, - 0.375000; 0.625000;-0.117178;, - 0.375000; 0.625000; 0.000000;, - 0.375000; 0.500000; 0.000000;, - -0.625000; 0.625000; 0.000000;, - -0.625000; 0.750000; 0.000000;, - -0.750000; 0.750000; 0.000000;, - -0.750000; 0.625000; 0.000000;, - -0.625000; 0.500000; 0.000000;, - -0.625000; 0.625000; 0.000000;, - -0.750000; 0.625000; 0.000000;, - -0.750000; 0.500000; 0.000000;, - 0.750000; 0.500000;-0.117178;, - 0.750000; 0.375000;-0.117178;, - 0.750000; 0.375000; 0.000000;, - 0.750000; 0.500000; 0.000000;, - -0.625000; 0.125000; 0.000000;, - -0.625000; 0.250000; 0.000000;, - -0.750000; 0.250000; 0.000000;, - -0.750000; 0.125000; 0.000000;, - -0.625000; 0.000000; 0.000000;, - -0.625000; 0.125000; 0.000000;, - -0.750000; 0.125000; 0.000000;, - -0.750000; 0.000000; 0.000000;, - 0.250000; 0.375000;-0.117178;, - 0.250000; 0.250000;-0.117178;, - 0.250000; 0.250000; 0.000000;, - 0.250000; 0.375000; 0.000000;, - 0.625000; 1.000000;-0.117178;, - 0.750000; 1.000000;-0.117178;, - 0.750000; 1.000000; 0.000000;, - 0.625000; 1.000000; 0.000000;, - 0.750000;-0.875000;-0.117178;, - 0.750000;-1.000000;-0.117178;, - 0.750000;-1.000000; 0.000000;, - 0.750000;-0.875000; 0.000000;, - -0.625000;-1.000000;-0.117178;, - -0.625000;-0.875000;-0.117178;, - -0.625000;-0.875000; 0.000000;, - -0.625000;-1.000000; 0.000000;, - 0.250000;-0.750000;-0.117178;, - 0.250000;-0.875000;-0.117178;, - 0.250000;-0.875000; 0.000000;, - 0.250000;-0.750000; 0.000000;, - 0.500000;-1.000000;-0.117178;, - 0.375000;-1.000000;-0.117178;, - 0.375000;-1.000000; 0.000000;, - 0.500000;-1.000000; 0.000000;, - -0.250000;-0.500000;-0.117178;, - -0.250000;-0.625000;-0.117178;, - -0.250000;-0.625000; 0.000000;, - -0.250000;-0.500000; 0.000000;, - -0.125000; 0.125000; 0.000000;, - -0.125000; 0.250000; 0.000000;, - -0.250000; 0.250000; 0.000000;, - -0.250000; 0.125000; 0.000000;, - -0.125000; 0.000000; 0.000000;, - -0.125000; 0.125000; 0.000000;, - -0.250000; 0.125000; 0.000000;, - -0.250000; 0.000000; 0.000000;, - 0.125000;-1.000000;-0.117178;, - 0.000000;-1.000000;-0.117178;, - 0.000000;-1.000000; 0.000000;, - 0.125000;-1.000000; 0.000000;, - -0.625000;-0.375000; 0.000000;, - -0.625000;-0.250000; 0.000000;, - -0.750000;-0.250000; 0.000000;, - -0.750000;-0.375000; 0.000000;, - -0.625000;-0.500000; 0.000000;, - -0.625000;-0.375000; 0.000000;, - -0.750000;-0.375000; 0.000000;, - -0.750000;-0.500000; 0.000000;, - 0.750000;-0.625000;-0.117178;, - 0.750000;-0.750000;-0.117178;, - 0.750000;-0.750000; 0.000000;, - 0.750000;-0.625000; 0.000000;, - -0.625000;-0.875000; 0.000000;, - -0.625000;-0.750000; 0.000000;, - -0.750000;-0.750000; 0.000000;, - -0.750000;-0.875000; 0.000000;, - -0.625000;-1.000000; 0.000000;, - -0.625000;-0.875000; 0.000000;, - -0.750000;-0.875000; 0.000000;, - -0.750000;-1.000000; 0.000000;, - 0.750000;-0.375000;-0.117178;, - 0.750000;-0.500000;-0.117178;, - 0.750000;-0.500000; 0.000000;, - 0.750000;-0.375000; 0.000000;, - -0.250000;-0.250000;-0.117178;, - -0.250000;-0.375000;-0.117178;, - -0.250000;-0.375000; 0.000000;, - -0.250000;-0.250000; 0.000000;, - 0.375000; 0.250000;-0.117178;, - 0.375000; 0.375000;-0.117178;, - 0.375000; 0.375000; 0.000000;, - 0.375000; 0.250000; 0.000000;, - -0.375000; 1.000000;-0.117178;, - -0.250000; 1.000000;-0.117178;, - -0.250000; 1.000000; 0.000000;, - -0.375000; 1.000000; 0.000000;, - 0.375000;-0.875000;-0.117178;, - 0.375000;-0.750000;-0.117178;, - 0.375000;-0.750000; 0.000000;, - 0.375000;-0.875000; 0.000000;, - -0.625000;-0.250000;-0.117178;, - -0.625000;-0.125000;-0.117178;, - -0.625000;-0.125000; 0.000000;, - -0.625000;-0.250000; 0.000000;, - 0.375000;-0.750000;-0.117178;, - 0.375000;-0.625000;-0.117178;, - 0.375000;-0.625000; 0.000000;, - 0.375000;-0.750000; 0.000000;, - -0.125000;-0.875000; 0.000000;, - -0.125000;-0.750000; 0.000000;, - -0.250000;-0.750000; 0.000000;, - -0.250000;-0.875000; 0.000000;, - -0.125000;-1.000000; 0.000000;, - -0.125000;-0.875000; 0.000000;, - -0.250000;-0.875000; 0.000000;, - -0.250000;-1.000000; 0.000000;, - -0.125000; 0.875000;-0.117178;, - -0.125000; 1.000000;-0.117178;, - -0.125000; 1.000000; 0.000000;, - -0.125000; 0.875000; 0.000000;, - 0.250000; 0.625000;-0.117178;, - 0.250000; 0.500000;-0.117178;, - 0.250000; 0.500000; 0.000000;, - 0.250000; 0.625000; 0.000000;, - 0.750000;-0.125000;-0.117178;, - 0.750000;-0.250000;-0.117178;, - 0.750000;-0.250000; 0.000000;, - 0.750000;-0.125000; 0.000000;, - -0.500000;-1.000000;-0.117178;, - -0.625000;-1.000000;-0.117178;, - -0.625000;-1.000000; 0.000000;, - -0.500000;-1.000000; 0.000000;, - -0.625000; 0.875000;-0.117178;, - -0.625000; 1.000000;-0.117178;, - -0.625000; 1.000000; 0.000000;, - -0.625000; 0.875000; 0.000000;, - -0.250000; 0.500000;-0.117178;, - -0.250000; 0.375000;-0.117178;, - -0.250000; 0.375000; 0.000000;, - -0.250000; 0.500000; 0.000000;, - -0.125000;-0.500000;-0.117178;, - -0.125000;-0.375000;-0.117178;, - -0.125000;-0.375000; 0.000000;, - -0.125000;-0.500000; 0.000000;, - 0.375000;-0.375000; 0.000000;, - 0.375000;-0.250000; 0.000000;, - 0.250000;-0.250000; 0.000000;, - 0.250000;-0.375000; 0.000000;, - 0.375000;-0.500000; 0.000000;, - 0.375000;-0.375000; 0.000000;, - 0.250000;-0.375000; 0.000000;, - 0.250000;-0.500000; 0.000000;, - -0.625000;-0.625000;-0.117178;, - -0.625000;-0.500000;-0.117178;, - -0.625000;-0.500000; 0.000000;, - -0.625000;-0.625000; 0.000000;, - 0.250000; 0.500000;-0.117178;, - 0.250000; 0.375000;-0.117178;, - 0.250000; 0.375000; 0.000000;, - 0.250000; 0.500000; 0.000000;, - 0.375000; 0.000000;-0.117178;, - 0.375000; 0.125000;-0.117178;, - 0.375000; 0.125000; 0.000000;, - 0.375000; 0.000000; 0.000000;, - 0.250000; 0.875000;-0.117178;, - 0.250000; 0.750000;-0.117178;, - 0.250000; 0.750000; 0.000000;, - 0.250000; 0.875000; 0.000000;, - 0.500000; 1.000000;-0.117178;, - 0.625000; 1.000000;-0.117178;, - 0.625000; 1.000000; 0.000000;, - 0.500000; 1.000000; 0.000000;, - -0.125000; 0.625000;-0.117178;, - -0.125000; 0.750000;-0.117178;, - -0.125000; 0.750000; 0.000000;, - -0.125000; 0.625000; 0.000000;, - -0.625000; 0.000000;-0.117178;, - -0.625000; 0.125000;-0.117178;, - -0.625000; 0.125000; 0.000000;, - -0.625000; 0.000000; 0.000000;, - 0.375000;-0.875000; 0.000000;, - 0.375000;-0.750000; 0.000000;, - 0.250000;-0.750000; 0.000000;, - 0.250000;-0.875000; 0.000000;, - 0.375000;-1.000000; 0.000000;, - 0.375000;-0.875000; 0.000000;, - 0.250000;-0.875000; 0.000000;, - 0.250000;-1.000000; 0.000000;, - 0.250000;-0.875000;-0.117178;, - 0.250000;-1.000000;-0.117178;, - 0.250000;-1.000000; 0.000000;, - 0.250000;-0.875000; 0.000000;, - -0.625000;-0.500000;-0.117178;, - -0.625000;-0.375000;-0.117178;, - -0.625000;-0.375000; 0.000000;, - -0.625000;-0.500000; 0.000000;, - 0.250000;-0.250000;-0.117178;, - 0.250000;-0.375000;-0.117178;, - 0.250000;-0.375000; 0.000000;, - 0.250000;-0.250000; 0.000000;, - 0.375000; 0.625000;-0.117178;, - 0.375000; 0.750000;-0.117178;, - 0.375000; 0.750000; 0.000000;, - 0.375000; 0.625000; 0.000000;, - 0.750000; 0.750000;-0.117178;, - 0.750000; 0.625000;-0.117178;, - 0.750000; 0.625000; 0.000000;, - 0.750000; 0.750000; 0.000000;, - -0.125000;-1.000000;-0.117178;, - -0.125000;-0.875000;-0.117178;, - -0.125000;-0.875000; 0.000000;, - -0.125000;-1.000000; 0.000000;, - 0.750000;-1.000000;-0.117178;, - 0.625000;-1.000000;-0.117178;, - 0.625000;-1.000000; 0.000000;, - 0.750000;-1.000000; 0.000000;, - 0.750000; 0.125000;-0.117178;, - 0.750000; 0.250000;-0.117178;, - 0.625000; 0.250000;-0.117178;, - 0.625000; 0.125000;-0.117178;, - 0.750000; 0.375000;-0.117178;, - 0.750000; 0.500000;-0.117178;, - 0.625000; 0.500000;-0.117178;, - 0.625000; 0.375000;-0.117178;, - 0.500000; 0.125000;-0.117178;, - 0.500000; 0.250000;-0.117178;, - 0.375000; 0.250000;-0.117178;, - 0.375000; 0.125000;-0.117178;, - 0.250000; 0.125000;-0.117178;, - 0.250000; 0.250000;-0.117178;, - 0.125000; 0.250000;-0.117178;, - 0.125000; 0.125000;-0.117178;, - 0.250000; 0.375000;-0.117178;, - 0.250000; 0.500000;-0.117178;, - 0.125000; 0.500000;-0.117178;, - 0.125000; 0.375000;-0.117178;, - 0.500000; 0.625000;-0.117178;, - 0.500000; 0.750000;-0.117178;, - 0.375000; 0.750000;-0.117178;, - 0.375000; 0.625000;-0.117178;, - 0.250000; 0.625000;-0.117178;, - 0.250000; 0.750000;-0.117178;, - 0.125000; 0.750000;-0.117178;, - 0.125000; 0.625000;-0.117178;, - 0.250000; 0.875000;-0.117178;, - 0.250000; 1.000000;-0.117178;, - 0.125000; 1.000000;-0.117178;, - 0.125000; 0.875000;-0.117178;, - 0.750000;-0.375000;-0.117178;, - 0.750000;-0.250000;-0.117178;, - 0.625000;-0.250000;-0.117178;, - 0.625000;-0.375000;-0.117178;, - 0.750000;-0.125000;-0.117178;, - 0.750000; 0.000000;-0.117178;, - 0.625000; 0.000000;-0.117178;, - 0.625000;-0.125000;-0.117178;, - 0.000000;-0.375000;-0.117178;, - 0.000000;-0.250000;-0.117178;, - -0.125000;-0.250000;-0.117178;, - -0.125000;-0.375000;-0.117178;, - -0.250000;-0.375000;-0.117178;, - -0.250000;-0.250000;-0.117178;, - -0.375000;-0.250000;-0.117178;, - -0.375000;-0.375000;-0.117178;, - -0.250000;-0.125000;-0.117178;, - -0.250000; 0.000000;-0.117178;, - -0.375000; 0.000000;-0.117178;, - -0.375000;-0.125000;-0.117178;, - 0.000000; 0.625000;-0.117178;, - 0.000000; 0.750000;-0.117178;, - -0.125000; 0.750000;-0.117178;, - -0.125000; 0.625000;-0.117178;, - -0.250000; 0.625000;-0.117178;, - -0.250000; 0.750000;-0.117178;, - -0.375000; 0.750000;-0.117178;, - -0.375000; 0.625000;-0.117178;, - -0.250000; 0.875000;-0.117178;, - -0.250000; 1.000000;-0.117178;, - -0.375000; 1.000000;-0.117178;, - -0.375000; 0.875000;-0.117178;, - 0.750000; 0.625000;-0.117178;, - 0.750000; 0.750000;-0.117178;, - 0.625000; 0.750000;-0.117178;, - 0.625000; 0.625000;-0.117178;, - 0.750000; 0.875000;-0.117178;, - 0.750000; 1.000000;-0.117178;, - 0.625000; 1.000000;-0.117178;, - 0.625000; 0.875000;-0.117178;, - 0.500000;-0.625000;-0.117178;, - 0.500000;-0.500000;-0.117178;, - 0.375000;-0.500000;-0.117178;, - 0.375000;-0.625000;-0.117178;, - 0.500000;-0.125000;-0.117178;, - 0.500000; 0.000000;-0.117178;, - 0.375000; 0.000000;-0.117178;, - 0.375000;-0.125000;-0.117178;, - 0.000000;-0.625000;-0.117178;, - 0.000000;-0.500000;-0.117178;, - -0.125000;-0.500000;-0.117178;, - -0.125000;-0.625000;-0.117178;, - -0.500000;-0.625000;-0.117178;, - -0.500000;-0.500000;-0.117178;, - -0.625000;-0.500000;-0.117178;, - -0.625000;-0.625000;-0.117178;, - -0.500000;-0.125000;-0.117178;, - -0.500000; 0.000000;-0.117178;, - -0.625000; 0.000000;-0.117178;, - -0.625000;-0.125000;-0.117178;, - 0.000000; 0.375000;-0.117178;, - 0.000000; 0.500000;-0.117178;, - -0.125000; 0.500000;-0.117178;, - -0.125000; 0.375000;-0.117178;, - -0.500000; 0.375000;-0.117178;, - -0.500000; 0.500000;-0.117178;, - -0.625000; 0.500000;-0.117178;, - -0.625000; 0.375000;-0.117178;, - -0.500000; 0.875000;-0.117178;, - -0.500000; 1.000000;-0.117178;, - -0.625000; 1.000000;-0.117178;, - -0.625000; 0.875000;-0.117178;, - 0.500000; 0.375000;-0.117178;, - 0.500000; 0.500000;-0.117178;, - 0.375000; 0.500000;-0.117178;, - 0.375000; 0.375000;-0.117178;, - 0.500000; 0.875000;-0.117178;, - 0.500000; 1.000000;-0.117178;, - 0.375000; 1.000000;-0.117178;, - 0.375000; 0.875000;-0.117178;, - 0.000000;-0.125000;-0.117178;, - 0.000000; 0.000000;-0.117178;, - -0.125000; 0.000000;-0.117178;, - -0.125000;-0.125000;-0.117178;, - 0.000000; 0.875000;-0.117178;, - 0.000000; 1.000000;-0.117178;, - -0.125000; 1.000000;-0.117178;, - -0.125000; 0.875000;-0.117178;, - 0.250000;-0.250000; 0.330204;, - 0.250000;-0.125000; 0.330204;, - 0.250000;-0.125000; 0.246450;, - 0.250000;-0.250000; 0.246450;, - -0.250000; 0.500000; 0.330204;, - -0.250000; 0.625000; 0.330204;, - -0.250000; 0.625000; 0.246450;, - -0.250000; 0.500000; 0.246450;, - 0.750000; 0.750000; 0.330204;, - 0.750000; 0.875000; 0.330204;, - 0.750000; 0.875000; 0.246450;, - 0.750000; 0.750000; 0.246450;, - -0.125000;-0.750000; 0.330204;, - -0.125000;-0.875000; 0.330204;, - -0.125000;-0.875000; 0.246450;, - -0.125000;-0.750000; 0.246450;, - -0.125000;-0.125000; 0.330204;, - -0.125000;-0.250000; 0.330204;, - -0.125000;-0.250000; 0.246450;, - -0.125000;-0.125000; 0.246450;, - -0.625000; 0.375000; 0.330204;, - -0.625000; 0.250000; 0.330204;, - -0.625000; 0.250000; 0.246450;, - -0.625000; 0.375000; 0.246450;, - -0.250000; 0.125000; 0.330204;, - -0.250000; 0.250000; 0.330204;, - -0.250000; 0.250000; 0.246450;, - -0.250000; 0.125000; 0.246450;, - -0.125000;-0.625000; 0.330204;, - -0.125000;-0.750000; 0.330204;, - -0.125000;-0.750000; 0.246450;, - -0.125000;-0.625000; 0.246450;, - -0.250000;-0.125000; 0.330204;, - -0.250000; 0.000000; 0.330204;, - -0.250000; 0.000000; 0.246450;, - -0.250000;-0.125000; 0.246450;, - -0.250000; 0.750000; 0.330204;, - -0.250000; 0.875000; 0.330204;, - -0.250000; 0.875000; 0.246450;, - -0.250000; 0.750000; 0.246450;, - 0.375000; 1.000000; 0.330204;, - 0.375000; 0.875000; 0.330204;, - 0.375000; 0.875000; 0.246450;, - 0.375000; 1.000000; 0.246450;, - 0.750000; 0.000000; 0.330204;, - 0.750000; 0.125000; 0.330204;, - 0.750000; 0.125000; 0.246450;, - 0.750000; 0.000000; 0.246450;, - 0.250000; 0.125000; 0.330204;, - 0.250000; 0.250000; 0.330204;, - 0.250000; 0.250000; 0.246450;, - 0.250000; 0.125000; 0.246450;, - -0.500000;-1.000000; 0.330204;, - -0.375000;-1.000000; 0.330204;, - -0.375000;-1.000000; 0.246450;, - -0.500000;-1.000000; 0.246450;, - -0.125000; 0.500000; 0.330204;, - -0.125000; 0.375000; 0.330204;, - -0.125000; 0.375000; 0.246450;, - -0.125000; 0.500000; 0.246450;, - -0.125000;-1.000000; 0.330204;, - 0.000000;-1.000000; 0.330204;, - 0.000000;-1.000000; 0.246450;, - -0.125000;-1.000000; 0.246450;, - 0.375000; 0.000000; 0.330204;, - 0.375000;-0.125000; 0.330204;, - 0.375000;-0.125000; 0.246450;, - 0.375000; 0.000000; 0.246450;, - 0.750000; 0.250000; 0.330204;, - 0.750000; 0.375000; 0.330204;, - 0.750000; 0.375000; 0.246450;, - 0.750000; 0.250000; 0.246450;, - -0.250000; 1.000000; 0.246450;, - -0.125000; 1.000000; 0.246450;, - -0.125000; 0.875000; 0.246450;, - -0.250000; 0.875000; 0.246450;, - -0.250000; 0.875000; 0.246450;, - -0.125000; 0.875000; 0.246450;, - -0.125000; 0.750000; 0.246450;, - -0.250000; 0.750000; 0.246450;, - 0.500000; 1.000000; 0.330204;, - 0.375000; 1.000000; 0.330204;, - 0.375000; 1.000000; 0.246450;, - 0.500000; 1.000000; 0.246450;, - -0.250000; 0.000000; 0.246450;, - -0.125000; 0.000000; 0.246450;, - -0.125000;-0.125000; 0.246450;, - -0.250000;-0.125000; 0.246450;, - -0.250000;-0.125000; 0.246450;, - -0.125000;-0.125000; 0.246450;, - -0.125000;-0.250000; 0.246450;, - -0.250000;-0.250000; 0.246450;, - -0.250000;-1.000000; 0.330204;, - -0.250000;-0.875000; 0.330204;, - -0.250000;-0.875000; 0.246450;, - -0.250000;-1.000000; 0.246450;, - 0.250000; 1.000000; 0.246450;, - 0.375000; 1.000000; 0.246450;, - 0.375000; 0.875000; 0.246450;, - 0.250000; 0.875000; 0.246450;, - 0.250000; 0.875000; 0.246450;, - 0.375000; 0.875000; 0.246450;, - 0.375000; 0.750000; 0.246450;, - 0.250000; 0.750000; 0.246450;, - 0.125000; 1.000000; 0.330204;, - 0.000000; 1.000000; 0.330204;, - 0.000000; 1.000000; 0.246450;, - 0.125000; 1.000000; 0.246450;, - 0.250000; 0.500000; 0.246450;, - 0.375000; 0.500000; 0.246450;, - 0.375000; 0.375000; 0.246450;, - 0.250000; 0.375000; 0.246450;, - 0.250000; 0.375000; 0.246450;, - 0.375000; 0.375000; 0.246450;, - 0.375000; 0.250000; 0.246450;, - 0.250000; 0.250000; 0.246450;, - 0.750000;-0.875000; 0.330204;, - 0.750000;-0.750000; 0.330204;, - 0.750000;-0.750000; 0.246450;, - 0.750000;-0.875000; 0.246450;, - -0.750000; 1.000000; 0.246450;, - -0.625000; 1.000000; 0.246450;, - -0.625000; 0.875000; 0.246450;, - -0.750000; 0.875000; 0.246450;, - -0.750000; 0.875000; 0.246450;, - -0.625000; 0.875000; 0.246450;, - -0.625000; 0.750000; 0.246450;, - -0.750000; 0.750000; 0.246450;, - -0.625000; 0.750000; 0.330204;, - -0.625000; 0.625000; 0.330204;, - -0.625000; 0.625000; 0.246450;, - -0.625000; 0.750000; 0.246450;, - -0.750000; 0.500000; 0.246450;, - -0.625000; 0.500000; 0.246450;, - -0.625000; 0.375000; 0.246450;, - -0.750000; 0.375000; 0.246450;, - -0.750000; 0.375000; 0.246450;, - -0.625000; 0.375000; 0.246450;, - -0.625000; 0.250000; 0.246450;, - -0.750000; 0.250000; 0.246450;, - 0.375000;-0.875000; 0.330204;, - 0.375000;-1.000000; 0.330204;, - 0.375000;-1.000000; 0.246450;, - 0.375000;-0.875000; 0.246450;, - -0.250000; 0.500000; 0.246450;, - -0.125000; 0.500000; 0.246450;, - -0.125000; 0.375000; 0.246450;, - -0.250000; 0.375000; 0.246450;, - -0.250000; 0.375000; 0.246450;, - -0.125000; 0.375000; 0.246450;, - -0.125000; 0.250000; 0.246450;, - -0.250000; 0.250000; 0.246450;, - 0.250000;-0.125000; 0.330204;, - 0.250000; 0.000000; 0.330204;, - 0.250000; 0.000000; 0.246450;, - 0.250000;-0.125000; 0.246450;, - -0.750000; 0.000000; 0.246450;, - -0.625000; 0.000000; 0.246450;, - -0.625000;-0.125000; 0.246450;, - -0.750000;-0.125000; 0.246450;, - -0.750000;-0.125000; 0.246450;, - -0.625000;-0.125000; 0.246450;, - -0.625000;-0.250000; 0.246450;, - -0.750000;-0.250000; 0.246450;, - -0.125000; 0.250000; 0.330204;, - -0.125000; 0.125000; 0.330204;, - -0.125000; 0.125000; 0.246450;, - -0.125000; 0.250000; 0.246450;, - -0.750000;-0.500000; 0.246450;, - -0.625000;-0.500000; 0.246450;, - -0.625000;-0.625000; 0.246450;, - -0.750000;-0.625000; 0.246450;, - -0.750000;-0.625000; 0.246450;, - -0.625000;-0.625000; 0.246450;, - -0.625000;-0.750000; 0.246450;, - -0.750000;-0.750000; 0.246450;, - -0.250000;-0.750000; 0.330204;, - -0.250000;-0.625000; 0.330204;, - -0.250000;-0.625000; 0.246450;, - -0.250000;-0.750000; 0.246450;, - -0.250000;-0.500000; 0.246450;, - -0.125000;-0.500000; 0.246450;, - -0.125000;-0.625000; 0.246450;, - -0.250000;-0.625000; 0.246450;, - -0.250000;-0.625000; 0.246450;, - -0.125000;-0.625000; 0.246450;, - -0.125000;-0.750000; 0.246450;, - -0.250000;-0.750000; 0.246450;, - 0.750000; 0.875000; 0.330204;, - 0.750000; 1.000000; 0.330204;, - 0.750000; 1.000000; 0.246450;, - 0.750000; 0.875000; 0.246450;, - 0.250000; 0.000000; 0.246450;, - 0.375000; 0.000000; 0.246450;, - 0.375000;-0.125000; 0.246450;, - 0.250000;-0.125000; 0.246450;, - 0.250000;-0.125000; 0.246450;, - 0.375000;-0.125000; 0.246450;, - 0.375000;-0.250000; 0.246450;, - 0.250000;-0.250000; 0.246450;, - 0.125000;-1.000000; 0.330204;, - 0.250000;-1.000000; 0.330204;, - 0.250000;-1.000000; 0.246450;, - 0.125000;-1.000000; 0.246450;, - 0.250000;-0.500000; 0.246450;, - 0.375000;-0.500000; 0.246450;, - 0.375000;-0.625000; 0.246450;, - 0.250000;-0.625000; 0.246450;, - 0.250000;-0.625000; 0.246450;, - 0.375000;-0.625000; 0.246450;, - 0.375000;-0.750000; 0.246450;, - 0.250000;-0.750000; 0.246450;, - -0.125000; 0.875000; 0.330204;, - -0.125000; 0.750000; 0.330204;, - -0.125000; 0.750000; 0.246450;, - -0.125000; 0.875000; 0.246450;, - 0.750000;-0.375000; 0.330204;, - 0.750000;-0.250000; 0.330204;, - 0.750000;-0.250000; 0.246450;, - 0.750000;-0.375000; 0.246450;, - -0.500000; 1.000000; 0.330204;, - -0.625000; 1.000000; 0.330204;, - -0.625000; 1.000000; 0.246450;, - -0.500000; 1.000000; 0.246450;, - 0.375000;-0.250000; 0.330204;, - 0.375000;-0.375000; 0.330204;, - 0.375000;-0.375000; 0.246450;, - 0.375000;-0.250000; 0.246450;, - -0.625000; 0.875000; 0.330204;, - -0.625000; 0.750000; 0.330204;, - -0.625000; 0.750000; 0.246450;, - -0.625000; 0.875000; 0.246450;, - -0.250000; 0.000000; 0.330204;, - -0.250000; 0.125000; 0.330204;, - -0.250000; 0.125000; 0.246450;, - -0.250000; 0.000000; 0.246450;, - -0.625000;-0.625000; 0.330204;, - -0.625000;-0.750000; 0.330204;, - -0.625000;-0.750000; 0.246450;, - -0.625000;-0.625000; 0.246450;, - -0.250000; 0.875000; 0.330204;, - -0.250000; 1.000000; 0.330204;, - -0.250000; 1.000000; 0.246450;, - -0.250000; 0.875000; 0.246450;, - -0.125000; 0.000000; 0.330204;, - -0.125000;-0.125000; 0.330204;, - -0.125000;-0.125000; 0.246450;, - -0.125000; 0.000000; 0.246450;, - 0.250000; 0.000000; 0.330204;, - 0.250000; 0.125000; 0.330204;, - 0.250000; 0.125000; 0.246450;, - 0.250000; 0.000000; 0.246450;, - 0.250000; 0.625000; 0.330204;, - 0.250000; 0.750000; 0.330204;, - 0.250000; 0.750000; 0.246450;, - 0.250000; 0.625000; 0.246450;, - -0.125000; 0.625000; 0.330204;, - -0.125000; 0.500000; 0.330204;, - -0.125000; 0.500000; 0.246450;, - -0.125000; 0.625000; 0.246450;, - -0.625000; 0.500000; 0.330204;, - -0.625000; 0.375000; 0.330204;, - -0.625000; 0.375000; 0.246450;, - -0.625000; 0.500000; 0.246450;, - -0.250000; 0.750000; 0.246450;, - -0.125000; 0.750000; 0.246450;, - -0.125000; 0.625000; 0.246450;, - -0.250000; 0.625000; 0.246450;, - -0.250000; 0.625000; 0.246450;, - -0.125000; 0.625000; 0.246450;, - -0.125000; 0.500000; 0.246450;, - -0.250000; 0.500000; 0.246450;, - -0.250000; 0.250000; 0.330204;, - -0.250000; 0.375000; 0.330204;, - -0.250000; 0.375000; 0.246450;, - -0.250000; 0.250000; 0.246450;, - -0.125000;-0.500000; 0.330204;, - -0.125000;-0.625000; 0.330204;, - -0.125000;-0.625000; 0.246450;, - -0.125000;-0.500000; 0.246450;, - 0.375000; 0.625000; 0.330204;, - 0.375000; 0.500000; 0.330204;, - 0.375000; 0.500000; 0.246450;, - 0.375000; 0.625000; 0.246450;, - 0.750000; 0.375000; 0.330204;, - 0.750000; 0.500000; 0.330204;, - 0.750000; 0.500000; 0.246450;, - 0.750000; 0.375000; 0.246450;, - 0.250000; 0.250000; 0.330204;, - 0.250000; 0.375000; 0.330204;, - 0.250000; 0.375000; 0.246450;, - 0.250000; 0.250000; 0.246450;, - 0.750000; 1.000000; 0.330204;, - 0.625000; 1.000000; 0.330204;, - 0.625000; 1.000000; 0.246450;, - 0.750000; 1.000000; 0.246450;, - 0.750000;-1.000000; 0.330204;, - 0.750000;-0.875000; 0.330204;, - 0.750000;-0.875000; 0.246450;, - 0.750000;-1.000000; 0.246450;, - -0.250000;-0.250000; 0.246450;, - -0.125000;-0.250000; 0.246450;, - -0.125000;-0.375000; 0.246450;, - -0.250000;-0.375000; 0.246450;, - -0.250000;-0.375000; 0.246450;, - -0.125000;-0.375000; 0.246450;, - -0.125000;-0.500000; 0.246450;, - -0.250000;-0.500000; 0.246450;, - -0.625000;-0.875000; 0.330204;, - -0.625000;-1.000000; 0.330204;, - -0.625000;-1.000000; 0.246450;, - -0.625000;-0.875000; 0.246450;, - 0.250000;-0.875000; 0.330204;, - 0.250000;-0.750000; 0.330204;, - 0.250000;-0.750000; 0.246450;, - 0.250000;-0.875000; 0.246450;, - 0.375000;-1.000000; 0.330204;, - 0.500000;-1.000000; 0.330204;, - 0.500000;-1.000000; 0.246450;, - 0.375000;-1.000000; 0.246450;, - -0.250000;-0.625000; 0.330204;, - -0.250000;-0.500000; 0.330204;, - -0.250000;-0.500000; 0.246450;, - -0.250000;-0.625000; 0.246450;, - 0.125000;-1.152395; 0.000000;, - 0.125000;-1.152395; 0.246450;, - 0.125000;-1.000000; 0.246450;, - 0.125000;-1.000000; 0.000000;, - 0.750000;-0.750000; 0.330204;, - 0.750000;-0.625000; 0.330204;, - 0.750000;-0.625000; 0.246450;, - 0.750000;-0.750000; 0.246450;, - 0.750000;-0.500000; 0.330204;, - 0.750000;-0.375000; 0.330204;, - 0.750000;-0.375000; 0.246450;, - 0.750000;-0.500000; 0.246450;, - -0.250000;-0.375000; 0.330204;, - -0.250000;-0.250000; 0.330204;, - -0.250000;-0.250000; 0.246450;, - -0.250000;-0.375000; 0.246450;, - 0.375000; 0.375000; 0.330204;, - 0.375000; 0.250000; 0.330204;, - 0.375000; 0.250000; 0.246450;, - 0.375000; 0.375000; 0.246450;, - -0.250000; 1.000000; 0.330204;, - -0.375000; 1.000000; 0.330204;, - -0.375000; 1.000000; 0.246450;, - -0.250000; 1.000000; 0.246450;, - 0.375000;-0.750000; 0.330204;, - 0.375000;-0.875000; 0.330204;, - 0.375000;-0.875000; 0.246450;, - 0.375000;-0.750000; 0.246450;, - -0.625000;-0.125000; 0.330204;, - -0.625000;-0.250000; 0.330204;, - -0.625000;-0.250000; 0.246450;, - -0.625000;-0.125000; 0.246450;, - 0.375000;-0.625000; 0.330204;, - 0.375000;-0.750000; 0.330204;, - 0.375000;-0.750000; 0.246450;, - 0.375000;-0.625000; 0.246450;, - 0.250000; 0.750000; 0.246450;, - 0.375000; 0.750000; 0.246450;, - 0.375000; 0.625000; 0.246450;, - 0.250000; 0.625000; 0.246450;, - 0.250000; 0.625000; 0.246450;, - 0.375000; 0.625000; 0.246450;, - 0.375000; 0.500000; 0.246450;, - 0.250000; 0.500000; 0.246450;, - -0.125000; 1.000000; 0.330204;, - -0.125000; 0.875000; 0.330204;, - -0.125000; 0.875000; 0.246450;, - -0.125000; 1.000000; 0.246450;, - 0.250000; 0.500000; 0.330204;, - 0.250000; 0.625000; 0.330204;, - 0.250000; 0.625000; 0.246450;, - 0.250000; 0.500000; 0.246450;, - 0.750000;-0.250000; 0.330204;, - 0.750000;-0.125000; 0.330204;, - 0.750000;-0.125000; 0.246450;, - 0.750000;-0.250000; 0.246450;, - -0.625000;-1.000000; 0.330204;, - -0.500000;-1.000000; 0.330204;, - -0.500000;-1.000000; 0.246450;, - -0.625000;-1.000000; 0.246450;, - -0.625000; 1.000000; 0.330204;, - -0.625000; 0.875000; 0.330204;, - -0.625000; 0.875000; 0.246450;, - -0.625000; 1.000000; 0.246450;, - -0.250000; 0.375000; 0.330204;, - -0.250000; 0.500000; 0.330204;, - -0.250000; 0.500000; 0.246450;, - -0.250000; 0.375000; 0.246450;, - -0.125000;-0.375000; 0.330204;, - -0.125000;-0.500000; 0.330204;, - -0.125000;-0.500000; 0.246450;, - -0.125000;-0.375000; 0.246450;, - 0.250000; 0.250000; 0.246450;, - 0.375000; 0.250000; 0.246450;, - 0.375000; 0.125000; 0.246450;, - 0.250000; 0.125000; 0.246450;, - 0.250000; 0.125000; 0.246450;, - 0.375000; 0.125000; 0.246450;, - 0.375000; 0.000000; 0.246450;, - 0.250000; 0.000000; 0.246450;, - -0.625000;-0.500000; 0.330204;, - -0.625000;-0.625000; 0.330204;, - -0.625000;-0.625000; 0.246450;, - -0.625000;-0.500000; 0.246450;, - 0.250000; 0.375000; 0.330204;, - 0.250000; 0.500000; 0.330204;, - 0.250000; 0.500000; 0.246450;, - 0.250000; 0.375000; 0.246450;, - 0.375000; 0.125000; 0.330204;, - 0.375000; 0.000000; 0.330204;, - 0.375000; 0.000000; 0.246450;, - 0.375000; 0.125000; 0.246450;, - 0.250000; 0.750000; 0.330204;, - 0.250000; 0.875000; 0.330204;, - 0.250000; 0.875000; 0.246450;, - 0.250000; 0.750000; 0.246450;, - 0.625000; 1.000000; 0.330204;, - 0.500000; 1.000000; 0.330204;, - 0.500000; 1.000000; 0.246450;, - 0.625000; 1.000000; 0.246450;, - -0.125000; 0.750000; 0.330204;, - -0.125000; 0.625000; 0.330204;, - -0.125000; 0.625000; 0.246450;, - -0.125000; 0.750000; 0.246450;, - -0.625000; 0.125000; 0.330204;, - -0.625000; 0.000000; 0.330204;, - -0.625000; 0.000000; 0.246450;, - -0.625000; 0.125000; 0.246450;, - -0.750000; 0.750000; 0.246450;, - -0.625000; 0.750000; 0.246450;, - -0.625000; 0.625000; 0.246450;, - -0.750000; 0.625000; 0.246450;, - -0.750000; 0.625000; 0.246450;, - -0.625000; 0.625000; 0.246450;, - -0.625000; 0.500000; 0.246450;, - -0.750000; 0.500000; 0.246450;, - 0.250000;-1.000000; 0.330204;, - 0.250000;-0.875000; 0.330204;, - 0.250000;-0.875000; 0.246450;, - 0.250000;-1.000000; 0.246450;, - -0.750000; 0.250000; 0.246450;, - -0.625000; 0.250000; 0.246450;, - -0.625000; 0.125000; 0.246450;, - -0.750000; 0.125000; 0.246450;, - -0.750000; 0.125000; 0.246450;, - -0.625000; 0.125000; 0.246450;, - -0.625000; 0.000000; 0.246450;, - -0.750000; 0.000000; 0.246450;, - -0.625000;-0.375000; 0.330204;, - -0.625000;-0.500000; 0.330204;, - -0.625000;-0.500000; 0.246450;, - -0.625000;-0.375000; 0.246450;, - 0.250000;-0.375000; 0.330204;, - 0.250000;-0.250000; 0.330204;, - 0.250000;-0.250000; 0.246450;, - 0.250000;-0.375000; 0.246450;, - 0.375000; 0.750000; 0.330204;, - 0.375000; 0.625000; 0.330204;, - 0.375000; 0.625000; 0.246450;, - 0.375000; 0.750000; 0.246450;, - 0.750000; 0.625000; 0.330204;, - 0.750000; 0.750000; 0.330204;, - 0.750000; 0.750000; 0.246450;, - 0.750000; 0.625000; 0.246450;, - -0.125000;-0.875000; 0.330204;, - -0.125000;-1.000000; 0.330204;, - -0.125000;-1.000000; 0.246450;, - -0.125000;-0.875000; 0.246450;, - 0.625000;-1.000000; 0.330204;, - 0.750000;-1.000000; 0.330204;, - 0.750000;-1.000000; 0.246450;, - 0.625000;-1.000000; 0.246450;, - 0.750000;-0.625000; 0.330204;, - 0.750000;-0.500000; 0.330204;, - 0.750000;-0.500000; 0.246450;, - 0.750000;-0.625000; 0.246450;, - -0.250000; 0.250000; 0.246450;, - -0.125000; 0.250000; 0.246450;, - -0.125000; 0.125000; 0.246450;, - -0.250000; 0.125000; 0.246450;, - -0.250000; 0.125000; 0.246450;, - -0.125000; 0.125000; 0.246450;, - -0.125000; 0.000000; 0.246450;, - -0.250000; 0.000000; 0.246450;, - -0.625000;-0.750000; 0.330204;, - -0.625000;-0.875000; 0.330204;, - -0.625000;-0.875000; 0.246450;, - -0.625000;-0.750000; 0.246450;, - -0.750000;-0.250000; 0.246450;, - -0.625000;-0.250000; 0.246450;, - -0.625000;-0.375000; 0.246450;, - -0.750000;-0.375000; 0.246450;, - -0.750000;-0.375000; 0.246450;, - -0.625000;-0.375000; 0.246450;, - -0.625000;-0.500000; 0.246450;, - -0.750000;-0.500000; 0.246450;, - 0.250000;-0.750000; 0.330204;, - 0.250000;-0.625000; 0.330204;, - 0.250000;-0.625000; 0.246450;, - 0.250000;-0.750000; 0.246450;, - -0.750000;-0.750000; 0.246450;, - -0.625000;-0.750000; 0.246450;, - -0.625000;-0.875000; 0.246450;, - -0.750000;-0.875000; 0.246450;, - -0.750000;-0.875000; 0.246450;, - -0.625000;-0.875000; 0.246450;, - -0.625000;-1.000000; 0.246450;, - -0.750000;-1.000000; 0.246450;, - -0.250000;-0.500000; 0.330204;, - -0.250000;-0.375000; 0.330204;, - -0.250000;-0.375000; 0.246450;, - -0.250000;-0.500000; 0.246450;, - -0.250000; 0.625000; 0.330204;, - -0.250000; 0.750000; 0.330204;, - -0.250000; 0.750000; 0.246450;, - -0.250000; 0.625000; 0.246450;, - 0.375000; 0.875000; 0.330204;, - 0.375000; 0.750000; 0.330204;, - 0.375000; 0.750000; 0.246450;, - 0.375000; 0.875000; 0.246450;, - -0.375000; 1.000000; 0.330204;, - -0.500000; 1.000000; 0.330204;, - -0.500000; 1.000000; 0.246450;, - -0.375000; 1.000000; 0.246450;, - -0.125000; 0.375000; 0.330204;, - -0.125000; 0.250000; 0.330204;, - -0.125000; 0.250000; 0.246450;, - -0.125000; 0.375000; 0.246450;, - 0.000000; 1.000000; 0.330204;, - -0.125000; 1.000000; 0.330204;, - -0.125000; 1.000000; 0.246450;, - 0.000000; 1.000000; 0.246450;, - 0.375000;-0.125000; 0.330204;, - 0.375000;-0.250000; 0.330204;, - 0.375000;-0.250000; 0.246450;, - 0.375000;-0.125000; 0.246450;, - -0.250000;-0.750000; 0.246450;, - -0.125000;-0.750000; 0.246450;, - -0.125000;-0.875000; 0.246450;, - -0.250000;-0.875000; 0.246450;, - -0.250000;-0.875000; 0.246450;, - -0.125000;-0.875000; 0.246450;, - -0.125000;-1.000000; 0.246450;, - -0.250000;-1.000000; 0.246450;, - 0.750000;-0.125000; 0.330204;, - 0.750000; 0.000000; 0.330204;, - 0.750000; 0.000000; 0.246450;, - 0.750000;-0.125000; 0.246450;, - -0.250000;-0.250000; 0.330204;, - -0.250000;-0.125000; 0.330204;, - -0.250000;-0.125000; 0.246450;, - -0.250000;-0.250000; 0.246450;, - 0.375000; 0.500000; 0.330204;, - 0.375000; 0.375000; 0.330204;, - 0.375000; 0.375000; 0.246450;, - 0.375000; 0.500000; 0.246450;, - 0.750000; 0.125000; 0.330204;, - 0.750000; 0.250000; 0.330204;, - 0.750000; 0.250000; 0.246450;, - 0.750000; 0.125000; 0.246450;, - -0.375000;-1.000000; 0.330204;, - -0.250000;-1.000000; 0.330204;, - -0.250000;-1.000000; 0.246450;, - -0.375000;-1.000000; 0.246450;, - -0.625000; 0.000000; 0.330204;, - -0.625000;-0.125000; 0.330204;, - -0.625000;-0.125000; 0.246450;, - -0.625000; 0.000000; 0.246450;, - 0.375000;-0.500000; 0.330204;, - 0.375000;-0.625000; 0.330204;, - 0.375000;-0.625000; 0.246450;, - 0.375000;-0.500000; 0.246450;, - 0.250000;-0.250000; 0.246450;, - 0.375000;-0.250000; 0.246450;, - 0.375000;-0.375000; 0.246450;, - 0.250000;-0.375000; 0.246450;, - 0.250000;-0.375000; 0.246450;, - 0.375000;-0.375000; 0.246450;, - 0.375000;-0.500000; 0.246450;, - 0.250000;-0.500000; 0.246450;, - 0.250000; 0.875000; 0.330204;, - 0.250000; 1.000000; 0.330204;, - 0.250000; 1.000000; 0.246450;, - 0.250000; 0.875000; 0.246450;, - -0.625000; 0.625000; 0.330204;, - -0.625000; 0.500000; 0.330204;, - -0.625000; 0.500000; 0.246450;, - -0.625000; 0.625000; 0.246450;, - -0.125000;-0.250000; 0.330204;, - -0.125000;-0.375000; 0.330204;, - -0.125000;-0.375000; 0.246450;, - -0.125000;-0.250000; 0.246450;, - 0.250000;-0.500000; 0.330204;, - 0.250000;-0.375000; 0.330204;, - 0.250000;-0.375000; 0.246450;, - 0.250000;-0.500000; 0.246450;, - -0.125000; 0.125000; 0.330204;, - -0.125000; 0.000000; 0.330204;, - -0.125000; 0.000000; 0.246450;, - -0.125000; 0.125000; 0.246450;, - -0.250000;-0.875000; 0.330204;, - -0.250000;-0.750000; 0.330204;, - -0.250000;-0.750000; 0.246450;, - -0.250000;-0.875000; 0.246450;, - 0.750000; 0.500000; 0.330204;, - 0.750000; 0.625000; 0.330204;, - 0.750000; 0.625000; 0.246450;, - 0.750000; 0.500000; 0.246450;, - 0.250000;-0.750000; 0.246450;, - 0.375000;-0.750000; 0.246450;, - 0.375000;-0.875000; 0.246450;, - 0.250000;-0.875000; 0.246450;, - 0.250000;-0.875000; 0.246450;, - 0.375000;-0.875000; 0.246450;, - 0.375000;-1.000000; 0.246450;, - 0.250000;-1.000000; 0.246450;, - 0.250000; 1.000000; 0.330204;, - 0.125000; 1.000000; 0.330204;, - 0.125000; 1.000000; 0.246450;, - 0.250000; 1.000000; 0.246450;, - 0.375000; 0.250000; 0.330204;, - 0.375000; 0.125000; 0.330204;, - 0.375000; 0.125000; 0.246450;, - 0.375000; 0.250000; 0.246450;, - 0.500000;-1.000000; 0.330204;, - 0.625000;-1.000000; 0.330204;, - 0.625000;-1.000000; 0.246450;, - 0.500000;-1.000000; 0.246450;, - 0.375000;-0.375000; 0.330204;, - 0.375000;-0.500000; 0.330204;, - 0.375000;-0.500000; 0.246450;, - 0.375000;-0.375000; 0.246450;, - -0.625000; 0.250000; 0.330204;, - -0.625000; 0.125000; 0.330204;, - -0.625000; 0.125000; 0.246450;, - -0.625000; 0.250000; 0.246450;, - 0.250000;-0.625000; 0.330204;, - 0.250000;-0.500000; 0.330204;, - 0.250000;-0.500000; 0.246450;, - 0.250000;-0.625000; 0.246450;, - -0.625000;-0.250000; 0.330204;, - -0.625000;-0.375000; 0.330204;, - -0.625000;-0.375000; 0.246450;, - -0.625000;-0.250000; 0.246450;, - 0.625000;-1.000000; 0.246450;, - 0.750000;-1.000000; 0.246450;, - 0.750000;-1.000000; 0.000000;, - 0.625000;-1.000000; 0.000000;, - 0.000000;-1.287628;-0.289304;, - 0.000000;-1.152395;-0.289304;, - 0.000000;-1.152395; 0.000000;, - 0.000000;-1.287628; 0.000000;, - -0.750000; 0.500000; 0.246450;, - -0.750000; 0.375000; 0.246450;, - -0.750000; 0.375000; 0.000000;, - -0.750000; 0.500000; 0.000000;, - 0.859843;-1.000000; 0.000000;, - 0.859843;-0.875000; 0.000000;, - 0.750000;-0.875000; 0.000000;, - 0.750000;-1.000000; 0.000000;, - -0.750000;-0.250000; 0.246450;, - -0.750000;-0.375000; 0.246450;, - -0.750000;-0.375000; 0.000000;, - -0.750000;-0.250000; 0.000000;, - 0.859843; 0.500000; 0.246450;, - 0.859843; 0.375000; 0.246450;, - 0.750000; 0.375000; 0.246450;, - 0.750000; 0.500000; 0.246450;, - -0.375000; 1.000000; 0.246450;, - -0.500000; 1.000000; 0.246450;, - -0.500000; 1.000000; 0.000000;, - -0.375000; 1.000000; 0.000000;, - -0.750000;-0.500000; 0.246450;, - -0.750000;-0.625000; 0.246450;, - -0.750000;-0.625000; 0.000000;, - -0.750000;-0.500000; 0.000000;, - 0.859843;-0.500000; 0.246450;, - 0.859843;-0.625000; 0.246450;, - 0.750000;-0.625000; 0.246450;, - 0.750000;-0.500000; 0.246450;, - 0.125000;-1.000000; 0.246450;, - 0.250000;-1.000000; 0.246450;, - 0.250000;-1.000000; 0.000000;, - 0.125000;-1.000000; 0.000000;, - -0.750000; 1.000000; 0.246450;, - -0.750000; 0.875000; 0.246450;, - -0.750000; 0.875000; 0.000000;, - -0.750000; 1.000000; 0.000000;, - -0.750000; 0.375000; 0.246450;, - -0.750000; 0.250000; 0.246450;, - -0.750000; 0.250000; 0.000000;, - -0.750000; 0.375000; 0.000000;, - -0.500000; 1.000000; 0.246450;, - -0.625000; 1.000000; 0.246450;, - -0.625000; 1.000000; 0.000000;, - -0.500000; 1.000000; 0.000000;, - 0.859843;-0.375000; 0.246450;, - 0.859843;-0.500000; 0.246450;, - 0.750000;-0.500000; 0.246450;, - 0.750000;-0.375000; 0.246450;, - -0.250000; 1.000000; 0.246450;, - -0.375000; 1.000000; 0.246450;, - -0.375000; 1.000000; 0.000000;, - -0.250000; 1.000000; 0.000000;, - 0.859843; 0.250000; 0.000000;, - 0.859843; 0.375000; 0.000000;, - 0.750000; 0.375000; 0.000000;, - 0.750000; 0.250000; 0.000000;, - -0.750000; 0.000000; 0.246450;, - -0.750000;-0.125000; 0.246450;, - -0.750000;-0.125000; 0.000000;, - -0.750000; 0.000000; 0.000000;, - -0.750000;-0.625000; 0.246450;, - -0.750000;-0.750000; 0.246450;, - -0.750000;-0.750000; 0.000000;, - -0.750000;-0.625000; 0.000000;, - 0.500000; 1.000000; 0.246450;, - 0.375000; 1.000000; 0.246450;, - 0.375000; 1.000000; 0.000000;, - 0.500000; 1.000000; 0.000000;, - 0.859843; 0.250000; 0.246450;, - 0.859843; 0.125000; 0.246450;, - 0.750000; 0.125000; 0.246450;, - 0.750000; 0.250000; 0.246450;, - -0.750000; 0.875000; 0.246450;, - -0.750000; 0.750000; 0.246450;, - -0.750000; 0.750000; 0.000000;, - -0.750000; 0.875000; 0.000000;, - 0.000000; 1.000000; 0.246450;, - -0.125000; 1.000000; 0.246450;, - -0.125000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -0.625000; 1.000000; 0.246450;, - -0.750000; 1.000000; 0.246450;, - -0.750000; 1.000000; 0.000000;, - -0.625000; 1.000000; 0.000000;, - 0.859843;-0.750000; 0.000000;, - 0.859843;-0.625000; 0.000000;, - 0.750000;-0.625000; 0.000000;, - 0.750000;-0.750000; 0.000000;, - 0.625000; 1.000000; 0.246450;, - 0.500000; 1.000000; 0.246450;, - 0.500000; 1.000000; 0.000000;, - 0.625000; 1.000000; 0.000000;, - 0.859843; 0.875000; 0.000000;, - 0.859843; 1.000000; 0.000000;, - 0.750000; 1.000000; 0.000000;, - 0.750000; 0.875000; 0.000000;, - -0.750000;-0.125000; 0.246450;, - -0.750000;-0.250000; 0.246450;, - -0.750000;-0.250000; 0.000000;, - -0.750000;-0.125000; 0.000000;, - -0.500000;-1.000000; 0.246450;, - -0.375000;-1.000000; 0.246450;, - -0.375000;-1.000000; 0.000000;, - -0.500000;-1.000000; 0.000000;, - 0.375000; 1.000000; 0.246450;, - 0.250000; 1.000000; 0.246450;, - 0.250000; 1.000000; 0.000000;, - 0.375000; 1.000000; 0.000000;, - 0.859843; 0.875000; 0.246450;, - 0.859843; 0.750000; 0.246450;, - 0.750000; 0.750000; 0.246450;, - 0.750000; 0.875000; 0.246450;, - 0.859843;-0.375000; 0.000000;, - 0.859843;-0.250000; 0.000000;, - 0.750000;-0.250000; 0.000000;, - 0.750000;-0.375000; 0.000000;, - -0.125000; 1.000000; 0.246450;, - -0.250000; 1.000000; 0.246450;, - -0.250000; 1.000000; 0.000000;, - -0.125000; 1.000000; 0.000000;, - -0.625000;-1.000000; 0.246450;, - -0.500000;-1.000000; 0.246450;, - -0.500000;-1.000000; 0.000000;, - -0.625000;-1.000000; 0.000000;, - 0.750000; 1.000000; 0.246450;, - 0.625000; 1.000000; 0.246450;, - 0.625000; 1.000000; 0.000000;, - 0.750000; 1.000000; 0.000000;, - 0.125000; 1.000000; 0.246450;, - 0.000000; 1.000000; 0.246450;, - 0.000000; 1.000000; 0.000000;, - 0.125000; 1.000000; 0.000000;, - -0.750000; 0.125000; 0.246450;, - -0.750000; 0.000000; 0.246450;, - -0.750000; 0.000000; 0.000000;, - -0.750000; 0.125000; 0.000000;, - 0.859843;-0.750000; 0.246450;, - 0.859843;-0.875000; 0.246450;, - 0.750000;-0.875000; 0.246450;, - 0.750000;-0.750000; 0.246450;, - -0.375000;-1.000000; 0.246450;, - -0.250000;-1.000000; 0.246450;, - -0.250000;-1.000000; 0.000000;, - -0.375000;-1.000000; 0.000000;, - 0.859843;-0.125000; 0.000000;, - 0.859843; 0.000000; 0.000000;, - 0.750000; 0.000000; 0.000000;, - 0.750000;-0.125000; 0.000000;, - 0.375000;-1.000000; 0.246450;, - 0.500000;-1.000000; 0.246450;, - 0.500000;-1.000000; 0.000000;, - 0.375000;-1.000000; 0.000000;, - -0.750000;-0.875000; 0.246450;, - -0.750000;-1.000000; 0.246450;, - -0.750000;-1.000000; 0.000000;, - -0.750000;-0.875000; 0.000000;, - -0.125000;-1.000000; 0.246450;, - 0.000000;-1.000000; 0.246450;, - 0.000000;-1.000000; 0.000000;, - -0.125000;-1.000000; 0.000000;, - -0.750000;-1.000000; 0.246450;, - -0.625000;-1.000000; 0.246450;, - -0.625000;-1.000000; 0.000000;, - -0.750000;-1.000000; 0.000000;, - 0.250000; 1.000000; 0.246450;, - 0.125000; 1.000000; 0.246450;, - 0.125000; 1.000000; 0.000000;, - 0.250000; 1.000000; 0.000000;, - -0.750000; 0.625000; 0.246450;, - -0.750000; 0.500000; 0.246450;, - -0.750000; 0.500000; 0.000000;, - -0.750000; 0.625000; 0.000000;, - -0.750000; 0.250000; 0.246450;, - -0.750000; 0.125000; 0.246450;, - -0.750000; 0.125000; 0.000000;, - -0.750000; 0.250000; 0.000000;, - 0.859843; 0.125000; 0.246450;, - 0.859843; 0.000000; 0.246450;, - 0.750000; 0.000000; 0.246450;, - 0.750000; 0.125000; 0.246450;, - 0.500000;-1.000000; 0.246450;, - 0.625000;-1.000000; 0.246450;, - 0.625000;-1.000000; 0.000000;, - 0.500000;-1.000000; 0.000000;, - 0.250000;-1.000000; 0.246450;, - 0.375000;-1.000000; 0.246450;, - 0.375000;-1.000000; 0.000000;, - 0.250000;-1.000000; 0.000000;, - 0.859843; 1.000000; 0.246450;, - 0.859843; 0.875000; 0.246450;, - 0.750000; 0.875000; 0.246450;, - 0.750000; 1.000000; 0.246450;, - -0.750000;-0.375000; 0.246450;, - -0.750000;-0.500000; 0.246450;, - -0.750000;-0.500000; 0.000000;, - -0.750000;-0.375000; 0.000000;, - -0.750000;-0.750000; 0.246450;, - -0.750000;-0.875000; 0.246450;, - -0.750000;-0.875000; 0.000000;, - -0.750000;-0.750000; 0.000000;, - 0.859843;-0.875000; 0.246450;, - 0.859843;-1.000000; 0.246450;, - 0.750000;-1.000000; 0.246450;, - 0.750000;-0.875000; 0.246450;, - -0.250000;-1.000000; 0.246450;, - -0.125000;-1.000000; 0.246450;, - -0.125000;-1.000000; 0.000000;, - -0.250000;-1.000000; 0.000000;, - 0.859843; 0.375000; 0.000000;, - 0.859843; 0.500000; 0.000000;, - 0.750000; 0.500000; 0.000000;, - 0.750000; 0.375000; 0.000000;, - -0.750000; 0.750000; 0.246450;, - -0.750000; 0.625000; 0.246450;, - -0.750000; 0.625000; 0.000000;, - -0.750000; 0.750000; 0.000000;, - -0.125000; 1.000000; 0.330204;, - 0.000000; 1.000000; 0.330204;, - 0.000000; 0.875000; 0.330204;, - -0.125000; 0.875000; 0.330204;, - -0.125000; 0.000000; 0.330204;, - 0.000000; 0.000000; 0.330204;, - 0.000000;-0.125000; 0.330204;, - -0.125000;-0.125000; 0.330204;, - 0.375000; 1.000000; 0.330204;, - 0.500000; 1.000000; 0.330204;, - 0.500000; 0.875000; 0.330204;, - 0.375000; 0.875000; 0.330204;, - 0.375000; 0.500000; 0.330204;, - 0.500000; 0.500000; 0.330204;, - 0.500000; 0.375000; 0.330204;, - 0.375000; 0.375000; 0.330204;, - -0.625000; 1.000000; 0.330204;, - -0.500000; 1.000000; 0.330204;, - -0.500000; 0.875000; 0.330204;, - -0.625000; 0.875000; 0.330204;, - -0.625000; 0.500000; 0.330204;, - -0.500000; 0.500000; 0.330204;, - -0.500000; 0.375000; 0.330204;, - -0.625000; 0.375000; 0.330204;, - -0.125000; 0.500000; 0.330204;, - 0.000000; 0.500000; 0.330204;, - 0.000000; 0.375000; 0.330204;, - -0.125000; 0.375000; 0.330204;, - -0.625000; 0.000000; 0.330204;, - -0.500000; 0.000000; 0.330204;, - -0.500000;-0.125000; 0.330204;, - -0.625000;-0.125000; 0.330204;, - -0.625000;-0.500000; 0.330204;, - -0.500000;-0.500000; 0.330204;, - -0.500000;-0.625000; 0.330204;, - -0.625000;-0.625000; 0.330204;, - -0.125000;-0.500000; 0.330204;, - 0.000000;-0.500000; 0.330204;, - 0.000000;-0.625000; 0.330204;, - -0.125000;-0.625000; 0.330204;, - 0.375000; 0.000000; 0.330204;, - 0.500000; 0.000000; 0.330204;, - 0.500000;-0.125000; 0.330204;, - 0.375000;-0.125000; 0.330204;, - 0.375000;-0.500000; 0.330204;, - 0.500000;-0.500000; 0.330204;, - 0.500000;-0.625000; 0.330204;, - 0.375000;-0.625000; 0.330204;, - 0.625000; 1.000000; 0.330204;, - 0.750000; 1.000000; 0.330204;, - 0.750000; 0.875000; 0.330204;, - 0.625000; 0.875000; 0.330204;, - 0.625000; 0.750000; 0.330204;, - 0.750000; 0.750000; 0.330204;, - 0.750000; 0.625000; 0.330204;, - 0.625000; 0.625000; 0.330204;, - -0.375000; 1.000000; 0.330204;, - -0.250000; 1.000000; 0.330204;, - -0.250000; 0.875000; 0.330204;, - -0.375000; 0.875000; 0.330204;, - -0.375000; 0.750000; 0.330204;, - -0.250000; 0.750000; 0.330204;, - -0.250000; 0.625000; 0.330204;, - -0.375000; 0.625000; 0.330204;, - -0.125000; 0.750000; 0.330204;, - 0.000000; 0.750000; 0.330204;, - 0.000000; 0.625000; 0.330204;, - -0.125000; 0.625000; 0.330204;, - -0.375000; 0.000000; 0.330204;, - -0.250000; 0.000000; 0.330204;, - -0.250000;-0.125000; 0.330204;, - -0.375000;-0.125000; 0.330204;, - -0.375000;-0.250000; 0.330204;, - -0.250000;-0.250000; 0.330204;, - -0.250000;-0.375000; 0.330204;, - -0.375000;-0.375000; 0.330204;, - -0.125000;-0.250000; 0.330204;, - 0.000000;-0.250000; 0.330204;, - 0.000000;-0.375000; 0.330204;, - -0.125000;-0.375000; 0.330204;, - 0.625000; 0.000000; 0.330204;, - 0.750000; 0.000000; 0.330204;, - 0.750000;-0.125000; 0.330204;, - 0.625000;-0.125000; 0.330204;, - 0.625000;-0.250000; 0.330204;, - 0.750000;-0.250000; 0.330204;, - 0.750000;-0.375000; 0.330204;, - 0.625000;-0.375000; 0.330204;, - 0.125000; 1.000000; 0.330204;, - 0.250000; 1.000000; 0.330204;, - 0.250000; 0.875000; 0.330204;, - 0.125000; 0.875000; 0.330204;, - 0.125000; 0.750000; 0.330204;, - 0.250000; 0.750000; 0.330204;, - 0.250000; 0.625000; 0.330204;, - 0.125000; 0.625000; 0.330204;, - 0.375000; 0.750000; 0.330204;, - 0.500000; 0.750000; 0.330204;, - 0.500000; 0.625000; 0.330204;, - 0.375000; 0.625000; 0.330204;, - 0.125000; 0.500000; 0.330204;, - 0.250000; 0.500000; 0.330204;, - 0.250000; 0.375000; 0.330204;, - 0.125000; 0.375000; 0.330204;, - 0.125000; 0.250000; 0.330204;, - 0.250000; 0.250000; 0.330204;, - 0.250000; 0.125000; 0.330204;, - 0.125000; 0.125000; 0.330204;, - 0.375000; 0.250000; 0.330204;, - 0.500000; 0.250000; 0.330204;, - 0.500000; 0.125000; 0.330204;, - 0.375000; 0.125000; 0.330204;, - 0.625000; 0.500000; 0.330204;, - 0.750000; 0.500000; 0.330204;, - 0.750000; 0.375000; 0.330204;, - 0.625000; 0.375000; 0.330204;, - 0.625000; 0.250000; 0.330204;, - 0.750000; 0.250000; 0.330204;, - 0.750000; 0.125000; 0.330204;, - 0.625000; 0.125000; 0.330204;, - -0.625000; 0.750000; 0.330204;, - -0.500000; 0.750000; 0.330204;, - -0.500000; 0.625000; 0.330204;, - -0.625000; 0.625000; 0.330204;, - -0.625000; 0.250000; 0.330204;, - -0.500000; 0.250000; 0.330204;, - -0.500000; 0.125000; 0.330204;, - -0.625000; 0.125000; 0.330204;, - -0.375000; 0.500000; 0.330204;, - -0.250000; 0.500000; 0.330204;, - -0.250000; 0.375000; 0.330204;, - -0.375000; 0.375000; 0.330204;, - -0.375000; 0.250000; 0.330204;, - -0.250000; 0.250000; 0.330204;, - -0.250000; 0.125000; 0.330204;, - -0.375000; 0.125000; 0.330204;, - -0.125000; 0.250000; 0.330204;, - 0.000000; 0.250000; 0.330204;, - 0.000000; 0.125000; 0.330204;, - -0.125000; 0.125000; 0.330204;, - -0.625000;-0.250000; 0.330204;, - -0.500000;-0.250000; 0.330204;, - -0.500000;-0.375000; 0.330204;, - -0.625000;-0.375000; 0.330204;, - -0.625000;-0.750000; 0.330204;, - -0.500000;-0.750000; 0.330204;, - -0.500000;-0.875000; 0.330204;, - -0.625000;-0.875000; 0.330204;, - -0.375000;-0.500000; 0.330204;, - -0.250000;-0.500000; 0.330204;, - -0.250000;-0.625000; 0.330204;, - -0.375000;-0.625000; 0.330204;, - -0.375000;-0.750000; 0.330204;, - -0.250000;-0.750000; 0.330204;, - -0.250000;-0.875000; 0.330204;, - -0.375000;-0.875000; 0.330204;, - -0.125000;-0.750000; 0.330204;, - 0.000000;-0.750000; 0.330204;, - 0.000000;-0.875000; 0.330204;, - -0.125000;-0.875000; 0.330204;, - 0.125000; 0.000000; 0.330204;, - 0.250000; 0.000000; 0.330204;, - 0.250000;-0.125000; 0.330204;, - 0.125000;-0.125000; 0.330204;, - 0.125000;-0.250000; 0.330204;, - 0.250000;-0.250000; 0.330204;, - 0.250000;-0.375000; 0.330204;, - 0.125000;-0.375000; 0.330204;, - 0.375000;-0.250000; 0.330204;, - 0.500000;-0.250000; 0.330204;, - 0.500000;-0.375000; 0.330204;, - 0.375000;-0.375000; 0.330204;, - 0.125000;-0.500000; 0.330204;, - 0.250000;-0.500000; 0.330204;, - 0.250000;-0.625000; 0.330204;, - 0.125000;-0.625000; 0.330204;, - 0.125000;-0.750000; 0.330204;, - 0.250000;-0.750000; 0.330204;, - 0.250000;-0.875000; 0.330204;, - 0.125000;-0.875000; 0.330204;, - 0.375000;-0.750000; 0.330204;, - 0.500000;-0.750000; 0.330204;, - 0.500000;-0.875000; 0.330204;, - 0.375000;-0.875000; 0.330204;, - 0.625000;-0.500000; 0.330204;, - 0.750000;-0.500000; 0.330204;, - 0.750000;-0.625000; 0.330204;, - 0.625000;-0.625000; 0.330204;, - 0.625000;-0.750000; 0.330204;, - 0.750000;-0.750000; 0.330204;, - 0.750000;-0.875000; 0.330204;, - 0.625000;-0.875000; 0.330204;, - -0.125000; 0.875000; 0.330204;, - 0.000000; 0.875000; 0.330204;, - 0.000000; 0.750000; 0.330204;, - -0.125000; 0.750000; 0.330204;, - -0.125000;-0.125000; 0.330204;, - 0.000000;-0.125000; 0.330204;, - 0.000000;-0.250000; 0.330204;, - -0.125000;-0.250000; 0.330204;, - 0.375000; 0.875000; 0.330204;, - 0.500000; 0.875000; 0.330204;, - 0.500000; 0.750000; 0.330204;, - 0.375000; 0.750000; 0.330204;, - 0.375000; 0.375000; 0.330204;, - 0.500000; 0.375000; 0.330204;, - 0.500000; 0.250000; 0.330204;, - 0.375000; 0.250000; 0.330204;, - -0.625000; 0.875000; 0.330204;, - -0.500000; 0.875000; 0.330204;, - -0.500000; 0.750000; 0.330204;, - -0.625000; 0.750000; 0.330204;, - -0.625000; 0.375000; 0.330204;, - -0.500000; 0.375000; 0.330204;, - -0.500000; 0.250000; 0.330204;, - -0.625000; 0.250000; 0.330204;, - -0.125000; 0.375000; 0.330204;, - 0.000000; 0.375000; 0.330204;, - 0.000000; 0.250000; 0.330204;, - -0.125000; 0.250000; 0.330204;, - -0.625000;-0.125000; 0.330204;, - -0.500000;-0.125000; 0.330204;, - -0.500000;-0.250000; 0.330204;, - -0.625000;-0.250000; 0.330204;, - -0.625000;-0.625000; 0.330204;, - -0.500000;-0.625000; 0.330204;, - -0.500000;-0.750000; 0.330204;, - -0.625000;-0.750000; 0.330204;, - -0.125000;-0.625000; 0.330204;, - 0.000000;-0.625000; 0.330204;, - 0.000000;-0.750000; 0.330204;, - -0.125000;-0.750000; 0.330204;, - 0.375000;-0.125000; 0.330204;, - 0.500000;-0.125000; 0.330204;, - 0.500000;-0.250000; 0.330204;, - 0.375000;-0.250000; 0.330204;, - 0.375000;-0.625000; 0.330204;, - 0.500000;-0.625000; 0.330204;, - 0.500000;-0.750000; 0.330204;, - 0.375000;-0.750000; 0.330204;, - 0.500000; 1.000000; 0.330204;, - 0.625000; 1.000000; 0.330204;, - 0.625000; 0.875000; 0.330204;, - 0.500000; 0.875000; 0.330204;, - 0.500000; 0.875000; 0.330204;, - 0.625000; 0.875000; 0.330204;, - 0.625000; 0.750000; 0.330204;, - 0.500000; 0.750000; 0.330204;, - 0.625000; 0.875000; 0.330204;, - 0.750000; 0.875000; 0.330204;, - 0.750000; 0.750000; 0.330204;, - 0.625000; 0.750000; 0.330204;, - 0.500000; 0.750000; 0.330204;, - 0.625000; 0.750000; 0.330204;, - 0.625000; 0.625000; 0.330204;, - 0.500000; 0.625000; 0.330204;, - 0.500000; 0.625000; 0.330204;, - 0.625000; 0.625000; 0.330204;, - 0.625000; 0.500000; 0.330204;, - 0.500000; 0.500000; 0.330204;, - 0.625000; 0.625000; 0.330204;, - 0.750000; 0.625000; 0.330204;, - 0.750000; 0.500000; 0.330204;, - 0.625000; 0.500000; 0.330204;, - -0.500000; 1.000000; 0.330204;, - -0.375000; 1.000000; 0.330204;, - -0.375000; 0.875000; 0.330204;, - -0.500000; 0.875000; 0.330204;, - -0.500000; 0.875000; 0.330204;, - -0.375000; 0.875000; 0.330204;, - -0.375000; 0.750000; 0.330204;, - -0.500000; 0.750000; 0.330204;, - -0.375000; 0.875000; 0.330204;, - -0.250000; 0.875000; 0.330204;, - -0.250000; 0.750000; 0.330204;, - -0.375000; 0.750000; 0.330204;, - -0.500000; 0.750000; 0.330204;, - -0.375000; 0.750000; 0.330204;, - -0.375000; 0.625000; 0.330204;, - -0.500000; 0.625000; 0.330204;, - -0.500000; 0.625000; 0.330204;, - -0.375000; 0.625000; 0.330204;, - -0.375000; 0.500000; 0.330204;, - -0.500000; 0.500000; 0.330204;, - -0.375000; 0.625000; 0.330204;, - -0.250000; 0.625000; 0.330204;, - -0.250000; 0.500000; 0.330204;, - -0.375000; 0.500000; 0.330204;, - -0.125000; 0.625000; 0.330204;, - 0.000000; 0.625000; 0.330204;, - 0.000000; 0.500000; 0.330204;, - -0.125000; 0.500000; 0.330204;, - -0.500000; 0.000000; 0.330204;, - -0.375000; 0.000000; 0.330204;, - -0.375000;-0.125000; 0.330204;, - -0.500000;-0.125000; 0.330204;, - -0.500000;-0.125000; 0.330204;, - -0.375000;-0.125000; 0.330204;, - -0.375000;-0.250000; 0.330204;, - -0.500000;-0.250000; 0.330204;, - -0.375000;-0.125000; 0.330204;, - -0.250000;-0.125000; 0.330204;, - -0.250000;-0.250000; 0.330204;, - -0.375000;-0.250000; 0.330204;, - -0.500000;-0.250000; 0.330204;, - -0.375000;-0.250000; 0.330204;, - -0.375000;-0.375000; 0.330204;, - -0.500000;-0.375000; 0.330204;, - -0.500000;-0.375000; 0.330204;, - -0.375000;-0.375000; 0.330204;, - -0.375000;-0.500000; 0.330204;, - -0.500000;-0.500000; 0.330204;, - -0.375000;-0.375000; 0.330204;, - -0.250000;-0.375000; 0.330204;, - -0.250000;-0.500000; 0.330204;, - -0.375000;-0.500000; 0.330204;, - -0.125000;-0.375000; 0.330204;, - 0.000000;-0.375000; 0.330204;, - 0.000000;-0.500000; 0.330204;, - -0.125000;-0.500000; 0.330204;, - 0.500000; 0.000000; 0.330204;, - 0.625000; 0.000000; 0.330204;, - 0.625000;-0.125000; 0.330204;, - 0.500000;-0.125000; 0.330204;, - 0.500000;-0.125000; 0.330204;, - 0.625000;-0.125000; 0.330204;, - 0.625000;-0.250000; 0.330204;, - 0.500000;-0.250000; 0.330204;, - 0.625000;-0.125000; 0.330204;, - 0.750000;-0.125000; 0.330204;, - 0.750000;-0.250000; 0.330204;, - 0.625000;-0.250000; 0.330204;, - 0.500000;-0.250000; 0.330204;, - 0.625000;-0.250000; 0.330204;, - 0.625000;-0.375000; 0.330204;, - 0.500000;-0.375000; 0.330204;, - 0.500000;-0.375000; 0.330204;, - 0.625000;-0.375000; 0.330204;, - 0.625000;-0.500000; 0.330204;, - 0.500000;-0.500000; 0.330204;, - 0.625000;-0.375000; 0.330204;, - 0.750000;-0.375000; 0.330204;, - 0.750000;-0.500000; 0.330204;, - 0.625000;-0.500000; 0.330204;, - 0.000000; 1.000000; 0.330204;, - 0.125000; 1.000000; 0.330204;, - 0.125000; 0.875000; 0.330204;, - 0.000000; 0.875000; 0.330204;, - 0.000000; 0.875000; 0.330204;, - 0.125000; 0.875000; 0.330204;, - 0.125000; 0.750000; 0.330204;, - 0.000000; 0.750000; 0.330204;, - 0.125000; 0.875000; 0.330204;, - 0.250000; 0.875000; 0.330204;, - 0.250000; 0.750000; 0.330204;, - 0.125000; 0.750000; 0.330204;, - 0.000000; 0.750000; 0.330204;, - 0.125000; 0.750000; 0.330204;, - 0.125000; 0.625000; 0.330204;, - 0.000000; 0.625000; 0.330204;, - 0.000000; 0.625000; 0.330204;, - 0.125000; 0.625000; 0.330204;, - 0.125000; 0.500000; 0.330204;, - 0.000000; 0.500000; 0.330204;, - 0.125000; 0.625000; 0.330204;, - 0.250000; 0.625000; 0.330204;, - 0.250000; 0.500000; 0.330204;, - 0.125000; 0.500000; 0.330204;, - 0.375000; 0.625000; 0.330204;, - 0.500000; 0.625000; 0.330204;, - 0.500000; 0.500000; 0.330204;, - 0.375000; 0.500000; 0.330204;, - 0.000000; 0.500000; 0.330204;, - 0.125000; 0.500000; 0.330204;, - 0.125000; 0.375000; 0.330204;, - 0.000000; 0.375000; 0.330204;, - 0.000000; 0.375000; 0.330204;, - 0.125000; 0.375000; 0.330204;, - 0.125000; 0.250000; 0.330204;, - 0.000000; 0.250000; 0.330204;, - 0.125000; 0.375000; 0.330204;, - 0.250000; 0.375000; 0.330204;, - 0.250000; 0.250000; 0.330204;, - 0.125000; 0.250000; 0.330204;, - 0.000000; 0.250000; 0.330204;, - 0.125000; 0.250000; 0.330204;, - 0.125000; 0.125000; 0.330204;, - 0.000000; 0.125000; 0.330204;, - 0.000000; 0.125000; 0.330204;, - 0.125000; 0.125000; 0.330204;, - 0.125000; 0.000000; 0.330204;, - 0.000000; 0.000000; 0.330204;, - 0.125000; 0.125000; 0.330204;, - 0.250000; 0.125000; 0.330204;, - 0.250000; 0.000000; 0.330204;, - 0.125000; 0.000000; 0.330204;, - 0.375000; 0.125000; 0.330204;, - 0.500000; 0.125000; 0.330204;, - 0.500000; 0.000000; 0.330204;, - 0.375000; 0.000000; 0.330204;, - 0.500000; 0.500000; 0.330204;, - 0.625000; 0.500000; 0.330204;, - 0.625000; 0.375000; 0.330204;, - 0.500000; 0.375000; 0.330204;, - 0.500000; 0.375000; 0.330204;, - 0.625000; 0.375000; 0.330204;, - 0.625000; 0.250000; 0.330204;, - 0.500000; 0.250000; 0.330204;, - 0.625000; 0.375000; 0.330204;, - 0.750000; 0.375000; 0.330204;, - 0.750000; 0.250000; 0.330204;, - 0.625000; 0.250000; 0.330204;, - 0.500000; 0.250000; 0.330204;, - 0.625000; 0.250000; 0.330204;, - 0.625000; 0.125000; 0.330204;, - 0.500000; 0.125000; 0.330204;, - 0.500000; 0.125000; 0.330204;, - 0.625000; 0.125000; 0.330204;, - 0.625000; 0.000000; 0.330204;, - 0.500000; 0.000000; 0.330204;, - 0.625000; 0.125000; 0.330204;, - 0.750000; 0.125000; 0.330204;, - 0.750000; 0.000000; 0.330204;, - 0.625000; 0.000000; 0.330204;, - -0.625000; 0.625000; 0.330204;, - -0.500000; 0.625000; 0.330204;, - -0.500000; 0.500000; 0.330204;, - -0.625000; 0.500000; 0.330204;, - -0.625000; 0.125000; 0.330204;, - -0.500000; 0.125000; 0.330204;, - -0.500000; 0.000000; 0.330204;, - -0.625000; 0.000000; 0.330204;, - -0.500000; 0.500000; 0.330204;, - -0.375000; 0.500000; 0.330204;, - -0.375000; 0.375000; 0.330204;, - -0.500000; 0.375000; 0.330204;, - -0.500000; 0.375000; 0.330204;, - -0.375000; 0.375000; 0.330204;, - -0.375000; 0.250000; 0.330204;, - -0.500000; 0.250000; 0.330204;, - -0.375000; 0.375000; 0.330204;, - -0.250000; 0.375000; 0.330204;, - -0.250000; 0.250000; 0.330204;, - -0.375000; 0.250000; 0.330204;, - -0.500000; 0.250000; 0.330204;, - -0.375000; 0.250000; 0.330204;, - -0.375000; 0.125000; 0.330204;, - -0.500000; 0.125000; 0.330204;, - -0.500000; 0.125000; 0.330204;, - -0.375000; 0.125000; 0.330204;, - -0.375000; 0.000000; 0.330204;, - -0.500000; 0.000000; 0.330204;, - -0.375000; 0.125000; 0.330204;, - -0.250000; 0.125000; 0.330204;, - -0.250000; 0.000000; 0.330204;, - -0.375000; 0.000000; 0.330204;, - -0.125000; 0.125000; 0.330204;, - 0.000000; 0.125000; 0.330204;, - 0.000000; 0.000000; 0.330204;, - -0.125000; 0.000000; 0.330204;, - -0.625000;-0.375000; 0.330204;, - -0.500000;-0.375000; 0.330204;, - -0.500000;-0.500000; 0.330204;, - -0.625000;-0.500000; 0.330204;, - -0.625000;-0.875000; 0.330204;, - -0.500000;-0.875000; 0.330204;, - -0.500000;-1.000000; 0.330204;, - -0.625000;-1.000000; 0.330204;, - -0.500000;-0.500000; 0.330204;, - -0.375000;-0.500000; 0.330204;, - -0.375000;-0.625000; 0.330204;, - -0.500000;-0.625000; 0.330204;, - -0.500000;-0.625000; 0.330204;, - -0.375000;-0.625000; 0.330204;, - -0.375000;-0.750000; 0.330204;, - -0.500000;-0.750000; 0.330204;, - -0.375000;-0.625000; 0.330204;, - -0.250000;-0.625000; 0.330204;, - -0.250000;-0.750000; 0.330204;, - -0.375000;-0.750000; 0.330204;, - -0.500000;-0.750000; 0.330204;, - -0.375000;-0.750000; 0.330204;, - -0.375000;-0.875000; 0.330204;, - -0.500000;-0.875000; 0.330204;, - -0.500000;-0.875000; 0.330204;, - -0.375000;-0.875000; 0.330204;, - -0.375000;-1.000000; 0.330204;, - -0.500000;-1.000000; 0.330204;, - -0.375000;-0.875000; 0.330204;, - -0.250000;-0.875000; 0.330204;, - -0.250000;-1.000000; 0.330204;, - -0.375000;-1.000000; 0.330204;, - -0.125000;-0.875000; 0.330204;, - 0.000000;-0.875000; 0.330204;, - 0.000000;-1.000000; 0.330204;, - -0.125000;-1.000000; 0.330204;, - 0.000000; 0.000000; 0.330204;, - 0.125000; 0.000000; 0.330204;, - 0.125000;-0.125000; 0.330204;, - 0.000000;-0.125000; 0.330204;, - 0.000000;-0.125000; 0.330204;, - 0.125000;-0.125000; 0.330204;, - 0.125000;-0.250000; 0.330204;, - 0.000000;-0.250000; 0.330204;, - 0.125000;-0.125000; 0.330204;, - 0.250000;-0.125000; 0.330204;, - 0.250000;-0.250000; 0.330204;, - 0.125000;-0.250000; 0.330204;, - 0.000000;-0.250000; 0.330204;, - 0.125000;-0.250000; 0.330204;, - 0.125000;-0.375000; 0.330204;, - 0.000000;-0.375000; 0.330204;, - 0.000000;-0.375000; 0.330204;, - 0.125000;-0.375000; 0.330204;, - 0.125000;-0.500000; 0.330204;, - 0.000000;-0.500000; 0.330204;, - 0.125000;-0.375000; 0.330204;, - 0.250000;-0.375000; 0.330204;, - 0.250000;-0.500000; 0.330204;, - 0.125000;-0.500000; 0.330204;, - 0.375000;-0.375000; 0.330204;, - 0.500000;-0.375000; 0.330204;, - 0.500000;-0.500000; 0.330204;, - 0.375000;-0.500000; 0.330204;, - 0.000000;-0.500000; 0.330204;, - 0.125000;-0.500000; 0.330204;, - 0.125000;-0.625000; 0.330204;, - 0.000000;-0.625000; 0.330204;, - 0.000000;-0.625000; 0.330204;, - 0.125000;-0.625000; 0.330204;, - 0.125000;-0.750000; 0.330204;, - 0.000000;-0.750000; 0.330204;, - 0.125000;-0.625000; 0.330204;, - 0.250000;-0.625000; 0.330204;, - 0.250000;-0.750000; 0.330204;, - 0.125000;-0.750000; 0.330204;, - 0.000000;-0.750000; 0.330204;, - 0.125000;-0.750000; 0.330204;, - 0.125000;-0.875000; 0.330204;, - 0.000000;-0.875000; 0.330204;, - 0.000000;-0.875000; 0.330204;, - 0.125000;-0.875000; 0.330204;, - 0.125000;-1.000000; 0.330204;, - 0.000000;-1.000000; 0.330204;, - 0.125000;-0.875000; 0.330204;, - 0.250000;-0.875000; 0.330204;, - 0.250000;-1.000000; 0.330204;, - 0.125000;-1.000000; 0.330204;, - 0.375000;-0.875000; 0.330204;, - 0.500000;-0.875000; 0.330204;, - 0.500000;-1.000000; 0.330204;, - 0.375000;-1.000000; 0.330204;, - 0.500000;-0.500000; 0.330204;, - 0.625000;-0.500000; 0.330204;, - 0.625000;-0.625000; 0.330204;, - 0.500000;-0.625000; 0.330204;, - 0.500000;-0.625000; 0.330204;, - 0.625000;-0.625000; 0.330204;, - 0.625000;-0.750000; 0.330204;, - 0.500000;-0.750000; 0.330204;, - 0.625000;-0.625000; 0.330204;, - 0.750000;-0.625000; 0.330204;, - 0.750000;-0.750000; 0.330204;, - 0.625000;-0.750000; 0.330204;, - 0.500000;-0.750000; 0.330204;, - 0.625000;-0.750000; 0.330204;, - 0.625000;-0.875000; 0.330204;, - 0.500000;-0.875000; 0.330204;, - 0.500000;-0.875000; 0.330204;, - 0.625000;-0.875000; 0.330204;, - 0.625000;-1.000000; 0.330204;, - 0.500000;-1.000000; 0.330204;, - 0.625000;-0.875000; 0.330204;, - 0.750000;-0.875000; 0.330204;, - 0.750000;-1.000000; 0.330204;, - 0.625000;-1.000000; 0.330204;, - -0.500000; 0.625000;-0.117178;, - -0.500000; 0.750000;-0.117178;, - -0.625000; 0.750000;-0.117178;, - -0.625000; 0.625000;-0.117178;, - -0.500000; 0.125000;-0.117178;, - -0.500000; 0.250000;-0.117178;, - -0.625000; 0.250000;-0.117178;, - -0.625000; 0.125000;-0.117178;, - -0.250000; 0.375000;-0.117178;, - -0.250000; 0.500000;-0.117178;, - -0.375000; 0.500000;-0.117178;, - -0.375000; 0.375000;-0.117178;, - -0.250000; 0.125000;-0.117178;, - -0.250000; 0.250000;-0.117178;, - -0.375000; 0.250000;-0.117178;, - -0.375000; 0.125000;-0.117178;, - 0.000000; 0.125000;-0.117178;, - 0.000000; 0.250000;-0.117178;, - -0.125000; 0.250000;-0.117178;, - -0.125000; 0.125000;-0.117178;, - -0.500000;-0.375000;-0.117178;, - -0.500000;-0.250000;-0.117178;, - -0.625000;-0.250000;-0.117178;, - -0.625000;-0.375000;-0.117178;, - -0.500000;-0.875000;-0.117178;, - -0.500000;-0.750000;-0.117178;, - -0.625000;-0.750000;-0.117178;, - -0.625000;-0.875000;-0.117178;, - -0.250000;-0.625000;-0.117178;, - -0.250000;-0.500000;-0.117178;, - -0.375000;-0.500000;-0.117178;, - -0.375000;-0.625000;-0.117178;, - -0.250000;-0.875000;-0.117178;, - -0.250000;-0.750000;-0.117178;, - -0.375000;-0.750000;-0.117178;, - -0.375000;-0.875000;-0.117178;, - 0.000000;-0.875000;-0.117178;, - 0.000000;-0.750000;-0.117178;, - -0.125000;-0.750000;-0.117178;, - -0.125000;-0.875000;-0.117178;, - 0.250000;-0.125000;-0.117178;, - 0.250000; 0.000000;-0.117178;, - 0.125000; 0.000000;-0.117178;, - 0.125000;-0.125000;-0.117178;, - 0.250000;-0.375000;-0.117178;, - 0.250000;-0.250000;-0.117178;, - 0.125000;-0.250000;-0.117178;, - 0.125000;-0.375000;-0.117178;, - 0.500000;-0.375000;-0.117178;, - 0.500000;-0.250000;-0.117178;, - 0.375000;-0.250000;-0.117178;, - 0.375000;-0.375000;-0.117178;, - 0.250000;-0.625000;-0.117178;, - 0.250000;-0.500000;-0.117178;, - 0.125000;-0.500000;-0.117178;, - 0.125000;-0.625000;-0.117178;, - 0.250000;-0.875000;-0.117178;, - 0.250000;-0.750000;-0.117178;, - 0.125000;-0.750000;-0.117178;, - 0.125000;-0.875000;-0.117178;, - 0.500000;-0.875000;-0.117178;, - 0.500000;-0.750000;-0.117178;, - 0.375000;-0.750000;-0.117178;, - 0.375000;-0.875000;-0.117178;, - 0.750000;-0.625000;-0.117178;, - 0.750000;-0.500000;-0.117178;, - 0.625000;-0.500000;-0.117178;, - 0.625000;-0.625000;-0.117178;, - 0.750000;-0.875000;-0.117178;, - 0.750000;-0.750000;-0.117178;, - 0.625000;-0.750000;-0.117178;, - 0.625000;-0.875000;-0.117178;, - 0.000000; 0.750000;-0.117178;, - 0.000000; 0.875000;-0.117178;, - -0.125000; 0.875000;-0.117178;, - -0.125000; 0.750000;-0.117178;, - 0.000000;-0.250000;-0.117178;, - 0.000000;-0.125000;-0.117178;, - -0.125000;-0.125000;-0.117178;, - -0.125000;-0.250000;-0.117178;, - 0.500000; 0.750000;-0.117178;, - 0.500000; 0.875000;-0.117178;, - 0.375000; 0.875000;-0.117178;, - 0.375000; 0.750000;-0.117178;, - 0.500000; 0.250000;-0.117178;, - 0.500000; 0.375000;-0.117178;, - 0.375000; 0.375000;-0.117178;, - 0.375000; 0.250000;-0.117178;, - -0.500000; 0.750000;-0.117178;, - -0.500000; 0.875000;-0.117178;, - -0.625000; 0.875000;-0.117178;, - -0.625000; 0.750000;-0.117178;, - -0.500000; 0.250000;-0.117178;, - -0.500000; 0.375000;-0.117178;, - -0.625000; 0.375000;-0.117178;, - -0.625000; 0.250000;-0.117178;, - 0.000000; 0.250000;-0.117178;, - 0.000000; 0.375000;-0.117178;, - -0.125000; 0.375000;-0.117178;, - -0.125000; 0.250000;-0.117178;, - -0.500000;-0.250000;-0.117178;, - -0.500000;-0.125000;-0.117178;, - -0.625000;-0.125000;-0.117178;, - -0.625000;-0.250000;-0.117178;, - -0.500000;-0.750000;-0.117178;, - -0.500000;-0.625000;-0.117178;, - -0.625000;-0.625000;-0.117178;, - -0.625000;-0.750000;-0.117178;, - 0.000000;-0.750000;-0.117178;, - 0.000000;-0.625000;-0.117178;, - -0.125000;-0.625000;-0.117178;, - -0.125000;-0.750000;-0.117178;, - 0.500000;-0.250000;-0.117178;, - 0.500000;-0.125000;-0.117178;, - 0.375000;-0.125000;-0.117178;, - 0.375000;-0.250000;-0.117178;, - 0.500000;-0.750000;-0.117178;, - 0.500000;-0.625000;-0.117178;, - 0.375000;-0.625000;-0.117178;, - 0.375000;-0.750000;-0.117178;, - 0.625000; 0.875000;-0.117178;, - 0.625000; 1.000000;-0.117178;, - 0.500000; 1.000000;-0.117178;, - 0.500000; 0.875000;-0.117178;, - 0.625000; 0.750000;-0.117178;, - 0.625000; 0.875000;-0.117178;, - 0.500000; 0.875000;-0.117178;, - 0.500000; 0.750000;-0.117178;, - 0.750000; 0.750000;-0.117178;, - 0.750000; 0.875000;-0.117178;, - 0.625000; 0.875000;-0.117178;, - 0.625000; 0.750000;-0.117178;, - 0.625000; 0.625000;-0.117178;, - 0.625000; 0.750000;-0.117178;, - 0.500000; 0.750000;-0.117178;, - 0.500000; 0.625000;-0.117178;, - 0.625000; 0.500000;-0.117178;, - 0.625000; 0.625000;-0.117178;, - 0.500000; 0.625000;-0.117178;, - 0.500000; 0.500000;-0.117178;, - 0.750000; 0.500000;-0.117178;, - 0.750000; 0.625000;-0.117178;, - 0.625000; 0.625000;-0.117178;, - 0.625000; 0.500000;-0.117178;, - -0.375000; 0.875000;-0.117178;, - -0.375000; 1.000000;-0.117178;, - -0.500000; 1.000000;-0.117178;, - -0.500000; 0.875000;-0.117178;, - -0.375000; 0.750000;-0.117178;, - -0.375000; 0.875000;-0.117178;, - -0.500000; 0.875000;-0.117178;, - -0.500000; 0.750000;-0.117178;, - -0.250000; 0.750000;-0.117178;, - -0.250000; 0.875000;-0.117178;, - -0.375000; 0.875000;-0.117178;, - -0.375000; 0.750000;-0.117178;, - -0.375000; 0.625000;-0.117178;, - -0.375000; 0.750000;-0.117178;, - -0.500000; 0.750000;-0.117178;, - -0.500000; 0.625000;-0.117178;, - -0.375000; 0.500000;-0.117178;, - -0.375000; 0.625000;-0.117178;, - -0.500000; 0.625000;-0.117178;, - -0.500000; 0.500000;-0.117178;, - -0.250000; 0.500000;-0.117178;, - -0.250000; 0.625000;-0.117178;, - -0.375000; 0.625000;-0.117178;, - -0.375000; 0.500000;-0.117178;, - 0.000000; 0.500000;-0.117178;, - 0.000000; 0.625000;-0.117178;, - -0.125000; 0.625000;-0.117178;, - -0.125000; 0.500000;-0.117178;, - -0.375000;-0.125000;-0.117178;, - -0.375000; 0.000000;-0.117178;, - -0.500000; 0.000000;-0.117178;, - -0.500000;-0.125000;-0.117178;, - -0.375000;-0.250000;-0.117178;, - -0.375000;-0.125000;-0.117178;, - -0.500000;-0.125000;-0.117178;, - -0.500000;-0.250000;-0.117178;, - -0.250000;-0.250000;-0.117178;, - -0.250000;-0.125000;-0.117178;, - -0.375000;-0.125000;-0.117178;, - -0.375000;-0.250000;-0.117178;, - -0.375000;-0.375000;-0.117178;, - -0.375000;-0.250000;-0.117178;, - -0.500000;-0.250000;-0.117178;, - -0.500000;-0.375000;-0.117178;, - -0.375000;-0.500000;-0.117178;, - -0.375000;-0.375000;-0.117178;, - -0.500000;-0.375000;-0.117178;, - -0.500000;-0.500000;-0.117178;, - -0.250000;-0.500000;-0.117178;, - -0.250000;-0.375000;-0.117178;, - -0.375000;-0.375000;-0.117178;, - -0.375000;-0.500000;-0.117178;, - 0.000000;-0.500000;-0.117178;, - 0.000000;-0.375000;-0.117178;, - -0.125000;-0.375000;-0.117178;, - -0.125000;-0.500000;-0.117178;, - 0.625000;-0.125000;-0.117178;, - 0.625000; 0.000000;-0.117178;, - 0.500000; 0.000000;-0.117178;, - 0.500000;-0.125000;-0.117178;, - 0.625000;-0.250000;-0.117178;, - 0.625000;-0.125000;-0.117178;, - 0.500000;-0.125000;-0.117178;, - 0.500000;-0.250000;-0.117178;, - 0.750000;-0.250000;-0.117178;, - 0.750000;-0.125000;-0.117178;, - 0.625000;-0.125000;-0.117178;, - 0.625000;-0.250000;-0.117178;, - 0.625000;-0.375000;-0.117178;, - 0.625000;-0.250000;-0.117178;, - 0.500000;-0.250000;-0.117178;, - 0.500000;-0.375000;-0.117178;, - 0.625000;-0.500000;-0.117178;, - 0.625000;-0.375000;-0.117178;, - 0.500000;-0.375000;-0.117178;, - 0.500000;-0.500000;-0.117178;, - 0.750000;-0.500000;-0.117178;, - 0.750000;-0.375000;-0.117178;, - 0.625000;-0.375000;-0.117178;, - 0.625000;-0.500000;-0.117178;, - 0.125000; 0.875000;-0.117178;, - 0.125000; 1.000000;-0.117178;, - 0.000000; 1.000000;-0.117178;, - 0.000000; 0.875000;-0.117178;, - 0.125000; 0.750000;-0.117178;, - 0.125000; 0.875000;-0.117178;, - 0.000000; 0.875000;-0.117178;, - 0.000000; 0.750000;-0.117178;, - 0.250000; 0.750000;-0.117178;, - 0.250000; 0.875000;-0.117178;, - 0.125000; 0.875000;-0.117178;, - 0.125000; 0.750000;-0.117178;, - 0.125000; 0.625000;-0.117178;, - 0.125000; 0.750000;-0.117178;, - 0.000000; 0.750000;-0.117178;, - 0.000000; 0.625000;-0.117178;, - 0.125000; 0.500000;-0.117178;, - 0.125000; 0.625000;-0.117178;, - 0.000000; 0.625000;-0.117178;, - 0.000000; 0.500000;-0.117178;, - 0.250000; 0.500000;-0.117178;, - 0.250000; 0.625000;-0.117178;, - 0.125000; 0.625000;-0.117178;, - 0.125000; 0.500000;-0.117178;, - 0.500000; 0.500000;-0.117178;, - 0.500000; 0.625000;-0.117178;, - 0.375000; 0.625000;-0.117178;, - 0.375000; 0.500000;-0.117178;, - 0.125000; 0.375000;-0.117178;, - 0.125000; 0.500000;-0.117178;, - 0.000000; 0.500000;-0.117178;, - 0.000000; 0.375000;-0.117178;, - 0.125000; 0.250000;-0.117178;, - 0.125000; 0.375000;-0.117178;, - 0.000000; 0.375000;-0.117178;, - 0.000000; 0.250000;-0.117178;, - 0.250000; 0.250000;-0.117178;, - 0.250000; 0.375000;-0.117178;, - 0.125000; 0.375000;-0.117178;, - 0.125000; 0.250000;-0.117178;, - 0.125000; 0.125000;-0.117178;, - 0.125000; 0.250000;-0.117178;, - 0.000000; 0.250000;-0.117178;, - 0.000000; 0.125000;-0.117178;, - 0.125000; 0.000000;-0.117178;, - 0.125000; 0.125000;-0.117178;, - 0.000000; 0.125000;-0.117178;, - 0.000000; 0.000000;-0.117178;, - 0.250000; 0.000000;-0.117178;, - 0.250000; 0.125000;-0.117178;, - 0.125000; 0.125000;-0.117178;, - 0.125000; 0.000000;-0.117178;, - 0.500000; 0.000000;-0.117178;, - 0.500000; 0.125000;-0.117178;, - 0.375000; 0.125000;-0.117178;, - 0.375000; 0.000000;-0.117178;, - 0.625000; 0.375000;-0.117178;, - 0.625000; 0.500000;-0.117178;, - 0.500000; 0.500000;-0.117178;, - 0.500000; 0.375000;-0.117178;, - 0.625000; 0.250000;-0.117178;, - 0.625000; 0.375000;-0.117178;, - 0.500000; 0.375000;-0.117178;, - 0.500000; 0.250000;-0.117178;, - 0.750000; 0.250000;-0.117178;, - 0.750000; 0.375000;-0.117178;, - 0.625000; 0.375000;-0.117178;, - 0.625000; 0.250000;-0.117178;, - 0.625000; 0.125000;-0.117178;, - 0.625000; 0.250000;-0.117178;, - 0.500000; 0.250000;-0.117178;, - 0.500000; 0.125000;-0.117178;, - 0.625000; 0.000000;-0.117178;, - 0.625000; 0.125000;-0.117178;, - 0.500000; 0.125000;-0.117178;, - 0.500000; 0.000000;-0.117178;, - 0.750000; 0.000000;-0.117178;, - 0.750000; 0.125000;-0.117178;, - 0.625000; 0.125000;-0.117178;, - 0.625000; 0.000000;-0.117178;, - -0.500000; 0.500000;-0.117178;, - -0.500000; 0.625000;-0.117178;, - -0.625000; 0.625000;-0.117178;, - -0.625000; 0.500000;-0.117178;, - -0.500000; 0.000000;-0.117178;, - -0.500000; 0.125000;-0.117178;, - -0.625000; 0.125000;-0.117178;, - -0.625000; 0.000000;-0.117178;, - -0.375000; 0.375000;-0.117178;, - -0.375000; 0.500000;-0.117178;, - -0.500000; 0.500000;-0.117178;, - -0.500000; 0.375000;-0.117178;, - -0.375000; 0.250000;-0.117178;, - -0.375000; 0.375000;-0.117178;, - -0.500000; 0.375000;-0.117178;, - -0.500000; 0.250000;-0.117178;, - -0.250000; 0.250000;-0.117178;, - -0.250000; 0.375000;-0.117178;, - -0.375000; 0.375000;-0.117178;, - -0.375000; 0.250000;-0.117178;, - -0.375000; 0.125000;-0.117178;, - -0.375000; 0.250000;-0.117178;, - -0.500000; 0.250000;-0.117178;, - -0.500000; 0.125000;-0.117178;, - -0.375000; 0.000000;-0.117178;, - -0.375000; 0.125000;-0.117178;, - -0.500000; 0.125000;-0.117178;, - -0.500000; 0.000000;-0.117178;, - -0.250000; 0.000000;-0.117178;, - -0.250000; 0.125000;-0.117178;, - -0.375000; 0.125000;-0.117178;, - -0.375000; 0.000000;-0.117178;, - 0.000000; 0.000000;-0.117178;, - 0.000000; 0.125000;-0.117178;, - -0.125000; 0.125000;-0.117178;, - -0.125000; 0.000000;-0.117178;, - -0.500000;-0.500000;-0.117178;, - -0.500000;-0.375000;-0.117178;, - -0.625000;-0.375000;-0.117178;, - -0.625000;-0.500000;-0.117178;, - -0.500000;-1.000000;-0.117178;, - -0.500000;-0.875000;-0.117178;, - -0.625000;-0.875000;-0.117178;, - -0.625000;-1.000000;-0.117178;, - -0.375000;-0.625000;-0.117178;, - -0.375000;-0.500000;-0.117178;, - -0.500000;-0.500000;-0.117178;, - -0.500000;-0.625000;-0.117178;, - -0.375000;-0.750000;-0.117178;, - -0.375000;-0.625000;-0.117178;, - -0.500000;-0.625000;-0.117178;, - -0.500000;-0.750000;-0.117178;, - -0.250000;-0.750000;-0.117178;, - -0.250000;-0.625000;-0.117178;, - -0.375000;-0.625000;-0.117178;, - -0.375000;-0.750000;-0.117178;, - -0.375000;-0.875000;-0.117178;, - -0.375000;-0.750000;-0.117178;, - -0.500000;-0.750000;-0.117178;, - -0.500000;-0.875000;-0.117178;, - -0.375000;-1.000000;-0.117178;, - -0.375000;-0.875000;-0.117178;, - -0.500000;-0.875000;-0.117178;, - -0.500000;-1.000000;-0.117178;, - -0.250000;-1.000000;-0.117178;, - -0.250000;-0.875000;-0.117178;, - -0.375000;-0.875000;-0.117178;, - -0.375000;-1.000000;-0.117178;, - 0.000000;-1.000000;-0.117178;, - 0.000000;-0.875000;-0.117178;, - -0.125000;-0.875000;-0.117178;, - -0.125000;-1.000000;-0.117178;, - 0.125000;-0.125000;-0.117178;, - 0.125000; 0.000000;-0.117178;, - 0.000000; 0.000000;-0.117178;, - 0.000000;-0.125000;-0.117178;, - 0.125000;-0.250000;-0.117178;, - 0.125000;-0.125000;-0.117178;, - 0.000000;-0.125000;-0.117178;, - 0.000000;-0.250000;-0.117178;, - 0.250000;-0.250000;-0.117178;, - 0.250000;-0.125000;-0.117178;, - 0.125000;-0.125000;-0.117178;, - 0.125000;-0.250000;-0.117178;, - 0.125000;-0.375000;-0.117178;, - 0.125000;-0.250000;-0.117178;, - 0.000000;-0.250000;-0.117178;, - 0.000000;-0.375000;-0.117178;, - 0.125000;-0.500000;-0.117178;, - 0.125000;-0.375000;-0.117178;, - 0.000000;-0.375000;-0.117178;, - 0.000000;-0.500000;-0.117178;, - 0.250000;-0.500000;-0.117178;, - 0.250000;-0.375000;-0.117178;, - 0.125000;-0.375000;-0.117178;, - 0.125000;-0.500000;-0.117178;, - 0.500000;-0.500000;-0.117178;, - 0.500000;-0.375000;-0.117178;, - 0.375000;-0.375000;-0.117178;, - 0.375000;-0.500000;-0.117178;, - 0.125000;-0.625000;-0.117178;, - 0.125000;-0.500000;-0.117178;, - 0.000000;-0.500000;-0.117178;, - 0.000000;-0.625000;-0.117178;, - 0.125000;-0.750000;-0.117178;, - 0.125000;-0.625000;-0.117178;, - 0.000000;-0.625000;-0.117178;, - 0.000000;-0.750000;-0.117178;, - 0.250000;-0.750000;-0.117178;, - 0.250000;-0.625000;-0.117178;, - 0.125000;-0.625000;-0.117178;, - 0.125000;-0.750000;-0.117178;, - 0.125000;-0.875000;-0.117178;, - 0.125000;-0.750000;-0.117178;, - 0.000000;-0.750000;-0.117178;, - 0.000000;-0.875000;-0.117178;, - 0.125000;-1.000000;-0.117178;, - 0.125000;-0.875000;-0.117178;, - 0.000000;-0.875000;-0.117178;, - 0.000000;-1.000000;-0.117178;, - 0.250000;-1.000000;-0.117178;, - 0.250000;-0.875000;-0.117178;, - 0.125000;-0.875000;-0.117178;, - 0.125000;-1.000000;-0.117178;, - 0.500000;-1.000000;-0.117178;, - 0.500000;-0.875000;-0.117178;, - 0.375000;-0.875000;-0.117178;, - 0.375000;-1.000000;-0.117178;, - 0.625000;-0.625000;-0.117178;, - 0.625000;-0.500000;-0.117178;, - 0.500000;-0.500000;-0.117178;, - 0.500000;-0.625000;-0.117178;, - 0.625000;-0.750000;-0.117178;, - 0.625000;-0.625000;-0.117178;, - 0.500000;-0.625000;-0.117178;, - 0.500000;-0.750000;-0.117178;, - 0.750000;-0.750000;-0.117178;, - 0.750000;-0.625000;-0.117178;, - 0.625000;-0.625000;-0.117178;, - 0.625000;-0.750000;-0.117178;, - 0.625000;-0.875000;-0.117178;, - 0.625000;-0.750000;-0.117178;, - 0.500000;-0.750000;-0.117178;, - 0.500000;-0.875000;-0.117178;, - 0.625000;-1.000000;-0.117178;, - 0.625000;-0.875000;-0.117178;, - 0.500000;-0.875000;-0.117178;, - 0.500000;-1.000000;-0.117178;, - 0.750000;-1.000000;-0.117178;, - 0.750000;-0.875000;-0.117178;, - 0.625000;-0.875000;-0.117178;, - 0.625000;-1.000000;-0.117178;, - 0.859843;-0.875000; 0.246450;, - 0.859843;-0.750000; 0.246450;, - 0.859843;-0.750000; 0.000000;, - 0.859843;-0.875000; 0.000000;, - 0.859843; 0.750000; 0.246450;, - 0.859843; 0.875000; 0.246450;, - 0.859843; 0.875000; 0.000000;, - 0.859843; 0.750000; 0.000000;, - 0.859843; 0.125000; 0.246450;, - 0.859843; 0.250000; 0.246450;, - 0.859843; 0.250000; 0.000000;, - 0.859843; 0.125000; 0.000000;, - 0.859843;-0.500000; 0.246450;, - 0.859843;-0.375000; 0.246450;, - 0.859843;-0.375000; 0.000000;, - 0.859843;-0.500000; 0.000000;, - 0.859843;-0.625000; 0.246450;, - 0.859843;-0.500000; 0.246450;, - 0.859843;-0.500000; 0.000000;, - 0.859843;-0.625000; 0.000000;, - 0.859843; 0.375000; 0.246450;, - 0.859843; 0.500000; 0.246450;, - 0.859843; 0.500000; 0.000000;, - 0.859843; 0.375000; 0.000000;, - 0.859843;-0.375000; 0.246450;, - 0.859843;-0.250000; 0.246450;, - 0.859843;-0.250000; 0.000000;, - 0.859843;-0.375000; 0.000000;, - 0.859843;-0.750000; 0.246450;, - 0.859843;-0.625000; 0.246450;, - 0.859843;-0.625000; 0.000000;, - 0.859843;-0.750000; 0.000000;, - 0.859843; 0.250000; 0.246450;, - 0.859843; 0.375000; 0.246450;, - 0.859843; 0.375000; 0.000000;, - 0.859843; 0.250000; 0.000000;, - 0.859843; 0.500000; 0.246450;, - 0.859843; 0.625000; 0.246450;, - 0.859843; 0.625000; 0.000000;, - 0.859843; 0.500000; 0.000000;, - 0.859843;-0.125000; 0.246450;, - 0.859843; 0.000000; 0.246450;, - 0.859843; 0.000000; 0.000000;, - 0.859843;-0.125000; 0.000000;, - 0.859843; 0.625000; 0.246450;, - 0.859843; 0.750000; 0.246450;, - 0.859843; 0.750000; 0.000000;, - 0.859843; 0.625000; 0.000000;, - 0.859843;-0.250000; 0.246450;, - 0.859843;-0.125000; 0.246450;, - 0.859843;-0.125000; 0.000000;, - 0.859843;-0.250000; 0.000000;, - 0.859843;-1.000000; 0.246450;, - 0.859843;-0.875000; 0.246450;, - 0.859843;-0.875000; 0.000000;, - 0.859843;-1.000000; 0.000000;, - 0.859843; 0.875000; 0.246450;, - 0.859843; 1.000000; 0.246450;, - 0.859843; 1.000000; 0.000000;, - 0.859843; 0.875000; 0.000000;, - 0.859843; 0.000000; 0.246450;, - 0.859843; 0.125000; 0.246450;, - 0.859843; 0.125000; 0.000000;, - 0.859843; 0.000000; 0.000000;, - 0.859843; 1.000000; 0.000000;, - 0.859843; 1.000000; 0.246450;, - 0.750000; 1.000000; 0.246450;, - 0.750000; 1.000000; 0.000000;, - 0.859843;-0.250000; 0.246450;, - 0.859843;-0.375000; 0.246450;, - 0.750000;-0.375000; 0.246450;, - 0.750000;-0.250000; 0.246450;, - 0.859843; 0.625000; 0.000000;, - 0.859843; 0.750000; 0.000000;, - 0.750000; 0.750000; 0.000000;, - 0.750000; 0.625000; 0.000000;, - 0.859843;-0.625000; 0.246450;, - 0.859843;-0.750000; 0.246450;, - 0.750000;-0.750000; 0.246450;, - 0.750000;-0.625000; 0.246450;, - 0.859843;-0.250000; 0.000000;, - 0.859843;-0.125000; 0.000000;, - 0.750000;-0.125000; 0.000000;, - 0.750000;-0.250000; 0.000000;, - 0.859843; 0.000000; 0.000000;, - 0.859843; 0.125000; 0.000000;, - 0.750000; 0.125000; 0.000000;, - 0.750000; 0.000000; 0.000000;, - 0.859843; 0.625000; 0.246450;, - 0.859843; 0.500000; 0.246450;, - 0.750000; 0.500000; 0.246450;, - 0.750000; 0.625000; 0.246450;, - 0.859843; 0.375000; 0.246450;, - 0.859843; 0.250000; 0.246450;, - 0.750000; 0.250000; 0.246450;, - 0.750000; 0.375000; 0.246450;, - 0.859843;-1.000000; 0.246450;, - 0.859843;-1.000000; 0.000000;, - 0.750000;-1.000000; 0.000000;, - 0.750000;-1.000000; 0.246450;, - 0.859843;-0.500000; 0.000000;, - 0.859843;-0.375000; 0.000000;, - 0.750000;-0.375000; 0.000000;, - 0.750000;-0.500000; 0.000000;, - 0.859843; 0.000000; 0.246450;, - 0.859843;-0.125000; 0.246450;, - 0.750000;-0.125000; 0.246450;, - 0.750000; 0.000000; 0.246450;, - 0.859843; 0.750000; 0.246450;, - 0.859843; 0.625000; 0.246450;, - 0.750000; 0.625000; 0.246450;, - 0.750000; 0.750000; 0.246450;, - 0.859843; 0.500000; 0.000000;, - 0.859843; 0.625000; 0.000000;, - 0.750000; 0.625000; 0.000000;, - 0.750000; 0.500000; 0.000000;, - 0.859843;-0.875000; 0.000000;, - 0.859843;-0.750000; 0.000000;, - 0.750000;-0.750000; 0.000000;, - 0.750000;-0.875000; 0.000000;, - 0.859843; 0.125000; 0.000000;, - 0.859843; 0.250000; 0.000000;, - 0.750000; 0.250000; 0.000000;, - 0.750000; 0.125000; 0.000000;, - 0.859843;-0.625000; 0.000000;, - 0.859843;-0.500000; 0.000000;, - 0.750000;-0.500000; 0.000000;, - 0.750000;-0.625000; 0.000000;, - 0.859843;-0.125000; 0.246450;, - 0.859843;-0.250000; 0.246450;, - 0.750000;-0.250000; 0.246450;, - 0.750000;-0.125000; 0.246450;, - 0.859843; 0.750000; 0.000000;, - 0.859843; 0.875000; 0.000000;, - 0.750000; 0.875000; 0.000000;, - 0.750000; 0.750000; 0.000000;, - 0.125000;-1.287628; 0.246450;, - 0.125000;-1.287628; 0.330204;, - 0.125000;-1.152395; 0.330204;, - 0.125000;-1.152395; 0.246450;, - 0.000000;-1.000000;-0.289304;, - 0.125000;-1.000000;-0.289304;, - 0.125000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.125000;-1.152395; 0.246450;, - 0.125000;-1.152395; 0.330204;, - 0.125000;-1.000000; 0.330204;, - 0.125000;-1.000000; 0.246450;, - 0.000000;-1.152395; 0.330204;, - 0.000000;-1.152395; 0.246450;, - 0.000000;-1.000000; 0.246450;, - 0.000000;-1.000000; 0.330204;, - 0.125000;-1.152395; 0.330204;, - 0.000000;-1.152395; 0.330204;, - 0.000000;-1.000000; 0.330204;, - 0.125000;-1.000000; 0.330204;, - 0.000000;-1.152395; 0.246450;, - 0.000000;-1.152395; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.246450;, - 0.000000;-1.287628; 0.330204;, - 0.125000;-1.287628; 0.330204;, - 0.125000;-1.287628; 0.246450;, - 0.000000;-1.287628; 0.246450;, - 0.000000;-1.534846; 0.246450;, - 0.000000;-1.534846; 0.000000;, - 0.000000;-1.287628; 0.000000;, - 0.000000;-1.287628; 0.246450;, - 0.125000;-1.287628; 0.520154;, - 0.125000;-1.152395; 0.520154;, - 0.125000;-1.152395; 0.330204;, - 0.125000;-1.287628; 0.330204;, - 0.000000;-1.287628; 0.330204;, - 0.000000;-1.287628; 0.246450;, - 0.000000;-1.152395; 0.246450;, - 0.000000;-1.152395; 0.330204;, - 0.000000;-1.287628; 0.246450;, - 0.000000;-1.287628; 0.000000;, - 0.000000;-1.152395; 0.000000;, - 0.000000;-1.152395; 0.246450;, - 0.125000;-1.287628; 0.000000;, - 0.125000;-1.287628; 0.246450;, - 0.125000;-1.152395; 0.246450;, - 0.125000;-1.152395; 0.000000;, - 0.000000;-1.152395; 0.627518;, - 0.000000;-1.287628; 0.627518;, - 0.000000;-1.287628; 0.520154;, - 0.000000;-1.152395; 0.520154;, - 0.125000;-1.152395; 0.520154;, - 0.000000;-1.152395; 0.520154;, - 0.000000;-1.152395; 0.330204;, - 0.125000;-1.152395; 0.330204;, - 0.000000;-1.287628; 0.520154;, - 0.125000;-1.287628; 0.520154;, - 0.125000;-1.287628; 0.330204;, - 0.000000;-1.287628; 0.330204;, - 0.000000;-1.152395; 0.520154;, - 0.000000;-1.287628; 0.520154;, - 0.000000;-1.287628; 0.330204;, - 0.000000;-1.152395; 0.330204;, - 0.125000;-1.287628; 0.627518;, - 0.000000;-1.287628; 0.627518;, - 0.000000;-1.152395; 0.627518;, - 0.125000;-1.152395; 0.627518;, - 0.125000;-0.831729; 0.627518;, - 0.125000;-0.831729; 0.520154;, - 0.125000;-1.152395; 0.520154;, - 0.125000;-1.152395; 0.627518;, - 0.000000;-1.287628; 0.627518;, - 0.125000;-1.287628; 0.627518;, - 0.125000;-1.287628; 0.520154;, - 0.000000;-1.287628; 0.520154;, - 0.125000;-1.287628; 0.627518;, - 0.125000;-1.152395; 0.627518;, - 0.125000;-1.152395; 0.520154;, - 0.125000;-1.287628; 0.520154;, - 0.000000;-1.152395;-0.289304;, - 0.125000;-1.152395;-0.289304;, - 0.125000;-1.000000;-0.289304;, - 0.000000;-1.000000;-0.289304;, - 0.000000;-1.287628;-0.289304;, - 0.125000;-1.287628;-0.289304;, - 0.125000;-1.152395;-0.289304;, - 0.000000;-1.152395;-0.289304;, - 0.125000;-1.000000;-0.289304;, - 0.125000;-1.152395;-0.289304;, - 0.125000;-1.152395; 0.000000;, - 0.125000;-1.000000; 0.000000;, - 0.125000;-1.534846;-0.289304;, - 0.125000;-1.534846; 0.000000;, - 0.125000;-1.287628; 0.000000;, - 0.125000;-1.287628;-0.289304;, - 0.125000;-1.152395;-0.289304;, - 0.125000;-1.287628;-0.289304;, - 0.125000;-1.287628; 0.000000;, - 0.125000;-1.152395; 0.000000;, - 0.000000;-1.152395;-0.289304;, - 0.000000;-1.000000;-0.289304;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.152395; 0.000000;, - 0.000000;-1.534846; 0.246450;, - 0.125000;-1.534846; 0.246450;, - 0.125000;-1.534846; 0.000000;, - 0.000000;-1.534846; 0.000000;, - 0.125000;-1.534846;-0.289304;, - 0.000000;-1.534846;-0.289304;, - 0.000000;-1.534846; 0.000000;, - 0.125000;-1.534846; 0.000000;, - 0.125000;-1.534846; 0.246450;, - 0.000000;-1.534846; 0.246450;, - 0.000000;-1.287628; 0.246450;, - 0.125000;-1.287628; 0.246450;, - 0.125000;-1.534846; 0.000000;, - 0.125000;-1.534846; 0.246450;, - 0.125000;-1.287628; 0.246450;, - 0.125000;-1.287628; 0.000000;, - 0.000000;-1.534846; 0.000000;, - 0.000000;-1.534846;-0.289304;, - 0.000000;-1.287628;-0.289304;, - 0.000000;-1.287628; 0.000000;, - 0.000000;-1.534846;-0.289304;, - 0.125000;-1.534846;-0.289304;, - 0.125000;-1.287628;-0.289304;, - 0.000000;-1.287628;-0.289304;, - 0.125000;-0.831729; 0.627518;, - 0.000000;-0.831729; 0.627518;, - 0.000000;-0.831729; 0.520154;, - 0.125000;-0.831729; 0.520154;, - 0.125000;-0.831729; 0.520154;, - 0.000000;-0.831729; 0.520154;, - 0.000000;-1.152395; 0.520154;, - 0.125000;-1.152395; 0.520154;, - 0.000000;-0.831729; 0.627518;, - 0.125000;-0.831729; 0.627518;, - 0.125000;-1.152395; 0.627518;, - 0.000000;-1.152395; 0.627518;, - 0.000000;-0.831729; 0.520154;, - 0.000000;-0.831729; 0.627518;, - 0.000000;-1.152395; 0.627518;, - 0.000000;-1.152395; 0.520154;; - 738; - 4;0;1;2;3;, - 4;4;5;6;7;, - 4;8;9;10;11;, - 4;12;13;14;15;, - 4;16;17;18;19;, - 4;20;21;22;23;, - 4;24;25;26;27;, - 4;28;29;30;31;, - 4;32;33;34;35;, - 4;36;37;38;39;, - 4;40;41;42;43;, - 4;44;45;46;47;, - 4;48;49;50;51;, - 4;52;53;54;55;, - 4;56;57;58;59;, - 4;60;61;62;63;, - 4;64;65;66;67;, - 4;68;69;70;71;, - 4;72;73;74;75;, - 4;76;77;78;79;, - 4;80;81;82;83;, - 4;84;85;86;87;, - 4;88;89;90;91;, - 4;92;93;94;95;, - 4;96;97;98;99;, - 4;100;101;102;103;, - 4;104;105;106;107;, - 4;108;109;110;111;, - 4;112;113;114;115;, - 4;116;117;118;119;, - 4;120;121;122;123;, - 4;124;125;126;127;, - 4;128;129;130;131;, - 4;132;133;134;135;, - 4;136;137;138;139;, - 4;140;141;142;143;, - 4;144;145;146;147;, - 4;148;149;150;151;, - 4;152;153;154;155;, - 4;156;157;158;159;, - 4;160;161;162;163;, - 4;164;165;166;167;, - 4;168;169;170;171;, - 4;172;173;174;175;, - 4;176;177;178;179;, - 4;180;181;182;183;, - 4;184;185;186;187;, - 4;188;189;190;191;, - 4;192;193;194;195;, - 4;196;197;198;199;, - 4;200;201;202;203;, - 4;204;205;206;207;, - 4;208;209;210;211;, - 4;212;213;214;215;, - 4;216;217;218;219;, - 4;220;221;222;223;, - 4;224;225;226;227;, - 4;228;229;230;231;, - 4;232;233;234;235;, - 4;236;237;238;239;, - 4;240;241;242;243;, - 4;244;245;246;247;, - 4;248;249;250;251;, - 4;252;253;254;255;, - 4;256;257;258;259;, - 4;260;261;262;263;, - 4;264;265;266;267;, - 4;268;269;270;271;, - 4;272;273;274;275;, - 4;276;277;278;279;, - 4;280;281;282;283;, - 4;284;285;286;287;, - 4;288;289;290;291;, - 4;292;293;294;295;, - 4;296;297;298;299;, - 4;300;301;302;303;, - 4;304;305;306;307;, - 4;308;309;310;311;, - 4;312;313;314;315;, - 4;316;317;318;319;, - 4;320;321;322;323;, - 4;324;325;326;327;, - 4;328;329;330;331;, - 4;332;333;334;335;, - 4;336;337;338;339;, - 4;340;341;342;343;, - 4;344;345;346;347;, - 4;348;349;350;351;, - 4;352;353;354;355;, - 4;356;357;358;359;, - 4;360;361;362;363;, - 4;364;365;366;367;, - 4;368;369;370;371;, - 4;372;373;374;375;, - 4;376;377;378;379;, - 4;380;381;382;383;, - 4;384;385;386;387;, - 4;388;389;390;391;, - 4;392;393;394;395;, - 4;396;397;398;399;, - 4;400;401;402;403;, - 4;404;405;406;407;, - 4;408;409;410;411;, - 4;412;413;414;415;, - 4;416;417;418;419;, - 4;420;421;422;423;, - 4;424;425;426;427;, - 4;428;429;430;431;, - 4;432;433;434;435;, - 4;436;437;438;439;, - 4;440;441;442;443;, - 4;444;445;446;447;, - 4;448;449;450;451;, - 4;452;453;454;455;, - 4;456;457;458;459;, - 4;460;461;462;463;, - 4;464;465;466;467;, - 4;468;469;470;471;, - 4;472;473;474;475;, - 4;476;477;478;479;, - 4;480;481;482;483;, - 4;484;485;486;487;, - 4;488;489;490;491;, - 4;492;493;494;495;, - 4;496;497;498;499;, - 4;500;501;502;503;, - 4;504;505;506;507;, - 4;508;509;510;511;, - 4;512;513;514;515;, - 4;516;517;518;519;, - 4;520;521;522;523;, - 4;524;525;526;527;, - 4;528;529;530;531;, - 4;532;533;534;535;, - 4;536;537;538;539;, - 4;540;541;542;543;, - 4;544;545;546;547;, - 4;548;549;550;551;, - 4;552;553;554;555;, - 4;556;557;558;559;, - 4;560;561;562;563;, - 4;564;565;566;567;, - 4;568;569;570;571;, - 4;572;573;574;575;, - 4;576;577;578;579;, - 4;580;581;582;583;, - 4;584;585;586;587;, - 4;588;589;590;591;, - 4;592;593;594;595;, - 4;596;597;598;599;, - 4;600;601;602;603;, - 4;604;605;606;607;, - 4;608;609;610;611;, - 4;612;613;614;615;, - 4;616;617;618;619;, - 4;620;621;622;623;, - 4;624;625;626;627;, - 4;628;629;630;631;, - 4;632;633;634;635;, - 4;636;637;638;639;, - 4;640;641;642;643;, - 4;644;645;646;647;, - 4;648;649;650;651;, - 4;652;653;654;655;, - 4;656;657;658;659;, - 4;660;661;662;663;, - 4;664;665;666;667;, - 4;668;669;670;671;, - 4;672;673;674;675;, - 4;676;677;678;679;, - 4;680;681;682;683;, - 4;684;685;686;687;, - 4;688;689;690;691;, - 4;692;693;694;695;, - 4;696;697;698;699;, - 4;700;701;702;703;, - 4;704;705;706;707;, - 4;708;709;710;711;, - 4;712;713;714;715;, - 4;716;717;718;719;, - 4;720;721;722;723;, - 4;724;725;726;727;, - 4;728;729;730;731;, - 4;732;733;734;735;, - 4;736;737;738;739;, - 4;740;741;742;743;, - 4;744;745;746;747;, - 4;748;749;750;751;, - 4;752;753;754;755;, - 4;756;757;758;759;, - 4;760;761;762;763;, - 4;764;765;766;767;, - 4;768;769;770;771;, - 4;772;773;774;775;, - 4;776;777;778;779;, - 4;780;781;782;783;, - 4;784;785;786;787;, - 4;788;789;790;791;, - 4;792;793;794;795;, - 4;796;797;798;799;, - 4;800;801;802;803;, - 4;804;805;806;807;, - 4;808;809;810;811;, - 4;812;813;814;815;, - 4;816;817;818;819;, - 4;820;821;822;823;, - 4;824;825;826;827;, - 4;828;829;830;831;, - 4;832;833;834;835;, - 4;836;837;838;839;, - 4;840;841;842;843;, - 4;844;845;846;847;, - 4;848;849;850;851;, - 4;852;853;854;855;, - 4;856;857;858;859;, - 4;860;861;862;863;, - 4;864;865;866;867;, - 4;868;869;870;871;, - 4;872;873;874;875;, - 4;876;877;878;879;, - 4;880;881;882;883;, - 4;884;885;886;887;, - 4;888;889;890;891;, - 4;892;893;894;895;, - 4;896;897;898;899;, - 4;900;901;902;903;, - 4;904;905;906;907;, - 4;908;909;910;911;, - 4;912;913;914;915;, - 4;916;917;918;919;, - 4;920;921;922;923;, - 4;924;925;926;927;, - 4;928;929;930;931;, - 4;932;933;934;935;, - 4;936;937;938;939;, - 4;940;941;942;943;, - 4;944;945;946;947;, - 4;948;949;950;951;, - 4;952;953;954;955;, - 4;956;957;958;959;, - 4;960;961;962;963;, - 4;964;965;966;967;, - 4;968;969;970;971;, - 4;972;973;974;975;, - 4;976;977;978;979;, - 4;980;981;982;983;, - 4;984;985;986;987;, - 4;988;989;990;991;, - 4;992;993;994;995;, - 4;996;997;998;999;, - 4;1000;1001;1002;1003;, - 4;1004;1005;1006;1007;, - 4;1008;1009;1010;1011;, - 4;1012;1013;1014;1015;, - 4;1016;1017;1018;1019;, - 4;1020;1021;1022;1023;, - 4;1024;1025;1026;1027;, - 4;1028;1029;1030;1031;, - 4;1032;1033;1034;1035;, - 4;1036;1037;1038;1039;, - 4;1040;1041;1042;1043;, - 4;1044;1045;1046;1047;, - 4;1048;1049;1050;1051;, - 4;1052;1053;1054;1055;, - 4;1056;1057;1058;1059;, - 4;1060;1061;1062;1063;, - 4;1064;1065;1066;1067;, - 4;1068;1069;1070;1071;, - 4;1072;1073;1074;1075;, - 4;1076;1077;1078;1079;, - 4;1080;1081;1082;1083;, - 4;1084;1085;1086;1087;, - 4;1088;1089;1090;1091;, - 4;1092;1093;1094;1095;, - 4;1096;1097;1098;1099;, - 4;1100;1101;1102;1103;, - 4;1104;1105;1106;1107;, - 4;1108;1109;1110;1111;, - 4;1112;1113;1114;1115;, - 4;1116;1117;1118;1119;, - 4;1120;1121;1122;1123;, - 4;1124;1125;1126;1127;, - 4;1128;1129;1130;1131;, - 4;1132;1133;1134;1135;, - 4;1136;1137;1138;1139;, - 4;1140;1141;1142;1143;, - 4;1144;1145;1146;1147;, - 4;1148;1149;1150;1151;, - 4;1152;1153;1154;1155;, - 4;1156;1157;1158;1159;, - 4;1160;1161;1162;1163;, - 4;1164;1165;1166;1167;, - 4;1168;1169;1170;1171;, - 4;1172;1173;1174;1175;, - 4;1176;1177;1178;1179;, - 4;1180;1181;1182;1183;, - 4;1184;1185;1186;1187;, - 4;1188;1189;1190;1191;, - 4;1192;1193;1194;1195;, - 4;1196;1197;1198;1199;, - 4;1200;1201;1202;1203;, - 4;1204;1205;1206;1207;, - 4;1208;1209;1210;1211;, - 4;1212;1213;1214;1215;, - 4;1216;1217;1218;1219;, - 4;1220;1221;1222;1223;, - 4;1224;1225;1226;1227;, - 4;1228;1229;1230;1231;, - 4;1232;1233;1234;1235;, - 4;1236;1237;1238;1239;, - 4;1240;1241;1242;1243;, - 4;1244;1245;1246;1247;, - 4;1248;1249;1250;1251;, - 4;1252;1253;1254;1255;, - 4;1256;1257;1258;1259;, - 4;1260;1261;1262;1263;, - 4;1264;1265;1266;1267;, - 4;1268;1269;1270;1271;, - 4;1272;1273;1274;1275;, - 4;1276;1277;1278;1279;, - 4;1280;1281;1282;1283;, - 4;1284;1285;1286;1287;, - 4;1288;1289;1290;1291;, - 4;1292;1293;1294;1295;, - 4;1296;1297;1298;1299;, - 4;1300;1301;1302;1303;, - 4;1304;1305;1306;1307;, - 4;1308;1309;1310;1311;, - 4;1312;1313;1314;1315;, - 4;1316;1317;1318;1319;, - 4;1320;1321;1322;1323;, - 4;1324;1325;1326;1327;, - 4;1328;1329;1330;1331;, - 4;1332;1333;1334;1335;, - 4;1336;1337;1338;1339;, - 4;1340;1341;1342;1343;, - 4;1344;1345;1346;1347;, - 4;1348;1349;1350;1351;, - 4;1352;1353;1354;1355;, - 4;1356;1357;1358;1359;, - 4;1360;1361;1362;1363;, - 4;1364;1365;1366;1367;, - 4;1368;1369;1370;1371;, - 4;1372;1373;1374;1375;, - 4;1376;1377;1378;1379;, - 4;1380;1381;1382;1383;, - 4;1384;1385;1386;1387;, - 4;1388;1389;1390;1391;, - 4;1392;1393;1394;1395;, - 4;1396;1397;1398;1399;, - 4;1400;1401;1402;1403;, - 4;1404;1405;1406;1407;, - 4;1408;1409;1410;1411;, - 4;1412;1413;1414;1415;, - 4;1416;1417;1418;1419;, - 4;1420;1421;1422;1423;, - 4;1424;1425;1426;1427;, - 4;1428;1429;1430;1431;, - 4;1432;1433;1434;1435;, - 4;1436;1437;1438;1439;, - 4;1440;1441;1442;1443;, - 4;1444;1445;1446;1447;, - 4;1448;1449;1450;1451;, - 4;1452;1453;1454;1455;, - 4;1456;1457;1458;1459;, - 4;1460;1461;1462;1463;, - 4;1464;1465;1466;1467;, - 4;1468;1469;1470;1471;, - 4;1472;1473;1474;1475;, - 4;1476;1477;1478;1479;, - 4;1480;1481;1482;1483;, - 4;1484;1485;1486;1487;, - 4;1488;1489;1490;1491;, - 4;1492;1493;1494;1495;, - 4;1496;1497;1498;1499;, - 4;1500;1501;1502;1503;, - 4;1504;1505;1506;1507;, - 4;1508;1509;1510;1511;, - 4;1512;1513;1514;1515;, - 4;1516;1517;1518;1519;, - 4;1520;1521;1522;1523;, - 4;1524;1525;1526;1527;, - 4;1528;1529;1530;1531;, - 4;1532;1533;1534;1535;, - 4;1536;1537;1538;1539;, - 4;1540;1541;1542;1543;, - 4;1544;1545;1546;1547;, - 4;1548;1549;1550;1551;, - 4;1552;1553;1554;1555;, - 4;1556;1557;1558;1559;, - 4;1560;1561;1562;1563;, - 4;1564;1565;1566;1567;, - 4;1568;1569;1570;1571;, - 4;1572;1573;1574;1575;, - 4;1576;1577;1578;1579;, - 4;1580;1581;1582;1583;, - 4;1584;1585;1586;1587;, - 4;1588;1589;1590;1591;, - 4;1592;1593;1594;1595;, - 4;1596;1597;1598;1599;, - 4;1600;1601;1602;1603;, - 4;1604;1605;1606;1607;, - 4;1608;1609;1610;1611;, - 4;1612;1613;1614;1615;, - 4;1616;1617;1618;1619;, - 4;1620;1621;1622;1623;, - 4;1624;1625;1626;1627;, - 4;1628;1629;1630;1631;, - 4;1632;1633;1634;1635;, - 4;1636;1637;1638;1639;, - 4;1640;1641;1642;1643;, - 4;1644;1645;1646;1647;, - 4;1648;1649;1650;1651;, - 4;1652;1653;1654;1655;, - 4;1656;1657;1658;1659;, - 4;1660;1661;1662;1663;, - 4;1664;1665;1666;1667;, - 4;1668;1669;1670;1671;, - 4;1672;1673;1674;1675;, - 4;1676;1677;1678;1679;, - 4;1680;1681;1682;1683;, - 4;1684;1685;1686;1687;, - 4;1688;1689;1690;1691;, - 4;1692;1693;1694;1695;, - 4;1696;1697;1698;1699;, - 4;1700;1701;1702;1703;, - 4;1704;1705;1706;1707;, - 4;1708;1709;1710;1711;, - 4;1712;1713;1714;1715;, - 4;1716;1717;1718;1719;, - 4;1720;1721;1722;1723;, - 4;1724;1725;1726;1727;, - 4;1728;1729;1730;1731;, - 4;1732;1733;1734;1735;, - 4;1736;1737;1738;1739;, - 4;1740;1741;1742;1743;, - 4;1744;1745;1746;1747;, - 4;1748;1749;1750;1751;, - 4;1752;1753;1754;1755;, - 4;1756;1757;1758;1759;, - 4;1760;1761;1762;1763;, - 4;1764;1765;1766;1767;, - 4;1768;1769;1770;1771;, - 4;1772;1773;1774;1775;, - 4;1776;1777;1778;1779;, - 4;1780;1781;1782;1783;, - 4;1784;1785;1786;1787;, - 4;1788;1789;1790;1791;, - 4;1792;1793;1794;1795;, - 4;1796;1797;1798;1799;, - 4;1800;1801;1802;1803;, - 4;1804;1805;1806;1807;, - 4;1808;1809;1810;1811;, - 4;1812;1813;1814;1815;, - 4;1816;1817;1818;1819;, - 4;1820;1821;1822;1823;, - 4;1824;1825;1826;1827;, - 4;1828;1829;1830;1831;, - 4;1832;1833;1834;1835;, - 4;1836;1837;1838;1839;, - 4;1840;1841;1842;1843;, - 4;1844;1845;1846;1847;, - 4;1848;1849;1850;1851;, - 4;1852;1853;1854;1855;, - 4;1856;1857;1858;1859;, - 4;1860;1861;1862;1863;, - 4;1864;1865;1866;1867;, - 4;1868;1869;1870;1871;, - 4;1872;1873;1874;1875;, - 4;1876;1877;1878;1879;, - 4;1880;1881;1882;1883;, - 4;1884;1885;1886;1887;, - 4;1888;1889;1890;1891;, - 4;1892;1893;1894;1895;, - 4;1896;1897;1898;1899;, - 4;1900;1901;1902;1903;, - 4;1904;1905;1906;1907;, - 4;1908;1909;1910;1911;, - 4;1912;1913;1914;1915;, - 4;1916;1917;1918;1919;, - 4;1920;1921;1922;1923;, - 4;1924;1925;1926;1927;, - 4;1928;1929;1930;1931;, - 4;1932;1933;1934;1935;, - 4;1936;1937;1938;1939;, - 4;1940;1941;1942;1943;, - 4;1944;1945;1946;1947;, - 4;1948;1949;1950;1951;, - 4;1952;1953;1954;1955;, - 4;1956;1957;1958;1959;, - 4;1960;1961;1962;1963;, - 4;1964;1965;1966;1967;, - 4;1968;1969;1970;1971;, - 4;1972;1973;1974;1975;, - 4;1976;1977;1978;1979;, - 4;1980;1981;1982;1983;, - 4;1984;1985;1986;1987;, - 4;1988;1989;1990;1991;, - 4;1992;1993;1994;1995;, - 4;1996;1997;1998;1999;, - 4;2000;2001;2002;2003;, - 4;2004;2005;2006;2007;, - 4;2008;2009;2010;2011;, - 4;2012;2013;2014;2015;, - 4;2016;2017;2018;2019;, - 4;2020;2021;2022;2023;, - 4;2024;2025;2026;2027;, - 4;2028;2029;2030;2031;, - 4;2032;2033;2034;2035;, - 4;2036;2037;2038;2039;, - 4;2040;2041;2042;2043;, - 4;2044;2045;2046;2047;, - 4;2048;2049;2050;2051;, - 4;2052;2053;2054;2055;, - 4;2056;2057;2058;2059;, - 4;2060;2061;2062;2063;, - 4;2064;2065;2066;2067;, - 4;2068;2069;2070;2071;, - 4;2072;2073;2074;2075;, - 4;2076;2077;2078;2079;, - 4;2080;2081;2082;2083;, - 4;2084;2085;2086;2087;, - 4;2088;2089;2090;2091;, - 4;2092;2093;2094;2095;, - 4;2096;2097;2098;2099;, - 4;2100;2101;2102;2103;, - 4;2104;2105;2106;2107;, - 4;2108;2109;2110;2111;, - 4;2112;2113;2114;2115;, - 4;2116;2117;2118;2119;, - 4;2120;2121;2122;2123;, - 4;2124;2125;2126;2127;, - 4;2128;2129;2130;2131;, - 4;2132;2133;2134;2135;, - 4;2136;2137;2138;2139;, - 4;2140;2141;2142;2143;, - 4;2144;2145;2146;2147;, - 4;2148;2149;2150;2151;, - 4;2152;2153;2154;2155;, - 4;2156;2157;2158;2159;, - 4;2160;2161;2162;2163;, - 4;2164;2165;2166;2167;, - 4;2168;2169;2170;2171;, - 4;2172;2173;2174;2175;, - 4;2176;2177;2178;2179;, - 4;2180;2181;2182;2183;, - 4;2184;2185;2186;2187;, - 4;2188;2189;2190;2191;, - 4;2192;2193;2194;2195;, - 4;2196;2197;2198;2199;, - 4;2200;2201;2202;2203;, - 4;2204;2205;2206;2207;, - 4;2208;2209;2210;2211;, - 4;2212;2213;2214;2215;, - 4;2216;2217;2218;2219;, - 4;2220;2221;2222;2223;, - 4;2224;2225;2226;2227;, - 4;2228;2229;2230;2231;, - 4;2232;2233;2234;2235;, - 4;2236;2237;2238;2239;, - 4;2240;2241;2242;2243;, - 4;2244;2245;2246;2247;, - 4;2248;2249;2250;2251;, - 4;2252;2253;2254;2255;, - 4;2256;2257;2258;2259;, - 4;2260;2261;2262;2263;, - 4;2264;2265;2266;2267;, - 4;2268;2269;2270;2271;, - 4;2272;2273;2274;2275;, - 4;2276;2277;2278;2279;, - 4;2280;2281;2282;2283;, - 4;2284;2285;2286;2287;, - 4;2288;2289;2290;2291;, - 4;2292;2293;2294;2295;, - 4;2296;2297;2298;2299;, - 4;2300;2301;2302;2303;, - 4;2304;2305;2306;2307;, - 4;2308;2309;2310;2311;, - 4;2312;2313;2314;2315;, - 4;2316;2317;2318;2319;, - 4;2320;2321;2322;2323;, - 4;2324;2325;2326;2327;, - 4;2328;2329;2330;2331;, - 4;2332;2333;2334;2335;, - 4;2336;2337;2338;2339;, - 4;2340;2341;2342;2343;, - 4;2344;2345;2346;2347;, - 4;2348;2349;2350;2351;, - 4;2352;2353;2354;2355;, - 4;2356;2357;2358;2359;, - 4;2360;2361;2362;2363;, - 4;2364;2365;2366;2367;, - 4;2368;2369;2370;2371;, - 4;2372;2373;2374;2375;, - 4;2376;2377;2378;2379;, - 4;2380;2381;2382;2383;, - 4;2384;2385;2386;2387;, - 4;2388;2389;2390;2391;, - 4;2392;2393;2394;2395;, - 4;2396;2397;2398;2399;, - 4;2400;2401;2402;2403;, - 4;2404;2405;2406;2407;, - 4;2408;2409;2410;2411;, - 4;2412;2413;2414;2415;, - 4;2416;2417;2418;2419;, - 4;2420;2421;2422;2423;, - 4;2424;2425;2426;2427;, - 4;2428;2429;2430;2431;, - 4;2432;2433;2434;2435;, - 4;2436;2437;2438;2439;, - 4;2440;2441;2442;2443;, - 4;2444;2445;2446;2447;, - 4;2448;2449;2450;2451;, - 4;2452;2453;2454;2455;, - 4;2456;2457;2458;2459;, - 4;2460;2461;2462;2463;, - 4;2464;2465;2466;2467;, - 4;2468;2469;2470;2471;, - 4;2472;2473;2474;2475;, - 4;2476;2477;2478;2479;, - 4;2480;2481;2482;2483;, - 4;2484;2485;2486;2487;, - 4;2488;2489;2490;2491;, - 4;2492;2493;2494;2495;, - 4;2496;2497;2498;2499;, - 4;2500;2501;2502;2503;, - 4;2504;2505;2506;2507;, - 4;2508;2509;2510;2511;, - 4;2512;2513;2514;2515;, - 4;2516;2517;2518;2519;, - 4;2520;2521;2522;2523;, - 4;2524;2525;2526;2527;, - 4;2528;2529;2530;2531;, - 4;2532;2533;2534;2535;, - 4;2536;2537;2538;2539;, - 4;2540;2541;2542;2543;, - 4;2544;2545;2546;2547;, - 4;2548;2549;2550;2551;, - 4;2552;2553;2554;2555;, - 4;2556;2557;2558;2559;, - 4;2560;2561;2562;2563;, - 4;2564;2565;2566;2567;, - 4;2568;2569;2570;2571;, - 4;2572;2573;2574;2575;, - 4;2576;2577;2578;2579;, - 4;2580;2581;2582;2583;, - 4;2584;2585;2586;2587;, - 4;2588;2589;2590;2591;, - 4;2592;2593;2594;2595;, - 4;2596;2597;2598;2599;, - 4;2600;2601;2602;2603;, - 4;2604;2605;2606;2607;, - 4;2608;2609;2610;2611;, - 4;2612;2613;2614;2615;, - 4;2616;2617;2618;2619;, - 4;2620;2621;2622;2623;, - 4;2624;2625;2626;2627;, - 4;2628;2629;2630;2631;, - 4;2632;2633;2634;2635;, - 4;2636;2637;2638;2639;, - 4;2640;2641;2642;2643;, - 4;2644;2645;2646;2647;, - 4;2648;2649;2650;2651;, - 4;2652;2653;2654;2655;, - 4;2656;2657;2658;2659;, - 4;2660;2661;2662;2663;, - 4;2664;2665;2666;2667;, - 4;2668;2669;2670;2671;, - 4;2672;2673;2674;2675;, - 4;2676;2677;2678;2679;, - 4;2680;2681;2682;2683;, - 4;2684;2685;2686;2687;, - 4;2688;2689;2690;2691;, - 4;2692;2693;2694;2695;, - 4;2696;2697;2698;2699;, - 4;2700;2701;2702;2703;, - 4;2704;2705;2706;2707;, - 4;2708;2709;2710;2711;, - 4;2712;2713;2714;2715;, - 4;2716;2717;2718;2719;, - 4;2720;2721;2722;2723;, - 4;2724;2725;2726;2727;, - 4;2728;2729;2730;2731;, - 4;2732;2733;2734;2735;, - 4;2736;2737;2738;2739;, - 4;2740;2741;2742;2743;, - 4;2744;2745;2746;2747;, - 4;2748;2749;2750;2751;, - 4;2752;2753;2754;2755;, - 4;2756;2757;2758;2759;, - 4;2760;2761;2762;2763;, - 4;2764;2765;2766;2767;, - 4;2768;2769;2770;2771;, - 4;2772;2773;2774;2775;, - 4;2776;2777;2778;2779;, - 4;2780;2781;2782;2783;, - 4;2784;2785;2786;2787;, - 4;2788;2789;2790;2791;, - 4;2792;2793;2794;2795;, - 4;2796;2797;2798;2799;, - 4;2800;2801;2802;2803;, - 4;2804;2805;2806;2807;, - 4;2808;2809;2810;2811;, - 4;2812;2813;2814;2815;, - 4;2816;2817;2818;2819;, - 4;2820;2821;2822;2823;, - 4;2824;2825;2826;2827;, - 4;2828;2829;2830;2831;, - 4;2832;2833;2834;2835;, - 4;2836;2837;2838;2839;, - 4;2840;2841;2842;2843;, - 4;2844;2845;2846;2847;, - 4;2848;2849;2850;2851;, - 4;2852;2853;2854;2855;, - 4;2856;2857;2858;2859;, - 4;2860;2861;2862;2863;, - 4;2864;2865;2866;2867;, - 4;2868;2869;2870;2871;, - 4;2872;2873;2874;2875;, - 4;2876;2877;2878;2879;, - 4;2880;2881;2882;2883;, - 4;2884;2885;2886;2887;, - 4;2888;2889;2890;2891;, - 4;2892;2893;2894;2895;, - 4;2896;2897;2898;2899;, - 4;2900;2901;2902;2903;, - 4;2904;2905;2906;2907;, - 4;2908;2909;2910;2911;, - 4;2912;2913;2914;2915;, - 4;2916;2917;2918;2919;, - 4;2920;2921;2922;2923;, - 4;2924;2925;2926;2927;, - 4;2928;2929;2930;2931;, - 4;2932;2933;2934;2935;, - 4;2936;2937;2938;2939;, - 4;2940;2941;2942;2943;, - 4;2944;2945;2946;2947;, - 4;2948;2949;2950;2951;; - MeshNormals { //Plane_000 Normals - 2952; - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -0.000000;-1.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000;-0.000000; 0.000000;, - -1.000000;-0.000000; 0.000000;, - -1.000000;-0.000000; 0.000000;, - -1.000000;-0.000000; 0.000000;; - 738; - 4;0;1;2;3;, - 4;4;5;6;7;, - 4;8;9;10;11;, - 4;12;13;14;15;, - 4;16;17;18;19;, - 4;20;21;22;23;, - 4;24;25;26;27;, - 4;28;29;30;31;, - 4;32;33;34;35;, - 4;36;37;38;39;, - 4;40;41;42;43;, - 4;44;45;46;47;, - 4;48;49;50;51;, - 4;52;53;54;55;, - 4;56;57;58;59;, - 4;60;61;62;63;, - 4;64;65;66;67;, - 4;68;69;70;71;, - 4;72;73;74;75;, - 4;76;77;78;79;, - 4;80;81;82;83;, - 4;84;85;86;87;, - 4;88;89;90;91;, - 4;92;93;94;95;, - 4;96;97;98;99;, - 4;100;101;102;103;, - 4;104;105;106;107;, - 4;108;109;110;111;, - 4;112;113;114;115;, - 4;116;117;118;119;, - 4;120;121;122;123;, - 4;124;125;126;127;, - 4;128;129;130;131;, - 4;132;133;134;135;, - 4;136;137;138;139;, - 4;140;141;142;143;, - 4;144;145;146;147;, - 4;148;149;150;151;, - 4;152;153;154;155;, - 4;156;157;158;159;, - 4;160;161;162;163;, - 4;164;165;166;167;, - 4;168;169;170;171;, - 4;172;173;174;175;, - 4;176;177;178;179;, - 4;180;181;182;183;, - 4;184;185;186;187;, - 4;188;189;190;191;, - 4;192;193;194;195;, - 4;196;197;198;199;, - 4;200;201;202;203;, - 4;204;205;206;207;, - 4;208;209;210;211;, - 4;212;213;214;215;, - 4;216;217;218;219;, - 4;220;221;222;223;, - 4;224;225;226;227;, - 4;228;229;230;231;, - 4;232;233;234;235;, - 4;236;237;238;239;, - 4;240;241;242;243;, - 4;244;245;246;247;, - 4;248;249;250;251;, - 4;252;253;254;255;, - 4;256;257;258;259;, - 4;260;261;262;263;, - 4;264;265;266;267;, - 4;268;269;270;271;, - 4;272;273;274;275;, - 4;276;277;278;279;, - 4;280;281;282;283;, - 4;284;285;286;287;, - 4;288;289;290;291;, - 4;292;293;294;295;, - 4;296;297;298;299;, - 4;300;301;302;303;, - 4;304;305;306;307;, - 4;308;309;310;311;, - 4;312;313;314;315;, - 4;316;317;318;319;, - 4;320;321;322;323;, - 4;324;325;326;327;, - 4;328;329;330;331;, - 4;332;333;334;335;, - 4;336;337;338;339;, - 4;340;341;342;343;, - 4;344;345;346;347;, - 4;348;349;350;351;, - 4;352;353;354;355;, - 4;356;357;358;359;, - 4;360;361;362;363;, - 4;364;365;366;367;, - 4;368;369;370;371;, - 4;372;373;374;375;, - 4;376;377;378;379;, - 4;380;381;382;383;, - 4;384;385;386;387;, - 4;388;389;390;391;, - 4;392;393;394;395;, - 4;396;397;398;399;, - 4;400;401;402;403;, - 4;404;405;406;407;, - 4;408;409;410;411;, - 4;412;413;414;415;, - 4;416;417;418;419;, - 4;420;421;422;423;, - 4;424;425;426;427;, - 4;428;429;430;431;, - 4;432;433;434;435;, - 4;436;437;438;439;, - 4;440;441;442;443;, - 4;444;445;446;447;, - 4;448;449;450;451;, - 4;452;453;454;455;, - 4;456;457;458;459;, - 4;460;461;462;463;, - 4;464;465;466;467;, - 4;468;469;470;471;, - 4;472;473;474;475;, - 4;476;477;478;479;, - 4;480;481;482;483;, - 4;484;485;486;487;, - 4;488;489;490;491;, - 4;492;493;494;495;, - 4;496;497;498;499;, - 4;500;501;502;503;, - 4;504;505;506;507;, - 4;508;509;510;511;, - 4;512;513;514;515;, - 4;516;517;518;519;, - 4;520;521;522;523;, - 4;524;525;526;527;, - 4;528;529;530;531;, - 4;532;533;534;535;, - 4;536;537;538;539;, - 4;540;541;542;543;, - 4;544;545;546;547;, - 4;548;549;550;551;, - 4;552;553;554;555;, - 4;556;557;558;559;, - 4;560;561;562;563;, - 4;564;565;566;567;, - 4;568;569;570;571;, - 4;572;573;574;575;, - 4;576;577;578;579;, - 4;580;581;582;583;, - 4;584;585;586;587;, - 4;588;589;590;591;, - 4;592;593;594;595;, - 4;596;597;598;599;, - 4;600;601;602;603;, - 4;604;605;606;607;, - 4;608;609;610;611;, - 4;612;613;614;615;, - 4;616;617;618;619;, - 4;620;621;622;623;, - 4;624;625;626;627;, - 4;628;629;630;631;, - 4;632;633;634;635;, - 4;636;637;638;639;, - 4;640;641;642;643;, - 4;644;645;646;647;, - 4;648;649;650;651;, - 4;652;653;654;655;, - 4;656;657;658;659;, - 4;660;661;662;663;, - 4;664;665;666;667;, - 4;668;669;670;671;, - 4;672;673;674;675;, - 4;676;677;678;679;, - 4;680;681;682;683;, - 4;684;685;686;687;, - 4;688;689;690;691;, - 4;692;693;694;695;, - 4;696;697;698;699;, - 4;700;701;702;703;, - 4;704;705;706;707;, - 4;708;709;710;711;, - 4;712;713;714;715;, - 4;716;717;718;719;, - 4;720;721;722;723;, - 4;724;725;726;727;, - 4;728;729;730;731;, - 4;732;733;734;735;, - 4;736;737;738;739;, - 4;740;741;742;743;, - 4;744;745;746;747;, - 4;748;749;750;751;, - 4;752;753;754;755;, - 4;756;757;758;759;, - 4;760;761;762;763;, - 4;764;765;766;767;, - 4;768;769;770;771;, - 4;772;773;774;775;, - 4;776;777;778;779;, - 4;780;781;782;783;, - 4;784;785;786;787;, - 4;788;789;790;791;, - 4;792;793;794;795;, - 4;796;797;798;799;, - 4;800;801;802;803;, - 4;804;805;806;807;, - 4;808;809;810;811;, - 4;812;813;814;815;, - 4;816;817;818;819;, - 4;820;821;822;823;, - 4;824;825;826;827;, - 4;828;829;830;831;, - 4;832;833;834;835;, - 4;836;837;838;839;, - 4;840;841;842;843;, - 4;844;845;846;847;, - 4;848;849;850;851;, - 4;852;853;854;855;, - 4;856;857;858;859;, - 4;860;861;862;863;, - 4;864;865;866;867;, - 4;868;869;870;871;, - 4;872;873;874;875;, - 4;876;877;878;879;, - 4;880;881;882;883;, - 4;884;885;886;887;, - 4;888;889;890;891;, - 4;892;893;894;895;, - 4;896;897;898;899;, - 4;900;901;902;903;, - 4;904;905;906;907;, - 4;908;909;910;911;, - 4;912;913;914;915;, - 4;916;917;918;919;, - 4;920;921;922;923;, - 4;924;925;926;927;, - 4;928;929;930;931;, - 4;932;933;934;935;, - 4;936;937;938;939;, - 4;940;941;942;943;, - 4;944;945;946;947;, - 4;948;949;950;951;, - 4;952;953;954;955;, - 4;956;957;958;959;, - 4;960;961;962;963;, - 4;964;965;966;967;, - 4;968;969;970;971;, - 4;972;973;974;975;, - 4;976;977;978;979;, - 4;980;981;982;983;, - 4;984;985;986;987;, - 4;988;989;990;991;, - 4;992;993;994;995;, - 4;996;997;998;999;, - 4;1000;1001;1002;1003;, - 4;1004;1005;1006;1007;, - 4;1008;1009;1010;1011;, - 4;1012;1013;1014;1015;, - 4;1016;1017;1018;1019;, - 4;1020;1021;1022;1023;, - 4;1024;1025;1026;1027;, - 4;1028;1029;1030;1031;, - 4;1032;1033;1034;1035;, - 4;1036;1037;1038;1039;, - 4;1040;1041;1042;1043;, - 4;1044;1045;1046;1047;, - 4;1048;1049;1050;1051;, - 4;1052;1053;1054;1055;, - 4;1056;1057;1058;1059;, - 4;1060;1061;1062;1063;, - 4;1064;1065;1066;1067;, - 4;1068;1069;1070;1071;, - 4;1072;1073;1074;1075;, - 4;1076;1077;1078;1079;, - 4;1080;1081;1082;1083;, - 4;1084;1085;1086;1087;, - 4;1088;1089;1090;1091;, - 4;1092;1093;1094;1095;, - 4;1096;1097;1098;1099;, - 4;1100;1101;1102;1103;, - 4;1104;1105;1106;1107;, - 4;1108;1109;1110;1111;, - 4;1112;1113;1114;1115;, - 4;1116;1117;1118;1119;, - 4;1120;1121;1122;1123;, - 4;1124;1125;1126;1127;, - 4;1128;1129;1130;1131;, - 4;1132;1133;1134;1135;, - 4;1136;1137;1138;1139;, - 4;1140;1141;1142;1143;, - 4;1144;1145;1146;1147;, - 4;1148;1149;1150;1151;, - 4;1152;1153;1154;1155;, - 4;1156;1157;1158;1159;, - 4;1160;1161;1162;1163;, - 4;1164;1165;1166;1167;, - 4;1168;1169;1170;1171;, - 4;1172;1173;1174;1175;, - 4;1176;1177;1178;1179;, - 4;1180;1181;1182;1183;, - 4;1184;1185;1186;1187;, - 4;1188;1189;1190;1191;, - 4;1192;1193;1194;1195;, - 4;1196;1197;1198;1199;, - 4;1200;1201;1202;1203;, - 4;1204;1205;1206;1207;, - 4;1208;1209;1210;1211;, - 4;1212;1213;1214;1215;, - 4;1216;1217;1218;1219;, - 4;1220;1221;1222;1223;, - 4;1224;1225;1226;1227;, - 4;1228;1229;1230;1231;, - 4;1232;1233;1234;1235;, - 4;1236;1237;1238;1239;, - 4;1240;1241;1242;1243;, - 4;1244;1245;1246;1247;, - 4;1248;1249;1250;1251;, - 4;1252;1253;1254;1255;, - 4;1256;1257;1258;1259;, - 4;1260;1261;1262;1263;, - 4;1264;1265;1266;1267;, - 4;1268;1269;1270;1271;, - 4;1272;1273;1274;1275;, - 4;1276;1277;1278;1279;, - 4;1280;1281;1282;1283;, - 4;1284;1285;1286;1287;, - 4;1288;1289;1290;1291;, - 4;1292;1293;1294;1295;, - 4;1296;1297;1298;1299;, - 4;1300;1301;1302;1303;, - 4;1304;1305;1306;1307;, - 4;1308;1309;1310;1311;, - 4;1312;1313;1314;1315;, - 4;1316;1317;1318;1319;, - 4;1320;1321;1322;1323;, - 4;1324;1325;1326;1327;, - 4;1328;1329;1330;1331;, - 4;1332;1333;1334;1335;, - 4;1336;1337;1338;1339;, - 4;1340;1341;1342;1343;, - 4;1344;1345;1346;1347;, - 4;1348;1349;1350;1351;, - 4;1352;1353;1354;1355;, - 4;1356;1357;1358;1359;, - 4;1360;1361;1362;1363;, - 4;1364;1365;1366;1367;, - 4;1368;1369;1370;1371;, - 4;1372;1373;1374;1375;, - 4;1376;1377;1378;1379;, - 4;1380;1381;1382;1383;, - 4;1384;1385;1386;1387;, - 4;1388;1389;1390;1391;, - 4;1392;1393;1394;1395;, - 4;1396;1397;1398;1399;, - 4;1400;1401;1402;1403;, - 4;1404;1405;1406;1407;, - 4;1408;1409;1410;1411;, - 4;1412;1413;1414;1415;, - 4;1416;1417;1418;1419;, - 4;1420;1421;1422;1423;, - 4;1424;1425;1426;1427;, - 4;1428;1429;1430;1431;, - 4;1432;1433;1434;1435;, - 4;1436;1437;1438;1439;, - 4;1440;1441;1442;1443;, - 4;1444;1445;1446;1447;, - 4;1448;1449;1450;1451;, - 4;1452;1453;1454;1455;, - 4;1456;1457;1458;1459;, - 4;1460;1461;1462;1463;, - 4;1464;1465;1466;1467;, - 4;1468;1469;1470;1471;, - 4;1472;1473;1474;1475;, - 4;1476;1477;1478;1479;, - 4;1480;1481;1482;1483;, - 4;1484;1485;1486;1487;, - 4;1488;1489;1490;1491;, - 4;1492;1493;1494;1495;, - 4;1496;1497;1498;1499;, - 4;1500;1501;1502;1503;, - 4;1504;1505;1506;1507;, - 4;1508;1509;1510;1511;, - 4;1512;1513;1514;1515;, - 4;1516;1517;1518;1519;, - 4;1520;1521;1522;1523;, - 4;1524;1525;1526;1527;, - 4;1528;1529;1530;1531;, - 4;1532;1533;1534;1535;, - 4;1536;1537;1538;1539;, - 4;1540;1541;1542;1543;, - 4;1544;1545;1546;1547;, - 4;1548;1549;1550;1551;, - 4;1552;1553;1554;1555;, - 4;1556;1557;1558;1559;, - 4;1560;1561;1562;1563;, - 4;1564;1565;1566;1567;, - 4;1568;1569;1570;1571;, - 4;1572;1573;1574;1575;, - 4;1576;1577;1578;1579;, - 4;1580;1581;1582;1583;, - 4;1584;1585;1586;1587;, - 4;1588;1589;1590;1591;, - 4;1592;1593;1594;1595;, - 4;1596;1597;1598;1599;, - 4;1600;1601;1602;1603;, - 4;1604;1605;1606;1607;, - 4;1608;1609;1610;1611;, - 4;1612;1613;1614;1615;, - 4;1616;1617;1618;1619;, - 4;1620;1621;1622;1623;, - 4;1624;1625;1626;1627;, - 4;1628;1629;1630;1631;, - 4;1632;1633;1634;1635;, - 4;1636;1637;1638;1639;, - 4;1640;1641;1642;1643;, - 4;1644;1645;1646;1647;, - 4;1648;1649;1650;1651;, - 4;1652;1653;1654;1655;, - 4;1656;1657;1658;1659;, - 4;1660;1661;1662;1663;, - 4;1664;1665;1666;1667;, - 4;1668;1669;1670;1671;, - 4;1672;1673;1674;1675;, - 4;1676;1677;1678;1679;, - 4;1680;1681;1682;1683;, - 4;1684;1685;1686;1687;, - 4;1688;1689;1690;1691;, - 4;1692;1693;1694;1695;, - 4;1696;1697;1698;1699;, - 4;1700;1701;1702;1703;, - 4;1704;1705;1706;1707;, - 4;1708;1709;1710;1711;, - 4;1712;1713;1714;1715;, - 4;1716;1717;1718;1719;, - 4;1720;1721;1722;1723;, - 4;1724;1725;1726;1727;, - 4;1728;1729;1730;1731;, - 4;1732;1733;1734;1735;, - 4;1736;1737;1738;1739;, - 4;1740;1741;1742;1743;, - 4;1744;1745;1746;1747;, - 4;1748;1749;1750;1751;, - 4;1752;1753;1754;1755;, - 4;1756;1757;1758;1759;, - 4;1760;1761;1762;1763;, - 4;1764;1765;1766;1767;, - 4;1768;1769;1770;1771;, - 4;1772;1773;1774;1775;, - 4;1776;1777;1778;1779;, - 4;1780;1781;1782;1783;, - 4;1784;1785;1786;1787;, - 4;1788;1789;1790;1791;, - 4;1792;1793;1794;1795;, - 4;1796;1797;1798;1799;, - 4;1800;1801;1802;1803;, - 4;1804;1805;1806;1807;, - 4;1808;1809;1810;1811;, - 4;1812;1813;1814;1815;, - 4;1816;1817;1818;1819;, - 4;1820;1821;1822;1823;, - 4;1824;1825;1826;1827;, - 4;1828;1829;1830;1831;, - 4;1832;1833;1834;1835;, - 4;1836;1837;1838;1839;, - 4;1840;1841;1842;1843;, - 4;1844;1845;1846;1847;, - 4;1848;1849;1850;1851;, - 4;1852;1853;1854;1855;, - 4;1856;1857;1858;1859;, - 4;1860;1861;1862;1863;, - 4;1864;1865;1866;1867;, - 4;1868;1869;1870;1871;, - 4;1872;1873;1874;1875;, - 4;1876;1877;1878;1879;, - 4;1880;1881;1882;1883;, - 4;1884;1885;1886;1887;, - 4;1888;1889;1890;1891;, - 4;1892;1893;1894;1895;, - 4;1896;1897;1898;1899;, - 4;1900;1901;1902;1903;, - 4;1904;1905;1906;1907;, - 4;1908;1909;1910;1911;, - 4;1912;1913;1914;1915;, - 4;1916;1917;1918;1919;, - 4;1920;1921;1922;1923;, - 4;1924;1925;1926;1927;, - 4;1928;1929;1930;1931;, - 4;1932;1933;1934;1935;, - 4;1936;1937;1938;1939;, - 4;1940;1941;1942;1943;, - 4;1944;1945;1946;1947;, - 4;1948;1949;1950;1951;, - 4;1952;1953;1954;1955;, - 4;1956;1957;1958;1959;, - 4;1960;1961;1962;1963;, - 4;1964;1965;1966;1967;, - 4;1968;1969;1970;1971;, - 4;1972;1973;1974;1975;, - 4;1976;1977;1978;1979;, - 4;1980;1981;1982;1983;, - 4;1984;1985;1986;1987;, - 4;1988;1989;1990;1991;, - 4;1992;1993;1994;1995;, - 4;1996;1997;1998;1999;, - 4;2000;2001;2002;2003;, - 4;2004;2005;2006;2007;, - 4;2008;2009;2010;2011;, - 4;2012;2013;2014;2015;, - 4;2016;2017;2018;2019;, - 4;2020;2021;2022;2023;, - 4;2024;2025;2026;2027;, - 4;2028;2029;2030;2031;, - 4;2032;2033;2034;2035;, - 4;2036;2037;2038;2039;, - 4;2040;2041;2042;2043;, - 4;2044;2045;2046;2047;, - 4;2048;2049;2050;2051;, - 4;2052;2053;2054;2055;, - 4;2056;2057;2058;2059;, - 4;2060;2061;2062;2063;, - 4;2064;2065;2066;2067;, - 4;2068;2069;2070;2071;, - 4;2072;2073;2074;2075;, - 4;2076;2077;2078;2079;, - 4;2080;2081;2082;2083;, - 4;2084;2085;2086;2087;, - 4;2088;2089;2090;2091;, - 4;2092;2093;2094;2095;, - 4;2096;2097;2098;2099;, - 4;2100;2101;2102;2103;, - 4;2104;2105;2106;2107;, - 4;2108;2109;2110;2111;, - 4;2112;2113;2114;2115;, - 4;2116;2117;2118;2119;, - 4;2120;2121;2122;2123;, - 4;2124;2125;2126;2127;, - 4;2128;2129;2130;2131;, - 4;2132;2133;2134;2135;, - 4;2136;2137;2138;2139;, - 4;2140;2141;2142;2143;, - 4;2144;2145;2146;2147;, - 4;2148;2149;2150;2151;, - 4;2152;2153;2154;2155;, - 4;2156;2157;2158;2159;, - 4;2160;2161;2162;2163;, - 4;2164;2165;2166;2167;, - 4;2168;2169;2170;2171;, - 4;2172;2173;2174;2175;, - 4;2176;2177;2178;2179;, - 4;2180;2181;2182;2183;, - 4;2184;2185;2186;2187;, - 4;2188;2189;2190;2191;, - 4;2192;2193;2194;2195;, - 4;2196;2197;2198;2199;, - 4;2200;2201;2202;2203;, - 4;2204;2205;2206;2207;, - 4;2208;2209;2210;2211;, - 4;2212;2213;2214;2215;, - 4;2216;2217;2218;2219;, - 4;2220;2221;2222;2223;, - 4;2224;2225;2226;2227;, - 4;2228;2229;2230;2231;, - 4;2232;2233;2234;2235;, - 4;2236;2237;2238;2239;, - 4;2240;2241;2242;2243;, - 4;2244;2245;2246;2247;, - 4;2248;2249;2250;2251;, - 4;2252;2253;2254;2255;, - 4;2256;2257;2258;2259;, - 4;2260;2261;2262;2263;, - 4;2264;2265;2266;2267;, - 4;2268;2269;2270;2271;, - 4;2272;2273;2274;2275;, - 4;2276;2277;2278;2279;, - 4;2280;2281;2282;2283;, - 4;2284;2285;2286;2287;, - 4;2288;2289;2290;2291;, - 4;2292;2293;2294;2295;, - 4;2296;2297;2298;2299;, - 4;2300;2301;2302;2303;, - 4;2304;2305;2306;2307;, - 4;2308;2309;2310;2311;, - 4;2312;2313;2314;2315;, - 4;2316;2317;2318;2319;, - 4;2320;2321;2322;2323;, - 4;2324;2325;2326;2327;, - 4;2328;2329;2330;2331;, - 4;2332;2333;2334;2335;, - 4;2336;2337;2338;2339;, - 4;2340;2341;2342;2343;, - 4;2344;2345;2346;2347;, - 4;2348;2349;2350;2351;, - 4;2352;2353;2354;2355;, - 4;2356;2357;2358;2359;, - 4;2360;2361;2362;2363;, - 4;2364;2365;2366;2367;, - 4;2368;2369;2370;2371;, - 4;2372;2373;2374;2375;, - 4;2376;2377;2378;2379;, - 4;2380;2381;2382;2383;, - 4;2384;2385;2386;2387;, - 4;2388;2389;2390;2391;, - 4;2392;2393;2394;2395;, - 4;2396;2397;2398;2399;, - 4;2400;2401;2402;2403;, - 4;2404;2405;2406;2407;, - 4;2408;2409;2410;2411;, - 4;2412;2413;2414;2415;, - 4;2416;2417;2418;2419;, - 4;2420;2421;2422;2423;, - 4;2424;2425;2426;2427;, - 4;2428;2429;2430;2431;, - 4;2432;2433;2434;2435;, - 4;2436;2437;2438;2439;, - 4;2440;2441;2442;2443;, - 4;2444;2445;2446;2447;, - 4;2448;2449;2450;2451;, - 4;2452;2453;2454;2455;, - 4;2456;2457;2458;2459;, - 4;2460;2461;2462;2463;, - 4;2464;2465;2466;2467;, - 4;2468;2469;2470;2471;, - 4;2472;2473;2474;2475;, - 4;2476;2477;2478;2479;, - 4;2480;2481;2482;2483;, - 4;2484;2485;2486;2487;, - 4;2488;2489;2490;2491;, - 4;2492;2493;2494;2495;, - 4;2496;2497;2498;2499;, - 4;2500;2501;2502;2503;, - 4;2504;2505;2506;2507;, - 4;2508;2509;2510;2511;, - 4;2512;2513;2514;2515;, - 4;2516;2517;2518;2519;, - 4;2520;2521;2522;2523;, - 4;2524;2525;2526;2527;, - 4;2528;2529;2530;2531;, - 4;2532;2533;2534;2535;, - 4;2536;2537;2538;2539;, - 4;2540;2541;2542;2543;, - 4;2544;2545;2546;2547;, - 4;2548;2549;2550;2551;, - 4;2552;2553;2554;2555;, - 4;2556;2557;2558;2559;, - 4;2560;2561;2562;2563;, - 4;2564;2565;2566;2567;, - 4;2568;2569;2570;2571;, - 4;2572;2573;2574;2575;, - 4;2576;2577;2578;2579;, - 4;2580;2581;2582;2583;, - 4;2584;2585;2586;2587;, - 4;2588;2589;2590;2591;, - 4;2592;2593;2594;2595;, - 4;2596;2597;2598;2599;, - 4;2600;2601;2602;2603;, - 4;2604;2605;2606;2607;, - 4;2608;2609;2610;2611;, - 4;2612;2613;2614;2615;, - 4;2616;2617;2618;2619;, - 4;2620;2621;2622;2623;, - 4;2624;2625;2626;2627;, - 4;2628;2629;2630;2631;, - 4;2632;2633;2634;2635;, - 4;2636;2637;2638;2639;, - 4;2640;2641;2642;2643;, - 4;2644;2645;2646;2647;, - 4;2648;2649;2650;2651;, - 4;2652;2653;2654;2655;, - 4;2656;2657;2658;2659;, - 4;2660;2661;2662;2663;, - 4;2664;2665;2666;2667;, - 4;2668;2669;2670;2671;, - 4;2672;2673;2674;2675;, - 4;2676;2677;2678;2679;, - 4;2680;2681;2682;2683;, - 4;2684;2685;2686;2687;, - 4;2688;2689;2690;2691;, - 4;2692;2693;2694;2695;, - 4;2696;2697;2698;2699;, - 4;2700;2701;2702;2703;, - 4;2704;2705;2706;2707;, - 4;2708;2709;2710;2711;, - 4;2712;2713;2714;2715;, - 4;2716;2717;2718;2719;, - 4;2720;2721;2722;2723;, - 4;2724;2725;2726;2727;, - 4;2728;2729;2730;2731;, - 4;2732;2733;2734;2735;, - 4;2736;2737;2738;2739;, - 4;2740;2741;2742;2743;, - 4;2744;2745;2746;2747;, - 4;2748;2749;2750;2751;, - 4;2752;2753;2754;2755;, - 4;2756;2757;2758;2759;, - 4;2760;2761;2762;2763;, - 4;2764;2765;2766;2767;, - 4;2768;2769;2770;2771;, - 4;2772;2773;2774;2775;, - 4;2776;2777;2778;2779;, - 4;2780;2781;2782;2783;, - 4;2784;2785;2786;2787;, - 4;2788;2789;2790;2791;, - 4;2792;2793;2794;2795;, - 4;2796;2797;2798;2799;, - 4;2800;2801;2802;2803;, - 4;2804;2805;2806;2807;, - 4;2808;2809;2810;2811;, - 4;2812;2813;2814;2815;, - 4;2816;2817;2818;2819;, - 4;2820;2821;2822;2823;, - 4;2824;2825;2826;2827;, - 4;2828;2829;2830;2831;, - 4;2832;2833;2834;2835;, - 4;2836;2837;2838;2839;, - 4;2840;2841;2842;2843;, - 4;2844;2845;2846;2847;, - 4;2848;2849;2850;2851;, - 4;2852;2853;2854;2855;, - 4;2856;2857;2858;2859;, - 4;2860;2861;2862;2863;, - 4;2864;2865;2866;2867;, - 4;2868;2869;2870;2871;, - 4;2872;2873;2874;2875;, - 4;2876;2877;2878;2879;, - 4;2880;2881;2882;2883;, - 4;2884;2885;2886;2887;, - 4;2888;2889;2890;2891;, - 4;2892;2893;2894;2895;, - 4;2896;2897;2898;2899;, - 4;2900;2901;2902;2903;, - 4;2904;2905;2906;2907;, - 4;2908;2909;2910;2911;, - 4;2912;2913;2914;2915;, - 4;2916;2917;2918;2919;, - 4;2920;2921;2922;2923;, - 4;2924;2925;2926;2927;, - 4;2928;2929;2930;2931;, - 4;2932;2933;2934;2935;, - 4;2936;2937;2938;2939;, - 4;2940;2941;2942;2943;, - 4;2944;2945;2946;2947;, - 4;2948;2949;2950;2951;; - } //End of Plane_000 Normals - MeshMaterialList { //Plane_000 Material List - 1; - 738; - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0;; - Material Material { - 0.640000; 0.640000; 0.640000; 1.000000;; - 96.078431; - 0.500000; 0.500000; 0.500000;; - 0.000000; 0.000000; 0.000000;; - TextureFilename {"boat.png";} - } - } //End of Plane_000 Material List - MeshTextureCoords { //Plane_000 UV Coordinates - 2952; - 0.116022; 0.052830;, - 0.087066; 0.052833;, - 0.087063; 0.025689;, - 0.116019; 0.025685;, - 0.029160; 0.479941;, - 0.058118; 0.479941;, - 0.058118; 0.507087;, - 0.029160; 0.507087;, - 0.087076; 0.222947;, - 0.058119; 0.222948;, - 0.058119; 0.195803;, - 0.087075; 0.195803;, - 0.144991; 0.393067;, - 0.116033; 0.393067;, - 0.116034; 0.365922;, - 0.144991; 0.365922;, - 0.405609; 0.393072;, - 0.376652; 0.393070;, - 0.376653; 0.365924;, - 0.405611; 0.365926;, - 0.405620; 0.139684;, - 0.434582; 0.139684;, - 0.434582; 0.166834;, - 0.405621; 0.166834;, - 0.662141; 0.896163;, - 0.691099; 0.896163;, - 0.691099; 0.923309;, - 0.662141; 0.923309;, - 0.289781; 0.309818;, - 0.318739; 0.309818;, - 0.318739; 0.336965;, - 0.289780; 0.336964;, - 0.749016; 0.896163;, - 0.777974; 0.896163;, - 0.777974; 0.923309;, - 0.749016; 0.923309;, - 0.173944; 0.139696;, - 0.202902; 0.139694;, - 0.202903; 0.166840;, - 0.173946; 0.166842;, - 0.231853; 0.052816;, - 0.202894; 0.052820;, - 0.202891; 0.025674;, - 0.231849; 0.025670;, - 0.202907; 0.393067;, - 0.173949; 0.393067;, - 0.173949; 0.365921;, - 0.202907; 0.365921;, - 0.318738; 0.139687;, - 0.347698; 0.139686;, - 0.347699; 0.166834;, - 0.318739; 0.166835;, - 0.289772; 0.052810;, - 0.260812; 0.052813;, - 0.260808; 0.025666;, - 0.289768; 0.025662;, - 0.579760; 0.536037;, - 0.550803; 0.536034;, - 0.550805; 0.508889;, - 0.579762; 0.508891;, - 0.202907; 0.479940;, - 0.231864; 0.479940;, - 0.231865; 0.507085;, - 0.202907; 0.507085;, - 0.087073; 0.139701;, - 0.116029; 0.139700;, - 0.116031; 0.166845;, - 0.087074; 0.166846;, - 0.463541; 0.222946;, - 0.434580; 0.222944;, - 0.434581; 0.195795;, - 0.463543; 0.195797;, - 0.434571; 0.336970;, - 0.463530; 0.336973;, - 0.463527; 0.365931;, - 0.434569; 0.365928;, - 0.405613; 0.336968;, - 0.434571; 0.336970;, - 0.434569; 0.365928;, - 0.405611; 0.365926;, - 0.347692; 0.479940;, - 0.376649; 0.479941;, - 0.376648; 0.507085;, - 0.347691; 0.507085;, - 0.202907; 0.336964;, - 0.231865; 0.336964;, - 0.231864; 0.365922;, - 0.202907; 0.365921;, - 0.173949; 0.336964;, - 0.202907; 0.336964;, - 0.202907; 0.365921;, - 0.173949; 0.365921;, - 0.144991; 0.309818;, - 0.173949; 0.309818;, - 0.173949; 0.336964;, - 0.144991; 0.336964;, - 0.434582; 0.166834;, - 0.463544; 0.166834;, - 0.463543; 0.195797;, - 0.434581; 0.195795;, - 0.405621; 0.166834;, - 0.434582; 0.166834;, - 0.434581; 0.195795;, - 0.405620; 0.195795;, - 0.144990; 0.222946;, - 0.116033; 0.222947;, - 0.116032; 0.195802;, - 0.144989; 0.195800;, - 0.318739; 0.166835;, - 0.347699; 0.166834;, - 0.347700; 0.195794;, - 0.318740; 0.195795;, - 0.289780; 0.166836;, - 0.318739; 0.166835;, - 0.318740; 0.195795;, - 0.289780; 0.195795;, - 0.231865; 0.309818;, - 0.260823; 0.309818;, - 0.260822; 0.336964;, - 0.231865; 0.336964;, - 0.434560; 0.507088;, - 0.463516; 0.507089;, - 0.463514; 0.536045;, - 0.434558; 0.536044;, - 0.405604; 0.507086;, - 0.434560; 0.507088;, - 0.434558; 0.536044;, - 0.405603; 0.536042;, - 0.058118; 0.393067;, - 0.029160; 0.393067;, - 0.029160; 0.365921;, - 0.058118; 0.365921;, - 0.318735; 0.507084;, - 0.347691; 0.507085;, - 0.347691; 0.536041;, - 0.318735; 0.536041;, - 0.289778; 0.507084;, - 0.318735; 0.507084;, - 0.318735; 0.536041;, - 0.289779; 0.536041;, - 0.376654; 0.052801;, - 0.347693; 0.052804;, - 0.347690; 0.025655;, - 0.376652; 0.025652;, - 0.318739; 0.336965;, - 0.347697; 0.336965;, - 0.347696; 0.365923;, - 0.318738; 0.365923;, - 0.289780; 0.336964;, - 0.318739; 0.336965;, - 0.318738; 0.365923;, - 0.289780; 0.365922;, - 0.806932; 0.896163;, - 0.835890; 0.896163;, - 0.835890; 0.923309;, - 0.806932; 0.923309;, - 0.202907; 0.507085;, - 0.231865; 0.507085;, - 0.231865; 0.536042;, - 0.202908; 0.536043;, - 0.173950; 0.507086;, - 0.202907; 0.507085;, - 0.202908; 0.536043;, - 0.173950; 0.536044;, - 0.260819; 0.139691;, - 0.289778; 0.139689;, - 0.289780; 0.166836;, - 0.260820; 0.166837;, - 0.087076; 0.507087;, - 0.116034; 0.507086;, - 0.116034; 0.536044;, - 0.087076; 0.536045;, - 0.058118; 0.507087;, - 0.087076; 0.507087;, - 0.087076; 0.536045;, - 0.058118; 0.536045;, - 0.782471; 0.536045;, - 0.753512; 0.536045;, - 0.753512; 0.508898;, - 0.782471; 0.508898;, - 0.087076; 0.336964;, - 0.116034; 0.336964;, - 0.116034; 0.365922;, - 0.087076; 0.365921;, - 0.058118; 0.336964;, - 0.087076; 0.336964;, - 0.087076; 0.365921;, - 0.058118; 0.365921;, - 0.116029; 0.139700;, - 0.144987; 0.139698;, - 0.144988; 0.166843;, - 0.116031; 0.166845;, - 0.202903; 0.166840;, - 0.231862; 0.166839;, - 0.231863; 0.195797;, - 0.202905; 0.195798;, - 0.173946; 0.166842;, - 0.202903; 0.166840;, - 0.202905; 0.195798;, - 0.173947; 0.195799;, - 0.260822; 0.479939;, - 0.289779; 0.479939;, - 0.289778; 0.507084;, - 0.260822; 0.507084;, - 0.087074; 0.166846;, - 0.116031; 0.166845;, - 0.116032; 0.195802;, - 0.087075; 0.195803;, - 0.058118; 0.166847;, - 0.087074; 0.166846;, - 0.087075; 0.195803;, - 0.058119; 0.195803;, - 0.116033; 0.222947;, - 0.087076; 0.222947;, - 0.087075; 0.195803;, - 0.116032; 0.195802;, - 0.144992; 0.479940;, - 0.173949; 0.479940;, - 0.173950; 0.507086;, - 0.144992; 0.507086;, - 0.202906; 0.222944;, - 0.173948; 0.222945;, - 0.173947; 0.195799;, - 0.202905; 0.195798;, - 0.376652; 0.393070;, - 0.347695; 0.393069;, - 0.347696; 0.365923;, - 0.376653; 0.365924;, - 0.434578; 0.052797;, - 0.405616; 0.052799;, - 0.405614; 0.025649;, - 0.434577; 0.025647;, - 0.029162; 0.309818;, - 0.058119; 0.309818;, - 0.058118; 0.336964;, - 0.029161; 0.336963;, - 0.173949; 0.309818;, - 0.202907; 0.309818;, - 0.202907; 0.336964;, - 0.173949; 0.336964;, - 0.289779; 0.479939;, - 0.318735; 0.479940;, - 0.318735; 0.507084;, - 0.289778; 0.507084;, - 0.289780; 0.393068;, - 0.260822; 0.393067;, - 0.260822; 0.365922;, - 0.289780; 0.365922;, - 0.058119; 0.309818;, - 0.087076; 0.309818;, - 0.087076; 0.336964;, - 0.058118; 0.336964;, - 0.231864; 0.393067;, - 0.202907; 0.393067;, - 0.202907; 0.365921;, - 0.231864; 0.365922;, - 0.434567; 0.393073;, - 0.405609; 0.393072;, - 0.405611; 0.365926;, - 0.434569; 0.365928;, - 0.434582; 0.139684;, - 0.463545; 0.139683;, - 0.463544; 0.166834;, - 0.434582; 0.166834;, - 0.376655; 0.336967;, - 0.405613; 0.336968;, - 0.405611; 0.365926;, - 0.376653; 0.365924;, - 0.347697; 0.336965;, - 0.376655; 0.336967;, - 0.376653; 0.365924;, - 0.347696; 0.365923;, - 0.260812; 0.052813;, - 0.231853; 0.052816;, - 0.231849; 0.025670;, - 0.260808; 0.025666;, - 0.289781; 0.222942;, - 0.260822; 0.222943;, - 0.260822; 0.195796;, - 0.289780; 0.195795;, - 0.550803; 0.536034;, - 0.521845; 0.536032;, - 0.521847; 0.508886;, - 0.550805; 0.508889;, - 0.318739; 0.309818;, - 0.347698; 0.309819;, - 0.347697; 0.336965;, - 0.318739; 0.336965;, - 0.637676; 0.536041;, - 0.608718; 0.536039;, - 0.608720; 0.508893;, - 0.637678; 0.508895;, - 0.202902; 0.139694;, - 0.231860; 0.139692;, - 0.231862; 0.166839;, - 0.202903; 0.166840;, - 0.318732; 0.052806;, - 0.289772; 0.052810;, - 0.289768; 0.025662;, - 0.318729; 0.025658;, - 0.144991; 0.336964;, - 0.173949; 0.336964;, - 0.173949; 0.365921;, - 0.144991; 0.365922;, - 0.116034; 0.336964;, - 0.144991; 0.336964;, - 0.144991; 0.365922;, - 0.116034; 0.365922;, - 0.864848; 0.896163;, - 0.893806; 0.896163;, - 0.893806; 0.923309;, - 0.864848; 0.923309;, - 0.029160; 0.393067;, - 0.000202; 0.393067;, - 0.000202; 0.365920;, - 0.029160; 0.365921;, - 0.777974; 0.896163;, - 0.806932; 0.896163;, - 0.806932; 0.923309;, - 0.777974; 0.923309;, - 0.058110; 0.052835;, - 0.029155; 0.052838;, - 0.029152; 0.025694;, - 0.058107; 0.025692;, - 0.376649; 0.479941;, - 0.405605; 0.479942;, - 0.405604; 0.507086;, - 0.376648; 0.507085;, - 0.000205; 0.139706;, - 0.029161; 0.139705;, - 0.029162; 0.166848;, - 0.000206; 0.166849;, - 0.231864; 0.222943;, - 0.202906; 0.222944;, - 0.202905; 0.195798;, - 0.231863; 0.195797;, - 0.260823; 0.309818;, - 0.289781; 0.309818;, - 0.289780; 0.336964;, - 0.260822; 0.336964;, - 0.087076; 0.393067;, - 0.058118; 0.393067;, - 0.058118; 0.365921;, - 0.087076; 0.365921;, - 0.463541; 0.052795;, - 0.434578; 0.052797;, - 0.434577; 0.025647;, - 0.463539; 0.025645;, - 0.695593; 0.536044;, - 0.666635; 0.536043;, - 0.666636; 0.508897;, - 0.695594; 0.508898;, - 0.405615; 0.309822;, - 0.434574; 0.309824;, - 0.434571; 0.336970;, - 0.405613; 0.336968;, - 0.173936; 0.052823;, - 0.144979; 0.052827;, - 0.144976; 0.025682;, - 0.173933; 0.025678;, - 0.376660; 0.166834;, - 0.405621; 0.166834;, - 0.405620; 0.195795;, - 0.376660; 0.195794;, - 0.347699; 0.166834;, - 0.376660; 0.166834;, - 0.376660; 0.195794;, - 0.347700; 0.195794;, - 0.633183; 0.896163;, - 0.662141; 0.896163;, - 0.662141; 0.923309;, - 0.633183; 0.923309;, - 0.144987; 0.139698;, - 0.173944; 0.139696;, - 0.173946; 0.166842;, - 0.144988; 0.166843;, - 0.405605; 0.479942;, - 0.434561; 0.479944;, - 0.434560; 0.507088;, - 0.405604; 0.507086;, - 0.260822; 0.393067;, - 0.231864; 0.393067;, - 0.231864; 0.365922;, - 0.260822; 0.365922;, - 0.058118; 0.479941;, - 0.087076; 0.479941;, - 0.087076; 0.507087;, - 0.058118; 0.507087;, - 0.463524; 0.393076;, - 0.434567; 0.393073;, - 0.434569; 0.365928;, - 0.463527; 0.365931;, - 0.202907; 0.309818;, - 0.231865; 0.309818;, - 0.231865; 0.336964;, - 0.202907; 0.336964;, - 0.260820; 0.166837;, - 0.289780; 0.166836;, - 0.289780; 0.195795;, - 0.260822; 0.195796;, - 0.231862; 0.166839;, - 0.260820; 0.166837;, - 0.260822; 0.195796;, - 0.231863; 0.195797;, - 0.260822; 0.222943;, - 0.231864; 0.222943;, - 0.231863; 0.195797;, - 0.260822; 0.195796;, - 0.405620; 0.222943;, - 0.376659; 0.222942;, - 0.376660; 0.195794;, - 0.405620; 0.195795;, - 0.347698; 0.309819;, - 0.376656; 0.309820;, - 0.376655; 0.336967;, - 0.347697; 0.336965;, - 0.318735; 0.479940;, - 0.347692; 0.479940;, - 0.347691; 0.507085;, - 0.318735; 0.507084;, - 0.318737; 0.393068;, - 0.289780; 0.393068;, - 0.289780; 0.365922;, - 0.318738; 0.365923;, - 0.087076; 0.309818;, - 0.116034; 0.309818;, - 0.116034; 0.336964;, - 0.087076; 0.336964;, - 0.347698; 0.139686;, - 0.376659; 0.139685;, - 0.376660; 0.166834;, - 0.347699; 0.166834;, - 0.376648; 0.507085;, - 0.405604; 0.507086;, - 0.405603; 0.536042;, - 0.376647; 0.536041;, - 0.347691; 0.507085;, - 0.376648; 0.507085;, - 0.376647; 0.536041;, - 0.347691; 0.536041;, - 0.347693; 0.052804;, - 0.318732; 0.052806;, - 0.318729; 0.025658;, - 0.347690; 0.025655;, - 0.260822; 0.507084;, - 0.289778; 0.507084;, - 0.289779; 0.536041;, - 0.260822; 0.536041;, - 0.231865; 0.507085;, - 0.260822; 0.507084;, - 0.260822; 0.536041;, - 0.231865; 0.536042;, - 0.318740; 0.222942;, - 0.289781; 0.222942;, - 0.289780; 0.195795;, - 0.318740; 0.195795;, - 0.922764; 0.896163;, - 0.951722; 0.896163;, - 0.951722; 0.923309;, - 0.922764; 0.923309;, - 0.029155; 0.052838;, - 0.000199; 0.052841;, - 0.000197; 0.025697;, - 0.029152; 0.025694;, - 0.000202; 0.479941;, - 0.029160; 0.479941;, - 0.029160; 0.507087;, - 0.000202; 0.507087;, - 0.058119; 0.222948;, - 0.029163; 0.222948;, - 0.029163; 0.195804;, - 0.058119; 0.195803;, - 0.753512; 0.536045;, - 0.724553; 0.536045;, - 0.724553; 0.508898;, - 0.753512; 0.508898;, - 0.116033; 0.393067;, - 0.087076; 0.393067;, - 0.087076; 0.365921;, - 0.116034; 0.365922;, - 0.260822; 0.336964;, - 0.289780; 0.336964;, - 0.289780; 0.365922;, - 0.260822; 0.365922;, - 0.231865; 0.336964;, - 0.260822; 0.336964;, - 0.260822; 0.365922;, - 0.231864; 0.365922;, - 0.666635; 0.536043;, - 0.637676; 0.536041;, - 0.637678; 0.508895;, - 0.666636; 0.508897;, - 0.144992; 0.507086;, - 0.173950; 0.507086;, - 0.173950; 0.536044;, - 0.144992; 0.536044;, - 0.116034; 0.507086;, - 0.144992; 0.507086;, - 0.144992; 0.536044;, - 0.116034; 0.536044;, - 0.087066; 0.052833;, - 0.058110; 0.052835;, - 0.058107; 0.025692;, - 0.087063; 0.025689;, - 0.029160; 0.507087;, - 0.058118; 0.507087;, - 0.058118; 0.536045;, - 0.029160; 0.536045;, - 0.000202; 0.507087;, - 0.029160; 0.507087;, - 0.029160; 0.536045;, - 0.000202; 0.536045;, - 0.144979; 0.052827;, - 0.116022; 0.052830;, - 0.116019; 0.025685;, - 0.144976; 0.025682;, - 0.173949; 0.393067;, - 0.144991; 0.393067;, - 0.144991; 0.365922;, - 0.173949; 0.365921;, - 0.289778; 0.139689;, - 0.318738; 0.139687;, - 0.318739; 0.166835;, - 0.289780; 0.166836;, - 0.691099; 0.896163;, - 0.720057; 0.896163;, - 0.720058; 0.923309;, - 0.691099; 0.923309;, - 0.029161; 0.139705;, - 0.058116; 0.139703;, - 0.058118; 0.166847;, - 0.029162; 0.166848;, - 0.173949; 0.479940;, - 0.202907; 0.479940;, - 0.202907; 0.507085;, - 0.173950; 0.507086;, - 0.058116; 0.139703;, - 0.087073; 0.139701;, - 0.087074; 0.166846;, - 0.058118; 0.166847;, - 0.029161; 0.336963;, - 0.058118; 0.336964;, - 0.058118; 0.365921;, - 0.029160; 0.365921;, - 0.000203; 0.336962;, - 0.029161; 0.336963;, - 0.029160; 0.365921;, - 0.000202; 0.365920;, - 0.434574; 0.309824;, - 0.463533; 0.309827;, - 0.463530; 0.336973;, - 0.434571; 0.336970;, - 0.376659; 0.222942;, - 0.347700; 0.222942;, - 0.347700; 0.195794;, - 0.376660; 0.195794;, - 0.202894; 0.052820;, - 0.173936; 0.052823;, - 0.173933; 0.025678;, - 0.202891; 0.025674;, - 0.521845; 0.536032;, - 0.492888; 0.536029;, - 0.492890; 0.508884;, - 0.521847; 0.508886;, - 0.434561; 0.479944;, - 0.463517; 0.479945;, - 0.463516; 0.507089;, - 0.434560; 0.507088;, - 0.347695; 0.393069;, - 0.318737; 0.393068;, - 0.318738; 0.365923;, - 0.347696; 0.365923;, - 0.116034; 0.309818;, - 0.144991; 0.309818;, - 0.144991; 0.336964;, - 0.116034; 0.336964;, - 0.144988; 0.166843;, - 0.173946; 0.166842;, - 0.173947; 0.195799;, - 0.144989; 0.195800;, - 0.116031; 0.166845;, - 0.144988; 0.166843;, - 0.144989; 0.195800;, - 0.116032; 0.195802;, - 0.087076; 0.479941;, - 0.116034; 0.479941;, - 0.116034; 0.507086;, - 0.087076; 0.507087;, - 0.347700; 0.222942;, - 0.318740; 0.222942;, - 0.318740; 0.195795;, - 0.347700; 0.195794;, - 0.231860; 0.139692;, - 0.260819; 0.139691;, - 0.260820; 0.166837;, - 0.231862; 0.166839;, - 0.434580; 0.222944;, - 0.405620; 0.222943;, - 0.405620; 0.195795;, - 0.434581; 0.195795;, - 0.893806; 0.896163;, - 0.922764; 0.896163;, - 0.922764; 0.923309;, - 0.893806; 0.923309;, - 0.376656; 0.309820;, - 0.405615; 0.309822;, - 0.405613; 0.336968;, - 0.376655; 0.336967;, - 0.231864; 0.479940;, - 0.260822; 0.479939;, - 0.260822; 0.507084;, - 0.231865; 0.507085;, - 0.029162; 0.166848;, - 0.058118; 0.166847;, - 0.058119; 0.195803;, - 0.029163; 0.195804;, - 0.000206; 0.166849;, - 0.029162; 0.166848;, - 0.029163; 0.195804;, - 0.000207; 0.195804;, - 0.029163; 0.222948;, - 0.000207; 0.222948;, - 0.000207; 0.195804;, - 0.029163; 0.195804;, - 0.116034; 0.479941;, - 0.144992; 0.479940;, - 0.144992; 0.507086;, - 0.116034; 0.507086;, - 0.173948; 0.222945;, - 0.144990; 0.222946;, - 0.144989; 0.195800;, - 0.173947; 0.195799;, - 0.376659; 0.139685;, - 0.405620; 0.139684;, - 0.405621; 0.166834;, - 0.376660; 0.166834;, - 0.405616; 0.052799;, - 0.376654; 0.052801;, - 0.376652; 0.025652;, - 0.405614; 0.025649;, - 0.000205; 0.309817;, - 0.029162; 0.309818;, - 0.029161; 0.336963;, - 0.000203; 0.336962;, - 0.811430; 0.536045;, - 0.782471; 0.536045;, - 0.782471; 0.508898;, - 0.811430; 0.508898;, - 0.260812; 0.052813;, - 0.289772; 0.052810;, - 0.289774; 0.081770;, - 0.260815; 0.081772;, - 0.318732; 0.052806;, - 0.347693; 0.052804;, - 0.347695; 0.081765;, - 0.318734; 0.081767;, - 0.260817; 0.110731;, - 0.289777; 0.110729;, - 0.289778; 0.139689;, - 0.260819; 0.139691;, - 0.260822; 0.222943;, - 0.289781; 0.222942;, - 0.289781; 0.251901;, - 0.260823; 0.251901;, - 0.318740; 0.222942;, - 0.347700; 0.222942;, - 0.347699; 0.251901;, - 0.318740; 0.251901;, - 0.376658; 0.110724;, - 0.405619; 0.110723;, - 0.405620; 0.139684;, - 0.376659; 0.139685;, - 0.376659; 0.222942;, - 0.405620; 0.222943;, - 0.405618; 0.251903;, - 0.376659; 0.251902;, - 0.434580; 0.222944;, - 0.463541; 0.222946;, - 0.463539; 0.251907;, - 0.434578; 0.251905;, - 0.144979; 0.052827;, - 0.173936; 0.052823;, - 0.173939; 0.081781;, - 0.144982; 0.081784;, - 0.202894; 0.052820;, - 0.231853; 0.052816;, - 0.231856; 0.081775;, - 0.202897; 0.081778;, - 0.144991; 0.280861;, - 0.173949; 0.280860;, - 0.173949; 0.309818;, - 0.144991; 0.309818;, - 0.144991; 0.393067;, - 0.173949; 0.393067;, - 0.173949; 0.422025;, - 0.144991; 0.422025;, - 0.202907; 0.393067;, - 0.231864; 0.393067;, - 0.231864; 0.422025;, - 0.202907; 0.422025;, - 0.376657; 0.280861;, - 0.405617; 0.280863;, - 0.405615; 0.309822;, - 0.376656; 0.309820;, - 0.376652; 0.393070;, - 0.405609; 0.393072;, - 0.405608; 0.422029;, - 0.376651; 0.422027;, - 0.434567; 0.393073;, - 0.463524; 0.393076;, - 0.463521; 0.422033;, - 0.434565; 0.422031;, - 0.376654; 0.052801;, - 0.405616; 0.052799;, - 0.405618; 0.081761;, - 0.376656; 0.081763;, - 0.434578; 0.052797;, - 0.463541; 0.052795;, - 0.463543; 0.081758;, - 0.434580; 0.081759;, - 0.087071; 0.110745;, - 0.116028; 0.110743;, - 0.116029; 0.139700;, - 0.087073; 0.139701;, - 0.202900; 0.110736;, - 0.231858; 0.110734;, - 0.231860; 0.139692;, - 0.202902; 0.139694;, - 0.087076; 0.280861;, - 0.116034; 0.280861;, - 0.116034; 0.309818;, - 0.087076; 0.309818;, - 0.087076; 0.450983;, - 0.116034; 0.450983;, - 0.116034; 0.479941;, - 0.087076; 0.479941;, - 0.202907; 0.450982;, - 0.231864; 0.450982;, - 0.231864; 0.479940;, - 0.202907; 0.479940;, - 0.318740; 0.280860;, - 0.347698; 0.280860;, - 0.347698; 0.309819;, - 0.318739; 0.309818;, - 0.318736; 0.450983;, - 0.347693; 0.450983;, - 0.347692; 0.479940;, - 0.318735; 0.479940;, - 0.434563; 0.450987;, - 0.463519; 0.450989;, - 0.463517; 0.479945;, - 0.434561; 0.479944;, - 0.318737; 0.110727;, - 0.347697; 0.110726;, - 0.347698; 0.139686;, - 0.318738; 0.139687;, - 0.434581; 0.110722;, - 0.463544; 0.110721;, - 0.463545; 0.139683;, - 0.434582; 0.139684;, - 0.202907; 0.280860;, - 0.231865; 0.280860;, - 0.231865; 0.309818;, - 0.202907; 0.309818;, - 0.434576; 0.280865;, - 0.463536; 0.280867;, - 0.463533; 0.309827;, - 0.434574; 0.309824;, - 0.256841; 0.710209;, - 0.256842; 0.739169;, - 0.237438; 0.739169;, - 0.237437; 0.710210;, - 0.411474; 0.883958;, - 0.411472; 0.912914;, - 0.392071; 0.912913;, - 0.392072; 0.883957;, - 0.102228; 0.941881;, - 0.102232; 0.970836;, - 0.082831; 0.970838;, - 0.082827; 0.941883;, - 0.343726; 0.594367;, - 0.343729; 0.565405;, - 0.363135; 0.565407;, - 0.363131; 0.594369;, - 0.343718; 0.739168;, - 0.343719; 0.710209;, - 0.363123; 0.710210;, - 0.363122; 0.739169;, - 0.498346; 0.855009;, - 0.498349; 0.826052;, - 0.517751; 0.826054;, - 0.517748; 0.855011;, - 0.411480; 0.797088;, - 0.411478; 0.826045;, - 0.392076; 0.826044;, - 0.392077; 0.797087;, - 0.343724; 0.623329;, - 0.343726; 0.594367;, - 0.363131; 0.594369;, - 0.363129; 0.623330;, - 0.411483; 0.739172;, - 0.411481; 0.768130;, - 0.392079; 0.768129;, - 0.392080; 0.739171;, - 0.411469; 0.941870;, - 0.411467; 0.970825;, - 0.392066; 0.970823;, - 0.392068; 0.941868;, - 0.189099; 0.999779;, - 0.189096; 0.970825;, - 0.208496; 0.970823;, - 0.208499; 0.999777;, - 0.102204; 0.768143;, - 0.102209; 0.797100;, - 0.082806; 0.797103;, - 0.082802; 0.768146;, - 0.256844; 0.797085;, - 0.256845; 0.826043;, - 0.237443; 0.826044;, - 0.237441; 0.797086;, - 0.521853; 0.432392;, - 0.550811; 0.432394;, - 0.550809; 0.451796;, - 0.521852; 0.451794;, - 0.343715; 0.883955;, - 0.343716; 0.854999;, - 0.363117; 0.854999;, - 0.363116; 0.883956;, - 0.608726; 0.432398;, - 0.637683; 0.432400;, - 0.637682; 0.451803;, - 0.608724; 0.451801;, - 0.189078; 0.768132;, - 0.189076; 0.739173;, - 0.208479; 0.739171;, - 0.208481; 0.768130;, - 0.102213; 0.826057;, - 0.102217; 0.855013;, - 0.082815; 0.855016;, - 0.082811; 0.826060;, - 0.392064; 0.999777;, - 0.363110; 0.999774;, - 0.363112; 0.970821;, - 0.392066; 0.970823;, - 0.392066; 0.970823;, - 0.363112; 0.970821;, - 0.363114; 0.941867;, - 0.392068; 0.941868;, - 0.893806; 0.999806;, - 0.864848; 0.999805;, - 0.864848; 0.980403;, - 0.893806; 0.980403;, - 0.392079; 0.768129;, - 0.363121; 0.768127;, - 0.363122; 0.739169;, - 0.392080; 0.739171;, - 0.392080; 0.739171;, - 0.363122; 0.739169;, - 0.363123; 0.710210;, - 0.392082; 0.710212;, - 0.411507; 0.536454;, - 0.411501; 0.565415;, - 0.392097; 0.565411;, - 0.392102; 0.536450;, - 0.237452; 0.999775;, - 0.208499; 0.999777;, - 0.208496; 0.970823;, - 0.237450; 0.970821;, - 0.237450; 0.970821;, - 0.208496; 0.970823;, - 0.208494; 0.941869;, - 0.237449; 0.941867;, - 0.806932; 0.999805;, - 0.777974; 0.999805;, - 0.777974; 0.980403;, - 0.806932; 0.980403;, - 0.237446; 0.883957;, - 0.208490; 0.883958;, - 0.208488; 0.855002;, - 0.237444; 0.855000;, - 0.237444; 0.855000;, - 0.208488; 0.855002;, - 0.208486; 0.826045;, - 0.237443; 0.826044;, - 0.102162; 0.565421;, - 0.102170; 0.594384;, - 0.082764; 0.594389;, - 0.082755; 0.565427;, - 0.546688; 0.999799;, - 0.517731; 0.999795;, - 0.517735; 0.970838;, - 0.546692; 0.970842;, - 0.546692; 0.970842;, - 0.517735; 0.970838;, - 0.517739; 0.941881;, - 0.546696; 0.941885;, - 0.498337; 0.941879;, - 0.498340; 0.912923;, - 0.517742; 0.912925;, - 0.517739; 0.941881;, - 0.546702; 0.883971;, - 0.517745; 0.883968;, - 0.517748; 0.855011;, - 0.546705; 0.855014;, - 0.546705; 0.855014;, - 0.517748; 0.855011;, - 0.517751; 0.826054;, - 0.546709; 0.826057;, - 0.189056; 0.565403;, - 0.189053; 0.536436;, - 0.208462; 0.536434;, - 0.208464; 0.565401;, - 0.392072; 0.883957;, - 0.363116; 0.883956;, - 0.363117; 0.854999;, - 0.392074; 0.855001;, - 0.392074; 0.855001;, - 0.363117; 0.854999;, - 0.363118; 0.826043;, - 0.392076; 0.826044;, - 0.256842; 0.739169;, - 0.256843; 0.768127;, - 0.237440; 0.768128;, - 0.237438; 0.739169;, - 0.546715; 0.768142;, - 0.517757; 0.768139;, - 0.517760; 0.739182;, - 0.546718; 0.739185;, - 0.546718; 0.739185;, - 0.517760; 0.739182;, - 0.517763; 0.710224;, - 0.546721; 0.710227;, - 0.343716; 0.826042;, - 0.343717; 0.797085;, - 0.363120; 0.797085;, - 0.363118; 0.826043;, - 0.546728; 0.652311;, - 0.517770; 0.652307;, - 0.517774; 0.623349;, - 0.546732; 0.623353;, - 0.546732; 0.623353;, - 0.517774; 0.623349;, - 0.517778; 0.594391;, - 0.546736; 0.594395;, - 0.411497; 0.594375;, - 0.411493; 0.623335;, - 0.392089; 0.623333;, - 0.392093; 0.594372;, - 0.392086; 0.652293;, - 0.363126; 0.652291;, - 0.363129; 0.623330;, - 0.392089; 0.623333;, - 0.392089; 0.623333;, - 0.363129; 0.623330;, - 0.363131; 0.594369;, - 0.392093; 0.594372;, - 0.102232; 0.970836;, - 0.102236; 0.999791;, - 0.082835; 0.999793;, - 0.082831; 0.970838;, - 0.237440; 0.768128;, - 0.208481; 0.768130;, - 0.208479; 0.739171;, - 0.237438; 0.739169;, - 0.237438; 0.739169;, - 0.208479; 0.739171;, - 0.208477; 0.710212;, - 0.237437; 0.710210;, - 0.666637; 0.432400;, - 0.695596; 0.432400;, - 0.695595; 0.451803;, - 0.666637; 0.451803;, - 0.237433; 0.652289;, - 0.208472; 0.652291;, - 0.208469; 0.623329;, - 0.237432; 0.623327;, - 0.237432; 0.623327;, - 0.208469; 0.623329;, - 0.208467; 0.594365;, - 0.237431; 0.594364;, - 0.343712; 0.970820;, - 0.343713; 0.941866;, - 0.363114; 0.941867;, - 0.363112; 0.970821;, - 0.102189; 0.681267;, - 0.102194; 0.710226;, - 0.082791; 0.710230;, - 0.082785; 0.681271;, - 0.662142; 0.999806;, - 0.633183; 0.999806;, - 0.633183; 0.980403;, - 0.662141; 0.980403;, - 0.189073; 0.710214;, - 0.189070; 0.681254;, - 0.208474; 0.681252;, - 0.208477; 0.710212;, - 0.498333; 0.970835;, - 0.498337; 0.941879;, - 0.517739; 0.941881;, - 0.517735; 0.970838;, - 0.411481; 0.768130;, - 0.411480; 0.797088;, - 0.392077; 0.797087;, - 0.392079; 0.768129;, - 0.498371; 0.623347;, - 0.498375; 0.594388;, - 0.517778; 0.594391;, - 0.517774; 0.623349;, - 0.411467; 0.970825;, - 0.411463; 0.999779;, - 0.392064; 0.999777;, - 0.392066; 0.970823;, - 0.343718; 0.768127;, - 0.343718; 0.739168;, - 0.363122; 0.739169;, - 0.363121; 0.768127;, - 0.256843; 0.768127;, - 0.256844; 0.797085;, - 0.237441; 0.797086;, - 0.237440; 0.768128;, - 0.256848; 0.912911;, - 0.256849; 0.941866;, - 0.237449; 0.941867;, - 0.237447; 0.912912;, - 0.343714; 0.912911;, - 0.343715; 0.883955;, - 0.363116; 0.883956;, - 0.363115; 0.912911;, - 0.498343; 0.883966;, - 0.498346; 0.855009;, - 0.517748; 0.855011;, - 0.517745; 0.883968;, - 0.392068; 0.941868;, - 0.363114; 0.941867;, - 0.363115; 0.912911;, - 0.392071; 0.912913;, - 0.392071; 0.912913;, - 0.363115; 0.912911;, - 0.363116; 0.883956;, - 0.392072; 0.883957;, - 0.411478; 0.826045;, - 0.411476; 0.855002;, - 0.392074; 0.855001;, - 0.392076; 0.826044;, - 0.343722; 0.652290;, - 0.343724; 0.623329;, - 0.363129; 0.623330;, - 0.363126; 0.652291;, - 0.189091; 0.912916;, - 0.189088; 0.883960;, - 0.208490; 0.883958;, - 0.208492; 0.912914;, - 0.102217; 0.855013;, - 0.102221; 0.883969;, - 0.082819; 0.883972;, - 0.082815; 0.855016;, - 0.256845; 0.826043;, - 0.256846; 0.854999;, - 0.237444; 0.855000;, - 0.237443; 0.826044;, - 0.951722; 0.999806;, - 0.922764; 0.999806;, - 0.922764; 0.980403;, - 0.951722; 0.980403;, - 0.102153; 0.536456;, - 0.102162; 0.565421;, - 0.082755; 0.565427;, - 0.082745; 0.536463;, - 0.392082; 0.710212;, - 0.363123; 0.710210;, - 0.363124; 0.681251;, - 0.392084; 0.681253;, - 0.392084; 0.681253;, - 0.363124; 0.681251;, - 0.363126; 0.652291;, - 0.392086; 0.652293;, - 0.498379; 0.565430;, - 0.498384; 0.536472;, - 0.517787; 0.536475;, - 0.517782; 0.565433;, - 0.256837; 0.565399;, - 0.256837; 0.594363;, - 0.237431; 0.594364;, - 0.237430; 0.565399;, - 0.724554; 0.432400;, - 0.753512; 0.432400;, - 0.753512; 0.451803;, - 0.724554; 0.451803;, - 0.411493; 0.623335;, - 0.411490; 0.652295;, - 0.392086; 0.652293;, - 0.392089; 0.623333;, - 0.744377; 0.250556;, - 0.744378; 0.193462;, - 0.779683; 0.193462;, - 0.779682; 0.250557;, - 0.102170; 0.594384;, - 0.102177; 0.623346;, - 0.082772; 0.623351;, - 0.082764; 0.594389;, - 0.102183; 0.652307;, - 0.102189; 0.681267;, - 0.082785; 0.681271;, - 0.082779; 0.652311;, - 0.411488; 0.681254;, - 0.411485; 0.710213;, - 0.392082; 0.710212;, - 0.392084; 0.681253;, - 0.189086; 0.855004;, - 0.189083; 0.826047;, - 0.208486; 0.826045;, - 0.208488; 0.855002;, - 0.720058; 0.999806;, - 0.691100; 0.999806;, - 0.691100; 0.980403;, - 0.720058; 0.980403;, - 0.189060; 0.594367;, - 0.189056; 0.565403;, - 0.208464; 0.565401;, - 0.208467; 0.594365;, - 0.498358; 0.739180;, - 0.498361; 0.710222;, - 0.517763; 0.710224;, - 0.517760; 0.739182;, - 0.189063; 0.623331;, - 0.189060; 0.594367;, - 0.208467; 0.594365;, - 0.208469; 0.623329;, - 0.237449; 0.941867;, - 0.208494; 0.941869;, - 0.208492; 0.912914;, - 0.237447; 0.912912;, - 0.237447; 0.912912;, - 0.208492; 0.912914;, - 0.208490; 0.883958;, - 0.237446; 0.883957;, - 0.343711; 0.999774;, - 0.343712; 0.970820;, - 0.363112; 0.970821;, - 0.363110; 0.999774;, - 0.256847; 0.883956;, - 0.256848; 0.912911;, - 0.237447; 0.912912;, - 0.237446; 0.883957;, - 0.102194; 0.710226;, - 0.102200; 0.739185;, - 0.082797; 0.739188;, - 0.082791; 0.710230;, - 0.492896; 0.432390;, - 0.521853; 0.432392;, - 0.521852; 0.451794;, - 0.492895; 0.451792;, - 0.498329; 0.999792;, - 0.498333; 0.970835;, - 0.517735; 0.970838;, - 0.517731; 0.999795;, - 0.411476; 0.855002;, - 0.411474; 0.883958;, - 0.392072; 0.883957;, - 0.392074; 0.855001;, - 0.343720; 0.681250;, - 0.343722; 0.652290;, - 0.363126; 0.652291;, - 0.363124; 0.681251;, - 0.237443; 0.826044;, - 0.208486; 0.826045;, - 0.208483; 0.797088;, - 0.237441; 0.797086;, - 0.237441; 0.797086;, - 0.208483; 0.797088;, - 0.208481; 0.768130;, - 0.237440; 0.768128;, - 0.498367; 0.652305;, - 0.498371; 0.623347;, - 0.517774; 0.623349;, - 0.517770; 0.652307;, - 0.256846; 0.854999;, - 0.256847; 0.883956;, - 0.237446; 0.883957;, - 0.237444; 0.855000;, - 0.189081; 0.797090;, - 0.189078; 0.768132;, - 0.208481; 0.768130;, - 0.208483; 0.797088;, - 0.256849; 0.941866;, - 0.256850; 0.970820;, - 0.237450; 0.970821;, - 0.237449; 0.941867;, - 0.922764; 0.999806;, - 0.893806; 0.999806;, - 0.893806; 0.980403;, - 0.922764; 0.980403;, - 0.343713; 0.941866;, - 0.343714; 0.912911;, - 0.363115; 0.912911;, - 0.363114; 0.941867;, - 0.498352; 0.797095;, - 0.498355; 0.768137;, - 0.517757; 0.768139;, - 0.517754; 0.797097;, - 0.546696; 0.941885;, - 0.517739; 0.941881;, - 0.517742; 0.912925;, - 0.546699; 0.912928;, - 0.546699; 0.912928;, - 0.517742; 0.912925;, - 0.517745; 0.883968;, - 0.546702; 0.883971;, - 0.256838; 0.536433;, - 0.256837; 0.565399;, - 0.237430; 0.565399;, - 0.237429; 0.536433;, - 0.546709; 0.826057;, - 0.517751; 0.826054;, - 0.517754; 0.797097;, - 0.546712; 0.797100;, - 0.546712; 0.797100;, - 0.517754; 0.797097;, - 0.517757; 0.768139;, - 0.546715; 0.768142;, - 0.498364; 0.681263;, - 0.498367; 0.652305;, - 0.517770; 0.652307;, - 0.517767; 0.681266;, - 0.256839; 0.681249;, - 0.256841; 0.710209;, - 0.237437; 0.710210;, - 0.237435; 0.681250;, - 0.189093; 0.941871;, - 0.189091; 0.912916;, - 0.208492; 0.912914;, - 0.208494; 0.941869;, - 0.102224; 0.912925;, - 0.102228; 0.941881;, - 0.082827; 0.941883;, - 0.082823; 0.912928;, - 0.343729; 0.565405;, - 0.343733; 0.536441;, - 0.363139; 0.536445;, - 0.363135; 0.565407;, - 0.782471; 0.432400;, - 0.811429; 0.432400;, - 0.811429; 0.451803;, - 0.782471; 0.451803;, - 0.102177; 0.623346;, - 0.102183; 0.652307;, - 0.082779; 0.652311;, - 0.082772; 0.623351;, - 0.392076; 0.826044;, - 0.363118; 0.826043;, - 0.363120; 0.797085;, - 0.392077; 0.797087;, - 0.392077; 0.797087;, - 0.363120; 0.797085;, - 0.363121; 0.768127;, - 0.392079; 0.768129;, - 0.498375; 0.594388;, - 0.498379; 0.565430;, - 0.517782; 0.565433;, - 0.517778; 0.594391;, - 0.546721; 0.710227;, - 0.517763; 0.710224;, - 0.517767; 0.681266;, - 0.546725; 0.681269;, - 0.546725; 0.681269;, - 0.517767; 0.681266;, - 0.517770; 0.652307;, - 0.546728; 0.652311;, - 0.256837; 0.594363;, - 0.256838; 0.623326;, - 0.237432; 0.623327;, - 0.237431; 0.594364;, - 0.546736; 0.594395;, - 0.517778; 0.594391;, - 0.517782; 0.565433;, - 0.546740; 0.565437;, - 0.546740; 0.565437;, - 0.517782; 0.565433;, - 0.517787; 0.536475;, - 0.546744; 0.536479;, - 0.411490; 0.652295;, - 0.411488; 0.681254;, - 0.392084; 0.681253;, - 0.392086; 0.652293;, - 0.411472; 0.912914;, - 0.411469; 0.941870;, - 0.392068; 0.941868;, - 0.392071; 0.912913;, - 0.189096; 0.970825;, - 0.189093; 0.941871;, - 0.208494; 0.941869;, - 0.208496; 0.970823;, - 0.691100; 0.999806;, - 0.662142; 0.999806;, - 0.662141; 0.980403;, - 0.691100; 0.980403;, - 0.343716; 0.854999;, - 0.343716; 0.826042;, - 0.363118; 0.826043;, - 0.363117; 0.854999;, - 0.777974; 0.999805;, - 0.749016; 0.999805;, - 0.749016; 0.980403;, - 0.777974; 0.980403;, - 0.189076; 0.739173;, - 0.189073; 0.710214;, - 0.208477; 0.710212;, - 0.208479; 0.739171;, - 0.392093; 0.594372;, - 0.363131; 0.594369;, - 0.363135; 0.565407;, - 0.392097; 0.565411;, - 0.392097; 0.565411;, - 0.363135; 0.565407;, - 0.363139; 0.536445;, - 0.392102; 0.536450;, - 0.102200; 0.739185;, - 0.102204; 0.768143;, - 0.082802; 0.768146;, - 0.082797; 0.739188;, - 0.411485; 0.710213;, - 0.411483; 0.739172;, - 0.392080; 0.739171;, - 0.392082; 0.710212;, - 0.189088; 0.883960;, - 0.189086; 0.855004;, - 0.208488; 0.855002;, - 0.208490; 0.883958;, - 0.102209; 0.797100;, - 0.102213; 0.826057;, - 0.082811; 0.826060;, - 0.082806; 0.797103;, - 0.550811; 0.432394;, - 0.579768; 0.432396;, - 0.579767; 0.451798;, - 0.550809; 0.451796;, - 0.498355; 0.768137;, - 0.498358; 0.739180;, - 0.517760; 0.739182;, - 0.517757; 0.768139;, - 0.189067; 0.652293;, - 0.189063; 0.623331;, - 0.208469; 0.623329;, - 0.208472; 0.652291;, - 0.237437; 0.710210;, - 0.208477; 0.710212;, - 0.208474; 0.681252;, - 0.237435; 0.681250;, - 0.237435; 0.681250;, - 0.208474; 0.681252;, - 0.208472; 0.652291;, - 0.237433; 0.652289;, - 0.256850; 0.970820;, - 0.256852; 0.999774;, - 0.237452; 0.999775;, - 0.237450; 0.970821;, - 0.498340; 0.912923;, - 0.498343; 0.883966;, - 0.517745; 0.883968;, - 0.517742; 0.912925;, - 0.343719; 0.710209;, - 0.343720; 0.681250;, - 0.363124; 0.681251;, - 0.363123; 0.710210;, - 0.256839; 0.652288;, - 0.256839; 0.681249;, - 0.237435; 0.681250;, - 0.237433; 0.652289;, - 0.343717; 0.797085;, - 0.343718; 0.768127;, - 0.363121; 0.768127;, - 0.363120; 0.797085;, - 0.411501; 0.565415;, - 0.411497; 0.594375;, - 0.392093; 0.594372;, - 0.392097; 0.565411;, - 0.102221; 0.883969;, - 0.102224; 0.912925;, - 0.082823; 0.912928;, - 0.082819; 0.883972;, - 0.237431; 0.594364;, - 0.208467; 0.594365;, - 0.208464; 0.565401;, - 0.237430; 0.565399;, - 0.237430; 0.565399;, - 0.208464; 0.565401;, - 0.208462; 0.536434;, - 0.237429; 0.536433;, - 0.835890; 0.999805;, - 0.806932; 0.999805;, - 0.806932; 0.980403;, - 0.835890; 0.980403;, - 0.189083; 0.826047;, - 0.189081; 0.797090;, - 0.208483; 0.797088;, - 0.208486; 0.826045;, - 0.753512; 0.432400;, - 0.782471; 0.432400;, - 0.782471; 0.451803;, - 0.753512; 0.451803;, - 0.189070; 0.681254;, - 0.189067; 0.652293;, - 0.208472; 0.652291;, - 0.208474; 0.681252;, - 0.498349; 0.826052;, - 0.498352; 0.797095;, - 0.517754; 0.797097;, - 0.517751; 0.826054;, - 0.256838; 0.623326;, - 0.256839; 0.652288;, - 0.237433; 0.652289;, - 0.237432; 0.623327;, - 0.498361; 0.710222;, - 0.498364; 0.681263;, - 0.517767; 0.681266;, - 0.517763; 0.710224;, - 0.782471; 0.451803;, - 0.811429; 0.451803;, - 0.811430; 0.508898;, - 0.782471; 0.508898;, - 0.569546; 0.317575;, - 0.538217; 0.317574;, - 0.538218; 0.250552;, - 0.569547; 0.250553;, - 0.546702; 0.883971;, - 0.546705; 0.855014;, - 0.603797; 0.855021;, - 0.603794; 0.883978;, - 0.000194; 0.000253;, - 0.029149; 0.000250;, - 0.029152; 0.025694;, - 0.000197; 0.025697;, - 0.546721; 0.710227;, - 0.546725; 0.681269;, - 0.603818; 0.681276;, - 0.603814; 0.710234;, - 0.057374; 0.883976;, - 0.057370; 0.855020;, - 0.082815; 0.855016;, - 0.082819; 0.883972;, - 0.691100; 0.980403;, - 0.662141; 0.980403;, - 0.662141; 0.923309;, - 0.691099; 0.923309;, - 0.546728; 0.652311;, - 0.546732; 0.623353;, - 0.603825; 0.623360;, - 0.603822; 0.652318;, - 0.057331; 0.652317;, - 0.057323; 0.623357;, - 0.082772; 0.623351;, - 0.082779; 0.652311;, - 0.666637; 0.451803;, - 0.695595; 0.451803;, - 0.695594; 0.508898;, - 0.666636; 0.508897;, - 0.546688; 0.999799;, - 0.546692; 0.970842;, - 0.603783; 0.970849;, - 0.603779; 0.999806;, - 0.546705; 0.855014;, - 0.546709; 0.826057;, - 0.603801; 0.826064;, - 0.603797; 0.855021;, - 0.662141; 0.980403;, - 0.633183; 0.980403;, - 0.633183; 0.923309;, - 0.662141; 0.923309;, - 0.057338; 0.681276;, - 0.057331; 0.652317;, - 0.082779; 0.652311;, - 0.082785; 0.681271;, - 0.720058; 0.980403;, - 0.691100; 0.980403;, - 0.691099; 0.923309;, - 0.720058; 0.923309;, - 0.289765; 0.000213;, - 0.318726; 0.000208;, - 0.318729; 0.025658;, - 0.289768; 0.025662;, - 0.546715; 0.768142;, - 0.546718; 0.739185;, - 0.603811; 0.739191;, - 0.603808; 0.768149;, - 0.546732; 0.623353;, - 0.546736; 0.594395;, - 0.603829; 0.594403;, - 0.603825; 0.623360;, - 0.893806; 0.980403;, - 0.864848; 0.980403;, - 0.864848; 0.923309;, - 0.893806; 0.923309;, - 0.057365; 0.826064;, - 0.057361; 0.797107;, - 0.082806; 0.797103;, - 0.082811; 0.826060;, - 0.546692; 0.970842;, - 0.546696; 0.941885;, - 0.603787; 0.941892;, - 0.603783; 0.970849;, - 0.777974; 0.980403;, - 0.749016; 0.980403;, - 0.749016; 0.923309;, - 0.777974; 0.923309;, - 0.633183; 0.980403;, - 0.604225; 0.980403;, - 0.604225; 0.923309;, - 0.633183; 0.923309;, - 0.058105; 0.000247;, - 0.087060; 0.000244;, - 0.087063; 0.025689;, - 0.058107; 0.025692;, - 0.922764; 0.980403;, - 0.893806; 0.980403;, - 0.893806; 0.923309;, - 0.922764; 0.923309;, - 0.434575; 0.000196;, - 0.463537; 0.000194;, - 0.463539; 0.025645;, - 0.434577; 0.025647;, - 0.546718; 0.739185;, - 0.546721; 0.710227;, - 0.603814; 0.710234;, - 0.603811; 0.739191;, - 0.521852; 0.451794;, - 0.550809; 0.451796;, - 0.550805; 0.508889;, - 0.521847; 0.508886;, - 0.864848; 0.980403;, - 0.835890; 0.980403;, - 0.835890; 0.923309;, - 0.864848; 0.923309;, - 0.057387; 0.970842;, - 0.057383; 0.941887;, - 0.082827; 0.941883;, - 0.082831; 0.970838;, - 0.144972; 0.000236;, - 0.173929; 0.000232;, - 0.173933; 0.025678;, - 0.144976; 0.025682;, - 0.749016; 0.980403;, - 0.720058; 0.980403;, - 0.720058; 0.923309;, - 0.749016; 0.923309;, - 0.492895; 0.451792;, - 0.521852; 0.451794;, - 0.521847; 0.508886;, - 0.492890; 0.508884;, - 0.951722; 0.980403;, - 0.922764; 0.980403;, - 0.922764; 0.923309;, - 0.951722; 0.923309;, - 0.806932; 0.980403;, - 0.777974; 0.980403;, - 0.777974; 0.923309;, - 0.806932; 0.923309;, - 0.546712; 0.797100;, - 0.546715; 0.768142;, - 0.603808; 0.768149;, - 0.603804; 0.797106;, - 0.057314; 0.594397;, - 0.057305; 0.565436;, - 0.082755; 0.565427;, - 0.082764; 0.594389;, - 0.550809; 0.451796;, - 0.579767; 0.451798;, - 0.579762; 0.508891;, - 0.550805; 0.508889;, - 0.202887; 0.000227;, - 0.231845; 0.000222;, - 0.231849; 0.025670;, - 0.202891; 0.025674;, - 0.724554; 0.451803;, - 0.753512; 0.451803;, - 0.753512; 0.508898;, - 0.724553; 0.508898;, - 0.546740; 0.565437;, - 0.546744; 0.536479;, - 0.603837; 0.536487;, - 0.603833; 0.565445;, - 0.608724; 0.451801;, - 0.637682; 0.451803;, - 0.637678; 0.508895;, - 0.608720; 0.508893;, - 0.463938; 0.451790;, - 0.492895; 0.451792;, - 0.492890; 0.508884;, - 0.463933; 0.508882;, - 0.835890; 0.980403;, - 0.806932; 0.980403;, - 0.806932; 0.923309;, - 0.835890; 0.923309;, - 0.546699; 0.912928;, - 0.546702; 0.883971;, - 0.603794; 0.883978;, - 0.603790; 0.912935;, - 0.546709; 0.826057;, - 0.546712; 0.797100;, - 0.603804; 0.797106;, - 0.603801; 0.826064;, - 0.057361; 0.797107;, - 0.057355; 0.768150;, - 0.082802; 0.768146;, - 0.082806; 0.797103;, - 0.753512; 0.451803;, - 0.782471; 0.451803;, - 0.782471; 0.508898;, - 0.753512; 0.508898;, - 0.695595; 0.451803;, - 0.724554; 0.451803;, - 0.724553; 0.508898;, - 0.695594; 0.508898;, - 0.057391; 0.999797;, - 0.057387; 0.970842;, - 0.082831; 0.970838;, - 0.082835; 0.999793;, - 0.546725; 0.681269;, - 0.546728; 0.652311;, - 0.603822; 0.652318;, - 0.603818; 0.681276;, - 0.546736; 0.594395;, - 0.546740; 0.565437;, - 0.603833; 0.565445;, - 0.603829; 0.594403;, - 0.057305; 0.565436;, - 0.057294; 0.536474;, - 0.082745; 0.536463;, - 0.082755; 0.565427;, - 0.579767; 0.451798;, - 0.608724; 0.451801;, - 0.608720; 0.508893;, - 0.579762; 0.508891;, - 0.318726; 0.000208;, - 0.347687; 0.000205;, - 0.347690; 0.025655;, - 0.318729; 0.025658;, - 0.546696; 0.941885;, - 0.546699; 0.912928;, - 0.603790; 0.912935;, - 0.603787; 0.941892;, - 0.343711; 0.999774;, - 0.314758; 0.999773;, - 0.314758; 0.970819;, - 0.343712; 0.970820;, - 0.343718; 0.768127;, - 0.314759; 0.768126;, - 0.314760; 0.739168;, - 0.343718; 0.739168;, - 0.189099; 0.999779;, - 0.160145; 0.999783;, - 0.160142; 0.970828;, - 0.189096; 0.970825;, - 0.189088; 0.883960;, - 0.160132; 0.883963;, - 0.160129; 0.855006;, - 0.189086; 0.855004;, - 0.498329; 0.999792;, - 0.469373; 0.999787;, - 0.469377; 0.970832;, - 0.498333; 0.970835;, - 0.498343; 0.883966;, - 0.469387; 0.883963;, - 0.469389; 0.855006;, - 0.498346; 0.855009;, - 0.343715; 0.883955;, - 0.314759; 0.883955;, - 0.314759; 0.854998;, - 0.343716; 0.854999;, - 0.498355; 0.768137;, - 0.469397; 0.768135;, - 0.469400; 0.739177;, - 0.498358; 0.739180;, - 0.498367; 0.652305;, - 0.469409; 0.652301;, - 0.469412; 0.623343;, - 0.498371; 0.623347;, - 0.343722; 0.652290;, - 0.314761; 0.652288;, - 0.314762; 0.623327;, - 0.343724; 0.623329;, - 0.189078; 0.768132;, - 0.160120; 0.768135;, - 0.160117; 0.739176;, - 0.189076; 0.739173;, - 0.189067; 0.652293;, - 0.160105; 0.652296;, - 0.160101; 0.623334;, - 0.189063; 0.623331;, - 0.131191; 0.999786;, - 0.102236; 0.999791;, - 0.102232; 0.970836;, - 0.131187; 0.970832;, - 0.131183; 0.941877;, - 0.102228; 0.941881;, - 0.102224; 0.912925;, - 0.131180; 0.912922;, - 0.440418; 0.999783;, - 0.411463; 0.999779;, - 0.411467; 0.970825;, - 0.440421; 0.970828;, - 0.440425; 0.941873;, - 0.411469; 0.941870;, - 0.411472; 0.912914;, - 0.440428; 0.912917;, - 0.343713; 0.941866;, - 0.314758; 0.941865;, - 0.314759; 0.912910;, - 0.343714; 0.912911;, - 0.440439; 0.768132;, - 0.411481; 0.768130;, - 0.411483; 0.739172;, - 0.440442; 0.739174;, - 0.440444; 0.710216;, - 0.411485; 0.710213;, - 0.411488; 0.681254;, - 0.440447; 0.681257;, - 0.343719; 0.710209;, - 0.314760; 0.710209;, - 0.314760; 0.681249;, - 0.343720; 0.681250;, - 0.131162; 0.768138;, - 0.102204; 0.768143;, - 0.102200; 0.739185;, - 0.131158; 0.739180;, - 0.131154; 0.710221;, - 0.102194; 0.710226;, - 0.102189; 0.681267;, - 0.131149; 0.681261;, - 0.285805; 0.999773;, - 0.256852; 0.999774;, - 0.256850; 0.970820;, - 0.285804; 0.970820;, - 0.285804; 0.941865;, - 0.256849; 0.941866;, - 0.256848; 0.912911;, - 0.285803; 0.912910;, - 0.189093; 0.941871;, - 0.160138; 0.941874;, - 0.160135; 0.912918;, - 0.189091; 0.912916;, - 0.285803; 0.883955;, - 0.256847; 0.883956;, - 0.256846; 0.854999;, - 0.285802; 0.854999;, - 0.285802; 0.826042;, - 0.256845; 0.826043;, - 0.256844; 0.797085;, - 0.285802; 0.797085;, - 0.189083; 0.826047;, - 0.160126; 0.826050;, - 0.160123; 0.797093;, - 0.189081; 0.797090;, - 0.131176; 0.883966;, - 0.102221; 0.883969;, - 0.102217; 0.855013;, - 0.131173; 0.855010;, - 0.131170; 0.826053;, - 0.102213; 0.826057;, - 0.102209; 0.797100;, - 0.131166; 0.797096;, - 0.498337; 0.941879;, - 0.469381; 0.941876;, - 0.469384; 0.912920;, - 0.498340; 0.912923;, - 0.498349; 0.826052;, - 0.469392; 0.826049;, - 0.469394; 0.797092;, - 0.498352; 0.797095;, - 0.440430; 0.883961;, - 0.411474; 0.883958;, - 0.411476; 0.855002;, - 0.440433; 0.855004;, - 0.440435; 0.826047;, - 0.411478; 0.826045;, - 0.411480; 0.797088;, - 0.440437; 0.797090;, - 0.343716; 0.826042;, - 0.314759; 0.826042;, - 0.314759; 0.797084;, - 0.343717; 0.797085;, - 0.498361; 0.710222;, - 0.469402; 0.710219;, - 0.469405; 0.681260;, - 0.498364; 0.681263;, - 0.498375; 0.594388;, - 0.469416; 0.594384;, - 0.469421; 0.565425;, - 0.498379; 0.565430;, - 0.440450; 0.652298;, - 0.411490; 0.652295;, - 0.411493; 0.623335;, - 0.440453; 0.623339;, - 0.440457; 0.594380;, - 0.411497; 0.594375;, - 0.411501; 0.565415;, - 0.440461; 0.565420;, - 0.343726; 0.594367;, - 0.314764; 0.594365;, - 0.314766; 0.565402;, - 0.343729; 0.565405;, - 0.285801; 0.768127;, - 0.256843; 0.768127;, - 0.256842; 0.739169;, - 0.285801; 0.739168;, - 0.285800; 0.710209;, - 0.256841; 0.710209;, - 0.256839; 0.681249;, - 0.285800; 0.681249;, - 0.189073; 0.710214;, - 0.160113; 0.710217;, - 0.160109; 0.681257;, - 0.189070; 0.681254;, - 0.285800; 0.652288;, - 0.256839; 0.652288;, - 0.256838; 0.623326;, - 0.285800; 0.623326;, - 0.285801; 0.594363;, - 0.256837; 0.594363;, - 0.256837; 0.565399;, - 0.285802; 0.565400;, - 0.189060; 0.594367;, - 0.160096; 0.594371;, - 0.160091; 0.565407;, - 0.189056; 0.565403;, - 0.131144; 0.652301;, - 0.102183; 0.652307;, - 0.102177; 0.623346;, - 0.131138; 0.623340;, - 0.131132; 0.594377;, - 0.102170; 0.594384;, - 0.102162; 0.565421;, - 0.131126; 0.565413;, - 0.343712; 0.970820;, - 0.314758; 0.970819;, - 0.314758; 0.941865;, - 0.343713; 0.941866;, - 0.343718; 0.739168;, - 0.314760; 0.739168;, - 0.314760; 0.710209;, - 0.343719; 0.710209;, - 0.189096; 0.970825;, - 0.160142; 0.970828;, - 0.160138; 0.941874;, - 0.189093; 0.941871;, - 0.189086; 0.855004;, - 0.160129; 0.855006;, - 0.160126; 0.826050;, - 0.189083; 0.826047;, - 0.498333; 0.970835;, - 0.469377; 0.970832;, - 0.469381; 0.941876;, - 0.498337; 0.941879;, - 0.498346; 0.855009;, - 0.469389; 0.855006;, - 0.469392; 0.826049;, - 0.498349; 0.826052;, - 0.343716; 0.854999;, - 0.314759; 0.854998;, - 0.314759; 0.826042;, - 0.343716; 0.826042;, - 0.498358; 0.739180;, - 0.469400; 0.739177;, - 0.469402; 0.710219;, - 0.498361; 0.710222;, - 0.498371; 0.623347;, - 0.469412; 0.623343;, - 0.469416; 0.594384;, - 0.498375; 0.594388;, - 0.343724; 0.623329;, - 0.314762; 0.623327;, - 0.314764; 0.594365;, - 0.343726; 0.594367;, - 0.189076; 0.739173;, - 0.160117; 0.739176;, - 0.160113; 0.710217;, - 0.189073; 0.710214;, - 0.189063; 0.623331;, - 0.160101; 0.623334;, - 0.160096; 0.594371;, - 0.189060; 0.594367;, - 0.160145; 0.999783;, - 0.131191; 0.999786;, - 0.131187; 0.970832;, - 0.160142; 0.970828;, - 0.160142; 0.970828;, - 0.131187; 0.970832;, - 0.131183; 0.941877;, - 0.160138; 0.941874;, - 0.131187; 0.970832;, - 0.102232; 0.970836;, - 0.102228; 0.941881;, - 0.131183; 0.941877;, - 0.160138; 0.941874;, - 0.131183; 0.941877;, - 0.131180; 0.912922;, - 0.160135; 0.912918;, - 0.160135; 0.912918;, - 0.131180; 0.912922;, - 0.131176; 0.883966;, - 0.160132; 0.883963;, - 0.131180; 0.912922;, - 0.102224; 0.912925;, - 0.102221; 0.883969;, - 0.131176; 0.883966;, - 0.469373; 0.999787;, - 0.440418; 0.999783;, - 0.440421; 0.970828;, - 0.469377; 0.970832;, - 0.469377; 0.970832;, - 0.440421; 0.970828;, - 0.440425; 0.941873;, - 0.469381; 0.941876;, - 0.440421; 0.970828;, - 0.411467; 0.970825;, - 0.411469; 0.941870;, - 0.440425; 0.941873;, - 0.469381; 0.941876;, - 0.440425; 0.941873;, - 0.440428; 0.912917;, - 0.469384; 0.912920;, - 0.469384; 0.912920;, - 0.440428; 0.912917;, - 0.440430; 0.883961;, - 0.469387; 0.883963;, - 0.440428; 0.912917;, - 0.411472; 0.912914;, - 0.411474; 0.883958;, - 0.440430; 0.883961;, - 0.343714; 0.912911;, - 0.314759; 0.912910;, - 0.314759; 0.883955;, - 0.343715; 0.883955;, - 0.469397; 0.768135;, - 0.440439; 0.768132;, - 0.440442; 0.739174;, - 0.469400; 0.739177;, - 0.469400; 0.739177;, - 0.440442; 0.739174;, - 0.440444; 0.710216;, - 0.469402; 0.710219;, - 0.440442; 0.739174;, - 0.411483; 0.739172;, - 0.411485; 0.710213;, - 0.440444; 0.710216;, - 0.469402; 0.710219;, - 0.440444; 0.710216;, - 0.440447; 0.681257;, - 0.469405; 0.681260;, - 0.469405; 0.681260;, - 0.440447; 0.681257;, - 0.440450; 0.652298;, - 0.469409; 0.652301;, - 0.440447; 0.681257;, - 0.411488; 0.681254;, - 0.411490; 0.652295;, - 0.440450; 0.652298;, - 0.343720; 0.681250;, - 0.314760; 0.681249;, - 0.314761; 0.652288;, - 0.343722; 0.652290;, - 0.160120; 0.768135;, - 0.131162; 0.768138;, - 0.131158; 0.739180;, - 0.160117; 0.739176;, - 0.160117; 0.739176;, - 0.131158; 0.739180;, - 0.131154; 0.710221;, - 0.160113; 0.710217;, - 0.131158; 0.739180;, - 0.102200; 0.739185;, - 0.102194; 0.710226;, - 0.131154; 0.710221;, - 0.160113; 0.710217;, - 0.131154; 0.710221;, - 0.131149; 0.681261;, - 0.160109; 0.681257;, - 0.160109; 0.681257;, - 0.131149; 0.681261;, - 0.131144; 0.652301;, - 0.160105; 0.652296;, - 0.131149; 0.681261;, - 0.102189; 0.681267;, - 0.102183; 0.652307;, - 0.131144; 0.652301;, - 0.314758; 0.999773;, - 0.285805; 0.999773;, - 0.285804; 0.970820;, - 0.314758; 0.970819;, - 0.314758; 0.970819;, - 0.285804; 0.970820;, - 0.285804; 0.941865;, - 0.314758; 0.941865;, - 0.285804; 0.970820;, - 0.256850; 0.970820;, - 0.256849; 0.941866;, - 0.285804; 0.941865;, - 0.314758; 0.941865;, - 0.285804; 0.941865;, - 0.285803; 0.912910;, - 0.314759; 0.912910;, - 0.314759; 0.912910;, - 0.285803; 0.912910;, - 0.285803; 0.883955;, - 0.314759; 0.883955;, - 0.285803; 0.912910;, - 0.256848; 0.912911;, - 0.256847; 0.883956;, - 0.285803; 0.883955;, - 0.189091; 0.912916;, - 0.160135; 0.912918;, - 0.160132; 0.883963;, - 0.189088; 0.883960;, - 0.314759; 0.883955;, - 0.285803; 0.883955;, - 0.285802; 0.854999;, - 0.314759; 0.854998;, - 0.314759; 0.854998;, - 0.285802; 0.854999;, - 0.285802; 0.826042;, - 0.314759; 0.826042;, - 0.285802; 0.854999;, - 0.256846; 0.854999;, - 0.256845; 0.826043;, - 0.285802; 0.826042;, - 0.314759; 0.826042;, - 0.285802; 0.826042;, - 0.285802; 0.797085;, - 0.314759; 0.797084;, - 0.314759; 0.797084;, - 0.285802; 0.797085;, - 0.285801; 0.768127;, - 0.314759; 0.768126;, - 0.285802; 0.797085;, - 0.256844; 0.797085;, - 0.256843; 0.768127;, - 0.285801; 0.768127;, - 0.189081; 0.797090;, - 0.160123; 0.797093;, - 0.160120; 0.768135;, - 0.189078; 0.768132;, - 0.160132; 0.883963;, - 0.131176; 0.883966;, - 0.131173; 0.855010;, - 0.160129; 0.855006;, - 0.160129; 0.855006;, - 0.131173; 0.855010;, - 0.131170; 0.826053;, - 0.160126; 0.826050;, - 0.131173; 0.855010;, - 0.102217; 0.855013;, - 0.102213; 0.826057;, - 0.131170; 0.826053;, - 0.160126; 0.826050;, - 0.131170; 0.826053;, - 0.131166; 0.797096;, - 0.160123; 0.797093;, - 0.160123; 0.797093;, - 0.131166; 0.797096;, - 0.131162; 0.768138;, - 0.160120; 0.768135;, - 0.131166; 0.797096;, - 0.102209; 0.797100;, - 0.102204; 0.768143;, - 0.131162; 0.768138;, - 0.498340; 0.912923;, - 0.469384; 0.912920;, - 0.469387; 0.883963;, - 0.498343; 0.883966;, - 0.498352; 0.797095;, - 0.469394; 0.797092;, - 0.469397; 0.768135;, - 0.498355; 0.768137;, - 0.469387; 0.883963;, - 0.440430; 0.883961;, - 0.440433; 0.855004;, - 0.469389; 0.855006;, - 0.469389; 0.855006;, - 0.440433; 0.855004;, - 0.440435; 0.826047;, - 0.469392; 0.826049;, - 0.440433; 0.855004;, - 0.411476; 0.855002;, - 0.411478; 0.826045;, - 0.440435; 0.826047;, - 0.469392; 0.826049;, - 0.440435; 0.826047;, - 0.440437; 0.797090;, - 0.469394; 0.797092;, - 0.469394; 0.797092;, - 0.440437; 0.797090;, - 0.440439; 0.768132;, - 0.469397; 0.768135;, - 0.440437; 0.797090;, - 0.411480; 0.797088;, - 0.411481; 0.768130;, - 0.440439; 0.768132;, - 0.343717; 0.797085;, - 0.314759; 0.797084;, - 0.314759; 0.768126;, - 0.343718; 0.768127;, - 0.498364; 0.681263;, - 0.469405; 0.681260;, - 0.469409; 0.652301;, - 0.498367; 0.652305;, - 0.498379; 0.565430;, - 0.469421; 0.565425;, - 0.469426; 0.536466;, - 0.498384; 0.536472;, - 0.469409; 0.652301;, - 0.440450; 0.652298;, - 0.440453; 0.623339;, - 0.469412; 0.623343;, - 0.469412; 0.623343;, - 0.440453; 0.623339;, - 0.440457; 0.594380;, - 0.469416; 0.594384;, - 0.440453; 0.623339;, - 0.411493; 0.623335;, - 0.411497; 0.594375;, - 0.440457; 0.594380;, - 0.469416; 0.594384;, - 0.440457; 0.594380;, - 0.440461; 0.565420;, - 0.469421; 0.565425;, - 0.469421; 0.565425;, - 0.440461; 0.565420;, - 0.440467; 0.536460;, - 0.469426; 0.536466;, - 0.440461; 0.565420;, - 0.411501; 0.565415;, - 0.411507; 0.536454;, - 0.440467; 0.536460;, - 0.343729; 0.565405;, - 0.314766; 0.565402;, - 0.314769; 0.536438;, - 0.343733; 0.536441;, - 0.314759; 0.768126;, - 0.285801; 0.768127;, - 0.285801; 0.739168;, - 0.314760; 0.739168;, - 0.314760; 0.739168;, - 0.285801; 0.739168;, - 0.285800; 0.710209;, - 0.314760; 0.710209;, - 0.285801; 0.739168;, - 0.256842; 0.739169;, - 0.256841; 0.710209;, - 0.285800; 0.710209;, - 0.314760; 0.710209;, - 0.285800; 0.710209;, - 0.285800; 0.681249;, - 0.314760; 0.681249;, - 0.314760; 0.681249;, - 0.285800; 0.681249;, - 0.285800; 0.652288;, - 0.314761; 0.652288;, - 0.285800; 0.681249;, - 0.256839; 0.681249;, - 0.256839; 0.652288;, - 0.285800; 0.652288;, - 0.189070; 0.681254;, - 0.160109; 0.681257;, - 0.160105; 0.652296;, - 0.189067; 0.652293;, - 0.314761; 0.652288;, - 0.285800; 0.652288;, - 0.285800; 0.623326;, - 0.314762; 0.623327;, - 0.314762; 0.623327;, - 0.285800; 0.623326;, - 0.285801; 0.594363;, - 0.314764; 0.594365;, - 0.285800; 0.623326;, - 0.256838; 0.623326;, - 0.256837; 0.594363;, - 0.285801; 0.594363;, - 0.314764; 0.594365;, - 0.285801; 0.594363;, - 0.285802; 0.565400;, - 0.314766; 0.565402;, - 0.314766; 0.565402;, - 0.285802; 0.565400;, - 0.285804; 0.536435;, - 0.314769; 0.536438;, - 0.285802; 0.565400;, - 0.256837; 0.565399;, - 0.256838; 0.536433;, - 0.285804; 0.536435;, - 0.189056; 0.565403;, - 0.160091; 0.565407;, - 0.160085; 0.536441;, - 0.189053; 0.536436;, - 0.160105; 0.652296;, - 0.131144; 0.652301;, - 0.131138; 0.623340;, - 0.160101; 0.623334;, - 0.160101; 0.623334;, - 0.131138; 0.623340;, - 0.131132; 0.594377;, - 0.160096; 0.594371;, - 0.131138; 0.623340;, - 0.102177; 0.623346;, - 0.102170; 0.594384;, - 0.131132; 0.594377;, - 0.160096; 0.594371;, - 0.131132; 0.594377;, - 0.131126; 0.565413;, - 0.160091; 0.565407;, - 0.160091; 0.565407;, - 0.131126; 0.565413;, - 0.131119; 0.536448;, - 0.160085; 0.536441;, - 0.131126; 0.565413;, - 0.102162; 0.565421;, - 0.102153; 0.536456;, - 0.131119; 0.536448;, - 0.376650; 0.450984;, - 0.405606; 0.450986;, - 0.405605; 0.479942;, - 0.376649; 0.479941;, - 0.260822; 0.450982;, - 0.289779; 0.450982;, - 0.289779; 0.479939;, - 0.260822; 0.479939;, - 0.318737; 0.393068;, - 0.347695; 0.393069;, - 0.347694; 0.422026;, - 0.318736; 0.422026;, - 0.260822; 0.393067;, - 0.289780; 0.393068;, - 0.289779; 0.422025;, - 0.260822; 0.422025;, - 0.260823; 0.280860;, - 0.289781; 0.280860;, - 0.289781; 0.309818;, - 0.260823; 0.309818;, - 0.144991; 0.450983;, - 0.173949; 0.450983;, - 0.173949; 0.479940;, - 0.144992; 0.479940;, - 0.029160; 0.450983;, - 0.058118; 0.450983;, - 0.058118; 0.479941;, - 0.029160; 0.479941;, - 0.087076; 0.393067;, - 0.116033; 0.393067;, - 0.116033; 0.422025;, - 0.087076; 0.422025;, - 0.029160; 0.393067;, - 0.058118; 0.393067;, - 0.058118; 0.422025;, - 0.029160; 0.422025;, - 0.029162; 0.280861;, - 0.058119; 0.280861;, - 0.058119; 0.309818;, - 0.029162; 0.309818;, - 0.202906; 0.222944;, - 0.231864; 0.222943;, - 0.231864; 0.251902;, - 0.202906; 0.251902;, - 0.144990; 0.222946;, - 0.173948; 0.222945;, - 0.173948; 0.251903;, - 0.144991; 0.251903;, - 0.144984; 0.110741;, - 0.173942; 0.110738;, - 0.173944; 0.139696;, - 0.144987; 0.139698;, - 0.087076; 0.222947;, - 0.116033; 0.222947;, - 0.116033; 0.251904;, - 0.087076; 0.251904;, - 0.029163; 0.222948;, - 0.058119; 0.222948;, - 0.058119; 0.251904;, - 0.029163; 0.251904;, - 0.029159; 0.110749;, - 0.058115; 0.110747;, - 0.058116; 0.139703;, - 0.029161; 0.139705;, - 0.087066; 0.052833;, - 0.116022; 0.052830;, - 0.116025; 0.081786;, - 0.087069; 0.081789;, - 0.029155; 0.052838;, - 0.058110; 0.052835;, - 0.058113; 0.081791;, - 0.029157; 0.081794;, - 0.405617; 0.280863;, - 0.434576; 0.280865;, - 0.434574; 0.309824;, - 0.405615; 0.309822;, - 0.173949; 0.280860;, - 0.202907; 0.280860;, - 0.202907; 0.309818;, - 0.173949; 0.309818;, - 0.405619; 0.110723;, - 0.434581; 0.110722;, - 0.434582; 0.139684;, - 0.405620; 0.139684;, - 0.289777; 0.110729;, - 0.318737; 0.110727;, - 0.318738; 0.139687;, - 0.289778; 0.139689;, - 0.405606; 0.450986;, - 0.434563; 0.450987;, - 0.434561; 0.479944;, - 0.405605; 0.479942;, - 0.289779; 0.450982;, - 0.318736; 0.450983;, - 0.318735; 0.479940;, - 0.289779; 0.479939;, - 0.289781; 0.280860;, - 0.318740; 0.280860;, - 0.318739; 0.309818;, - 0.289781; 0.309818;, - 0.173949; 0.450983;, - 0.202907; 0.450982;, - 0.202907; 0.479940;, - 0.173949; 0.479940;, - 0.058118; 0.450983;, - 0.087076; 0.450983;, - 0.087076; 0.479941;, - 0.058118; 0.479941;, - 0.058119; 0.280861;, - 0.087076; 0.280861;, - 0.087076; 0.309818;, - 0.058119; 0.309818;, - 0.173942; 0.110738;, - 0.202900; 0.110736;, - 0.202902; 0.139694;, - 0.173944; 0.139696;, - 0.058115; 0.110747;, - 0.087071; 0.110745;, - 0.087073; 0.139701;, - 0.058116; 0.139703;, - 0.434580; 0.081759;, - 0.463543; 0.081758;, - 0.463544; 0.110721;, - 0.434581; 0.110722;, - 0.405618; 0.081761;, - 0.434580; 0.081759;, - 0.434581; 0.110722;, - 0.405619; 0.110723;, - 0.405616; 0.052799;, - 0.434578; 0.052797;, - 0.434580; 0.081759;, - 0.405618; 0.081761;, - 0.376656; 0.081763;, - 0.405618; 0.081761;, - 0.405619; 0.110723;, - 0.376658; 0.110724;, - 0.347695; 0.081765;, - 0.376656; 0.081763;, - 0.376658; 0.110724;, - 0.347697; 0.110726;, - 0.347693; 0.052804;, - 0.376654; 0.052801;, - 0.376656; 0.081763;, - 0.347695; 0.081765;, - 0.434565; 0.422031;, - 0.463521; 0.422033;, - 0.463519; 0.450989;, - 0.434563; 0.450987;, - 0.405608; 0.422029;, - 0.434565; 0.422031;, - 0.434563; 0.450987;, - 0.405606; 0.450986;, - 0.405609; 0.393072;, - 0.434567; 0.393073;, - 0.434565; 0.422031;, - 0.405608; 0.422029;, - 0.376651; 0.422027;, - 0.405608; 0.422029;, - 0.405606; 0.450986;, - 0.376650; 0.450984;, - 0.347694; 0.422026;, - 0.376651; 0.422027;, - 0.376650; 0.450984;, - 0.347693; 0.450983;, - 0.347695; 0.393069;, - 0.376652; 0.393070;, - 0.376651; 0.422027;, - 0.347694; 0.422026;, - 0.347698; 0.280860;, - 0.376657; 0.280861;, - 0.376656; 0.309820;, - 0.347698; 0.309819;, - 0.202907; 0.422025;, - 0.231864; 0.422025;, - 0.231864; 0.450982;, - 0.202907; 0.450982;, - 0.173949; 0.422025;, - 0.202907; 0.422025;, - 0.202907; 0.450982;, - 0.173949; 0.450983;, - 0.173949; 0.393067;, - 0.202907; 0.393067;, - 0.202907; 0.422025;, - 0.173949; 0.422025;, - 0.144991; 0.422025;, - 0.173949; 0.422025;, - 0.173949; 0.450983;, - 0.144991; 0.450983;, - 0.116033; 0.422025;, - 0.144991; 0.422025;, - 0.144991; 0.450983;, - 0.116034; 0.450983;, - 0.116033; 0.393067;, - 0.144991; 0.393067;, - 0.144991; 0.422025;, - 0.116033; 0.422025;, - 0.116034; 0.280861;, - 0.144991; 0.280861;, - 0.144991; 0.309818;, - 0.116034; 0.309818;, - 0.202897; 0.081778;, - 0.231856; 0.081775;, - 0.231858; 0.110734;, - 0.202900; 0.110736;, - 0.173939; 0.081781;, - 0.202897; 0.081778;, - 0.202900; 0.110736;, - 0.173942; 0.110738;, - 0.173936; 0.052823;, - 0.202894; 0.052820;, - 0.202897; 0.081778;, - 0.173939; 0.081781;, - 0.144982; 0.081784;, - 0.173939; 0.081781;, - 0.173942; 0.110738;, - 0.144984; 0.110741;, - 0.116025; 0.081786;, - 0.144982; 0.081784;, - 0.144984; 0.110741;, - 0.116028; 0.110743;, - 0.116022; 0.052830;, - 0.144979; 0.052827;, - 0.144982; 0.081784;, - 0.116025; 0.081786;, - 0.434578; 0.251905;, - 0.463539; 0.251907;, - 0.463536; 0.280867;, - 0.434576; 0.280865;, - 0.405618; 0.251903;, - 0.434578; 0.251905;, - 0.434576; 0.280865;, - 0.405617; 0.280863;, - 0.405620; 0.222943;, - 0.434580; 0.222944;, - 0.434578; 0.251905;, - 0.405618; 0.251903;, - 0.376659; 0.251902;, - 0.405618; 0.251903;, - 0.405617; 0.280863;, - 0.376657; 0.280861;, - 0.347699; 0.251901;, - 0.376659; 0.251902;, - 0.376657; 0.280861;, - 0.347698; 0.280860;, - 0.347700; 0.222942;, - 0.376659; 0.222942;, - 0.376659; 0.251902;, - 0.347699; 0.251901;, - 0.347697; 0.110726;, - 0.376658; 0.110724;, - 0.376659; 0.139685;, - 0.347698; 0.139686;, - 0.318740; 0.251901;, - 0.347699; 0.251901;, - 0.347698; 0.280860;, - 0.318740; 0.280860;, - 0.289781; 0.251901;, - 0.318740; 0.251901;, - 0.318740; 0.280860;, - 0.289781; 0.280860;, - 0.289781; 0.222942;, - 0.318740; 0.222942;, - 0.318740; 0.251901;, - 0.289781; 0.251901;, - 0.260823; 0.251901;, - 0.289781; 0.251901;, - 0.289781; 0.280860;, - 0.260823; 0.280860;, - 0.231864; 0.251902;, - 0.260823; 0.251901;, - 0.260823; 0.280860;, - 0.231865; 0.280860;, - 0.231864; 0.222943;, - 0.260822; 0.222943;, - 0.260823; 0.251901;, - 0.231864; 0.251902;, - 0.231858; 0.110734;, - 0.260817; 0.110731;, - 0.260819; 0.139691;, - 0.231860; 0.139692;, - 0.318734; 0.081767;, - 0.347695; 0.081765;, - 0.347697; 0.110726;, - 0.318737; 0.110727;, - 0.289774; 0.081770;, - 0.318734; 0.081767;, - 0.318737; 0.110727;, - 0.289777; 0.110729;, - 0.289772; 0.052810;, - 0.318732; 0.052806;, - 0.318734; 0.081767;, - 0.289774; 0.081770;, - 0.260815; 0.081772;, - 0.289774; 0.081770;, - 0.289777; 0.110729;, - 0.260817; 0.110731;, - 0.231856; 0.081775;, - 0.260815; 0.081772;, - 0.260817; 0.110731;, - 0.231858; 0.110734;, - 0.231853; 0.052816;, - 0.260812; 0.052813;, - 0.260815; 0.081772;, - 0.231856; 0.081775;, - 0.347693; 0.450983;, - 0.376650; 0.450984;, - 0.376649; 0.479941;, - 0.347692; 0.479940;, - 0.231864; 0.450982;, - 0.260822; 0.450982;, - 0.260822; 0.479939;, - 0.231864; 0.479940;, - 0.318736; 0.422026;, - 0.347694; 0.422026;, - 0.347693; 0.450983;, - 0.318736; 0.450983;, - 0.289779; 0.422025;, - 0.318736; 0.422026;, - 0.318736; 0.450983;, - 0.289779; 0.450982;, - 0.289780; 0.393068;, - 0.318737; 0.393068;, - 0.318736; 0.422026;, - 0.289779; 0.422025;, - 0.260822; 0.422025;, - 0.289779; 0.422025;, - 0.289779; 0.450982;, - 0.260822; 0.450982;, - 0.231864; 0.422025;, - 0.260822; 0.422025;, - 0.260822; 0.450982;, - 0.231864; 0.450982;, - 0.231864; 0.393067;, - 0.260822; 0.393067;, - 0.260822; 0.422025;, - 0.231864; 0.422025;, - 0.231865; 0.280860;, - 0.260823; 0.280860;, - 0.260823; 0.309818;, - 0.231865; 0.309818;, - 0.116034; 0.450983;, - 0.144991; 0.450983;, - 0.144992; 0.479940;, - 0.116034; 0.479941;, - 0.000202; 0.450983;, - 0.029160; 0.450983;, - 0.029160; 0.479941;, - 0.000202; 0.479941;, - 0.087076; 0.422025;, - 0.116033; 0.422025;, - 0.116034; 0.450983;, - 0.087076; 0.450983;, - 0.058118; 0.422025;, - 0.087076; 0.422025;, - 0.087076; 0.450983;, - 0.058118; 0.450983;, - 0.058118; 0.393067;, - 0.087076; 0.393067;, - 0.087076; 0.422025;, - 0.058118; 0.422025;, - 0.029160; 0.422025;, - 0.058118; 0.422025;, - 0.058118; 0.450983;, - 0.029160; 0.450983;, - 0.000202; 0.422025;, - 0.029160; 0.422025;, - 0.029160; 0.450983;, - 0.000202; 0.450983;, - 0.000202; 0.393067;, - 0.029160; 0.393067;, - 0.029160; 0.422025;, - 0.000202; 0.422025;, - 0.000206; 0.280860;, - 0.029162; 0.280861;, - 0.029162; 0.309818;, - 0.000205; 0.309817;, - 0.202906; 0.251902;, - 0.231864; 0.251902;, - 0.231865; 0.280860;, - 0.202907; 0.280860;, - 0.173948; 0.251903;, - 0.202906; 0.251902;, - 0.202907; 0.280860;, - 0.173949; 0.280860;, - 0.173948; 0.222945;, - 0.202906; 0.222944;, - 0.202906; 0.251902;, - 0.173948; 0.251903;, - 0.144991; 0.251903;, - 0.173948; 0.251903;, - 0.173949; 0.280860;, - 0.144991; 0.280861;, - 0.116033; 0.251904;, - 0.144991; 0.251903;, - 0.144991; 0.280861;, - 0.116034; 0.280861;, - 0.116033; 0.222947;, - 0.144990; 0.222946;, - 0.144991; 0.251903;, - 0.116033; 0.251904;, - 0.116028; 0.110743;, - 0.144984; 0.110741;, - 0.144987; 0.139698;, - 0.116029; 0.139700;, - 0.087076; 0.251904;, - 0.116033; 0.251904;, - 0.116034; 0.280861;, - 0.087076; 0.280861;, - 0.058119; 0.251904;, - 0.087076; 0.251904;, - 0.087076; 0.280861;, - 0.058119; 0.280861;, - 0.058119; 0.222948;, - 0.087076; 0.222947;, - 0.087076; 0.251904;, - 0.058119; 0.251904;, - 0.029163; 0.251904;, - 0.058119; 0.251904;, - 0.058119; 0.280861;, - 0.029162; 0.280861;, - 0.000207; 0.251904;, - 0.029163; 0.251904;, - 0.029162; 0.280861;, - 0.000206; 0.280860;, - 0.000207; 0.222948;, - 0.029163; 0.222948;, - 0.029163; 0.251904;, - 0.000207; 0.251904;, - 0.000204; 0.110751;, - 0.029159; 0.110749;, - 0.029161; 0.139705;, - 0.000205; 0.139706;, - 0.087069; 0.081789;, - 0.116025; 0.081786;, - 0.116028; 0.110743;, - 0.087071; 0.110745;, - 0.058113; 0.081791;, - 0.087069; 0.081789;, - 0.087071; 0.110745;, - 0.058115; 0.110747;, - 0.058110; 0.052835;, - 0.087066; 0.052833;, - 0.087069; 0.081789;, - 0.058113; 0.081791;, - 0.029157; 0.081794;, - 0.058113; 0.081791;, - 0.058115; 0.110747;, - 0.029159; 0.110749;, - 0.000202; 0.081796;, - 0.029157; 0.081794;, - 0.029159; 0.110749;, - 0.000204; 0.110751;, - 0.000199; 0.052841;, - 0.029155; 0.052838;, - 0.029157; 0.081794;, - 0.000202; 0.081796;, - 0.057305; 0.565436;, - 0.057314; 0.594397;, - 0.000217; 0.594416;, - 0.000206; 0.565457;, - 0.057383; 0.941887;, - 0.057387; 0.970842;, - 0.000299; 0.970851;, - 0.000294; 0.941895;, - 0.057361; 0.797107;, - 0.057365; 0.826064;, - 0.000276; 0.826074;, - 0.000270; 0.797118;, - 0.057331; 0.652317;, - 0.057338; 0.681276;, - 0.000244; 0.681291;, - 0.000235; 0.652333;, - 0.057323; 0.623357;, - 0.057331; 0.652317;, - 0.000235; 0.652333;, - 0.000226; 0.623375;, - 0.057370; 0.855020;, - 0.057374; 0.883976;, - 0.000285; 0.883985;, - 0.000281; 0.855029;, - 0.057338; 0.681276;, - 0.057344; 0.710235;, - 0.000251; 0.710248;, - 0.000244; 0.681291;, - 0.057314; 0.594397;, - 0.057323; 0.623357;, - 0.000226; 0.623375;, - 0.000217; 0.594416;, - 0.057365; 0.826064;, - 0.057370; 0.855020;, - 0.000281; 0.855029;, - 0.000276; 0.826074;, - 0.057374; 0.883976;, - 0.057379; 0.912931;, - 0.000290; 0.912940;, - 0.000285; 0.883985;, - 0.057350; 0.739193;, - 0.057355; 0.768150;, - 0.000264; 0.768162;, - 0.000258; 0.739205;, - 0.057379; 0.912931;, - 0.057383; 0.941887;, - 0.000294; 0.941895;, - 0.000290; 0.912940;, - 0.057344; 0.710235;, - 0.057350; 0.739193;, - 0.000258; 0.739205;, - 0.000251; 0.710248;, - 0.057294; 0.536474;, - 0.057305; 0.565436;, - 0.000206; 0.565457;, - 0.000194; 0.536497;, - 0.057387; 0.970842;, - 0.057391; 0.999797;, - 0.000303; 0.999806;, - 0.000299; 0.970851;, - 0.057355; 0.768150;, - 0.057361; 0.797107;, - 0.000270; 0.797118;, - 0.000264; 0.768162;, - 0.977169; 0.923310;, - 0.977169; 0.980403;, - 0.951722; 0.980403;, - 0.951722; 0.923309;, - 0.057344; 0.710235;, - 0.057338; 0.681276;, - 0.082785; 0.681271;, - 0.082791; 0.710230;, - 0.376649; 0.000201;, - 0.405612; 0.000199;, - 0.405614; 0.025649;, - 0.376652; 0.025652;, - 0.057323; 0.623357;, - 0.057314; 0.594397;, - 0.082764; 0.594389;, - 0.082772; 0.623351;, - 0.173929; 0.000232;, - 0.202887; 0.000227;, - 0.202891; 0.025674;, - 0.173933; 0.025678;, - 0.231845; 0.000222;, - 0.260805; 0.000217;, - 0.260808; 0.025666;, - 0.231849; 0.025670;, - 0.057379; 0.912931;, - 0.057374; 0.883976;, - 0.082819; 0.883972;, - 0.082823; 0.912928;, - 0.057370; 0.855020;, - 0.057365; 0.826064;, - 0.082811; 0.826060;, - 0.082815; 0.855016;, - 0.836877; 0.451803;, - 0.836877; 0.508898;, - 0.811430; 0.508898;, - 0.811429; 0.451803;, - 0.116016; 0.000240;, - 0.144972; 0.000236;, - 0.144976; 0.025682;, - 0.116019; 0.025685;, - 0.057355; 0.768150;, - 0.057350; 0.739193;, - 0.082797; 0.739188;, - 0.082802; 0.768146;, - 0.057383; 0.941887;, - 0.057379; 0.912931;, - 0.082823; 0.912928;, - 0.082827; 0.941883;, - 0.347687; 0.000205;, - 0.376649; 0.000201;, - 0.376652; 0.025652;, - 0.347690; 0.025655;, - 0.029149; 0.000250;, - 0.058105; 0.000247;, - 0.058107; 0.025692;, - 0.029152; 0.025694;, - 0.260805; 0.000217;, - 0.289765; 0.000213;, - 0.289768; 0.025662;, - 0.260808; 0.025666;, - 0.087060; 0.000244;, - 0.116016; 0.000240;, - 0.116019; 0.025685;, - 0.087063; 0.025689;, - 0.057350; 0.739193;, - 0.057344; 0.710235;, - 0.082791; 0.710230;, - 0.082797; 0.739188;, - 0.405612; 0.000199;, - 0.434575; 0.000196;, - 0.434577; 0.025647;, - 0.405614; 0.025649;, - 0.713049; 0.193461;, - 0.713050; 0.174059;, - 0.744379; 0.174059;, - 0.744378; 0.193462;, - 0.637681; 0.441873;, - 0.666640; 0.441875;, - 0.666636; 0.508897;, - 0.637678; 0.508895;, - 0.744378; 0.193462;, - 0.744379; 0.174059;, - 0.779683; 0.174059;, - 0.779683; 0.193462;, - 0.538219; 0.174056;, - 0.538218; 0.193459;, - 0.502914; 0.193458;, - 0.502915; 0.174056;, - 0.639530; 0.866817;, - 0.639530; 0.895775;, - 0.604225; 0.895775;, - 0.604225; 0.866817;, - 0.538218; 0.193459;, - 0.538218; 0.250552;, - 0.502913; 0.250552;, - 0.502914; 0.193458;, - 0.680897; 0.536435;, - 0.680897; 0.565393;, - 0.661495; 0.565393;, - 0.661494; 0.536436;, - 0.626819; 0.193460;, - 0.626818; 0.250554;, - 0.569547; 0.250553;, - 0.569547; 0.193459;, - 0.713050; 0.130054;, - 0.744378; 0.130054;, - 0.744379; 0.174059;, - 0.713050; 0.174059;, - 0.569547; 0.174056;, - 0.569547; 0.193459;, - 0.538218; 0.193459;, - 0.538219; 0.174056;, - 0.569547; 0.193459;, - 0.569547; 0.250553;, - 0.538218; 0.250552;, - 0.538218; 0.193459;, - 0.713048; 0.250555;, - 0.713049; 0.193461;, - 0.744378; 0.193462;, - 0.744377; 0.250556;, - 0.538218; 0.105181;, - 0.569546; 0.105181;, - 0.569546; 0.130052;, - 0.538218; 0.130053;, - 0.683535; 0.866817;, - 0.683535; 0.895775;, - 0.639530; 0.895775;, - 0.639530; 0.866817;, - 0.724902; 0.536434;, - 0.724902; 0.565392;, - 0.680897; 0.565393;, - 0.680897; 0.536435;, - 0.538218; 0.130053;, - 0.569546; 0.130052;, - 0.569547; 0.174056;, - 0.538219; 0.174056;, - 0.749775; 0.565392;, - 0.749774; 0.536433;, - 0.781104; 0.536433;, - 0.781104; 0.565392;, - 0.818664; 0.105182;, - 0.818664; 0.130054;, - 0.744378; 0.130054;, - 0.744378; 0.105182;, - 0.749774; 0.536433;, - 0.749775; 0.565392;, - 0.724902; 0.565392;, - 0.724902; 0.536434;, - 0.713050; 0.105182;, - 0.744378; 0.105182;, - 0.744378; 0.130054;, - 0.713050; 0.130054;, - 0.637683; 0.406569;, - 0.666641; 0.406570;, - 0.666640; 0.441875;, - 0.637681; 0.441873;, - 0.637685; 0.375240;, - 0.666643; 0.375241;, - 0.666641; 0.406570;, - 0.637683; 0.406569;, - 0.779681; 0.317579;, - 0.744376; 0.317578;, - 0.744377; 0.250556;, - 0.779682; 0.250557;, - 0.655775; 0.317576;, - 0.655777; 0.250554;, - 0.713048; 0.250555;, - 0.713047; 0.317577;, - 0.744376; 0.317578;, - 0.713047; 0.317577;, - 0.713048; 0.250555;, - 0.744377; 0.250556;, - 0.538217; 0.317574;, - 0.502912; 0.317573;, - 0.502913; 0.250552;, - 0.538218; 0.250552;, - 0.626819; 0.193460;, - 0.655778; 0.193460;, - 0.655777; 0.250554;, - 0.626818; 0.250554;, - 0.655775; 0.317576;, - 0.626817; 0.317575;, - 0.626818; 0.250554;, - 0.655777; 0.250554;, - 0.604227; 0.565396;, - 0.604225; 0.536439;, - 0.661494; 0.536436;, - 0.661495; 0.565393;, - 0.655777; 0.250554;, - 0.655778; 0.193460;, - 0.713049; 0.193461;, - 0.713048; 0.250555;, - 0.626818; 0.250554;, - 0.626817; 0.317575;, - 0.569546; 0.317575;, - 0.569547; 0.250553;, - 0.637688; 0.317967;, - 0.666646; 0.317969;, - 0.666643; 0.375241;, - 0.637685; 0.375240;, - 0.782694; 0.866817;, - 0.782694; 0.895775;, - 0.757821; 0.895775;, - 0.757821; 0.866817;, - 0.757821; 0.866817;, - 0.757821; 0.895775;, - 0.683535; 0.895775;, - 0.683535; 0.866817;, - 0.855393; 0.536433;, - 0.855393; 0.565392;, - 0.781104; 0.565392;, - 0.781104; 0.536433;, - 0.463933; 0.130054;, - 0.463933; 0.105182;, - 0.538218; 0.105181;, - 0.538218; 0.130053;; - } //End of Plane_000 UV Coordinates - } //End of Plane_000 Mesh - } //End of Plane -} //End of Root Frame diff --git a/mods/boats/textures/boat_inventory.png b/mods/boats/textures/boat_inventory.png index e075663..f9d082e 100644 Binary files a/mods/boats/textures/boat_inventory.png and b/mods/boats/textures/boat_inventory.png differ diff --git a/mods/boats/textures/boat_wield.png b/mods/boats/textures/boat_wield.png index ca62b14..f998b5b 100644 Binary files a/mods/boats/textures/boat_wield.png and b/mods/boats/textures/boat_wield.png differ diff --git a/mods/bones/init.lua b/mods/bones/init.lua index 9771cf3..f35d519 100644 --- a/mods/bones/init.lua +++ b/mods/bones/init.lua @@ -1,6 +1,8 @@ -- Minetest 0.4 mod: bones -- See README.txt for licensing and other information. +bones = {} + local function is_owner(pos, name) local owner = minetest.get_meta(pos):get_string("owner") if owner == "" or owner == name then @@ -9,6 +11,19 @@ local function is_owner(pos, name) return false end +bones.bones_formspec = + "size[8,9]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[current_name;main;0,0.3;8,4;]".. + "list[current_player;main;0,4.85;8,1;]".. + "list[current_player;main;0,6.08;8,3;8]".. + default.get_hotbar_bg(0,4.85) + +local share_bones_time = tonumber(minetest.setting_get("share_bones_time") or 1200) +local share_bones_time_early = tonumber(minetest.setting_get("share_bones_time_early") or (share_bones_time/4)) + minetest.register_node("bones:bones", { description = "Bones", tiles = { @@ -28,7 +43,7 @@ minetest.register_node("bones:bones", { can_dig = function(pos, player) local inv = minetest.get_meta(pos):get_inventory() - return is_owner(pos, player:get_player_name()) or inv:is_empty("main") + return is_owner(pos, player:get_player_name()) and inv:is_empty("main") end, allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) @@ -84,22 +99,47 @@ minetest.register_node("bones:bones", { on_timer = function(pos, elapsed) local meta = minetest.get_meta(pos) - local publish = 1200 - if tonumber(minetest.setting_get("share_bones_time")) then - publish = tonumber(minetest.setting_get("share_bones_time")) - end - if publish == 0 then - return - end - if minetest.get_gametime() >= meta:get_int("time") + publish then + local time = meta:get_int("time") + elapsed + if time >= share_bones_time then meta:set_string("infotext", meta:get_string("owner").."'s old bones") meta:set_string("owner", "") else + meta:set_int("time", time) return true end end, }) +local function may_replace(pos, player) + local node_name = minetest.get_node(pos).name + local node_definition = minetest.registered_nodes[node_name] + + -- if the node is unknown, we let the protection mod decide + -- this is consistent with when a player could dig or not dig it + -- unknown decoration would often be removed + -- while unknown building materials in use would usually be left + if not node_definition then + -- only replace nodes that are not protected + return not minetest.is_protected(pos, player:get_player_name()) + end + + -- allow replacing air and liquids + if node_name == "air" or node_definition.liquidtype ~= "none" then + return true + end + + -- don't replace filled chests and other nodes that don't allow it + local can_dig_func = node_definition.can_dig + if can_dig_func and not can_dig_func(pos, player) then + return false + end + + -- default to each nodes buildable_to; if a placed block would replace it, why shouldn't bones? + -- flowers being squished by bones are more realistical than a squished stone, too + -- exception are of course any protected buildable_to + return node_definition.buildable_to and not minetest.is_protected(pos, player:get_player_name()) +end + minetest.register_on_dieplayer(function(player) if minetest.setting_getbool("creative_mode") then return @@ -118,26 +158,29 @@ minetest.register_on_dieplayer(function(player) local param2 = minetest.dir_to_facedir(player:get_look_dir()) local player_name = player:get_player_name() local player_inv = player:get_inventory() - - local nn = minetest.get_node(pos).name - if minetest.registered_nodes[nn].can_dig and - not minetest.registered_nodes[nn].can_dig(pos, player) then - -- drop items instead of delete - for i=1,player_inv:get_size("main") do - minetest.add_item(pos, player_inv:get_stack("main", i)) + if (not may_replace(pos, player)) then + if (may_replace({x=pos.x, y=pos.y+1, z=pos.z}, player)) then + -- drop one node above if there's space + -- this should solve most cases of protection related deaths in which players dig straight down + -- yet keeps the bones reachable + pos.y = pos.y+1 + else + -- drop items instead of delete + for i=1,player_inv:get_size("main") do + minetest.add_item(pos, player_inv:get_stack("main", i)) + end + for i=1,player_inv:get_size("craft") do + minetest.add_item(pos, player_inv:get_stack("craft", i)) + end + -- empty lists main and craft + player_inv:set_list("main", {}) + player_inv:set_list("craft", {}) + return end - for i=1,player_inv:get_size("craft") do - minetest.add_item(pos, player_inv:get_stack("craft", i)) - end - -- empty lists main and craft - player_inv:set_list("main", {}) - player_inv:set_list("craft", {}) - return end - minetest.dig_node(pos) - minetest.add_node(pos, {name="bones:bones", param2=param2}) + minetest.set_node(pos, {name="bones:bones", param2=param2}) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() @@ -157,13 +200,20 @@ minetest.register_on_dieplayer(function(player) player_inv:set_list("main", {}) player_inv:set_list("craft", {}) - meta:set_string("formspec", "size[8,9;]".. - "list[current_name;main;0,0;8,4;]".. - "list[current_player;main;0,5;8,4;]") - meta:set_string("infotext", player_name.."'s fresh bones") + meta:set_string("formspec", bones.bones_formspec) meta:set_string("owner", player_name) - meta:set_int("time", minetest.get_gametime()) - local timer = minetest.get_node_timer(pos) - timer:start(10) + if share_bones_time ~= 0 then + meta:set_string("infotext", player_name.."'s fresh bones") + + if share_bones_time_early == 0 or not minetest.is_protected(pos, player_name) then + meta:set_int("time", 0) + else + meta:set_int("time", (share_bones_time - share_bones_time_early)) + end + + minetest.get_node_timer(pos):start(10) + else + meta:set_string("infotext", player_name.."'s bones") + end end) diff --git a/mods/bucket/init.lua b/mods/bucket/init.lua index 6715ebb..89730de 100644 --- a/mods/bucket/init.lua +++ b/mods/bucket/init.lua @@ -30,12 +30,14 @@ local function check_protection(pos, name, text) end -- Register a new liquid --- source = name of the source node --- flowing = name of the flowing node --- itemname = name of the new bucket item (or nil if liquid is not takeable) --- inventory_image = texture of the new bucket item (ignored if itemname == nil) +-- source = name of the source node +-- flowing = name of the flowing node +-- itemname = name of the new bucket item (or nil if liquid is not takeable) +-- inventory_image = texture of the new bucket item (ignored if itemname == nil) +-- name = text description of the bucket item +-- groups = (optional) groups of the bucket item, for example {water_bucket = 1} -- This function can be called from any mod (that depends on bucket). -function bucket.register_liquid(source, flowing, itemname, inventory_image, name) +function bucket.register_liquid(source, flowing, itemname, inventory_image, name, groups) bucket.liquids[source] = { source = source, flowing = flowing, @@ -49,6 +51,7 @@ function bucket.register_liquid(source, flowing, itemname, inventory_image, name inventory_image = inventory_image, stack_max = 1, liquids_pointable = true, + groups = groups, on_place = function(itemstack, user, pointed_thing) -- Must be pointing to node if pointed_thing.type ~= "node" then @@ -105,7 +108,7 @@ end minetest.register_craftitem("bucket:bucket_empty", { description = "Empty Bucket", inventory_image = "bucket.png", - stack_max = 1, + stack_max = 99, liquids_pointable = true, on_use = function(itemstack, user, pointed_thing) -- Must be pointing to node @@ -115,17 +118,41 @@ minetest.register_craftitem("bucket:bucket_empty", { -- Check if pointing to a liquid source local node = minetest.get_node(pointed_thing.under) local liquiddef = bucket.liquids[node.name] - if liquiddef ~= nil and liquiddef.itemname ~= nil and - node.name == liquiddef.source then + local item_count = user:get_wielded_item():get_count() + + if liquiddef ~= nil + and liquiddef.itemname ~= nil + and node.name == liquiddef.source then if check_protection(pointed_thing.under, user:get_player_name(), "take ".. node.name) then return end + -- default set to return filled bucket + local giving_back = liquiddef.itemname + + -- check if holding more than 1 empty bucket + if item_count > 1 then + + -- if space in inventory add filled bucked, otherwise drop as item + local inv = user:get_inventory() + if inv:room_for_item("main", {name=liquiddef.itemname}) then + inv:add_item("main", liquiddef.itemname) + else + local pos = user:getpos() + pos.y = math.floor(pos.y + 0.5) + core.add_item(pos, liquiddef.itemname) + end + + -- set to return empty buckets minus 1 + giving_back = "bucket:bucket_empty "..tostring(item_count-1) + + end + minetest.add_node(pointed_thing.under, {name="air"}) - return ItemStack(liquiddef.itemname) + return ItemStack(giving_back) end end, }) @@ -135,7 +162,17 @@ bucket.register_liquid( "default:water_flowing", "bucket:bucket_water", "bucket_water.png", - "Water Bucket" + "Water Bucket", + {water_bucket = 1} +) + +bucket.register_liquid( + "default:river_water_source", + "default:river_water_flowing", + "bucket:bucket_river_water", + "bucket_river_water.png", + "River Water Bucket", + {water_bucket = 1} ) bucket.register_liquid( @@ -152,3 +189,4 @@ minetest.register_craft({ burntime = 60, replacements = {{"bucket:bucket_lava", "bucket:bucket_empty"}}, }) + diff --git a/mods/bucket/textures/bucket_river_water.png b/mods/bucket/textures/bucket_river_water.png new file mode 100644 index 0000000..1d9e62a Binary files /dev/null and b/mods/bucket/textures/bucket_river_water.png differ diff --git a/mods/capturetheflag/ctf/gui.lua b/mods/capturetheflag/ctf/gui.lua index 23ed81e..1533e9a 100644 --- a/mods/capturetheflag/ctf/gui.lua +++ b/mods/capturetheflag/ctf/gui.lua @@ -250,10 +250,10 @@ minetest.register_on_player_receive_fields(function(player, formname, fields) else local colors = "" for color, code in pairs(ctf.flag_colors) do - if color ~= "" then - color ..= ", " + if colors ~= "" then + colors = colors .. ", " end - color ..= color + colors = colors .. color end minetest.chat_send_player(name,"Color "..fields.color.. " does not exist! Available: " .. colors) diff --git a/mods/capturetheflag/ctf_flag/init.lua b/mods/capturetheflag/ctf_flag/init.lua index 752e9f6..f1112b9 100644 --- a/mods/capturetheflag/ctf_flag/init.lua +++ b/mods/capturetheflag/ctf_flag/init.lua @@ -4,6 +4,7 @@ function init() ctf._set("flag.capture_take", false) ctf._set("flag.names", true) ctf._set("flag.protect_distance", 25) + ctf._set("gui.tab.flags", true) ctf._set("gui.team.teleport_to_flag", true) ctf._set("gui.team.teleport_to_spawn", false) end diff --git a/mods/creative/init.lua b/mods/creative/init.lua index 41282b1..68d5180 100644 --- a/mods/creative/init.lua +++ b/mods/creative/init.lua @@ -82,10 +82,15 @@ creative_inventory.set_creative_formspec = function(player, start_i, pagenum) "list[current_player;main;5,4.75;8,3;8]".. "list[current_player;craft;8,0;3,3;]".. "list[current_player;craftpreview;12,1;1,1;]".. + "image[11,1;1,1;gui_furnace_arrow_bg.png^[transformR270]".. "list[detached:creative;main;0.3,0.5;4,6;"..tostring(start_i).."]".. "label[2.0,6.55;"..tostring(pagenum).."/"..tostring(pagemax).."]".. "button[0.3,6.5;1.6,1;creative_prev;<<]".. "button[2.7,6.5;1.6,1;creative_next;>>]".. + "listring[current_player;main]".. + "listring[current_player;craft]".. + "listring[current_player;main]".. + "listring[detached:creative;main]".. "label[5,1.5;Trash:]".. "list[detached:creative_trash;main;5,2;1,1;]".. default.get_hotbar_bg(5,3.5) diff --git a/mods/default/README.txt b/mods/default/README.txt index 695d3b1..9474e45 100644 --- a/mods/default/README.txt +++ b/mods/default/README.txt @@ -62,12 +62,10 @@ VanessaE (WTFPL): default_desert_stone.png default_desert_stone_brick.png default_sand.png - default_sandstone_brick.png Calinou (CC BY-SA): default_brick.png default_papyrus.png - default_copper_lump.png default_mineral_copper.png default_glass_detail.png @@ -83,7 +81,6 @@ PilzAdam (WTFPL): default_junglewood.png default_obsidian_glass.png default_obsidian_shard.png - default_gold_lump.png default_mineral_gold.png default_snowball.png @@ -111,6 +108,11 @@ paramat (CC BY-SA 3.0): default_pinetree.png default_pinetree_top.png default_pinewood.png + default_sandstone_brick.png + default_obsidian_brick.png + default_river_water.png + default_river_water_source_animated.png + default_river_water_flowing_animated.png brunob.santos (CC BY-SA 4.0): default_desert_cobble.png @@ -119,22 +121,21 @@ BlockMen (CC BY-SA 3.0): default_stone_brick.png default_wood.png default_clay_brick.png - default_tool_steelsword.png - default_bronze_ingot.png - default_copper_ingot.png + default_iron_ingot.png default_gold_ingot.png + default_tool_steelsword.png default_diamond.png - default_diamond_block.png + default_book.png default_tool_*.png default_lava_source_animated.png default_lava_flowing_animated.png - default_book.png - default_paper.png default_stick.png default_chest_front.png default_chest_lock.png default_chest_side.png default_chest_top.png + default_mineral_mese.png + default_meselamp.png bubble.png heart.png gui_*.png @@ -189,3 +190,15 @@ Mito551 (sounds) (CC BY-SA): default_dirt_footstep.1.ogg default_dirt_footstep.2.ogg default_glass_footstep.ogg + +Gambit (WTFPL): + default_bronze_ingot.png + default_copper_ingot.png + default_copper_lump.png + default_iron_lump.png + default_gold_lump.png + default_clay_lump.png + default_coal.png + default_grass_*.png + default_paper.png + default_diamond_block.png diff --git a/mods/default/aliases.lua b/mods/default/aliases.lua index d80082e..7247751 100644 --- a/mods/default/aliases.lua +++ b/mods/default/aliases.lua @@ -1,6 +1,7 @@ --- aliases (Minetest 0.4 mod) --- Provides alias for most default items +-- mods/default/aliases.lua +-- Aliases to support loading worlds using nodes following the old naming convention +-- These can also be helpful when using chat commands, for example /giveme minetest.register_alias("stone", "default:stone") minetest.register_alias("stone_with_coal", "default:stone_with_coal") minetest.register_alias("stone_with_iron", "default:stone_with_iron") @@ -65,3 +66,7 @@ minetest.register_alias("lump_of_iron", "default:iron_lump") minetest.register_alias("lump_of_clay", "default:clay_lump") minetest.register_alias("steel_ingot", "default:steel_ingot") minetest.register_alias("clay_brick", "default:clay_brick") +minetest.register_alias("snow", "default:snow") + +-- Mese now comes in the form of blocks, ore, crystal and fragments +minetest.register_alias("default:mese", "default:mese_block") diff --git a/mods/default/crafting.lua b/mods/default/crafting.lua index c8839ec..354efa4 100644 --- a/mods/default/crafting.lua +++ b/mods/default/crafting.lua @@ -324,7 +324,7 @@ minetest.register_craft({ }) minetest.register_craft({ - output = 'default:rail 15', + output = 'default:rail 24', recipe = { {'default:steel_ingot', '', 'default:steel_ingot'}, {'default:steel_ingot', 'group:stick', 'default:steel_ingot'}, @@ -564,6 +564,14 @@ minetest.register_craft({ } }) +minetest.register_craft({ + output = 'default:meselamp 1', + recipe = { + {'', 'default:mese_crystal',''}, + {'default:mese_crystal', 'default:glass', 'default:mese_crystal'}, + } +}) + minetest.register_craft({ output = 'default:obsidian_shard 9', recipe = { @@ -650,6 +658,12 @@ minetest.register_craft({ recipe = "default:cobble", }) +minetest.register_craft({ + type = "cooking", + output = "default:stone", + recipe = "default:mossycobble", +}) + minetest.register_craft({ type = "cooking", output = "default:desert_stone", diff --git a/mods/default/craftitems.lua b/mods/default/craftitems.lua index 539f6b4..facff57 100644 --- a/mods/default/craftitems.lua +++ b/mods/default/craftitems.lua @@ -11,10 +11,80 @@ minetest.register_craftitem("default:paper", { inventory_image = "default_paper.png", }) +local function book_on_use(itemstack, user, pointed_thing) + local player_name = user:get_player_name() + local data = minetest.deserialize(itemstack:get_metadata()) + local title, text, owner = "", "", player_name + if data then + title, text, owner = data.title, data.text, data.owner + end + local formspec + if owner == player_name then + formspec = "size[8,8]"..default.gui_bg.. + "field[0.5,1;7.5,0;title;Title:;".. + minetest.formspec_escape(title).."]".. + "textarea[0.5,1.5;7.5,7;text;Contents:;".. + minetest.formspec_escape(text).."]".. + "button_exit[2.5,7.5;3,1;save;Save]" + else + formspec = "size[8,8]"..default.gui_bg.. + "label[0.5,0.5;by "..owner.."]".. + "label[0.5,0;"..minetest.formspec_escape(title).."]".. + "textarea[0.5,1.5;7.5,7;;"..minetest.formspec_escape(text)..";]" + end + minetest.show_formspec(user:get_player_name(), "default:book", formspec) +end + +minetest.register_on_player_receive_fields(function(player, form_name, fields) + if form_name ~= "default:book" or not fields.save or + fields.title == "" or fields.text == "" then + return + end + local inv = player:get_inventory() + local stack = player:get_wielded_item() + local new_stack, data + if stack:get_name() ~= "default:book_written" then + local count = stack:get_count() + if count == 1 then + stack:set_name("default:book_written") + else + stack:set_count(count - 1) + new_stack = ItemStack("default:book_written") + end + else + data = minetest.deserialize(stack:get_metadata()) + end + if not data then data = {} end + data.title = fields.title + data.text = fields.text + data.owner = player:get_player_name() + local data_str = minetest.serialize(data) + if new_stack then + new_stack:set_metadata(data_str) + if inv:room_for_item("main", new_stack) then + inv:add_item("main", new_stack) + else + minetest.add_item(player:getpos(), new_stack) + end + else + stack:set_metadata(data_str) + end + player:set_wielded_item(stack) +end) + minetest.register_craftitem("default:book", { description = "Book", inventory_image = "default_book.png", groups = {book=1}, + on_use = book_on_use, +}) + +minetest.register_craftitem("default:book_written", { + description = "Book With Text", + inventory_image = "default_book.png", + groups = {book=1, not_in_creative_inventory=1}, + stack_max = 1, + on_use = book_on_use, }) minetest.register_craftitem("default:coal_lump", { diff --git a/mods/default/functions.lua b/mods/default/functions.lua index ecb7f61..426e27c 100644 --- a/mods/default/functions.lua +++ b/mods/default/functions.lua @@ -7,20 +7,20 @@ function default.node_sound_defaults(table) table = table or {} table.footstep = table.footstep or - {name="", gain=1.0} + {name = "", gain = 1.0} table.dug = table.dug or - {name="default_dug_node", gain=0.25} + {name = "default_dug_node", gain = 0.25} table.place = table.place or - {name="default_place_node_hard", gain=1.0} + {name = "default_place_node_hard", gain = 1.0} return table end function default.node_sound_stone_defaults(table) table = table or {} table.footstep = table.footstep or - {name="default_hard_footstep", gain=0.5} + {name = "default_hard_footstep", gain = 0.5} table.dug = table.dug or - {name="default_hard_footstep", gain=1.0} + {name = "default_hard_footstep", gain = 1.0} default.node_sound_defaults(table) return table end @@ -28,11 +28,11 @@ end function default.node_sound_dirt_defaults(table) table = table or {} table.footstep = table.footstep or - {name="default_dirt_footstep", gain=1.0} + {name = "default_dirt_footstep", gain = 1.0} table.dug = table.dug or - {name="default_dirt_footstep", gain=1.5} + {name = "default_dirt_footstep", gain = 1.5} table.place = table.place or - {name="default_place_node", gain=1.0} + {name = "default_place_node", gain = 1.0} default.node_sound_defaults(table) return table end @@ -40,11 +40,11 @@ end function default.node_sound_sand_defaults(table) table = table or {} table.footstep = table.footstep or - {name="default_sand_footstep", gain=0.2} + {name = "default_sand_footstep", gain = 0.2} table.dug = table.dug or - {name="default_sand_footstep", gain=0.4} + {name = "default_sand_footstep", gain = 0.4} table.place = table.place or - {name="default_place_node", gain=1.0} + {name = "default_place_node", gain = 1.0} default.node_sound_defaults(table) return table end @@ -52,9 +52,9 @@ end function default.node_sound_wood_defaults(table) table = table or {} table.footstep = table.footstep or - {name="default_wood_footstep", gain=0.5} + {name = "default_wood_footstep", gain = 0.5} table.dug = table.dug or - {name="default_wood_footstep", gain=1.0} + {name = "default_wood_footstep", gain = 1.0} default.node_sound_defaults(table) return table end @@ -62,13 +62,13 @@ end function default.node_sound_leaves_defaults(table) table = table or {} table.footstep = table.footstep or - {name="default_grass_footstep", gain=0.35} + {name = "default_grass_footstep", gain = 0.35} table.dug = table.dug or - {name="default_grass_footstep", gain=0.7} + {name = "default_grass_footstep", gain = 0.7} table.dig = table.dig or - {name="default_dig_crumbly", gain=0.4} + {name = "default_dig_crumbly", gain = 0.4} table.place = table.place or - {name="default_place_node", gain=1.0} + {name = "default_place_node", gain = 1.0} default.node_sound_defaults(table) return table end @@ -76,69 +76,26 @@ end function default.node_sound_glass_defaults(table) table = table or {} table.footstep = table.footstep or - {name="default_glass_footstep", gain=0.5} + {name = "default_glass_footstep", gain = 0.5} table.dug = table.dug or - {name="default_break_glass", gain=1.0} + {name = "default_break_glass", gain = 1.0} default.node_sound_defaults(table) return table end --- --- Legacy --- - -function default.spawn_falling_node(p, nodename) - spawn_falling_node(p, nodename) -end - --- Horrible crap to support old code --- Don't use this and never do what this does, it's completely wrong! --- (More specifically, the client and the C++ code doesn't get the group) -function default.register_falling_node(nodename, texture) - minetest.log("error", debug.traceback()) - minetest.log('error', "WARNING: default.register_falling_node is deprecated") - if minetest.registered_nodes[nodename] then - minetest.registered_nodes[nodename].groups.falling_node = 1 - end -end - --- --- Global callbacks --- - --- Global environment step function -function on_step(dtime) - -- print("on_step") -end -minetest.register_globalstep(on_step) - -function on_placenode(p, node) - --print("on_placenode") -end -minetest.register_on_placenode(on_placenode) - -function on_dignode(p, node) - --print("on_dignode") -end -minetest.register_on_dignode(on_dignode) - -function on_punchnode(p, node) -end -minetest.register_on_punchnode(on_punchnode) - -- -- Lavacooling -- default.cool_lava_source = function(pos) - minetest.set_node(pos, {name="default:obsidian"}) - minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25}) + minetest.set_node(pos, {name = "default:obsidian"}) + minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25}) end default.cool_lava_flowing = function(pos) - minetest.set_node(pos, {name="default:stone"}) - minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25}) + minetest.set_node(pos, {name = "default:stone"}) + minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25}) end minetest.register_abm({ @@ -146,8 +103,8 @@ minetest.register_abm({ neighbors = {"group:water"}, interval = 1, chance = 1, - action = function(pos, node, active_object_count, active_object_count_wider) - default.cool_lava_flowing(pos, node, active_object_count, active_object_count_wider) + action = function(...) + default.cool_lava_flowing(...) end, }) @@ -156,37 +113,71 @@ minetest.register_abm({ neighbors = {"group:water"}, interval = 1, chance = 1, - action = function(pos, node, active_object_count, active_object_count_wider) - default.cool_lava_source(pos, node, active_object_count, active_object_count_wider) + action = function(...) + default.cool_lava_source(...) end, }) + -- -- Papyrus and cactus growing -- +-- wrapping the functions in abm action is necessary to make overriding them possible + +function default.grow_cactus(pos, node) + if node.param2 >= 4 then + return + end + pos.y = pos.y - 1 + if minetest.get_item_group(minetest.get_node(pos).name, "sand") == 0 then + return + end + pos.y = pos.y + 1 + local height = 0 + while node.name == "default:cactus" and height < 4 do + height = height + 1 + pos.y = pos.y + 1 + node = minetest.get_node(pos) + end + if height == 4 or node.name ~= "air" then + return + end + minetest.set_node(pos, {name = "default:cactus"}) + return true +end + +function default.grow_papyrus(pos, node) + pos.y = pos.y - 1 + local name = minetest.get_node(pos).name + if name ~= "default:dirt_with_grass" and name ~= "default:dirt" then + return + end + if not minetest.find_node_near(pos, 3, {"group:water"}) then + return + end + pos.y = pos.y + 1 + local height = 0 + while node.name == "default:papyrus" and height < 4 do + height = height + 1 + pos.y = pos.y + 1 + node = minetest.get_node(pos) + end + if height == 4 or node.name ~= "air" then + return + end + minetest.set_node(pos, {name = "default:papyrus"}) + return true +end + minetest.register_abm({ nodenames = {"default:cactus"}, neighbors = {"group:sand"}, interval = 50, chance = 20, - action = function(pos, node) - pos.y = pos.y-1 - local name = minetest.get_node(pos).name - if minetest.get_item_group(name, "sand") ~= 0 then - pos.y = pos.y+1 - local height = 0 - while minetest.get_node(pos).name == "default:cactus" and height < 4 do - height = height+1 - pos.y = pos.y+1 - end - if height < 4 then - if minetest.get_node(pos).name == "air" then - minetest.set_node(pos, {name="default:cactus"}) - end - end - end - end, + action = function(...) + default.grow_cactus(...) + end }) minetest.register_abm({ @@ -194,28 +185,12 @@ minetest.register_abm({ neighbors = {"default:dirt", "default:dirt_with_grass"}, interval = 50, chance = 20, - action = function(pos, node) - pos.y = pos.y-1 - local name = minetest.get_node(pos).name - if name == "default:dirt" or name == "default:dirt_with_grass" then - if minetest.find_node_near(pos, 3, {"group:water"}) == nil then - return - end - pos.y = pos.y+1 - local height = 0 - while minetest.get_node(pos).name == "default:papyrus" and height < 4 do - height = height+1 - pos.y = pos.y+1 - end - if height < 4 then - if minetest.get_node(pos).name == "air" then - minetest.set_node(pos, {name="default:papyrus"}) - end - end - end - end, + action = function(...) + default.grow_papyrus(...) + end }) + -- -- dig upwards -- @@ -229,6 +204,7 @@ function default.dig_up(pos, node, digger) end end + -- -- Leafdecay -- @@ -277,8 +253,10 @@ minetest.register_abm({ if trunkp then local n = minetest.get_node(trunkp) local reg = minetest.registered_nodes[n.name] - -- Assume ignore is a trunk, to make the thing work at the border of the active area - if n.name == "ignore" or (reg and reg.groups.tree and reg.groups.tree ~= 0) then + -- Assume ignore is a trunk, to make the thing + -- work at the border of the active area + if n.name == "ignore" or (reg and reg.groups.tree and + reg.groups.tree ~= 0) then --print("cached trunk still exists") return end @@ -292,7 +270,8 @@ minetest.register_abm({ end default.leafdecay_trunk_find_allow_accumulator = default.leafdecay_trunk_find_allow_accumulator - 1 - -- Assume ignore is a trunk, to make the thing work at the border of the active area + -- Assume ignore is a trunk, to make the thing + -- work at the border of the active area local p1 = minetest.find_node_near(p0, d, {"ignore", "group:tree"}) if p1 then do_preserve = true @@ -323,3 +302,44 @@ minetest.register_abm({ end }) + +-- +-- Grass growing +-- + +minetest.register_abm({ + nodenames = {"default:dirt"}, + interval = 2, + chance = 200, + action = function(pos, node) + local above = {x = pos.x, y = pos.y + 1, z = pos.z} + local name = minetest.get_node(above).name + local nodedef = minetest.registered_nodes[name] + if nodedef and (nodedef.sunlight_propagates or nodedef.paramtype == "light") and + nodedef.liquidtype == "none" and + (minetest.get_node_light(above) or 0) >= 13 then + if name == "default:snow" or name == "default:snowblock" then + minetest.set_node(pos, {name = "default:dirt_with_snow"}) + else + minetest.set_node(pos, {name = "default:dirt_with_grass"}) + end + end + end +}) + +minetest.register_abm({ + nodenames = {"default:dirt_with_grass"}, + interval = 2, + chance = 20, + action = function(pos, node) + local above = {x = pos.x, y = pos.y + 1, z = pos.z} + local name = minetest.get_node(above).name + local nodedef = minetest.registered_nodes[name] + if name ~= "ignore" and nodedef and not ((nodedef.sunlight_propagates or + nodedef.paramtype == "light") and + nodedef.liquidtype == "none") then + minetest.set_node(pos, {name = "default:dirt"}) + end + end +}) + diff --git a/mods/default/furnace.lua b/mods/default/furnace.lua index 2163f6a..6d89aae 100644 --- a/mods/default/furnace.lua +++ b/mods/default/furnace.lua @@ -18,6 +18,10 @@ local function active_formspec(fuel_percent, item_percent) "list[current_name;dst;4.75,0.96;2,2;]".. "list[current_player;main;0,4.25;8,1;]".. "list[current_player;main;0,5.5;8,3;8]".. + "listring[current_name;dst]".. + "listring[current_player;main]".. + "listring[current_name;src]".. + "listring[current_player;main]".. default.get_hotbar_bg(0, 4.25) return formspec end @@ -34,6 +38,10 @@ local inactive_formspec = "list[current_name;dst;4.75,0.96;2,2;]".. "list[current_player;main;0,4.25;8,1;]".. "list[current_player;main;0,5.5;8,3;8]".. + "listring[current_name;dst]".. + "listring[current_player;main]".. + "listring[current_name;src]".. + "listring[current_player;main]".. default.get_hotbar_bg(0, 4.25) -- diff --git a/mods/default/init.lua b/mods/default/init.lua index 276af54..6f1b148 100644 --- a/mods/default/init.lua +++ b/mods/default/init.lua @@ -1,16 +1,13 @@ -- Minetest 0.4 mod: default -- See README.txt for licensing and other information. --- The API documentation in here was moved into doc/lua_api.txt - -WATER_ALPHA = 160 -WATER_VISC = 1 -LAVA_VISC = 7 -LIGHT_MAX = 14 +-- The API documentation in here was moved into game_api.txt -- Definitions made by this mod that other mods can use too default = {} +default.LIGHT_MAX = 14 + -- GUI related stuff default.gui_bg = "bgcolor[#080808BB;true]" default.gui_bg_img = "background[5,5;1,1;gui_formbg.png;true]" @@ -24,7 +21,7 @@ function default.get_hotbar_bg(x,y) return out end -default.gui_suvival_form = "size[8,8.5]".. +default.gui_survival_form = "size[8,8.5]".. default.gui_bg.. default.gui_bg_img.. default.gui_slots.. @@ -33,6 +30,8 @@ default.gui_suvival_form = "size[8,8.5]".. "list[current_player;craft;1.75,0.5;3,3;]".. "list[current_player;craftpreview;5.75,1.5;1,1;]".. "image[4.75,1.5;1,1;gui_furnace_arrow_bg.png^[transformR270]".. + "listring[current_player;main]".. + "listring[current_player;craft]".. default.get_hotbar_bg(0,4.25) -- Load files @@ -46,3 +45,4 @@ dofile(minetest.get_modpath("default").."/mapgen.lua") dofile(minetest.get_modpath("default").."/player.lua") dofile(minetest.get_modpath("default").."/trees.lua") dofile(minetest.get_modpath("default").."/aliases.lua") +dofile(minetest.get_modpath("default").."/legacy.lua") diff --git a/mods/default/legacy.lua b/mods/default/legacy.lua new file mode 100644 index 0000000..76fcc8e --- /dev/null +++ b/mods/default/legacy.lua @@ -0,0 +1,25 @@ +-- mods/default/legacy.lua + +-- Horrible crap to support old code registering falling nodes +-- Don't use this and never do what this does, it's completely wrong! +-- (More specifically, the client and the C++ code doesn't get the group) +function default.register_falling_node(nodename, texture) + minetest.log("error", debug.traceback()) + minetest.log('error', "WARNING: default.register_falling_node is deprecated") + if minetest.registered_nodes[nodename] then + minetest.registered_nodes[nodename].groups.falling_node = 1 + end +end + +function default.spawn_falling_node(p, nodename) + spawn_falling_node(p, nodename) +end + +-- Liquids +WATER_ALPHA = minetest.registered_nodes["default:water_source"].alpha +WATER_VISC = minetest.registered_nodes["default:water_source"].liquid_viscosity +LAVA_VISC = minetest.registered_nodes["default:lava_source"].liquid_viscosity +LIGHT_MAX = default.LIGHT_MAX + +-- Formspecs +default.gui_suvival_form = default.gui_survival_form diff --git a/mods/default/mapgen.lua b/mods/default/mapgen.lua index 232ed4d..4865341 100644 --- a/mods/default/mapgen.lua +++ b/mods/default/mapgen.lua @@ -1,426 +1,667 @@ --- mods/default/mapgen.lua - -- -- Aliases for map generator outputs -- + minetest.register_alias("mapgen_stone", "default:stone") +minetest.register_alias("mapgen_dirt", "default:dirt") +minetest.register_alias("mapgen_dirt_with_grass", "default:dirt_with_grass") +minetest.register_alias("mapgen_sand", "default:sand") +minetest.register_alias("mapgen_water_source", "default:water_source") +minetest.register_alias("mapgen_river_water_source", "default:river_water_source") +minetest.register_alias("mapgen_lava_source", "default:lava_source") +minetest.register_alias("mapgen_gravel", "default:gravel") +minetest.register_alias("mapgen_desert_stone", "default:desert_stone") +minetest.register_alias("mapgen_desert_sand", "default:desert_sand") +minetest.register_alias("mapgen_dirt_with_snow", "default:dirt_with_snow") +minetest.register_alias("mapgen_snowblock", "default:snowblock") +minetest.register_alias("mapgen_snow", "default:snow") +minetest.register_alias("mapgen_ice", "default:ice") +minetest.register_alias("mapgen_sandstone", "default:sandstone") + minetest.register_alias("mapgen_tree", "default:tree") minetest.register_alias("mapgen_leaves", "default:leaves") +minetest.register_alias("mapgen_apple", "default:apple") minetest.register_alias("mapgen_jungletree", "default:jungletree") minetest.register_alias("mapgen_jungleleaves", "default:jungleleaves") -minetest.register_alias("mapgen_apple", "default:apple") -minetest.register_alias("mapgen_water_source", "default:water_source") -minetest.register_alias("mapgen_river_water_source", "default:water_source") -minetest.register_alias("mapgen_dirt", "default:dirt") -minetest.register_alias("mapgen_sand", "default:sand") -minetest.register_alias("mapgen_gravel", "default:gravel") -minetest.register_alias("mapgen_clay", "default:clay") -minetest.register_alias("mapgen_lava_source", "default:lava_source") -minetest.register_alias("mapgen_cobble", "default:cobble") -minetest.register_alias("mapgen_mossycobble", "default:mossycobble") -minetest.register_alias("mapgen_dirt_with_grass", "default:dirt_with_grass") minetest.register_alias("mapgen_junglegrass", "default:junglegrass") -minetest.register_alias("mapgen_stone_with_coal", "default:stone_with_coal") -minetest.register_alias("mapgen_stone_with_iron", "default:stone_with_iron") -minetest.register_alias("mapgen_mese", "default:mese") -minetest.register_alias("mapgen_desert_sand", "default:desert_sand") -minetest.register_alias("mapgen_desert_stone", "default:desert_stone") +minetest.register_alias("mapgen_pinetree", "default:pinetree") +minetest.register_alias("mapgen_pine_needles", "default:pine_needles") + +minetest.register_alias("mapgen_cobble", "default:cobble") minetest.register_alias("mapgen_stair_cobble", "stairs:stair_cobble") +minetest.register_alias("mapgen_mossycobble", "default:mossycobble") +minetest.register_alias("mapgen_sandstonebrick", "default:sandstonebrick") +minetest.register_alias("mapgen_stair_sandstonebrick", "stairs:stair_sandstonebrick") + -- --- Ore generation +-- Register ores -- -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_coal", - wherein = "default:stone", - clust_scarcity = 8*8*8, - clust_num_ores = 8, - clust_size = 3, - height_min = -31000, - height_max = 64, -}) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_coal", - wherein = "default:stone", - clust_scarcity = 24*24*24, - clust_num_ores = 27, - clust_size = 6, - height_min = -31000, - height_max = 0, - flags = "absheight", -}) +-- Blob ore first to avoid other ores inside blobs -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_iron", - wherein = "default:stone", - clust_scarcity = 12*12*12, - clust_num_ores = 3, - clust_size = 2, - height_min = -15, - height_max = 2, -}) +function default.register_ores() + minetest.register_ore({ + ore_type = "blob", + ore = "default:clay", + wherein = {"default:sand"}, + clust_scarcity = 24 * 24 * 24, + clust_size = 7, + y_min = -15, + y_max = 0, + noise_threshhold = 0, + noise_params = { + offset = 0.35, + scale = 0.2, + spread = {x = 5, y = 5, z = 5}, + seed = -316, + octaves = 1, + persist = 0.5 + }, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_iron", - wherein = "default:stone", - clust_scarcity = 9*9*9, - clust_num_ores = 5, - clust_size = 3, - height_min = -63, - height_max = -16, -}) + minetest.register_ore({ + ore_type = "blob", + ore = "default:sand", + wherein = {"default:stone"}, + clust_scarcity = 24 * 24 * 24, + clust_size = 7, + y_min = -63, + y_max = 4, + noise_threshhold = 0, + noise_params = { + offset = 0.35, + scale = 0.2, + spread = {x = 5, y = 5, z = 5}, + seed = 2316, + octaves = 1, + persist = 0.5 + }, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_iron", - wherein = "default:stone", - clust_scarcity = 7*7*7, - clust_num_ores = 5, - clust_size = 3, - height_min = -31000, - height_max = -64, - flags = "absheight", -}) + minetest.register_ore({ + ore_type = "blob", + ore = "default:dirt", + wherein = {"default:stone"}, + clust_scarcity = 24 * 24 * 24, + clust_size = 7, + y_min = -63, + y_max = 31000, + noise_threshhold = 0, + noise_params = { + offset = 0.35, + scale = 0.2, + spread = {x = 5, y = 5, z = 5}, + seed = 17676, + octaves = 1, + persist = 0.5 + }, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_iron", - wherein = "default:stone", - clust_scarcity = 24*24*24, - clust_num_ores = 27, - clust_size = 6, - height_min = -31000, - height_max = -64, - flags = "absheight", -}) + minetest.register_ore({ + ore_type = "blob", + ore = "default:gravel", + wherein = {"default:stone"}, + clust_scarcity = 24 * 24 * 24, + clust_size = 7, + y_min = -31000, + y_max = 31000, + noise_threshhold = 0, + noise_params = { + offset = 0.35, + scale = 0.2, + spread = {x = 5, y = 5, z = 5}, + seed = 766, + octaves = 1, + persist = 0.5 + }, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_mese", - wherein = "default:stone", - clust_scarcity = 18*18*18, - clust_num_ores = 3, - clust_size = 2, - height_min = -255, - height_max = -64, - flags = "absheight", -}) + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_coal", + wherein = "default:stone", + clust_scarcity = 8 * 8 * 8, + clust_num_ores = 8, + clust_size = 3, + y_min = -31000, + y_max = 64, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_mese", - wherein = "default:stone", - clust_scarcity = 14*14*14, - clust_num_ores = 5, - clust_size = 3, - height_min = -31000, - height_max = -256, - flags = "absheight", -}) + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_coal", + wherein = "default:stone", + clust_scarcity = 24 * 24 * 24, + clust_num_ores = 27, + clust_size = 6, + y_min = -31000, + y_max = 0, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:mese", - wherein = "default:stone", - clust_scarcity = 36*36*36, - clust_num_ores = 3, - clust_size = 2, - height_min = -31000, - height_max = -1024, - flags = "absheight", -}) + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 12 * 12 * 12, + clust_num_ores = 3, + clust_size = 2, + y_min = -15, + y_max = 2, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_gold", - wherein = "default:stone", - clust_scarcity = 15*15*15, - clust_num_ores = 3, - clust_size = 2, - height_min = -255, - height_max = -64, - flags = "absheight", -}) + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 9 * 9 * 9, + clust_num_ores = 5, + clust_size = 3, + y_min = -63, + y_max = -16, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_gold", - wherein = "default:stone", - clust_scarcity = 13*13*13, - clust_num_ores = 5, - clust_size = 3, - height_min = -31000, - height_max = -256, - flags = "absheight", -}) + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 7 * 7 * 7, + clust_num_ores = 5, + clust_size = 3, + y_min = -31000, + y_max = -64, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_diamond", - wherein = "default:stone", - clust_scarcity = 17*17*17, - clust_num_ores = 4, - clust_size = 3, - height_min = -255, - height_max = -128, - flags = "absheight", -}) + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_iron", + wherein = "default:stone", + clust_scarcity = 24 * 24 * 24, + clust_num_ores = 27, + clust_size = 6, + y_min = -31000, + y_max = -64, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_diamond", - wherein = "default:stone", - clust_scarcity = 15*15*15, - clust_num_ores = 4, - clust_size = 3, - height_min = -31000, - height_max = -256, - flags = "absheight", -}) + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_mese", + wherein = "default:stone", + clust_scarcity = 18 * 18 * 18, + clust_num_ores = 3, + clust_size = 2, + y_min = -255, + y_max = -64, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_copper", - wherein = "default:stone", - clust_scarcity = 12*12*12, - clust_num_ores = 4, - clust_size = 3, - height_min = -63, - height_max = -16, -}) + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_mese", + wherein = "default:stone", + clust_scarcity = 14 * 14 * 14, + clust_num_ores = 5, + clust_size = 3, + y_min = -31000, + y_max = -256, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:stone_with_copper", - wherein = "default:stone", - clust_scarcity = 9*9*9, - clust_num_ores = 5, - clust_size = 3, - height_min = -31000, - height_max = -64, - flags = "absheight", -}) + minetest.register_ore({ + ore_type = "scatter", + ore = "default:mese", + wherein = "default:stone", + clust_scarcity = 36 * 36 * 36, + clust_num_ores = 3, + clust_size = 2, + y_min = -31000, + y_max = -1024, + }) -minetest.register_ore({ - ore_type = "scatter", - ore = "default:clay", - wherein = "default:sand", - clust_scarcity = 15*15*15, - clust_num_ores = 64, - clust_size = 5, - height_max = 0, - height_min = -10, -}) + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_gold", + wherein = "default:stone", + clust_scarcity = 15 * 15 * 15, + clust_num_ores = 3, + clust_size = 2, + y_min = -255, + y_max = -64, + }) -function default.generate_ore(name, wherein, minp, maxp, seed, chunks_per_volume, chunk_size, ore_per_chunk, height_min, height_max) - minetest.log('action', "WARNING: default.generate_ore is deprecated") + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_gold", + wherein = "default:stone", + clust_scarcity = 13 * 13 * 13, + clust_num_ores = 5, + clust_size = 3, + y_min = -31000, + y_max = -256, + }) - if maxp.y < height_min or minp.y > height_max then - return - end - local y_min = math.max(minp.y, height_min) - local y_max = math.min(maxp.y, height_max) - if chunk_size >= y_max - y_min + 1 then - return - end - local volume = (maxp.x-minp.x+1)*(y_max-y_min+1)*(maxp.z-minp.z+1) - local pr = PseudoRandom(seed) - local num_chunks = math.floor(chunks_per_volume * volume) - local inverse_chance = math.floor(chunk_size*chunk_size*chunk_size / ore_per_chunk) - --print("generate_ore num_chunks: "..dump(num_chunks)) - for i=1,num_chunks do - local y0 = pr:next(y_min, y_max-chunk_size+1) - if y0 >= height_min and y0 <= height_max then - local x0 = pr:next(minp.x, maxp.x-chunk_size+1) - local z0 = pr:next(minp.z, maxp.z-chunk_size+1) - local p0 = {x=x0, y=y0, z=z0} - for x1=0,chunk_size-1 do - for y1=0,chunk_size-1 do - for z1=0,chunk_size-1 do - if pr:next(1,inverse_chance) == 1 then - local x2 = x0+x1 - local y2 = y0+y1 - local z2 = z0+z1 - local p2 = {x=x2, y=y2, z=z2} - if minetest.get_node(p2).name == wherein then - minetest.set_node(p2, {name=name}) - end - end - end - end - end - end - end - --print("generate_ore done") + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_diamond", + wherein = "default:stone", + clust_scarcity = 17 * 17 * 17, + clust_num_ores = 4, + clust_size = 3, + y_min = -255, + y_max = -128, + }) + + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_diamond", + wherein = "default:stone", + clust_scarcity = 15 * 15 * 15, + clust_num_ores = 4, + clust_size = 3, + y_min = -31000, + y_max = -256, + }) + + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_copper", + wherein = "default:stone", + clust_scarcity = 12 * 12 * 12, + clust_num_ores = 4, + clust_size = 3, + y_min = -63, + y_max = -16, + }) + + minetest.register_ore({ + ore_type = "scatter", + ore = "default:stone_with_copper", + wherein = "default:stone", + clust_scarcity = 9 * 9 * 9, + clust_num_ores = 5, + clust_size = 3, + y_min = -31000, + y_max = -64, + }) end + -- --- Mgv6 papyrus, cactus, long grasses +-- Register biomes -- -function default.mgv6_ongen(minp, maxp, seed) - function default.make_papyrus(pos, size) - for y=0,size-1 do - local p = {x=pos.x, y=pos.y+y, z=pos.z} - local nn = minetest.get_node(p).name - if minetest.registered_nodes[nn] and - minetest.registered_nodes[nn].buildable_to then - minetest.set_node(p, {name="default:papyrus"}) - else - return - end - end - end +function default.register_biomes() + minetest.clear_registered_biomes() - function default.make_cactus(pos, size) - for y=0,size-1 do - local p = {x=pos.x, y=pos.y+y, z=pos.z} - local nn = minetest.get_node(p).name - if minetest.registered_nodes[nn] and - minetest.registered_nodes[nn].buildable_to then - minetest.set_node(p, {name="default:cactus"}) - else - return - end - end - end + minetest.register_biome({ + name = "default:grassland", + --node_dust = "", + node_top = "default:dirt_with_grass", + depth_top = 1, + node_filler = "default:dirt", + depth_filler = 1, + --node_stone = "", + --node_water_top = "", + --depth_water_top = , + --node_water = "", + y_min = 5, + y_max = 31000, + heat_point = 50, + humidity_point = 50, + }) - if maxp.y >= 2 and minp.y <= 0 then - -- Generate papyrus - local perlin1 = minetest.get_perlin(354, 3, 0.7, 100) - -- Assume X and Z lengths are equal - local divlen = 8 - local divs = (maxp.x-minp.x)/divlen+1; - for divx=0,divs-1 do - for divz=0,divs-1 do - local x0 = minp.x + math.floor((divx+0)*divlen) - local z0 = minp.z + math.floor((divz+0)*divlen) - local x1 = minp.x + math.floor((divx+1)*divlen) - local z1 = minp.z + math.floor((divz+1)*divlen) - -- Determine papyrus amount from perlin noise - local papyrus_amount = math.floor(perlin1:get2d({x=x0, y=z0}) * 45 - 20) - -- Find random positions for papyrus based on this random - local pr = PseudoRandom(seed+1) - for i=0,papyrus_amount do - local x = pr:next(x0, x1) - local z = pr:next(z0, z1) - if minetest.get_node({x=x,y=1,z=z}).name == "default:dirt_with_grass" and - minetest.find_node_near({x=x,y=1,z=z}, 1, "default:water_source") then - default.make_papyrus({x=x,y=2,z=z}, pr:next(2, 4)) - end - end - end - end - -- Generate cactuses - local perlin1 = minetest.get_perlin(230, 3, 0.6, 100) - -- Assume X and Z lengths are equal - local divlen = 16 - local divs = (maxp.x-minp.x)/divlen+1; - for divx=0,divs-1 do - for divz=0,divs-1 do - local x0 = minp.x + math.floor((divx+0)*divlen) - local z0 = minp.z + math.floor((divz+0)*divlen) - local x1 = minp.x + math.floor((divx+1)*divlen) - local z1 = minp.z + math.floor((divz+1)*divlen) - -- Determine cactus amount from perlin noise - local cactus_amount = math.floor(perlin1:get2d({x=x0, y=z0}) * 6 - 3) - -- Find random positions for cactus based on this random - local pr = PseudoRandom(seed+1) - for i=0,cactus_amount do - local x = pr:next(x0, x1) - local z = pr:next(z0, z1) - -- Find ground level (0...15) - local ground_y = nil - for y=30,0,-1 do - if minetest.get_node({x=x,y=y,z=z}).name ~= "air" then - ground_y = y - break - end - end - -- If desert sand, make cactus - if ground_y and minetest.get_node({x=x,y=ground_y,z=z}).name == "default:desert_sand" then - default.make_cactus({x=x,y=ground_y+1,z=z}, pr:next(3, 4)) - end - end - end - end - -- Generate grass - local perlin1 = minetest.get_perlin(329, 3, 0.6, 100) - -- Assume X and Z lengths are equal - local divlen = 16 - local divs = (maxp.x-minp.x)/divlen+1; - for divx=0,divs-1 do - for divz=0,divs-1 do - local x0 = minp.x + math.floor((divx+0)*divlen) - local z0 = minp.z + math.floor((divz+0)*divlen) - local x1 = minp.x + math.floor((divx+1)*divlen) - local z1 = minp.z + math.floor((divz+1)*divlen) - -- Determine grass amount from perlin noise - local grass_amount = math.floor(perlin1:get2d({x=x0, y=z0}) ^ 3 * 9) - -- Find random positions for grass based on this random - local pr = PseudoRandom(seed+1) - for i=0,grass_amount do - local x = pr:next(x0, x1) - local z = pr:next(z0, z1) - -- Find ground level (0...15) - local ground_y = nil - for y=30,0,-1 do - if minetest.get_node({x=x,y=y,z=z}).name ~= "air" then - ground_y = y - break - end - end - - if ground_y then - local p = {x=x,y=ground_y+1,z=z} - local nn = minetest.get_node(p).name - -- Check if the node can be replaced - if minetest.registered_nodes[nn] and - minetest.registered_nodes[nn].buildable_to then - nn = minetest.get_node({x=x,y=ground_y,z=z}).name - -- If desert sand, add dry shrub - if nn == "default:desert_sand" then - minetest.set_node(p,{name="default:dry_shrub"}) - - -- If dirt with grass, add grass - elseif nn == "default:dirt_with_grass" then - minetest.set_node(p,{name="default:grass_"..pr:next(1, 5)}) - end - end - end - - end - end - end - end + minetest.register_biome({ + name = "default:grassland_ocean", + --node_dust = "", + node_top = "default:sand", + depth_top = 1, + node_filler = "default:sand", + depth_filler = 2, + --node_stone = "", + --node_water_top = "", + --depth_water_top = , + --node_water = "", + y_min = -31000, + y_max = 4, + heat_point = 50, + humidity_point = 50, + }) end + -- --- Detect mapgen and register suitable on-generated function +-- Register mgv6 decorations -- -minetest.register_on_mapgen_init(function(mg_params) - if mg_params.mgname == "v6" then - minetest.register_on_generated(default.mgv6_ongen) + +function default.register_mgv6_decorations() + + -- Papyrus + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 8, + noise_params = { + offset = -0.3, + scale = 0.7, + spread = {x = 100, y = 100, z = 100}, + seed = 354, + octaves = 3, + persist = 0.7 + }, + y_min = 1, + y_max = 1, + decoration = "default:papyrus", + height = 2, + height_max = 4, + spawn_by = "default:water_source", + num_spawn_by = 1, + }) + + -- Cacti + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:desert_sand"}, + sidelen = 16, + noise_params = { + offset = -0.012, + scale = 0.024, + spread = {x = 100, y = 100, z = 100}, + seed = 230, + octaves = 3, + persist = 0.6 + }, + y_min = 1, + y_max = 30, + decoration = "default:cactus", + height = 3, + height_max = 4, + }) + + -- Grasses + + for length = 1, 5 do + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = 0, + scale = 0.007, + spread = {x = 100, y = 100, z = 100}, + seed = 329, + octaves = 3, + persist = 0.6 + }, + y_min = 1, + y_max = 30, + decoration = "default:grass_"..length, + }) end -end) + + -- Dry shrubs + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:desert_sand", "default:dirt_with_snow"}, + sidelen = 16, + noise_params = { + offset = 0, + scale = 0.035, + spread = {x = 100, y = 100, z = 100}, + seed = 329, + octaves = 3, + persist = 0.6 + }, + y_min = 1, + y_max = 30, + decoration = "default:dry_shrub", + }) +end + + +-- +-- Register decorations +-- + + +function default.register_decorations() + + -- Flowers + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = -0.02, + scale = 0.03, + spread = {x = 200, y = 200, z = 200}, + seed = 436, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = -31000, + y_max = 31000, + decoration = "flowers:rose", + }) + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = -0.02, + scale = 0.03, + spread = {x = 200, y = 200, z = 200}, + seed = 19822, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = 33, + y_max = 31000, + decoration = "flowers:tulip", + }) + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = -0.02, + scale = 0.03, + spread = {x = 200, y = 200, z = 200}, + seed = 1220999, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = -31000, + y_max = 31000, + decoration = "flowers:dandelion_yellow", + }) + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = -0.02, + scale = 0.03, + spread = {x = 200, y = 200, z = 200}, + seed = 36662, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = -31000, + y_max = 31000, + decoration = "flowers:geranium", + }) + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = -0.02, + scale = 0.03, + spread = {x = 200, y = 200, z = 200}, + seed = 1133, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = -31000, + y_max = 31000, + decoration = "flowers:viola", + }) + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = -0.02, + scale = 0.03, + spread = {x = 200, y = 200, z = 200}, + seed = 73133, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = -31000, + y_max = 31000, + decoration = "flowers:dandelion_white", + }) + + -- Grasses + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = 0.04, + scale = 0.04, + spread = {x = 200, y = 200, z = 200}, + seed = 66440, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = -31000, + y_max = 31000, + decoration = "default:grass_1", + }) + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = 0.02, + scale = 0.06, + spread = {x = 200, y = 200, z = 200}, + seed = 66440, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = -31000, + y_max = 31000, + decoration = "default:grass_2", + }) + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = 0, + scale = 0.08, + spread = {x = 200, y = 200, z = 200}, + seed = 66440, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = -31000, + y_max = 31000, + decoration = "default:grass_3", + }) + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = -0.02, + scale = 0.10, + spread = {x = 200, y = 200, z = 200}, + seed = 66440, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = -31000, + y_max = 31000, + decoration = "default:grass_4", + }) + + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = -0.04, + scale = 0.12, + spread = {x = 200, y = 200, z = 200}, + seed = 66440, + octaves = 3, + persist = 0.6 + }, + biomes = {"default:grassland"}, + y_min = -31000, + y_max = 31000, + decoration = "default:grass_5", + }) +end + + +-- +-- Detect mapgen to select functions +-- + + +-- Mods using singlenode mapgen can call these functions to enable +-- the use of minetest.generate_ores or minetest.generate_decorations + +local mg_params = minetest.get_mapgen_params() +if mg_params.mgname == "v6" then + default.register_ores() + default.register_mgv6_decorations() +elseif mg_params.mgname ~= "singlenode" then + default.register_ores() + default.register_biomes() + default.register_decorations() +end + -- -- Generate nyan cats in all mapgens -- + -- facedir: 0/1/2/3 (head node facedir value) -- length: length of rainbow tail function default.make_nyancat(pos, facedir, length) - local tailvec = {x=0, y=0, z=0} + local tailvec = {x = 0, y = 0, z = 0} if facedir == 0 then tailvec.z = 1 elseif facedir == 1 then @@ -434,15 +675,16 @@ function default.make_nyancat(pos, facedir, length) facedir = 0 tailvec.z = 1 end - local p = {x=pos.x, y=pos.y, z=pos.z} - minetest.set_node(p, {name="default:nyancat", param2=facedir}) - for i=1,length do + local p = {x = pos.x, y = pos.y, z = pos.z} + minetest.set_node(p, {name = "default:nyancat", param2 = facedir}) + for i = 1, length do p.x = p.x + tailvec.x p.z = p.z + tailvec.z - minetest.set_node(p, {name="default:nyancat_rainbow", param2=facedir}) + minetest.set_node(p, {name = "default:nyancat_rainbow", param2 = facedir}) end end + function default.generate_nyancats(minp, maxp, seed) local height_min = -31000 local height_max = -32 @@ -451,18 +693,19 @@ function default.generate_nyancats(minp, maxp, seed) end local y_min = math.max(minp.y, height_min) local y_max = math.min(maxp.y, height_max) - local volume = (maxp.x-minp.x+1)*(y_max-y_min+1)*(maxp.z-minp.z+1) + local volume = (maxp.x - minp.x + 1) * (y_max - y_min + 1) * (maxp.z - minp.z + 1) local pr = PseudoRandom(seed + 9324342) - local max_num_nyancats = math.floor(volume / (16*16*16)) - for i=1,max_num_nyancats do + local max_num_nyancats = math.floor(volume / (16 * 16 * 16)) + for i = 1, max_num_nyancats do if pr:next(0, 1000) == 0 then local x0 = pr:next(minp.x, maxp.x) local y0 = pr:next(minp.y, maxp.y) local z0 = pr:next(minp.z, maxp.z) - local p0 = {x=x0, y=y0, z=z0} - default.make_nyancat(p0, pr:next(0,3), pr:next(3,15)) + local p0 = {x = x0, y = y0, z = z0} + default.make_nyancat(p0, pr:next(0, 3), pr:next(3, 15)) end end end + minetest.register_on_generated(default.generate_nyancats) diff --git a/mods/default/models/character.b3d b/mods/default/models/character.b3d new file mode 100644 index 0000000..bc9d927 Binary files /dev/null and b/mods/default/models/character.b3d differ diff --git a/mods/default/models/character.x b/mods/default/models/character.x deleted file mode 100644 index 8326095..0000000 --- a/mods/default/models/character.x +++ /dev/null @@ -1,7457 +0,0 @@ -xof 0303txt 0032 - -template XSkinMeshHeader { - <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> - WORD nMaxSkinWeightsPerVertex; - WORD nMaxSkinWeightsPerFace; - WORD nBones; -} - -template SkinWeights { - <6f0d123b-bad2-4167-a0d0-80224f25fabb> - STRING transformNodeName; - DWORD nWeights; - array DWORD vertexIndices[nWeights]; - array float weights[nWeights]; - Matrix4x4 matrixOffset; -} - -Frame Root { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.000000, 1.000000;; - } - Frame Armature { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.000000,-10.000000, 1.000000;; - } - Frame Armature_Body { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000,-1.000000, 0.000000, 0.000000, - -0.000000, 0.000000, 6.750000, 1.000000;; - } - Frame Armature_Arm_Left { - FrameTransformMatrix { - 0.989214,-0.143886,-0.027450, 0.000000, - -0.143940,-0.989586,-0.000000, 0.000000, - -0.027164, 0.003951,-0.999623, 0.000000, - -2.000000, 6.750000,-0.000000, 1.000000;; - } - } // End of Armature_Arm_Left - Frame Armature_Arm_Right { - FrameTransformMatrix { - 0.989214, 0.143886, 0.027450, 0.000000, - 0.143940,-0.989586,-0.000000, 0.000000, - 0.027164, 0.003951,-0.999623, 0.000000, - 2.000000, 6.750000,-0.000000, 1.000000;; - } - } // End of Armature_Arm_Right - Frame Armature_Cape { - FrameTransformMatrix { - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000,-1.000000, 0.000002, 0.000000, - -0.000000,-0.000002,-1.000000, 0.000000, - 0.000000, 6.750000, 0.976707, 1.000000;; - } - } // End of Armature_Cape - Frame Armature_Head { - FrameTransformMatrix { - -1.000000,-0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - 0.000000, 6.750000,-0.000000, 1.000000;; - } - } // End of Armature_Head - Frame Armature_Leg_Left { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - -1.000000, 0.000000,-0.000001, 1.000000;; - } - } // End of Armature_Leg_Left - Frame Armature_Leg_Right { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - 1.000000, 0.000000,-0.000001, 1.000000;; - } - } // End of Armature_Leg_Right - } // End of Armature_Body - Frame Player { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.000000, 0.000000, 1.000000;; - } - Mesh { // Player mesh - 192; - 2.000000;-1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - -2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000;13.500000;, - -2.000000; 1.000000;13.500000;, - -2.000000; 1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000;13.500000;, - 2.000000; 1.000000;13.500000;, - 2.000000; 1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - -2.000000; 1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - 2.000000;-1.000000;13.500000;, - 2.000000; 1.000000;13.500000;, - 0.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 6.750000;, - -2.000000;-1.000000;13.500000;, - -4.000000;-1.000000;13.500000;, - -4.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -2.000000;-1.000000; 0.000000;, - -2.000000; 1.000000; 0.000000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - -2.000000; 1.000000; 0.000000;, - -2.000000;-1.000000; 0.000000;, - 2.000000;-2.000000;17.500000;, - -2.000000;-2.000000;17.500000;, - -2.000000;-2.000000;13.500000;, - 2.000000;-2.000000;13.500000;, - -2.000000;-2.000000;17.500000;, - -2.000000; 2.000000;17.500000;, - -2.000000; 2.000000;13.500000;, - -2.000000;-2.000000;13.500000;, - -2.000000; 2.000000;17.500000;, - 2.000000; 2.000000;17.500000;, - 2.000000; 2.000000;13.500000;, - -2.000000; 2.000000;13.500000;, - 2.000000; 2.000000;13.500000;, - 2.000000;-2.000000;13.500000;, - -2.000000;-2.000000;13.500000;, - -2.000000; 2.000000;13.500000;, - -2.000000; 2.000000;17.500000;, - -2.000000;-2.000000;17.500000;, - 2.000000;-2.000000;17.500000;, - 2.000000; 2.000000;17.500000;, - 0.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - 2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 0.000000;, - -2.000000; 1.000000; 0.000000;, - 2.000000; 1.000000; 6.750000;, - 4.000000; 1.000000; 6.750000;, - 4.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - 4.000000; 1.000000;13.500000;, - 2.000000; 1.000000;13.500000;, - 2.000000;-1.000000;13.500000;, - 4.000000;-1.000000;13.500000;, - 0.000000;-1.000000; 6.750000;, - 0.000000;-1.000000; 0.000000;, - 2.000000;-1.000000; 0.000000;, - 2.000000;-1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - 0.000000;-1.000000; 6.750000;, - -0.000000;-1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 0.000000;, - 2.000000; 1.000000; 0.000000;, - 2.000000; 1.000000; 6.750000;, - 2.000000;-1.000000;13.500000;, - 2.000000;-1.000000; 6.750000;, - 2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000;13.500000;, - 2.000000;-2.000000;17.500000;, - 2.000000;-2.000000;13.500000;, - 2.000000; 2.000000;13.500000;, - 2.000000; 2.000000;17.500000;, - -2.000000; 1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - 0.000000;-1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - -4.000000; 1.000000;13.500000;, - -2.000000; 1.000000;13.500000;, - -2.000000; 1.000000; 6.750000;, - -4.000000; 1.000000; 6.750000;, - -4.000000;-1.000000;13.500000;, - -4.000000; 1.000000;13.500000;, - -4.000000; 1.000000; 6.750000;, - -4.000000;-1.000000; 6.750000;, - 4.000000;-1.000000;13.500000;, - 4.000000;-1.000000; 6.750000;, - 4.000000; 1.000000; 6.750000;, - 4.000000; 1.000000;13.500000;, - -4.000000; 1.000000;13.500000;, - -4.000000;-1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - -2.000000; 1.000000;13.500000;, - 4.000000; 1.000000;13.500000;, - 4.000000; 1.000000; 6.750000;, - 2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000;13.500000;, - 0.000000; 1.000000; 0.000000;, - 2.000000; 1.000000; 0.000000;, - 2.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 2.000000; 1.000000;13.500000;, - 2.000000; 1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000;13.500000;, - -2.000000; 1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -4.000000;-1.000000; 6.750000;, - -4.000000; 1.000000; 6.750000;, - 2.000000;-1.000000;13.500000;, - 2.000000;-1.000000; 6.750000;, - 4.000000;-1.000000; 6.750000;, - 4.000000;-1.000000;13.500000;, - 2.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - 0.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - 2.200000;-2.200000;17.702990;, - -2.200000;-2.200000;17.702990;, - -2.200000;-2.200000;13.302996;, - 2.200000;-2.200000;13.302996;, - -2.200000;-2.200000;17.702990;, - -2.200000; 2.200000;17.702990;, - -2.200000; 2.200000;13.302996;, - -2.200000;-2.200000;13.302996;, - -2.200000; 2.200000;17.702990;, - 2.200000; 2.200000;17.702990;, - 2.200000; 2.200000;13.302996;, - -2.200000; 2.200000;13.302996;, - 2.200000; 2.200000;13.302996;, - 2.200000;-2.200000;13.302996;, - -2.200000;-2.200000;13.302996;, - -2.200000; 2.200000;13.302996;, - -2.200000; 2.200000;17.702990;, - -2.200000;-2.200000;17.702990;, - 2.200000;-2.200000;17.702990;, - 2.200000; 2.200000;17.702990;, - 2.200000;-2.200000;17.702990;, - 2.200000;-2.200000;13.302996;, - 2.200000; 2.200000;13.302996;, - 2.200000; 2.200000;17.702990;, - 2.000000;-1.364403;13.500000;, - -2.000000;-1.364403;13.500000;, - -2.000000;-1.364403; 6.750000;, - 2.000000;-1.364403; 6.750000;, - 2.000000;-1.000000;13.500000;, - 2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000;13.500000;, - -2.000000;-1.364403;13.500000;, - 2.000000;-1.364403;13.500000;, - 2.000000;-1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - 2.000000;-1.364403;13.500000;, - 2.000000;-1.364403; 6.750000;, - 2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000;13.500000;, - -2.000000;-1.364403; 6.750000;, - -2.000000;-1.364403;13.500000;, - -2.000000;-1.000000;13.500000;, - -2.000000;-1.000000; 6.750000;, - 2.000000;-1.364403; 6.750000;, - -2.000000;-1.364403; 6.750000;, - -2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;; - 48; - 4;3,2,1,0;, - 4;7,6,5,4;, - 4;11,10,9,8;, - 4;15,14,13,12;, - 4;19,18,17,16;, - 4;23,22,21,20;, - 4;27,26,25,24;, - 4;31,30,29,28;, - 4;35,34,33,32;, - 4;39,38,37,36;, - 4;43,42,41,40;, - 4;47,46,45,44;, - 4;51,50,49,48;, - 4;55,54,53,52;, - 4;59,58,57,56;, - 4;63,62,61,60;, - 4;67,66,65,64;, - 4;71,70,69,68;, - 4;75,74,73,72;, - 4;79,78,77,76;, - 4;83,82,81,80;, - 4;87,86,85,84;, - 4;91,90,89,88;, - 4;95,94,93,92;, - 4;99,98,97,96;, - 4;103,102,101,100;, - 4;107,106,105,104;, - 4;111,110,109,108;, - 4;115,114,113,112;, - 4;119,118,117,116;, - 4;123,122,121,120;, - 4;127,126,125,124;, - 4;131,130,129,128;, - 4;135,134,133,132;, - 4;139,138,137,136;, - 4;143,142,141,140;, - 4;147,146,145,144;, - 4;151,150,149,148;, - 4;155,154,153,152;, - 4;159,158,157,156;, - 4;163,162,161,160;, - 4;167,166,165,164;, - 4;171,170,169,168;, - 4;175,174,173,172;, - 4;179,178,177,176;, - 4;183,182,181,180;, - 4;187,186,185,184;, - 4;191,190,189,188;; - MeshNormals { // Player normals - 48; - -0.000000;-1.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000;-1.000000; 0.000000;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - -0.000000;-1.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - -0.000000; 1.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - -0.000000;-1.000000; 0.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000000;-0.000000;-1.000000;; - 48; - 4;0,0,0,0;, - 4;1,1,1,1;, - 4;2,2,2,2;, - 4;3,3,3,3;, - 4;4,4,4,4;, - 4;5,5,5,5;, - 4;6,6,6,6;, - 4;7,7,7,7;, - 4;8,8,8,8;, - 4;9,9,9,9;, - 4;10,10,10,10;, - 4;11,11,11,11;, - 4;12,12,12,12;, - 4;13,13,13,13;, - 4;14,14,14,14;, - 4;15,15,15,15;, - 4;16,16,16,16;, - 4;17,17,17,17;, - 4;18,18,18,18;, - 4;19,19,19,19;, - 4;20,20,20,20;, - 4;21,21,21,21;, - 4;22,22,22,22;, - 4;23,23,23,23;, - 4;24,24,24,24;, - 4;25,25,25,25;, - 4;26,26,26,26;, - 4;27,27,27,27;, - 4;28,28,28,28;, - 4;29,29,29,29;, - 4;30,30,30,30;, - 4;31,31,31,31;, - 4;32,32,32,32;, - 4;33,33,33,33;, - 4;34,34,34,34;, - 4;35,35,35,35;, - 4;36,36,36,36;, - 4;37,37,37,37;, - 4;38,38,38,38;, - 4;39,39,39,39;, - 4;40,40,40,40;, - 4;41,41,41,41;, - 4;42,42,42,42;, - 4;43,43,43,43;, - 4;44,44,44,44;, - 4;45,45,45,45;, - 4;46,46,46,46;, - 4;47,47,47,47;; - } // End of Player normals - MeshTextureCoords { // Player UV coordinates - 192; - 0.625000; 0.625000;, - 0.500000; 0.625000;, - 0.500000; 1.000000;, - 0.625000; 1.000000;, - 0.500000; 0.625000;, - 0.437500; 0.625000;, - 0.437500; 1.000000;, - 0.500000; 1.000000;, - 0.437500; 0.625000;, - 0.312500; 0.625000;, - 0.312500; 1.000000;, - 0.437500; 1.000000;, - 0.562500; 0.625000;, - 0.562500; 0.500000;, - 0.437500; 0.500000;, - 0.437500; 0.625000;, - 0.437500; 0.625000;, - 0.437500; 0.500000;, - 0.312500; 0.500000;, - 0.312500; 0.625000;, - 0.187500; 0.625000;, - 0.187500; 1.000000;, - 0.125000; 1.000000;, - 0.125000; 0.625000;, - 0.812500; 0.625000;, - 0.875000; 0.625000;, - 0.875000; 1.000000;, - 0.812500; 1.000000;, - 0.750000; 0.625000;, - 0.812500; 0.625000;, - 0.812500; 1.000000;, - 0.750000; 1.000000;, - 0.187500; 0.625000;, - 0.187500; 0.500000;, - 0.125000; 0.500000;, - 0.125000; 0.625000;, - 0.000000; 0.625000;, - 0.062500; 0.625000;, - 0.062500; 1.000000;, - 0.000000; 1.000000;, - 0.500000; 0.250000;, - 0.375000; 0.250000;, - 0.375000; 0.500000;, - 0.500000; 0.500000;, - 0.375000; 0.250000;, - 0.250000; 0.250000;, - 0.250000; 0.500000;, - 0.375000; 0.500000;, - 0.250000; 0.250000;, - 0.125000; 0.250000;, - 0.125000; 0.500000;, - 0.250000; 0.500000;, - 0.375000; 0.250000;, - 0.375000; 0.000000;, - 0.250000; 0.000000;, - 0.250000; 0.250000;, - 0.250000; 0.250000;, - 0.250000; 0.000000;, - 0.125000; 0.000000;, - 0.125000; 0.250000;, - 0.250000; 0.625000;, - 0.187500; 0.625000;, - 0.187500; 1.000000;, - 0.250000; 1.000000;, - 0.125000; 0.625000;, - 0.125000; 1.000000;, - 0.062500; 1.000000;, - 0.062500; 0.625000;, - 0.125000; 0.625000;, - 0.062500; 0.625000;, - 0.062500; 1.000000;, - 0.125000; 1.000000;, - 0.750000; 0.625000;, - 0.812500; 0.625000;, - 0.812500; 0.500000;, - 0.750000; 0.500000;, - 0.687500; 0.625000;, - 0.750000; 0.625000;, - 0.750000; 0.500000;, - 0.687500; 0.500000;, - 0.250000; 0.625000;, - 0.250000; 1.000000;, - 0.187500; 1.000000;, - 0.187500; 0.625000;, - 0.187500; 0.625000;, - 0.125000; 0.625000;, - 0.125000; 1.000000;, - 0.187500; 1.000000;, - 0.000000; 0.625000;, - 0.000000; 1.000000;, - 0.062500; 1.000000;, - 0.062500; 0.625000;, - 0.250000; 0.625000;, - 0.250000; 1.000000;, - 0.312500; 1.000000;, - 0.312500; 0.625000;, - 0.000000; 0.250000;, - 0.000000; 0.500000;, - 0.125000; 0.500000;, - 0.125000; 0.250000;, - 0.125000; 0.625000;, - 0.125000; 0.500000;, - 0.062500; 0.500000;, - 0.062500; 0.625000;, - 0.687500; 0.625000;, - 0.750000; 0.625000;, - 0.750000; 1.000000;, - 0.687500; 1.000000;, - 0.687500; 0.625000;, - 0.625000; 0.625000;, - 0.625000; 1.000000;, - 0.687500; 1.000000;, - 0.687500; 0.625000;, - 0.687500; 1.000000;, - 0.625000; 1.000000;, - 0.625000; 0.625000;, - 0.687500; 0.625000;, - 0.687500; 0.500000;, - 0.750000; 0.500000;, - 0.750000; 0.625000;, - 0.687500; 0.625000;, - 0.687500; 1.000000;, - 0.750000; 1.000000;, - 0.750000; 0.625000;, - 0.187500; 0.625000;, - 0.125000; 0.625000;, - 0.125000; 0.500000;, - 0.187500; 0.500000;, - 0.750000; 0.625000;, - 0.750000; 1.000000;, - 0.812500; 1.000000;, - 0.812500; 0.625000;, - 0.750000; 0.625000;, - 0.750000; 0.500000;, - 0.812500; 0.500000;, - 0.812500; 0.625000;, - 0.812500; 0.625000;, - 0.812500; 1.000000;, - 0.875000; 1.000000;, - 0.875000; 0.625000;, - 0.125000; 0.625000;, - 0.062500; 0.625000;, - 0.062500; 0.500000;, - 0.125000; 0.500000;, - 1.000000; 0.250000;, - 0.875000; 0.250000;, - 0.875000; 0.500000;, - 1.000000; 0.500000;, - 0.875000; 0.250000;, - 0.750000; 0.250000;, - 0.750000; 0.500000;, - 0.875000; 0.500000;, - 0.750000; 0.250000;, - 0.625000; 0.250000;, - 0.625000; 0.500000;, - 0.750000; 0.500000;, - 0.875000; 0.250000;, - 0.875000; 0.000000;, - 0.750000; 0.000000;, - 0.750000; 0.250000;, - 0.750000; 0.250000;, - 0.750000; 0.000000;, - 0.625000; 0.000000;, - 0.625000; 0.250000;, - 0.500000; 0.250000;, - 0.500000; 0.500000;, - 0.625000; 0.500000;, - 0.625000; 0.250000;, - 1.000000; 0.625000;, - 0.875000; 0.625000;, - 0.875000; 1.000000;, - 1.000000; 1.000000;, - 1.000000; 0.625000;, - 1.000000; 1.000000;, - 0.875000; 1.000000;, - 0.875000; 0.625000;, - 0.875000; 0.625000;, - 1.000000; 0.625000;, - 1.000000; 0.656250;, - 0.875000; 0.656250;, - 1.000000; 0.625000;, - 1.000000; 1.000000;, - 0.984375; 1.000000;, - 0.984375; 0.625000;, - 0.875000; 1.000000;, - 0.875000; 0.625000;, - 0.890625; 0.625000;, - 0.890625; 1.000000;, - 1.000000; 1.000000;, - 0.875000; 1.000000;, - 0.875000; 0.968750;, - 1.000000; 0.968750;; - } // End of Player UV coordinates - MeshMaterialList { // Player material list - 1; - 48; - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0;; - Material Character { - 0.640000; 0.640000; 0.640000; 1.000000;; - 96.078431; - 0.000000; 0.000000; 0.000000;; - 0.000000; 0.000000; 0.000000;; - TextureFilename {"character.png";} - } - } // End of Player material list - XSkinMeshHeader { - 2; - 6; - 7; - } - SkinWeights { - "Armature_Arm_Right"; - 24; - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 112, - 113, - 114, - 115, - 120, - 121, - 122, - 123, - 128, - 129, - 130, - 131, - 136, - 137, - 138, - 139; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.989214, 0.143940, 0.027164, 0.000000, - -0.027450,-0.000000, 0.999623, 0.000000, - 0.143886,-0.989587, 0.003951, 0.000000, - -3.920884,13.071539,-0.107668, 1.000000;; - } // End of Armature_Arm_Right skin weights - SkinWeights { - "Armature_Arm_Left"; - 24; - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 116, - 117, - 118, - 119, - 132, - 133, - 134, - 135; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.989214,-0.143940,-0.027164, 0.000000, - 0.027450,-0.000000, 0.999623, 0.000000, - -0.143886,-0.989587, 0.003951, 0.000000, - 3.920884,13.071539,-0.107668, 1.000000;; - } // End of Armature_Arm_Left skin weights - SkinWeights { - "Armature_Cape"; - 24; - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000,-0.000002, 1.000000, 0.000000, - -0.000000,-1.000000,-0.000002, 0.000000, - 0.000000,13.499997, 0.976740, 1.000000;; - } // End of Armature_Cape skin weights - SkinWeights { - "Armature_Head"; - 48; - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 96, - 97, - 98, - 99, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - -1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - -0.000000,-13.500000,-0.000002, 1.000000;; - } // End of Armature_Head skin weights - SkinWeights { - "Armature_Leg_Left"; - 24; - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 60, - 61, - 62, - 63, - 68, - 69, - 70, - 71, - 84, - 85, - 86, - 87, - 100, - 101, - 102, - 103; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.000000,-1.000000, 0.000000, 0.000000, - 1.000000, 6.750001,-0.000001, 1.000000;; - } // End of Armature_Leg_Left skin weights - SkinWeights { - "Armature_Body"; - 129; - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 33, - 34, - 36, - 37, - 39, - 60, - 61, - 62, - 63, - 64, - 67, - 68, - 69, - 72, - 73, - 74, - 75, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 88, - 89, - 91, - 92, - 93, - 94, - 95, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 116, - 117, - 118, - 119, - 121, - 122, - 123, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000; - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000,-1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000,-6.750000,-0.000001, 1.000000;; - } // End of Armature_Body skin weights - SkinWeights { - "Armature_Leg_Right"; - 24; - 20, - 21, - 22, - 23, - 64, - 65, - 66, - 67, - 80, - 81, - 82, - 83, - 88, - 89, - 90, - 91, - 124, - 125, - 126, - 127, - 140, - 141, - 142, - 143; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.000000,-1.000000, 0.000000, 0.000000, - -1.000000, 6.750001,-0.000001, 1.000000;; - } // End of Armature_Leg_Right skin weights - } // End of Player mesh - } // End of Player - } // End of Armature -} // End of Root -AnimationSet ArmatureAction { - Animation { - {Armature} - AnimationKey { // Rotation - 0; - 221; - 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 221; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 221; - 0;3; 0.000000, 0.000000,-10.000000;;, - 1;3; 0.000000, 0.000000,-10.000000;;, - 2;3; 0.000000, 0.000000,-10.000000;;, - 3;3; 0.000000, 0.000000,-10.000000;;, - 4;3; 0.000000, 0.000000,-10.000000;;, - 5;3; 0.000000, 0.000000,-10.000000;;, - 6;3; 0.000000, 0.000000,-10.000000;;, - 7;3; 0.000000, 0.000000,-10.000000;;, - 8;3; 0.000000, 0.000000,-10.000000;;, - 9;3; 0.000000, 0.000000,-10.000000;;, - 10;3; 0.000000, 0.000000,-10.000000;;, - 11;3; 0.000000, 0.000000,-10.000000;;, - 12;3; 0.000000, 0.000000,-10.000000;;, - 13;3; 0.000000, 0.000000,-10.000000;;, - 14;3; 0.000000, 0.000000,-10.000000;;, - 15;3; 0.000000, 0.000000,-10.000000;;, - 16;3; 0.000000, 0.000000,-10.000000;;, - 17;3; 0.000000, 0.000000,-10.000000;;, - 18;3; 0.000000, 0.000000,-10.000000;;, - 19;3; 0.000000, 0.000000,-10.000000;;, - 20;3; 0.000000, 0.000000,-10.000000;;, - 21;3; 0.000000, 0.000000,-10.000000;;, - 22;3; 0.000000, 0.000000,-10.000000;;, - 23;3; 0.000000, 0.000000,-10.000000;;, - 24;3; 0.000000, 0.000000,-10.000000;;, - 25;3; 0.000000, 0.000000,-10.000000;;, - 26;3; 0.000000, 0.000000,-10.000000;;, - 27;3; 0.000000, 0.000000,-10.000000;;, - 28;3; 0.000000, 0.000000,-10.000000;;, - 29;3; 0.000000, 0.000000,-10.000000;;, - 30;3; 0.000000, 0.000000,-10.000000;;, - 31;3; 0.000000, 0.000000,-10.000000;;, - 32;3; 0.000000, 0.000000,-10.000000;;, - 33;3; 0.000000, 0.000000,-10.000000;;, - 34;3; 0.000000, 0.000000,-10.000000;;, - 35;3; 0.000000, 0.000000,-10.000000;;, - 36;3; 0.000000, 0.000000,-10.000000;;, - 37;3; 0.000000, 0.000000,-10.000000;;, - 38;3; 0.000000, 0.000000,-10.000000;;, - 39;3; 0.000000, 0.000000,-10.000000;;, - 40;3; 0.000000, 0.000000,-10.000000;;, - 41;3; 0.000000, 0.000000,-10.000000;;, - 42;3; 0.000000, 0.000000,-10.000000;;, - 43;3; 0.000000, 0.000000,-10.000000;;, - 44;3; 0.000000, 0.000000,-10.000000;;, - 45;3; 0.000000, 0.000000,-10.000000;;, - 46;3; 0.000000, 0.000000,-10.000000;;, - 47;3; 0.000000, 0.000000,-10.000000;;, - 48;3; 0.000000, 0.000000,-10.000000;;, - 49;3; 0.000000, 0.000000,-10.000000;;, - 50;3; 0.000000, 0.000000,-10.000000;;, - 51;3; 0.000000, 0.000000,-10.000000;;, - 52;3; 0.000000, 0.000000,-10.000000;;, - 53;3; 0.000000, 0.000000,-10.000000;;, - 54;3; 0.000000, 0.000000,-10.000000;;, - 55;3; 0.000000, 0.000000,-10.000000;;, - 56;3; 0.000000, 0.000000,-10.000000;;, - 57;3; 0.000000, 0.000000,-10.000000;;, - 58;3; 0.000000, 0.000000,-10.000000;;, - 59;3; 0.000000, 0.000000,-10.000000;;, - 60;3; 0.000000, 0.000000,-10.000000;;, - 61;3; 0.000000, 0.000000,-10.000000;;, - 62;3; 0.000000, 0.000000,-10.000000;;, - 63;3; 0.000000, 0.000000,-10.000000;;, - 64;3; 0.000000, 0.000000,-10.000000;;, - 65;3; 0.000000, 0.000000,-10.000000;;, - 66;3; 0.000000, 0.000000,-10.000000;;, - 67;3; 0.000000, 0.000000,-10.000000;;, - 68;3; 0.000000, 0.000000,-10.000000;;, - 69;3; 0.000000, 0.000000,-10.000000;;, - 70;3; 0.000000, 0.000000,-10.000000;;, - 71;3; 0.000000, 0.000000,-10.000000;;, - 72;3; 0.000000, 0.000000,-10.000000;;, - 73;3; 0.000000, 0.000000,-10.000000;;, - 74;3; 0.000000, 0.000000,-10.000000;;, - 75;3; 0.000000, 0.000000,-10.000000;;, - 76;3; 0.000000, 0.000000,-10.000000;;, - 77;3; 0.000000, 0.000000,-10.000000;;, - 78;3; 0.000000, 0.000000,-10.000000;;, - 79;3; 0.000000, 0.000000,-10.000000;;, - 80;3; 0.000000, 0.000000,-10.000000;;, - 81;3; 0.000000, 0.000000,-10.000000;;, - 82;3; 0.000000, 0.000000,-10.000000;;, - 83;3; 0.000000, 0.000000,-10.000000;;, - 84;3; 0.000000, 0.000000,-10.000000;;, - 85;3; 0.000000, 0.000000,-10.000000;;, - 86;3; 0.000000, 0.000000,-10.000000;;, - 87;3; 0.000000, 0.000000,-10.000000;;, - 88;3; 0.000000, 0.000000,-10.000000;;, - 89;3; 0.000000, 0.000000,-10.000000;;, - 90;3; 0.000000, 0.000000,-10.000000;;, - 91;3; 0.000000, 0.000000,-10.000000;;, - 92;3; 0.000000, 0.000000,-10.000000;;, - 93;3; 0.000000, 0.000000,-10.000000;;, - 94;3; 0.000000, 0.000000,-10.000000;;, - 95;3; 0.000000, 0.000000,-10.000000;;, - 96;3; 0.000000, 0.000000,-10.000000;;, - 97;3; 0.000000, 0.000000,-10.000000;;, - 98;3; 0.000000, 0.000000,-10.000000;;, - 99;3; 0.000000, 0.000000,-10.000000;;, - 100;3; 0.000000, 0.000000,-10.000000;;, - 101;3; 0.000000, 0.000000,-10.000000;;, - 102;3; 0.000000, 0.000000,-10.000000;;, - 103;3; 0.000000, 0.000000,-10.000000;;, - 104;3; 0.000000, 0.000000,-10.000000;;, - 105;3; 0.000000, 0.000000,-10.000000;;, - 106;3; 0.000000, 0.000000,-10.000000;;, - 107;3; 0.000000, 0.000000,-10.000000;;, - 108;3; 0.000000, 0.000000,-10.000000;;, - 109;3; 0.000000, 0.000000,-10.000000;;, - 110;3; 0.000000, 0.000000,-10.000000;;, - 111;3; 0.000000, 0.000000,-10.000000;;, - 112;3; 0.000000, 0.000000,-10.000000;;, - 113;3; 0.000000, 0.000000,-10.000000;;, - 114;3; 0.000000, 0.000000,-10.000000;;, - 115;3; 0.000000, 0.000000,-10.000000;;, - 116;3; 0.000000, 0.000000,-10.000000;;, - 117;3; 0.000000, 0.000000,-10.000000;;, - 118;3; 0.000000, 0.000000,-10.000000;;, - 119;3; 0.000000, 0.000000,-10.000000;;, - 120;3; 0.000000, 0.000000,-10.000000;;, - 121;3; 0.000000, 0.000000,-10.000000;;, - 122;3; 0.000000, 0.000000,-10.000000;;, - 123;3; 0.000000, 0.000000,-10.000000;;, - 124;3; 0.000000, 0.000000,-10.000000;;, - 125;3; 0.000000, 0.000000,-10.000000;;, - 126;3; 0.000000, 0.000000,-10.000000;;, - 127;3; 0.000000, 0.000000,-10.000000;;, - 128;3; 0.000000, 0.000000,-10.000000;;, - 129;3; 0.000000, 0.000000,-10.000000;;, - 130;3; 0.000000, 0.000000,-10.000000;;, - 131;3; 0.000000, 0.000000,-10.000000;;, - 132;3; 0.000000, 0.000000,-10.000000;;, - 133;3; 0.000000, 0.000000,-10.000000;;, - 134;3; 0.000000, 0.000000,-10.000000;;, - 135;3; 0.000000, 0.000000,-10.000000;;, - 136;3; 0.000000, 0.000000,-10.000000;;, - 137;3; 0.000000, 0.000000,-10.000000;;, - 138;3; 0.000000, 0.000000,-10.000000;;, - 139;3; 0.000000, 0.000000,-10.000000;;, - 140;3; 0.000000, 0.000000,-10.000000;;, - 141;3; 0.000000, 0.000000,-10.000000;;, - 142;3; 0.000000, 0.000000,-10.000000;;, - 143;3; 0.000000, 0.000000,-10.000000;;, - 144;3; 0.000000, 0.000000,-10.000000;;, - 145;3; 0.000000, 0.000000,-10.000000;;, - 146;3; 0.000000, 0.000000,-10.000000;;, - 147;3; 0.000000, 0.000000,-10.000000;;, - 148;3; 0.000000, 0.000000,-10.000000;;, - 149;3; 0.000000, 0.000000,-10.000000;;, - 150;3; 0.000000, 0.000000,-10.000000;;, - 151;3; 0.000000, 0.000000,-10.000000;;, - 152;3; 0.000000, 0.000000,-10.000000;;, - 153;3; 0.000000, 0.000000,-10.000000;;, - 154;3; 0.000000, 0.000000,-10.000000;;, - 155;3; 0.000000, 0.000000,-10.000000;;, - 156;3; 0.000000, 0.000000,-10.000000;;, - 157;3; 0.000000, 0.000000,-10.000000;;, - 158;3; 0.000000, 0.000000,-10.000000;;, - 159;3; 0.000000, 0.000000,-10.000000;;, - 160;3; 0.000000, 0.000000,-10.000000;;, - 161;3; 0.000000, 0.000000,-10.000000;;, - 162;3; 0.000000, 0.000000,-10.000000;;, - 163;3; 0.000000, 0.000000,-10.000000;;, - 164;3; 0.000000, 0.000000,-10.000000;;, - 165;3; 0.000000, 0.000000,-10.000000;;, - 166;3; 0.000000, 0.000000,-10.000000;;, - 167;3; 0.000000, 0.000000,-10.000000;;, - 168;3; 0.000000, 0.000000,-10.000000;;, - 169;3; 0.000000, 0.000000,-10.000000;;, - 170;3; 0.000000, 0.000000,-10.000000;;, - 171;3; 0.000000, 0.000000,-10.000000;;, - 172;3; 0.000000, 0.000000,-10.000000;;, - 173;3; 0.000000, 0.000000,-10.000000;;, - 174;3; 0.000000, 0.000000,-10.000000;;, - 175;3; 0.000000, 0.000000,-10.000000;;, - 176;3; 0.000000, 0.000000,-10.000000;;, - 177;3; 0.000000, 0.000000,-10.000000;;, - 178;3; 0.000000, 0.000000,-10.000000;;, - 179;3; 0.000000, 0.000000,-10.000000;;, - 180;3; 0.000000, 0.000000,-10.000000;;, - 181;3; 0.000000, 0.000000,-10.000000;;, - 182;3; 0.000000, 0.000000,-10.000000;;, - 183;3; 0.000000, 0.000000,-10.000000;;, - 184;3; 0.000000, 0.000000,-10.000000;;, - 185;3; 0.000000, 0.000000,-10.000000;;, - 186;3; 0.000000, 0.000000,-10.000000;;, - 187;3; 0.000000, 0.000000,-10.000000;;, - 188;3; 0.000000, 0.000000,-10.000000;;, - 189;3; 0.000000, 0.000000,-10.000000;;, - 190;3; 0.000000, 0.000000,-10.000000;;, - 191;3; 0.000000, 0.000000,-10.000000;;, - 192;3; 0.000000, 0.000000,-10.000000;;, - 193;3; 0.000000, 0.000000,-10.000000;;, - 194;3; 0.000000, 0.000000,-10.000000;;, - 195;3; 0.000000, 0.000000,-10.000000;;, - 196;3; 0.000000, 0.000000,-10.000000;;, - 197;3; 0.000000, 0.000000,-10.000000;;, - 198;3; 0.000000, 0.000000,-10.000000;;, - 199;3; 0.000000, 0.000000,-10.000000;;, - 200;3; 0.000000, 0.000000,-10.000000;;, - 201;3; 0.000000, 0.000000,-10.000000;;, - 202;3; 0.000000, 0.000000,-10.000000;;, - 203;3; 0.000000, 0.000000,-10.000000;;, - 204;3; 0.000000, 0.000000,-10.000000;;, - 205;3; 0.000000, 0.000000,-10.000000;;, - 206;3; 0.000000, 0.000000,-10.000000;;, - 207;3; 0.000000, 0.000000,-10.000000;;, - 208;3; 0.000000, 0.000000,-10.000000;;, - 209;3; 0.000000, 0.000000,-10.000000;;, - 210;3; 0.000000, 0.000000,-10.000000;;, - 211;3; 0.000000, 0.000000,-10.000000;;, - 212;3; 0.000000, 0.000000,-10.000000;;, - 213;3; 0.000000, 0.000000,-10.000000;;, - 214;3; 0.000000, 0.000000,-10.000000;;, - 215;3; 0.000000, 0.000000,-10.000000;;, - 216;3; 0.000000, 0.000000,-10.000000;;, - 217;3; 0.000000, 0.000000,-10.000000;;, - 218;3; 0.000000, 0.000000,-10.000000;;, - 219;3; 0.000000, 0.000000,-10.000000;;, - 220;3; 0.000000, 0.000000,-10.000000;;; - } - } - Animation { - {Armature_Body} - AnimationKey { // Rotation - 0; - 221; - 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 1;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 2;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 3;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 4;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 5;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 6;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 7;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 8;4;-0.696414, 0.717342, 0.000000, 0.000000;;, - 9;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 10;4;-0.691349, 0.722192, 0.000000, 0.000000;;, - 11;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 12;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 13;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 14;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 15;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 16;4;-0.678392, 0.734595, 0.000000, 0.000000;;, - 17;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 18;4;-0.676289, 0.736608, 0.000000, 0.000000;;, - 19;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 20;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 21;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 22;4;-0.676289, 0.736608, 0.000000, 0.000000;;, - 23;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 24;4;-0.678392, 0.734595, 0.000000, 0.000000;;, - 25;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 26;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 27;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 28;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 29;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 30;4;-0.691349, 0.722192, 0.000000, 0.000000;;, - 31;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 32;4;-0.696414, 0.717342, 0.000000, 0.000000;;, - 33;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 34;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 35;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 36;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 37;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 38;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 39;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 41;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 42;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 43;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 44;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 45;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 46;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 47;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 48;4;-0.696414, 0.717342, 0.000000, 0.000000;;, - 49;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 50;4;-0.691349, 0.722192, 0.000000, 0.000000;;, - 51;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 52;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 53;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 54;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 55;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 56;4;-0.678392, 0.734595, 0.000000, 0.000000;;, - 57;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 58;4;-0.676289, 0.736608, 0.000000, 0.000000;;, - 59;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 60;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 61;4;-0.675754, 0.737121, 0.000000, 0.000000;;, - 62;4;-0.676212, 0.736682, 0.000000, 0.000000;;, - 63;4;-0.676927, 0.735998, 0.000000, 0.000000;;, - 64;4;-0.677865, 0.735100, 0.000000, 0.000000;;, - 65;4;-0.679001, 0.734013, 0.000000, 0.000000;;, - 66;4;-0.680312, 0.732757, 0.000000, 0.000000;;, - 67;4;-0.681780, 0.731352, 0.000000, 0.000000;;, - 68;4;-0.683387, 0.729813, 0.000000, 0.000000;;, - 69;4;-0.685121, 0.728154, 0.000000, 0.000000;;, - 70;4;-0.686966, 0.726388, 0.000000, 0.000000;;, - 71;4;-0.688910, 0.724526, 0.000000, 0.000000;;, - 72;4;-0.690941, 0.722582, 0.000000, 0.000000;;, - 73;4;-0.693046, 0.720567, 0.000000, 0.000000;;, - 74;4;-0.695210, 0.718495, 0.000000, 0.000000;;, - 75;4;-0.697417, 0.716383, 0.000000, 0.000000;;, - 76;4;-0.699643, 0.714251, 0.000000, 0.000000;;, - 77;4;-0.701856, 0.712134, 0.000000, 0.000000;;, - 78;4;-0.703995, 0.710085, 0.000000, 0.000000;;, - 79;4;-0.705928, 0.708235, 0.000000, 0.000000;;, - 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 82;4;-0.705928, 0.708235, 0.000000, 0.000000;;, - 83;4;-0.703995, 0.710085, 0.000000, 0.000000;;, - 84;4;-0.701856, 0.712134, 0.000000, 0.000000;;, - 85;4;-0.699643, 0.714251, 0.000000, 0.000000;;, - 86;4;-0.697417, 0.716383, 0.000000, 0.000000;;, - 87;4;-0.695210, 0.718495, 0.000000, 0.000000;;, - 88;4;-0.693046, 0.720567, 0.000000, 0.000000;;, - 89;4;-0.690941, 0.722582, 0.000000, 0.000000;;, - 90;4;-0.688910, 0.724526, 0.000000, 0.000000;;, - 91;4;-0.686966, 0.726388, 0.000000, 0.000000;;, - 92;4;-0.685121, 0.728154, 0.000000, 0.000000;;, - 93;4;-0.683387, 0.729813, 0.000000, 0.000000;;, - 94;4;-0.681780, 0.731352, 0.000000, 0.000000;;, - 95;4;-0.680312, 0.732757, 0.000000, 0.000000;;, - 96;4;-0.679001, 0.734013, 0.000000, 0.000000;;, - 97;4;-0.677865, 0.735100, 0.000000, 0.000000;;, - 98;4;-0.676927, 0.735998, 0.000000, 0.000000;;, - 99;4;-0.676212, 0.736682, 0.000000, 0.000000;;, - 100;4;-0.675754, 0.737121, 0.000000, 0.000000;;, - 101;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 102;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 103;4;-0.676289, 0.736608, 0.000000, 0.000000;;, - 104;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 105;4;-0.678392, 0.734595, 0.000000, 0.000000;;, - 106;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 107;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 108;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 109;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 110;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 111;4;-0.691349, 0.722192, 0.000000, 0.000000;;, - 112;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 113;4;-0.696414, 0.717342, 0.000000, 0.000000;;, - 114;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 115;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 116;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 117;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 118;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 119;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 120;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 122;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 123;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 124;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 125;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 126;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 127;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 128;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 129;4;-0.696414, 0.717342, 0.000000, 0.000000;;, - 130;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 131;4;-0.691349, 0.722192, 0.000000, 0.000000;;, - 132;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 133;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 134;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 135;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 136;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 137;4;-0.678392, 0.734595, 0.000000, 0.000000;;, - 138;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 139;4;-0.676289, 0.736608, 0.000000, 0.000000;;, - 140;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 141;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 142;4;-0.675754, 0.737121, 0.000000, 0.000000;;, - 143;4;-0.676211, 0.736683, 0.000000, 0.000000;;, - 144;4;-0.676923, 0.736001, 0.000000, 0.000000;;, - 145;4;-0.677857, 0.735107, 0.000000, 0.000000;;, - 146;4;-0.678987, 0.734026, 0.000000, 0.000000;;, - 147;4;-0.680291, 0.732778, 0.000000, 0.000000;;, - 148;4;-0.681750, 0.731381, 0.000000, 0.000000;;, - 149;4;-0.683349, 0.729852, 0.000000, 0.000000;;, - 150;4;-0.685071, 0.728203, 0.000000, 0.000000;;, - 151;4;-0.686905, 0.726448, 0.000000, 0.000000;;, - 152;4;-0.688838, 0.724598, 0.000000, 0.000000;;, - 153;4;-0.690858, 0.722664, 0.000000, 0.000000;;, - 154;4;-0.692953, 0.720659, 0.000000, 0.000000;;, - 155;4;-0.695109, 0.718596, 0.000000, 0.000000;;, - 156;4;-0.697310, 0.716489, 0.000000, 0.000000;;, - 157;4;-0.699536, 0.714358, 0.000000, 0.000000;;, - 158;4;-0.701754, 0.712235, 0.000000, 0.000000;;, - 159;4;-0.703909, 0.710171, 0.000000, 0.000000;;, - 160;4;-0.705875, 0.708288, 0.000000, 0.000000;;, - 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 162;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 163;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 164;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 165;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 166;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 167;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 180;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 181;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 182;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 183;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 184;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 185;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 186;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 187;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 188;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 189;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 190;4;-0.709789, 0.704305, 0.000000, 0.000000;;, - 191;4;-0.717343, 0.696414, 0.000000, 0.000000;;, - 192;4;-0.727042, 0.686283, 0.000000, 0.000000;;, - 193;4;-0.734596, 0.678392, 0.000000, 0.000000;;, - 194;4;-0.737277, 0.675590, 0.000000, 0.000000;;, - 195;4;-0.734596, 0.678392, 0.000000, 0.000000;;, - 196;4;-0.727042, 0.686283, 0.000000, 0.000000;;, - 197;4;-0.717343, 0.696414, 0.000000, 0.000000;;, - 198;4;-0.709789, 0.704305, 0.000000, 0.000000;;, - 199;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 200;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 201;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 202;4;-0.696414, 0.717342, 0.000000, 0.000000;;, - 203;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 204;4;-0.678392, 0.734595, 0.000000, 0.000000;;, - 205;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 206;4;-0.681074, 0.731794, 0.000000, 0.000000;;, - 207;4;-0.696519, 0.716349, 0.000000, 0.000000;;, - 208;4;-0.716349, 0.696518, 0.000000, 0.000000;;, - 209;4;-0.731794, 0.681074, 0.000000, 0.000000;;, - 210;4;-0.737277, 0.675590, 0.000000, 0.000000;;, - 211;4;-0.731794, 0.681074, 0.000000, 0.000000;;, - 212;4;-0.716349, 0.696518, 0.000000, 0.000000;;, - 213;4;-0.696518, 0.716349, 0.000000, 0.000000;;, - 214;4;-0.681074, 0.731794, 0.000000, 0.000000;;, - 215;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 216;4;-0.678392, 0.734595, 0.000000, 0.000000;;, - 217;4;-0.686282, 0.727042, 0.000000, 0.000000;;, - 218;4;-0.696414, 0.717343, 0.000000, 0.000000;;, - 219;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 220;4;-0.707107, 0.707107, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 221; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 221; - 0;3;-0.000000, 0.000000, 6.750000;;, - 1;3;-0.000000, 0.000000, 6.750000;;, - 2;3;-0.000000, 0.000000, 6.750000;;, - 3;3;-0.000000, 0.000000, 6.750000;;, - 4;3;-0.000000, 0.000000, 6.750000;;, - 5;3;-0.000000, 0.000000, 6.750000;;, - 6;3;-0.000000, 0.000000, 6.750000;;, - 7;3;-0.000000, 0.000000, 6.750000;;, - 8;3;-0.000000, 0.000000, 6.750000;;, - 9;3;-0.000000, 0.000000, 6.750000;;, - 10;3;-0.000000, 0.000000, 6.750000;;, - 11;3;-0.000000, 0.000000, 6.750000;;, - 12;3;-0.000000, 0.000000, 6.750000;;, - 13;3;-0.000000, 0.000000, 6.750000;;, - 14;3;-0.000000, 0.000000, 6.750000;;, - 15;3;-0.000000, 0.000000, 6.750000;;, - 16;3;-0.000000, 0.000000, 6.750000;;, - 17;3;-0.000000, 0.000000, 6.750000;;, - 18;3;-0.000000, 0.000000, 6.750000;;, - 19;3;-0.000000, 0.000000, 6.750000;;, - 20;3;-0.000000, 0.000000, 6.750000;;, - 21;3;-0.000000, 0.000000, 6.750000;;, - 22;3;-0.000000, 0.000000, 6.750000;;, - 23;3;-0.000000, 0.000000, 6.750000;;, - 24;3;-0.000000, 0.000000, 6.750000;;, - 25;3;-0.000000, 0.000000, 6.750000;;, - 26;3;-0.000000, 0.000000, 6.750000;;, - 27;3;-0.000000, 0.000000, 6.750000;;, - 28;3;-0.000000, 0.000000, 6.750000;;, - 29;3;-0.000000, 0.000000, 6.750000;;, - 30;3;-0.000000, 0.000000, 6.750000;;, - 31;3;-0.000000, 0.000000, 6.750000;;, - 32;3;-0.000000, 0.000000, 6.750000;;, - 33;3;-0.000000, 0.000000, 6.750000;;, - 34;3;-0.000000, 0.000000, 6.750000;;, - 35;3;-0.000000, 0.000000, 6.750000;;, - 36;3;-0.000000, 0.000000, 6.750000;;, - 37;3;-0.000000, 0.000000, 6.750000;;, - 38;3;-0.000000, 0.000000, 6.750000;;, - 39;3;-0.000000, 0.000000, 6.750000;;, - 40;3;-0.000000, 0.000000, 6.750000;;, - 41;3;-0.000000, 0.000000, 6.750000;;, - 42;3;-0.000000, 0.000000, 6.750000;;, - 43;3;-0.000000, 0.000000, 6.750000;;, - 44;3;-0.000000, 0.000000, 6.750000;;, - 45;3;-0.000000, 0.000000, 6.750000;;, - 46;3;-0.000000, 0.000000, 6.750000;;, - 47;3;-0.000000, 0.000000, 6.750000;;, - 48;3;-0.000000, 0.000000, 6.750000;;, - 49;3;-0.000000, 0.000000, 6.750000;;, - 50;3;-0.000000, 0.000000, 6.750000;;, - 51;3;-0.000000, 0.000000, 6.750000;;, - 52;3;-0.000000, 0.000000, 6.750000;;, - 53;3;-0.000000, 0.000000, 6.750000;;, - 54;3;-0.000000, 0.000000, 6.750000;;, - 55;3;-0.000000, 0.000000, 6.750000;;, - 56;3;-0.000000, 0.000000, 6.750000;;, - 57;3;-0.000000, 0.000000, 6.750000;;, - 58;3;-0.000000, 0.000000, 6.750000;;, - 59;3;-0.000000, 0.000000, 6.750000;;, - 60;3;-0.000000, 0.000000, 6.750000;;, - 61;3;-0.000000, 0.000000, 6.750000;;, - 62;3;-0.000000, 0.000000, 6.750000;;, - 63;3;-0.000000, 0.000000, 6.750000;;, - 64;3;-0.000000, 0.000000, 6.750000;;, - 65;3;-0.000000, 0.000000, 6.750000;;, - 66;3;-0.000000, 0.000000, 6.750000;;, - 67;3;-0.000000, 0.000000, 6.750000;;, - 68;3;-0.000000, 0.000000, 6.750000;;, - 69;3;-0.000000, 0.000000, 6.750000;;, - 70;3;-0.000000, 0.000000, 6.750000;;, - 71;3;-0.000000, 0.000000, 6.750000;;, - 72;3;-0.000000, 0.000000, 6.750000;;, - 73;3;-0.000000, 0.000000, 6.750000;;, - 74;3;-0.000000, 0.000000, 6.750000;;, - 75;3;-0.000000, 0.000000, 6.750000;;, - 76;3;-0.000000, 0.000000, 6.750000;;, - 77;3;-0.000000, 0.000000, 6.750000;;, - 78;3;-0.000000, 0.000000, 6.750000;;, - 79;3;-0.000000, 0.000000, 6.750000;;, - 80;3;-0.000000, 0.000000, 6.750000;;, - 81;3;-0.000000, 0.000000, 1.000000;;, - 82;3;-0.000000, 0.000000, 1.000000;;, - 83;3;-0.000000, 0.000000, 1.000000;;, - 84;3;-0.000000, 0.000000, 1.000000;;, - 85;3;-0.000000, 0.000000, 1.000000;;, - 86;3;-0.000000, 0.000000, 1.000000;;, - 87;3;-0.000000, 0.000000, 1.000000;;, - 88;3;-0.000000, 0.000000, 1.000000;;, - 89;3;-0.000000, 0.000000, 1.000000;;, - 90;3;-0.000000, 0.000000, 1.000000;;, - 91;3;-0.000000, 0.000000, 1.000000;;, - 92;3;-0.000000, 0.000000, 1.000000;;, - 93;3;-0.000000, 0.000000, 1.000000;;, - 94;3;-0.000000, 0.000000, 1.000000;;, - 95;3;-0.000000, 0.000000, 1.000000;;, - 96;3;-0.000000, 0.000000, 1.000000;;, - 97;3;-0.000000, 0.000000, 1.000000;;, - 98;3;-0.000000, 0.000000, 1.000000;;, - 99;3;-0.000000, 0.000000, 1.000000;;, - 100;3;-0.000000, 0.000000, 1.000000;;, - 101;3;-0.000000, 0.000000, 1.000000;;, - 102;3;-0.000000, 0.000000, 1.000000;;, - 103;3;-0.000000, 0.000000, 1.000000;;, - 104;3;-0.000000, 0.000000, 1.000000;;, - 105;3;-0.000000, 0.000000, 1.000000;;, - 106;3;-0.000000, 0.000000, 1.000000;;, - 107;3;-0.000000, 0.000000, 1.000000;;, - 108;3;-0.000000, 0.000000, 1.000000;;, - 109;3;-0.000000, 0.000000, 1.000000;;, - 110;3;-0.000000, 0.000000, 1.000000;;, - 111;3;-0.000000, 0.000000, 1.000000;;, - 112;3;-0.000000, 0.000000, 1.000000;;, - 113;3;-0.000000, 0.000000, 1.000000;;, - 114;3;-0.000000, 0.000000, 1.000000;;, - 115;3;-0.000000, 0.000000, 1.000000;;, - 116;3;-0.000000, 0.000000, 1.000000;;, - 117;3;-0.000000, 0.000000, 1.000000;;, - 118;3;-0.000000, 0.000000, 1.000000;;, - 119;3;-0.000000, 0.000000, 1.000000;;, - 120;3;-0.000000, 0.000000, 1.000000;;, - 121;3;-0.000000, 0.000000, 1.000000;;, - 122;3;-0.000000, 0.000000, 1.000000;;, - 123;3;-0.000000, 0.000000, 1.000000;;, - 124;3;-0.000000, 0.000000, 1.000000;;, - 125;3;-0.000000, 0.000000, 1.000000;;, - 126;3;-0.000000, 0.000000, 1.000000;;, - 127;3;-0.000000, 0.000000, 1.000000;;, - 128;3;-0.000000, 0.000000, 1.000000;;, - 129;3;-0.000000, 0.000000, 1.000000;;, - 130;3;-0.000000, 0.000000, 1.000000;;, - 131;3;-0.000000, 0.000000, 1.000000;;, - 132;3;-0.000000, 0.000000, 1.000000;;, - 133;3;-0.000000, 0.000000, 1.000000;;, - 134;3;-0.000000, 0.000000, 1.000000;;, - 135;3;-0.000000, 0.000000, 1.000000;;, - 136;3;-0.000000, 0.000000, 1.000000;;, - 137;3;-0.000000, 0.000000, 1.000000;;, - 138;3;-0.000000, 0.000000, 1.000000;;, - 139;3;-0.000000, 0.000000, 1.000000;;, - 140;3;-0.000000, 0.000000, 1.000000;;, - 141;3;-0.000000, 0.000000, 1.000000;;, - 142;3;-0.000000, 0.000000, 1.000000;;, - 143;3;-0.000000, 0.000000, 1.000000;;, - 144;3;-0.000000, 0.000000, 1.000000;;, - 145;3;-0.000000, 0.000000, 1.000000;;, - 146;3;-0.000000, 0.000000, 1.000000;;, - 147;3;-0.000000, 0.000000, 1.000000;;, - 148;3;-0.000000, 0.000000, 1.000000;;, - 149;3;-0.000000, 0.000000, 1.000000;;, - 150;3;-0.000000, 0.000000, 1.000000;;, - 151;3;-0.000000, 0.000000, 1.000000;;, - 152;3;-0.000000, 0.000000, 1.000000;;, - 153;3;-0.000000, 0.000000, 1.000000;;, - 154;3;-0.000000, 0.000000, 1.000000;;, - 155;3;-0.000000, 0.000000, 1.000000;;, - 156;3;-0.000000, 0.000000, 1.000000;;, - 157;3;-0.000000, 0.000000, 1.000000;;, - 158;3;-0.000000, 0.000000, 1.000000;;, - 159;3;-0.000000, 0.000000, 1.000000;;, - 160;3;-0.000000, 0.000000, 1.000000;;, - 161;3;-0.000000, 0.000000, 1.000000;;, - 162;3;-0.000000, 2.000001, 1.000000;;, - 163;3;-0.000000, 2.000001, 1.000000;;, - 164;3;-0.000000, 2.000001, 1.000000;;, - 165;3;-0.000000, 2.000001, 1.000000;;, - 166;3;-0.000000, 2.000001, 1.000000;;, - 167;3;-0.000000, 2.000001, 1.000000;;, - 168;3;-0.000000, 0.000000, 6.750000;;, - 169;3;-0.000000, 0.000000, 6.750000;;, - 170;3;-0.000000, 0.000000, 6.750000;;, - 171;3;-0.000000, 0.000000, 6.750000;;, - 172;3;-0.000000, 0.000000, 6.750000;;, - 173;3;-0.000000, 0.000000, 6.750000;;, - 174;3;-0.000000, 0.000000, 6.750000;;, - 175;3;-0.000000, 0.000000, 6.750000;;, - 176;3;-0.000000, 0.000000, 6.750000;;, - 177;3;-0.000000, 0.000000, 6.750000;;, - 178;3;-0.000000, 0.000000, 6.750000;;, - 179;3;-0.000000, 0.000000, 6.750000;;, - 180;3;-0.000000, 0.000000, 6.750000;;, - 181;3;-0.000000, 0.000000, 6.750000;;, - 182;3;-0.000000, 0.000000, 6.750000;;, - 183;3;-0.000000, 0.000000, 6.750000;;, - 184;3;-0.000000, 0.000000, 6.750000;;, - 185;3;-0.000000, 0.000000, 6.750000;;, - 186;3;-0.000000, 0.000000, 6.750000;;, - 187;3;-0.000000, 0.000000, 6.750000;;, - 188;3;-0.000000, 0.000000, 6.750000;;, - 189;3;-0.000000, 0.000000, 6.750000;;, - 190;3;-0.000000, 0.000000, 6.750000;;, - 191;3;-0.000000, 0.000000, 6.750000;;, - 192;3;-0.000000, 0.000000, 6.750000;;, - 193;3;-0.000000, 0.000000, 6.750000;;, - 194;3;-0.000000, 0.000000, 6.750000;;, - 195;3;-0.000000, 0.000000, 6.750000;;, - 196;3;-0.000000, 0.000000, 6.750000;;, - 197;3;-0.000000, 0.000000, 6.750000;;, - 198;3;-0.000000, 0.000000, 6.750000;;, - 199;3;-0.000000, 0.000000, 6.750000;;, - 200;3;-0.000000, 0.000000, 6.750000;;, - 201;3;-0.000000, 0.000000, 6.750000;;, - 202;3;-0.000000, 0.000000, 6.750000;;, - 203;3;-0.000000, 0.000000, 6.750000;;, - 204;3;-0.000000, 0.000000, 6.750000;;, - 205;3;-0.000000, 0.000000, 6.750000;;, - 206;3;-0.000000, 0.000000, 6.750000;;, - 207;3;-0.000000, 0.000000, 6.750000;;, - 208;3;-0.000000, 0.000000, 6.750000;;, - 209;3;-0.000000, 0.000000, 6.750000;;, - 210;3;-0.000000, 0.000000, 6.750000;;, - 211;3;-0.000000, 0.000000, 6.750000;;, - 212;3;-0.000000, 0.000000, 6.750000;;, - 213;3;-0.000000, 0.000000, 6.750000;;, - 214;3;-0.000000, 0.000000, 6.750000;;, - 215;3;-0.000000, 0.000000, 6.750000;;, - 216;3;-0.000000, 0.000000, 6.750000;;, - 217;3;-0.000000, 0.000000, 6.750000;;, - 218;3;-0.000000, 0.000000, 6.750000;;, - 219;3;-0.000000, 0.000000, 6.750000;;, - 220;3;-0.000000, 0.000000, 6.750000;;; - } - } - Animation { - {Armature_Head} - AnimationKey { // Rotation - 0; - 221; - 0;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 1;4;-0.000120,-0.000005, 0.999993,-0.000240;;, - 2;4;-0.000483,-0.000021, 0.999974,-0.000967;;, - 3;4;-0.001090,-0.000048, 0.999941,-0.002181;;, - 4;4;-0.001937,-0.000085, 0.999894,-0.003876;;, - 5;4;-0.003014,-0.000132, 0.999835,-0.006030;;, - 6;4;-0.004301,-0.000188, 0.999765,-0.008607;;, - 7;4;-0.005773,-0.000252, 0.999685,-0.011553;;, - 8;4;-0.007394,-0.000323, 0.999596,-0.014795;;, - 9;4;-0.009118,-0.000398, 0.999502,-0.018246;;, - 10;4;-0.010897,-0.000476, 0.999405,-0.021804;;, - 11;4;-0.012675,-0.000553, 0.999308,-0.025363;;, - 12;4;-0.014400,-0.000629, 0.999214,-0.028814;;, - 13;4;-0.016021,-0.000699, 0.999126,-0.032056;;, - 14;4;-0.017493,-0.000764, 0.999045,-0.035002;;, - 15;4;-0.018780,-0.000820, 0.998975,-0.037578;;, - 16;4;-0.019857,-0.000867, 0.998916,-0.039733;;, - 17;4;-0.020704,-0.000904, 0.998870,-0.041427;;, - 18;4;-0.021311,-0.000930, 0.998837,-0.042642;;, - 19;4;-0.021674,-0.000946, 0.998817,-0.043369;;, - 20;4;-0.021794,-0.000952, 0.998811,-0.043609;;, - 21;4;-0.021720,-0.000948, 0.998817,-0.043369;;, - 22;4;-0.021494,-0.000938, 0.998837,-0.042642;;, - 23;4;-0.021108,-0.000922, 0.998870,-0.041427;;, - 24;4;-0.020560,-0.000898, 0.998916,-0.039733;;, - 25;4;-0.019848,-0.000867, 0.998975,-0.037578;;, - 26;4;-0.018975,-0.000828, 0.999045,-0.035002;;, - 27;4;-0.017947,-0.000784, 0.999126,-0.032056;;, - 28;4;-0.016778,-0.000733, 0.999214,-0.028814;;, - 29;4;-0.015484,-0.000676, 0.999308,-0.025363;;, - 30;4;-0.014088,-0.000615, 0.999405,-0.021804;;, - 31;4;-0.012616,-0.000551, 0.999502,-0.018246;;, - 32;4;-0.011095,-0.000484, 0.999596,-0.014795;;, - 33;4;-0.009555,-0.000417, 0.999685,-0.011553;;, - 34;4;-0.008021,-0.000350, 0.999765,-0.008607;;, - 35;4;-0.006517,-0.000285, 0.999835,-0.006030;;, - 36;4;-0.005062,-0.000221, 0.999894,-0.003876;;, - 37;4;-0.003674,-0.000160, 0.999941,-0.002181;;, - 38;4;-0.002362,-0.000103, 0.999974,-0.000967;;, - 39;4;-0.001136,-0.000050, 0.999993,-0.000240;;, - 40;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 41;4; 0.001136, 0.000050, 0.999993,-0.000240;;, - 42;4; 0.002362, 0.000103, 0.999974,-0.000967;;, - 43;4; 0.003674, 0.000160, 0.999941,-0.002181;;, - 44;4; 0.005062, 0.000221, 0.999894,-0.003876;;, - 45;4; 0.006517, 0.000285, 0.999835,-0.006030;;, - 46;4; 0.008021, 0.000350, 0.999765,-0.008607;;, - 47;4; 0.009555, 0.000417, 0.999685,-0.011553;;, - 48;4; 0.011095, 0.000484, 0.999596,-0.014795;;, - 49;4; 0.012616, 0.000551, 0.999502,-0.018246;;, - 50;4; 0.014088, 0.000615, 0.999405,-0.021804;;, - 51;4; 0.015484, 0.000676, 0.999308,-0.025363;;, - 52;4; 0.016778, 0.000733, 0.999214,-0.028814;;, - 53;4; 0.017947, 0.000784, 0.999126,-0.032056;;, - 54;4; 0.018975, 0.000828, 0.999045,-0.035002;;, - 55;4; 0.019848, 0.000867, 0.998975,-0.037578;;, - 56;4; 0.020560, 0.000898, 0.998916,-0.039733;;, - 57;4; 0.021109, 0.000922, 0.998870,-0.041427;;, - 58;4; 0.021494, 0.000938, 0.998837,-0.042642;;, - 59;4; 0.021720, 0.000948, 0.998817,-0.043369;;, - 60;4; 0.021794, 0.000952, 0.998811,-0.043609;;, - 61;4; 0.021681, 0.000947, 0.998817,-0.043383;;, - 62;4; 0.021364, 0.000933, 0.998834,-0.042748;;, - 63;4; 0.020870, 0.000911, 0.998861,-0.041759;;, - 64;4; 0.020221, 0.000883, 0.998896,-0.040461;;, - 65;4; 0.019436, 0.000849, 0.998939,-0.038890;;, - 66;4; 0.018529, 0.000809, 0.998989,-0.037076;;, - 67;4; 0.017514, 0.000765, 0.999044,-0.035045;;, - 68;4; 0.016402, 0.000716, 0.999105,-0.032820;;, - 69;4; 0.015204, 0.000664, 0.999170,-0.030422;;, - 70;4; 0.013928, 0.000608, 0.999240,-0.027869;;, - 71;4; 0.012583, 0.000549, 0.999313,-0.025178;;, - 72;4; 0.011179, 0.000488, 0.999390,-0.022368;;, - 73;4; 0.009723, 0.000425, 0.999469,-0.019456;;, - 74;4; 0.008227, 0.000359, 0.999551,-0.016461;;, - 75;4; 0.006701, 0.000293, 0.999634,-0.013408;;, - 76;4; 0.005161, 0.000225, 0.999718,-0.010327;;, - 77;4; 0.003631, 0.000159, 0.999802,-0.007266;;, - 78;4; 0.002152, 0.000094, 0.999883,-0.004305;;, - 79;4; 0.000815, 0.000036, 0.999956,-0.001631;;, - 80;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 81;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 82;4;-0.000815,-0.000036, 0.999956,-0.001631;;, - 83;4;-0.002152,-0.000094, 0.999883,-0.004305;;, - 84;4;-0.003631,-0.000159, 0.999802,-0.007266;;, - 85;4;-0.005161,-0.000225, 0.999718,-0.010327;;, - 86;4;-0.006701,-0.000293, 0.999634,-0.013408;;, - 87;4;-0.008226,-0.000359, 0.999551,-0.016461;;, - 88;4;-0.009723,-0.000425, 0.999469,-0.019456;;, - 89;4;-0.011179,-0.000488, 0.999390,-0.022368;;, - 90;4;-0.012583,-0.000549, 0.999313,-0.025178;;, - 91;4;-0.013928,-0.000608, 0.999240,-0.027869;;, - 92;4;-0.015204,-0.000664, 0.999170,-0.030422;;, - 93;4;-0.016402,-0.000716, 0.999105,-0.032820;;, - 94;4;-0.017514,-0.000765, 0.999044,-0.035045;;, - 95;4;-0.018529,-0.000809, 0.998989,-0.037076;;, - 96;4;-0.019436,-0.000849, 0.998939,-0.038890;;, - 97;4;-0.020221,-0.000883, 0.998896,-0.040461;;, - 98;4;-0.020870,-0.000911, 0.998861,-0.041759;;, - 99;4;-0.021364,-0.000933, 0.998834,-0.042748;;, - 100;4;-0.021681,-0.000947, 0.998817,-0.043383;;, - 101;4;-0.021794,-0.000952, 0.998811,-0.043609;;, - 102;4;-0.021720,-0.000948, 0.998817,-0.043369;;, - 103;4;-0.021494,-0.000938, 0.998837,-0.042642;;, - 104;4;-0.021108,-0.000922, 0.998870,-0.041427;;, - 105;4;-0.020560,-0.000898, 0.998916,-0.039733;;, - 106;4;-0.019848,-0.000867, 0.998975,-0.037578;;, - 107;4;-0.018975,-0.000828, 0.999045,-0.035002;;, - 108;4;-0.017947,-0.000784, 0.999126,-0.032056;;, - 109;4;-0.016778,-0.000733, 0.999214,-0.028814;;, - 110;4;-0.015484,-0.000676, 0.999308,-0.025363;;, - 111;4;-0.014088,-0.000615, 0.999405,-0.021804;;, - 112;4;-0.012616,-0.000551, 0.999502,-0.018246;;, - 113;4;-0.011095,-0.000484, 0.999596,-0.014795;;, - 114;4;-0.009555,-0.000417, 0.999685,-0.011553;;, - 115;4;-0.008021,-0.000350, 0.999765,-0.008607;;, - 116;4;-0.006517,-0.000285, 0.999835,-0.006030;;, - 117;4;-0.005062,-0.000221, 0.999894,-0.003876;;, - 118;4;-0.003674,-0.000160, 0.999941,-0.002181;;, - 119;4;-0.002362,-0.000103, 0.999974,-0.000967;;, - 120;4;-0.001136,-0.000050, 0.999993,-0.000240;;, - 121;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 122;4; 0.001136, 0.000050, 0.999993,-0.000240;;, - 123;4; 0.002362, 0.000103, 0.999974,-0.000967;;, - 124;4; 0.003674, 0.000160, 0.999941,-0.002181;;, - 125;4; 0.005062, 0.000221, 0.999894,-0.003876;;, - 126;4; 0.006517, 0.000285, 0.999835,-0.006030;;, - 127;4; 0.008021, 0.000350, 0.999765,-0.008607;;, - 128;4; 0.009555, 0.000417, 0.999685,-0.011553;;, - 129;4; 0.011095, 0.000484, 0.999596,-0.014795;;, - 130;4; 0.012616, 0.000551, 0.999502,-0.018246;;, - 131;4; 0.014088, 0.000615, 0.999405,-0.021804;;, - 132;4; 0.015484, 0.000676, 0.999308,-0.025363;;, - 133;4; 0.016778, 0.000733, 0.999214,-0.028814;;, - 134;4; 0.017947, 0.000784, 0.999126,-0.032056;;, - 135;4; 0.018975, 0.000828, 0.999045,-0.035002;;, - 136;4; 0.019848, 0.000867, 0.998975,-0.037578;;, - 137;4; 0.020560, 0.000898, 0.998916,-0.039733;;, - 138;4; 0.021109, 0.000922, 0.998870,-0.041427;;, - 139;4; 0.021494, 0.000938, 0.998837,-0.042642;;, - 140;4; 0.021720, 0.000948, 0.998817,-0.043369;;, - 141;4; 0.021794, 0.000952, 0.998811,-0.043609;;, - 142;4; 0.021681, 0.000947, 0.998817,-0.043383;;, - 143;4; 0.021364, 0.000933, 0.998834,-0.042748;;, - 144;4; 0.020870, 0.000911, 0.998861,-0.041759;;, - 145;4; 0.020221, 0.000883, 0.998896,-0.040461;;, - 146;4; 0.019436, 0.000849, 0.998939,-0.038890;;, - 147;4; 0.018529, 0.000809, 0.998989,-0.037076;;, - 148;4; 0.017514, 0.000765, 0.999044,-0.035045;;, - 149;4; 0.016402, 0.000716, 0.999105,-0.032820;;, - 150;4; 0.015204, 0.000664, 0.999170,-0.030422;;, - 151;4; 0.013928, 0.000608, 0.999240,-0.027869;;, - 152;4; 0.012583, 0.000549, 0.999313,-0.025178;;, - 153;4; 0.011179, 0.000488, 0.999390,-0.022368;;, - 154;4; 0.009723, 0.000425, 0.999469,-0.019456;;, - 155;4; 0.008227, 0.000359, 0.999551,-0.016461;;, - 156;4; 0.006701, 0.000293, 0.999634,-0.013408;;, - 157;4; 0.005161, 0.000225, 0.999718,-0.010327;;, - 158;4; 0.003631, 0.000159, 0.999802,-0.007266;;, - 159;4; 0.002152, 0.000094, 0.999883,-0.004305;;, - 160;4; 0.000815, 0.000036, 0.999956,-0.001631;;, - 161;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 162;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 163;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 164;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 165;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 166;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 167;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 168;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 169;4; 0.003877,-0.000000, 0.999915, 0.000000;;, - 170;4; 0.014799,-0.000000, 0.999677, 0.000000;;, - 171;4; 0.028821,-0.000000, 0.999371, 0.000000;;, - 172;4; 0.039742,-0.000000, 0.999133, 0.000000;;, - 173;4; 0.043619,-0.000000, 0.999048, 0.000000;;, - 174;4; 0.041150, 0.000000, 0.999133, 0.000000;;, - 175;4; 0.033580,-0.000000, 0.999371, 0.000000;;, - 176;4; 0.022207,-0.000000, 0.999677, 0.000000;;, - 177;4; 0.010132,-0.000000, 0.999915, 0.000000;;, - 178;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 179;4;-0.010132, 0.000000, 0.999915, 0.000000;;, - 180;4;-0.022206, 0.000000, 0.999677, 0.000000;;, - 181;4;-0.033580, 0.000000, 0.999371, 0.000000;;, - 182;4;-0.041150,-0.000000, 0.999133, 0.000000;;, - 183;4;-0.043619, 0.000000, 0.999048, 0.000000;;, - 184;4;-0.039742, 0.000000, 0.999133, 0.000000;;, - 185;4;-0.028821, 0.000000, 0.999371, 0.000000;;, - 186;4;-0.014798, 0.000000, 0.999677, 0.000000;;, - 187;4;-0.003877, 0.000000, 0.999915, 0.000000;;, - 188;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 189;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 190;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 191;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 192;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 193;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 194;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 195;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 196;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 197;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 198;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 199;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 200;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 201;4; 0.003877,-0.000000, 0.999915, 0.000000;;, - 202;4; 0.014799,-0.000000, 0.999677, 0.000000;;, - 203;4; 0.028821,-0.000000, 0.999371, 0.000000;;, - 204;4; 0.039742,-0.000000, 0.999133, 0.000000;;, - 205;4; 0.043619,-0.000000, 0.999048, 0.000000;;, - 206;4; 0.041150, 0.000000, 0.999133, 0.000000;;, - 207;4; 0.033580,-0.000000, 0.999371, 0.000000;;, - 208;4; 0.022207,-0.000000, 0.999677, 0.000000;;, - 209;4; 0.010132,-0.000000, 0.999915, 0.000000;;, - 210;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 211;4;-0.010132, 0.000000, 0.999915, 0.000000;;, - 212;4;-0.022206, 0.000000, 0.999677, 0.000000;;, - 213;4;-0.033580, 0.000000, 0.999371, 0.000000;;, - 214;4;-0.041150,-0.000000, 0.999133, 0.000000;;, - 215;4;-0.043619, 0.000000, 0.999048, 0.000000;;, - 216;4;-0.039742, 0.000000, 0.999133, 0.000000;;, - 217;4;-0.028821, 0.000000, 0.999371, 0.000000;;, - 218;4;-0.014799, 0.000000, 0.999677, 0.000000;;, - 219;4;-0.003877, 0.000000, 0.999915, 0.000000;;, - 220;4; 0.000000, 0.000000, 1.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 221; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 221; - 0;3; 0.000000, 6.750000,-0.000000;;, - 1;3; 0.000000, 6.750000, 0.000000;;, - 2;3; 0.000000, 6.750000,-0.000000;;, - 3;3; 0.000000, 6.750000, 0.000000;;, - 4;3; 0.000000, 6.750000, 0.000000;;, - 5;3; 0.000000, 6.750000, 0.000000;;, - 6;3; 0.000000, 6.750000, 0.000000;;, - 7;3; 0.000000, 6.750000, 0.000000;;, - 8;3; 0.000000, 6.750000,-0.000000;;, - 9;3; 0.000000, 6.750000,-0.000000;;, - 10;3; 0.000000, 6.750000,-0.000000;;, - 11;3; 0.000000, 6.750000,-0.000000;;, - 12;3; 0.000000, 6.750000, 0.000000;;, - 13;3; 0.000000, 6.750000,-0.000000;;, - 14;3; 0.000000, 6.750000, 0.000000;;, - 15;3; 0.000000, 6.750000,-0.000000;;, - 16;3; 0.000000, 6.750000,-0.000000;;, - 17;3; 0.000000, 6.750000,-0.000000;;, - 18;3; 0.000000, 6.750000,-0.000000;;, - 19;3; 0.000000, 6.750000, 0.000000;;, - 20;3; 0.000000, 6.750000,-0.000000;;, - 21;3; 0.000000, 6.750000, 0.000000;;, - 22;3; 0.000000, 6.750000,-0.000000;;, - 23;3; 0.000000, 6.750000,-0.000000;;, - 24;3; 0.000000, 6.750000,-0.000000;;, - 25;3; 0.000000, 6.750000, 0.000000;;, - 26;3; 0.000000, 6.750000, 0.000000;;, - 27;3; 0.000000, 6.750000, 0.000000;;, - 28;3; 0.000000, 6.750000, 0.000000;;, - 29;3; 0.000000, 6.750000,-0.000000;;, - 30;3; 0.000000, 6.750000,-0.000000;;, - 31;3; 0.000000, 6.750000, 0.000000;;, - 32;3; 0.000000, 6.750000, 0.000000;;, - 33;3; 0.000000, 6.750000,-0.000000;;, - 34;3; 0.000000, 6.750000,-0.000000;;, - 35;3; 0.000000, 6.750000, 0.000000;;, - 36;3; 0.000000, 6.750000, 0.000000;;, - 37;3; 0.000000, 6.750000, 0.000000;;, - 38;3; 0.000000, 6.750000,-0.000000;;, - 39;3; 0.000000, 6.750000, 0.000000;;, - 40;3; 0.000000, 6.750000,-0.000000;;, - 41;3; 0.000000, 6.750000, 0.000000;;, - 42;3; 0.000000, 6.750000, 0.000000;;, - 43;3; 0.000000, 6.750000, 0.000000;;, - 44;3; 0.000000, 6.750000, 0.000000;;, - 45;3; 0.000000, 6.750000,-0.000000;;, - 46;3; 0.000000, 6.750000,-0.000000;;, - 47;3; 0.000000, 6.750000, 0.000000;;, - 48;3; 0.000000, 6.750000,-0.000000;;, - 49;3; 0.000000, 6.750000,-0.000000;;, - 50;3; 0.000000, 6.750000,-0.000000;;, - 51;3; 0.000000, 6.750000,-0.000000;;, - 52;3; 0.000000, 6.750000, 0.000000;;, - 53;3; 0.000000, 6.750000, 0.000000;;, - 54;3; 0.000000, 6.750000,-0.000000;;, - 55;3; 0.000000, 6.750000, 0.000000;;, - 56;3; 0.000000, 6.750000,-0.000000;;, - 57;3; 0.000000, 6.750000,-0.000000;;, - 58;3; 0.000000, 6.750000,-0.000000;;, - 59;3; 0.000000, 6.750000, 0.000000;;, - 60;3; 0.000000, 6.750000,-0.000000;;, - 61;3; 0.000000, 6.750000,-0.000000;;, - 62;3; 0.000000, 6.750000, 0.000000;;, - 63;3; 0.000000, 6.750000, 0.000000;;, - 64;3; 0.000000, 6.750000, 0.000000;;, - 65;3; 0.000000, 6.750000, 0.000000;;, - 66;3; 0.000000, 6.750000, 0.000000;;, - 67;3; 0.000000, 6.750000,-0.000000;;, - 68;3; 0.000000, 6.750000, 0.000000;;, - 69;3; 0.000000, 6.750000,-0.000000;;, - 70;3; 0.000000, 6.750000, 0.000000;;, - 71;3; 0.000000, 6.750000, 0.000000;;, - 72;3; 0.000000, 6.750000, 0.000000;;, - 73;3; 0.000000, 6.750000,-0.000000;;, - 74;3; 0.000000, 6.750000,-0.000000;;, - 75;3; 0.000000, 6.750000, 0.000000;;, - 76;3; 0.000000, 6.750000, 0.000000;;, - 77;3; 0.000000, 6.750000,-0.000000;;, - 78;3; 0.000000, 6.750001,-0.000000;;, - 79;3; 0.000000, 6.750000, 0.000000;;, - 80;3; 0.000000, 6.750000,-0.000000;;, - 81;3; 0.000000, 6.750000, 0.000000;;, - 82;3; 0.000000, 6.750000, 0.000000;;, - 83;3; 0.000000, 6.750000, 0.000000;;, - 84;3; 0.000000, 6.750000, 0.000000;;, - 85;3; 0.000000, 6.750000,-0.000000;;, - 86;3; 0.000000, 6.750000, 0.000000;;, - 87;3; 0.000000, 6.750000,-0.000000;;, - 88;3; 0.000000, 6.750000, 0.000000;;, - 89;3; 0.000000, 6.750000,-0.000000;;, - 90;3; 0.000000, 6.750000,-0.000000;;, - 91;3; 0.000000, 6.750000, 0.000000;;, - 92;3; 0.000000, 6.750000,-0.000000;;, - 93;3; 0.000000, 6.750000, 0.000000;;, - 94;3; 0.000000, 6.750000,-0.000000;;, - 95;3; 0.000000, 6.750000, 0.000000;;, - 96;3; 0.000000, 6.750000,-0.000000;;, - 97;3; 0.000000, 6.750000, 0.000000;;, - 98;3; 0.000000, 6.750000,-0.000000;;, - 99;3; 0.000000, 6.750000,-0.000000;;, - 100;3; 0.000000, 6.750000, 0.000000;;, - 101;3; 0.000000, 6.750000,-0.000000;;, - 102;3; 0.000000, 6.750000, 0.000000;;, - 103;3; 0.000000, 6.750000,-0.000000;;, - 104;3; 0.000000, 6.750000, 0.000000;;, - 105;3; 0.000000, 6.750000,-0.000000;;, - 106;3; 0.000000, 6.750000,-0.000000;;, - 107;3; 0.000000, 6.750000, 0.000000;;, - 108;3; 0.000000, 6.750000, 0.000000;;, - 109;3; 0.000000, 6.750000,-0.000000;;, - 110;3; 0.000000, 6.750000,-0.000000;;, - 111;3; 0.000000, 6.750000,-0.000000;;, - 112;3; 0.000000, 6.750000,-0.000000;;, - 113;3; 0.000000, 6.750000,-0.000000;;, - 114;3; 0.000000, 6.750000,-0.000000;;, - 115;3; 0.000000, 6.750000,-0.000000;;, - 116;3; 0.000000, 6.750000,-0.000000;;, - 117;3; 0.000000, 6.750000,-0.000000;;, - 118;3; 0.000000, 6.750000, 0.000000;;, - 119;3; 0.000000, 6.750000,-0.000000;;, - 120;3; 0.000000, 6.750000, 0.000000;;, - 121;3; 0.000000, 6.750000, 0.000000;;, - 122;3; 0.000000, 6.750000, 0.000000;;, - 123;3; 0.000000, 6.750000,-0.000000;;, - 124;3; 0.000000, 6.750000,-0.000000;;, - 125;3; 0.000000, 6.750000,-0.000000;;, - 126;3; 0.000000, 6.750000, 0.000000;;, - 127;3; 0.000000, 6.750000,-0.000000;;, - 128;3; 0.000000, 6.750000, 0.000000;;, - 129;3; 0.000000, 6.750000,-0.000000;;, - 130;3; 0.000000, 6.750000, 0.000000;;, - 131;3; 0.000000, 6.750000, 0.000000;;, - 132;3; 0.000000, 6.750000,-0.000000;;, - 133;3; 0.000000, 6.750000,-0.000000;;, - 134;3; 0.000000, 6.750000, 0.000000;;, - 135;3; 0.000000, 6.750000, 0.000000;;, - 136;3; 0.000000, 6.750000,-0.000000;;, - 137;3; 0.000000, 6.750000, 0.000000;;, - 138;3; 0.000000, 6.750000,-0.000000;;, - 139;3; 0.000000, 6.750000, 0.000000;;, - 140;3; 0.000000, 6.750000,-0.000000;;, - 141;3; 0.000000, 6.750000,-0.000000;;, - 142;3; 0.000000, 6.750000,-0.000000;;, - 143;3; 0.000000, 6.750000,-0.000000;;, - 144;3; 0.000000, 6.750000, 0.000000;;, - 145;3; 0.000000, 6.750000,-0.000000;;, - 146;3; 0.000000, 6.750000, 0.000000;;, - 147;3; 0.000000, 6.750000, 0.000000;;, - 148;3; 0.000000, 6.750000,-0.000000;;, - 149;3; 0.000000, 6.750000,-0.000000;;, - 150;3; 0.000000, 6.750000,-0.000000;;, - 151;3; 0.000000, 6.750000,-0.000000;;, - 152;3; 0.000000, 6.750000,-0.000000;;, - 153;3; 0.000000, 6.750000, 0.000000;;, - 154;3; 0.000000, 6.750000,-0.000000;;, - 155;3; 0.000000, 6.750000,-0.000000;;, - 156;3; 0.000000, 6.750000,-0.000000;;, - 157;3; 0.000000, 6.750000,-0.000000;;, - 158;3; 0.000000, 6.750000, 0.000000;;, - 159;3; 0.000000, 6.750000, 0.000000;;, - 160;3; 0.000000, 6.750000, 0.000000;;, - 161;3; 0.000000, 6.750000, 0.000000;;, - 162;3; 0.000000, 6.750000, 0.000000;;, - 163;3; 0.000000, 6.750000, 0.000000;;, - 164;3; 0.000000, 6.750000, 0.000000;;, - 165;3; 0.000000, 6.750000, 0.000000;;, - 166;3; 0.000000, 6.750000, 0.000000;;, - 167;3; 0.000000, 6.750000, 0.000000;;, - 168;3; 0.000000, 6.750000,-0.000000;;, - 169;3; 0.000000, 6.750000,-0.000000;;, - 170;3; 0.000000, 6.750000,-0.000000;;, - 171;3; 0.000000, 6.750000,-0.000000;;, - 172;3; 0.000000, 6.750000,-0.000000;;, - 173;3; 0.000000, 6.750000,-0.000000;;, - 174;3; 0.000000, 6.750000,-0.000000;;, - 175;3; 0.000000, 6.750000,-0.000000;;, - 176;3; 0.000000, 6.750000,-0.000000;;, - 177;3; 0.000000, 6.750000,-0.000000;;, - 178;3; 0.000000, 6.750000,-0.000000;;, - 179;3; 0.000000, 6.750000,-0.000000;;, - 180;3; 0.000000, 6.750000,-0.000000;;, - 181;3; 0.000000, 6.750000,-0.000000;;, - 182;3; 0.000000, 6.750000,-0.000000;;, - 183;3; 0.000000, 6.750000,-0.000000;;, - 184;3; 0.000000, 6.750000,-0.000000;;, - 185;3; 0.000000, 6.750000,-0.000000;;, - 186;3; 0.000000, 6.750000,-0.000000;;, - 187;3; 0.000000, 6.750000,-0.000000;;, - 188;3; 0.000000, 6.750000,-0.000000;;, - 189;3; 0.000000, 6.750000,-0.000000;;, - 190;3; 0.000000, 6.750000, 0.000000;;, - 191;3; 0.000000, 6.750000, 0.000000;;, - 192;3; 0.000000, 6.750000,-0.000000;;, - 193;3; 0.000000, 6.750001, 0.000000;;, - 194;3; 0.000000, 6.750001, 0.000000;;, - 195;3; 0.000000, 6.750001, 0.000000;;, - 196;3; 0.000000, 6.750000,-0.000000;;, - 197;3; 0.000000, 6.750000, 0.000000;;, - 198;3; 0.000000, 6.750000, 0.000000;;, - 199;3; 0.000000, 6.750000,-0.000000;;, - 200;3; 0.000000, 6.750000,-0.000000;;, - 201;3; 0.000000, 6.750000,-0.000000;;, - 202;3; 0.000000, 6.750000,-0.000000;;, - 203;3; 0.000000, 6.750000, 0.000000;;, - 204;3; 0.000000, 6.750000,-0.000000;;, - 205;3; 0.000000, 6.750000,-0.000000;;, - 206;3; 0.000000, 6.750000, 0.000000;;, - 207;3; 0.000000, 6.750000,-0.000000;;, - 208;3; 0.000000, 6.750000, 0.000000;;, - 209;3; 0.000000, 6.750000,-0.000000;;, - 210;3; 0.000000, 6.750001, 0.000000;;, - 211;3; 0.000000, 6.750000,-0.000000;;, - 212;3; 0.000000, 6.750000, 0.000000;;, - 213;3; 0.000000, 6.750000, 0.000000;;, - 214;3; 0.000000, 6.750000, 0.000000;;, - 215;3; 0.000000, 6.750000,-0.000000;;, - 216;3; 0.000000, 6.750000,-0.000000;;, - 217;3; 0.000000, 6.750000, 0.000000;;, - 218;3; 0.000000, 6.750000, 0.000000;;, - 219;3; 0.000000, 6.750000, 0.000000;;, - 220;3; 0.000000, 6.750000,-0.000000;;; - } - } - Animation { - {Armature_Arm_Left} - AnimationKey { // Rotation - 0; - 221; - 0;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 1;4;-0.000771,-0.997293, 0.072149, 0.013790;;, - 2;4;-0.000100,-0.997275, 0.072138, 0.014069;;, - 3;4; 0.001022,-0.997244, 0.072120, 0.014535;;, - 4;4; 0.002587,-0.997202, 0.072094, 0.015185;;, - 5;4; 0.004576,-0.997147, 0.072062, 0.016011;;, - 6;4; 0.006956,-0.997083, 0.072024, 0.017000;;, - 7;4; 0.009676,-0.997008, 0.071980, 0.018130;;, - 8;4; 0.012671,-0.996927, 0.071932, 0.019373;;, - 9;4; 0.015858,-0.996840, 0.071881, 0.020697;;, - 10;4; 0.019145,-0.996751, 0.071828, 0.022062;;, - 11;4; 0.022431,-0.996661, 0.071775, 0.023428;;, - 12;4; 0.025618,-0.996574, 0.071723, 0.024751;;, - 13;4; 0.028613,-0.996493, 0.071675, 0.025995;;, - 14;4; 0.031333,-0.996419, 0.071631, 0.027125;;, - 15;4; 0.033713,-0.996354, 0.071593, 0.028114;;, - 16;4; 0.035702,-0.996300, 0.071561, 0.028940;;, - 17;4; 0.037267,-0.996257, 0.071535, 0.029590;;, - 18;4; 0.038389,-0.996226, 0.071517, 0.030056;;, - 19;4; 0.039060,-0.996208, 0.071507, 0.030335;;, - 20;4; 0.039282,-0.996202, 0.071503, 0.030427;;, - 21;4; 0.039060,-0.996208, 0.071507, 0.030335;;, - 22;4; 0.038389,-0.996226, 0.071517, 0.030056;;, - 23;4; 0.037267,-0.996257, 0.071535, 0.029590;;, - 24;4; 0.035702,-0.996300, 0.071561, 0.028940;;, - 25;4; 0.033713,-0.996354, 0.071593, 0.028114;;, - 26;4; 0.031333,-0.996419, 0.071631, 0.027125;;, - 27;4; 0.028613,-0.996493, 0.071675, 0.025995;;, - 28;4; 0.025618,-0.996574, 0.071723, 0.024751;;, - 29;4; 0.022431,-0.996661, 0.071775, 0.023428;;, - 30;4; 0.019145,-0.996751, 0.071828, 0.022062;;, - 31;4; 0.015858,-0.996840, 0.071881, 0.020697;;, - 32;4; 0.012671,-0.996927, 0.071932, 0.019373;;, - 33;4; 0.009676,-0.997008, 0.071980, 0.018130;;, - 34;4; 0.006956,-0.997083, 0.072024, 0.017000;;, - 35;4; 0.004576,-0.997147, 0.072062, 0.016011;;, - 36;4; 0.002587,-0.997202, 0.072094, 0.015185;;, - 37;4; 0.001022,-0.997244, 0.072120, 0.014535;;, - 38;4;-0.000100,-0.997275, 0.072138, 0.014069;;, - 39;4;-0.000771,-0.997293, 0.072149, 0.013790;;, - 40;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 41;4;-0.000771,-0.997293, 0.072149, 0.013790;;, - 42;4;-0.000100,-0.997275, 0.072138, 0.014069;;, - 43;4; 0.001022,-0.997244, 0.072120, 0.014535;;, - 44;4; 0.002587,-0.997202, 0.072094, 0.015185;;, - 45;4; 0.004576,-0.997147, 0.072062, 0.016011;;, - 46;4; 0.006956,-0.997083, 0.072024, 0.017000;;, - 47;4; 0.009676,-0.997008, 0.071980, 0.018130;;, - 48;4; 0.012671,-0.996927, 0.071932, 0.019373;;, - 49;4; 0.015858,-0.996840, 0.071881, 0.020697;;, - 50;4; 0.019145,-0.996751, 0.071828, 0.022062;;, - 51;4; 0.022431,-0.996661, 0.071775, 0.023428;;, - 52;4; 0.025618,-0.996574, 0.071723, 0.024751;;, - 53;4; 0.028613,-0.996493, 0.071675, 0.025995;;, - 54;4; 0.031333,-0.996419, 0.071631, 0.027125;;, - 55;4; 0.033713,-0.996354, 0.071593, 0.028114;;, - 56;4; 0.035702,-0.996300, 0.071561, 0.028940;;, - 57;4; 0.037267,-0.996257, 0.071535, 0.029590;;, - 58;4; 0.038389,-0.996226, 0.071517, 0.030056;;, - 59;4; 0.039060,-0.996208, 0.071507, 0.030335;;, - 60;4; 0.039282,-0.996202, 0.071503, 0.030427;;, - 61;4; 0.039073,-0.996208, 0.071506, 0.030340;;, - 62;4; 0.038487,-0.996224, 0.071516, 0.030097;;, - 63;4; 0.037574,-0.996249, 0.071530, 0.029717;;, - 64;4; 0.036375,-0.996281, 0.071550, 0.029219;;, - 65;4; 0.034924,-0.996321, 0.071573, 0.028617;;, - 66;4; 0.033248,-0.996366, 0.071600, 0.027921;;, - 67;4; 0.031373,-0.996417, 0.071630, 0.027142;;, - 68;4; 0.029318,-0.996473, 0.071664, 0.026288;;, - 69;4; 0.027103,-0.996534, 0.071699, 0.025368;;, - 70;4; 0.024745,-0.996598, 0.071737, 0.024389;;, - 71;4; 0.022261,-0.996666, 0.071777, 0.023357;;, - 72;4; 0.019665,-0.996736, 0.071819, 0.022279;;, - 73;4; 0.016975,-0.996810, 0.071863, 0.021161;;, - 74;4; 0.014209,-0.996885, 0.071907, 0.020013;;, - 75;4; 0.011390,-0.996962, 0.071953, 0.018841;;, - 76;4; 0.008545,-0.997039, 0.071998, 0.017659;;, - 77;4; 0.005717,-0.997116, 0.072044, 0.016485;;, - 78;4; 0.002983,-0.997191, 0.072088, 0.015349;;, - 79;4; 0.000513,-0.997258, 0.072128, 0.014324;;, - 80;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 81;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 82;4; 0.000513,-0.997258, 0.072128, 0.014324;;, - 83;4; 0.002983,-0.997191, 0.072088, 0.015349;;, - 84;4; 0.005717,-0.997116, 0.072044, 0.016485;;, - 85;4; 0.008545,-0.997039, 0.071998, 0.017659;;, - 86;4; 0.011390,-0.996962, 0.071953, 0.018841;;, - 87;4; 0.014209,-0.996885, 0.071907, 0.020013;;, - 88;4; 0.016975,-0.996810, 0.071863, 0.021161;;, - 89;4; 0.019665,-0.996736, 0.071819, 0.022279;;, - 90;4; 0.022261,-0.996666, 0.071777, 0.023357;;, - 91;4; 0.024745,-0.996598, 0.071737, 0.024389;;, - 92;4; 0.027103,-0.996534, 0.071699, 0.025368;;, - 93;4; 0.029318,-0.996473, 0.071664, 0.026288;;, - 94;4; 0.031373,-0.996417, 0.071630, 0.027142;;, - 95;4; 0.033248,-0.996366, 0.071600, 0.027921;;, - 96;4; 0.034924,-0.996321, 0.071573, 0.028617;;, - 97;4; 0.036375,-0.996281, 0.071550, 0.029219;;, - 98;4; 0.037574,-0.996249, 0.071530, 0.029717;;, - 99;4; 0.038487,-0.996224, 0.071516, 0.030097;;, - 100;4; 0.039073,-0.996208, 0.071506, 0.030340;;, - 101;4; 0.039282,-0.996202, 0.071503, 0.030427;;, - 102;4; 0.039060,-0.996208, 0.071507, 0.030335;;, - 103;4; 0.038389,-0.996226, 0.071517, 0.030056;;, - 104;4; 0.037267,-0.996257, 0.071535, 0.029590;;, - 105;4; 0.035702,-0.996300, 0.071561, 0.028940;;, - 106;4; 0.033713,-0.996354, 0.071593, 0.028114;;, - 107;4; 0.031333,-0.996419, 0.071631, 0.027125;;, - 108;4; 0.028613,-0.996493, 0.071675, 0.025995;;, - 109;4; 0.025618,-0.996574, 0.071723, 0.024751;;, - 110;4; 0.022431,-0.996661, 0.071775, 0.023428;;, - 111;4; 0.019145,-0.996751, 0.071828, 0.022062;;, - 112;4; 0.015858,-0.996840, 0.071881, 0.020697;;, - 113;4; 0.012671,-0.996927, 0.071932, 0.019373;;, - 114;4; 0.009676,-0.997008, 0.071980, 0.018130;;, - 115;4; 0.006956,-0.997083, 0.072024, 0.017000;;, - 116;4; 0.004576,-0.997147, 0.072062, 0.016011;;, - 117;4; 0.002587,-0.997202, 0.072094, 0.015185;;, - 118;4; 0.001022,-0.997244, 0.072120, 0.014535;;, - 119;4;-0.000100,-0.997275, 0.072138, 0.014069;;, - 120;4;-0.000771,-0.997293, 0.072149, 0.013790;;, - 121;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 122;4;-0.000771,-0.997293, 0.072149, 0.013790;;, - 123;4;-0.000100,-0.997275, 0.072138, 0.014069;;, - 124;4; 0.001022,-0.997244, 0.072120, 0.014535;;, - 125;4; 0.002587,-0.997202, 0.072094, 0.015185;;, - 126;4; 0.004576,-0.997147, 0.072062, 0.016011;;, - 127;4; 0.006956,-0.997083, 0.072024, 0.017000;;, - 128;4; 0.009676,-0.997008, 0.071980, 0.018130;;, - 129;4; 0.012671,-0.996927, 0.071932, 0.019373;;, - 130;4; 0.015858,-0.996840, 0.071881, 0.020697;;, - 131;4; 0.019145,-0.996751, 0.071828, 0.022062;;, - 132;4; 0.022431,-0.996661, 0.071775, 0.023428;;, - 133;4; 0.025618,-0.996574, 0.071723, 0.024751;;, - 134;4; 0.028613,-0.996493, 0.071675, 0.025995;;, - 135;4; 0.031333,-0.996419, 0.071631, 0.027125;;, - 136;4; 0.033713,-0.996354, 0.071593, 0.028114;;, - 137;4; 0.035702,-0.996300, 0.071561, 0.028940;;, - 138;4; 0.037267,-0.996257, 0.071535, 0.029590;;, - 139;4; 0.038389,-0.996226, 0.071517, 0.030056;;, - 140;4; 0.039060,-0.996208, 0.071507, 0.030335;;, - 141;4; 0.039282,-0.996202, 0.071503, 0.030427;;, - 142;4; 0.039113,-0.996208, 0.071506, 0.030343;;, - 143;4; 0.038636,-0.996224, 0.071514, 0.030108;;, - 144;4; 0.037890,-0.996249, 0.071526, 0.029740;;, - 145;4; 0.036903,-0.996282, 0.071543, 0.029258;;, - 146;4; 0.035701,-0.996321, 0.071563, 0.028673;;, - 147;4; 0.034303,-0.996367, 0.071586, 0.027997;;, - 148;4; 0.032725,-0.996419, 0.071612, 0.027240;;, - 149;4; 0.030981,-0.996475, 0.071641, 0.026409;;, - 150;4; 0.029082,-0.996536, 0.071672, 0.025511;;, - 151;4; 0.027037,-0.996600, 0.071706, 0.024555;;, - 152;4; 0.024854,-0.996668, 0.071742, 0.023544;;, - 153;4; 0.022538,-0.996739, 0.071780, 0.022486;;, - 154;4; 0.020093,-0.996813, 0.071820, 0.021387;;, - 155;4; 0.017523,-0.996888, 0.071862, 0.020252;;, - 156;4; 0.014827,-0.996965, 0.071905, 0.019090;;, - 157;4; 0.012003,-0.997043, 0.071951, 0.017910;;, - 158;4; 0.009044,-0.997120, 0.071998, 0.016726;;, - 159;4; 0.005935,-0.997194, 0.072048, 0.015563;;, - 160;4; 0.002637,-0.997260, 0.072099, 0.014477;;, - 161;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 162;4;-0.003931,-0.958043, 0.286297, 0.013159;;, - 163;4;-0.003931,-0.958043, 0.286297, 0.013159;;, - 164;4;-0.003931,-0.958043, 0.286297, 0.013159;;, - 165;4;-0.003931,-0.958043, 0.286297, 0.013159;;, - 166;4;-0.003931,-0.958043, 0.286297, 0.013159;;, - 167;4;-0.003931,-0.958043, 0.286297, 0.013159;;, - 168;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 169;4;-0.027477,-0.993490, 0.067048, 0.017188;;, - 170;4;-0.101901,-0.981967, 0.063627, 0.027031;;, - 171;4;-0.197396,-0.966974, 0.061971, 0.039674;;, - 172;4;-0.271751,-0.955236, 0.061529, 0.049522;;, - 173;4;-0.298149,-0.951058, 0.061516, 0.053018;;, - 174;4;-0.281324,-0.955151, 0.062330, 0.050813;;, - 175;4;-0.229770,-0.966686, 0.064680, 0.044036;;, - 176;4;-0.152323,-0.981518, 0.067852, 0.033820;;, - 177;4;-0.070052,-0.993110, 0.070622, 0.022920;;, - 178;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 179;4; 0.068082,-0.993365, 0.072516, 0.004364;;, - 180;4; 0.150399,-0.982078, 0.072003,-0.006850;;, - 181;4; 0.227904,-0.967532, 0.070959,-0.017470;;, - 182;4; 0.279502,-0.956188, 0.070025,-0.024561;;, - 183;4; 0.296344,-0.952157, 0.069673,-0.026878;;, - 184;4; 0.269917,-0.956170, 0.069893,-0.023271;;, - 185;4; 0.195490,-0.967472, 0.070514,-0.013111;;, - 186;4; 0.099915,-0.981984, 0.071311,-0.000066;;, - 187;4; 0.025453,-0.993286, 0.071932, 0.010092;;, - 188;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 189;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 190;4;-0.008560,-0.996939, 0.072024, 0.015352;;, - 191;4;-0.029872,-0.995925, 0.071663, 0.020012;;, - 192;4;-0.057237,-0.994622, 0.071199, 0.025995;;, - 193;4;-0.078548,-0.993608, 0.070838, 0.030655;;, - 194;4;-0.086115,-0.993248, 0.070710, 0.032309;;, - 195;4;-0.078548,-0.993608, 0.070838, 0.030655;;, - 196;4;-0.057237,-0.994622, 0.071199, 0.025995;;, - 197;4;-0.029872,-0.995925, 0.071663, 0.020012;;, - 198;4;-0.008560,-0.996939, 0.072024, 0.015352;;, - 199;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 200;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 201;4;-0.027423,-0.993189, 0.071207, 0.017192;;, - 202;4;-0.101840,-0.981611, 0.068544, 0.027036;;, - 203;4;-0.197357,-0.966746, 0.065125, 0.039677;;, - 204;4;-0.271739,-0.955168, 0.062462, 0.049523;;, - 205;4;-0.298149,-0.951058, 0.061516, 0.053018;;, - 206;4;-0.281324,-0.955151, 0.062330, 0.050813;;, - 207;4;-0.229770,-0.966686, 0.064680, 0.044036;;, - 208;4;-0.152323,-0.981518, 0.067852, 0.033820;;, - 209;4;-0.070052,-0.993110, 0.070622, 0.022920;;, - 210;4;-0.000993,-0.997299, 0.072152, 0.013698;;, - 211;4; 0.068082,-0.993365, 0.072516, 0.004364;;, - 212;4; 0.150399,-0.982078, 0.072003,-0.006850;;, - 213;4; 0.227904,-0.967532, 0.070959,-0.017470;;, - 214;4; 0.279502,-0.956188, 0.070025,-0.024561;;, - 215;4; 0.296344,-0.952157, 0.069673,-0.026878;;, - 216;4; 0.269928,-0.956170, 0.069893,-0.023270;;, - 217;4; 0.195554,-0.967472, 0.070513,-0.013107;;, - 218;4; 0.100014,-0.981984, 0.071309,-0.000060;;, - 219;4; 0.025501,-0.993286, 0.071931, 0.010095;;, - 220;4;-0.000993,-0.997299, 0.072152, 0.013698;;; - } - AnimationKey { // Scale - 1; - 221; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 221; - 0;3;-2.000000, 6.750000,-0.000000;;, - 1;3;-2.000000, 6.750000, 0.000000;;, - 2;3;-2.000000, 6.750000,-0.000000;;, - 3;3;-2.000000, 6.750000, 0.000000;;, - 4;3;-2.000000, 6.750000, 0.000000;;, - 5;3;-2.000000, 6.750000, 0.000000;;, - 6;3;-2.000000, 6.750000, 0.000000;;, - 7;3;-2.000000, 6.750000, 0.000000;;, - 8;3;-2.000000, 6.750000,-0.000000;;, - 9;3;-2.000000, 6.750000,-0.000000;;, - 10;3;-2.000000, 6.750000,-0.000000;;, - 11;3;-2.000000, 6.750000,-0.000000;;, - 12;3;-2.000000, 6.750000, 0.000000;;, - 13;3;-2.000000, 6.750000,-0.000000;;, - 14;3;-2.000000, 6.750000, 0.000000;;, - 15;3;-2.000000, 6.750000,-0.000000;;, - 16;3;-2.000000, 6.750000,-0.000000;;, - 17;3;-2.000000, 6.750000,-0.000000;;, - 18;3;-2.000000, 6.750000,-0.000000;;, - 19;3;-2.000000, 6.750000, 0.000000;;, - 20;3;-2.000000, 6.750000,-0.000000;;, - 21;3;-2.000000, 6.750000, 0.000000;;, - 22;3;-2.000000, 6.750000,-0.000000;;, - 23;3;-2.000000, 6.750000,-0.000000;;, - 24;3;-2.000000, 6.750000,-0.000000;;, - 25;3;-2.000000, 6.750000, 0.000000;;, - 26;3;-2.000000, 6.750000, 0.000000;;, - 27;3;-2.000000, 6.750000, 0.000000;;, - 28;3;-2.000000, 6.750000, 0.000000;;, - 29;3;-2.000000, 6.750000,-0.000000;;, - 30;3;-2.000000, 6.750000,-0.000000;;, - 31;3;-2.000000, 6.750000, 0.000000;;, - 32;3;-2.000000, 6.750000, 0.000000;;, - 33;3;-2.000000, 6.750000,-0.000000;;, - 34;3;-2.000000, 6.750000,-0.000000;;, - 35;3;-2.000000, 6.750000, 0.000000;;, - 36;3;-2.000000, 6.750000, 0.000000;;, - 37;3;-2.000000, 6.750000, 0.000000;;, - 38;3;-2.000000, 6.750000,-0.000000;;, - 39;3;-2.000000, 6.750000, 0.000000;;, - 40;3;-2.000000, 6.750000,-0.000000;;, - 41;3;-2.000000, 6.750000, 0.000000;;, - 42;3;-2.000000, 6.750000, 0.000000;;, - 43;3;-2.000000, 6.750000, 0.000000;;, - 44;3;-2.000000, 6.750000, 0.000000;;, - 45;3;-2.000000, 6.750000,-0.000000;;, - 46;3;-2.000000, 6.750000,-0.000000;;, - 47;3;-2.000000, 6.750000, 0.000000;;, - 48;3;-2.000000, 6.750000,-0.000000;;, - 49;3;-2.000000, 6.750000,-0.000000;;, - 50;3;-2.000000, 6.750000,-0.000000;;, - 51;3;-2.000000, 6.750000,-0.000000;;, - 52;3;-2.000000, 6.750000, 0.000000;;, - 53;3;-2.000000, 6.750000, 0.000000;;, - 54;3;-2.000000, 6.750000,-0.000000;;, - 55;3;-2.000000, 6.750000, 0.000000;;, - 56;3;-2.000000, 6.750000,-0.000000;;, - 57;3;-2.000000, 6.750000,-0.000000;;, - 58;3;-2.000000, 6.750000,-0.000000;;, - 59;3;-2.000000, 6.750000, 0.000000;;, - 60;3;-2.000000, 6.750000,-0.000000;;, - 61;3;-2.000000, 6.750000,-0.000000;;, - 62;3;-2.000000, 6.750000, 0.000000;;, - 63;3;-2.000000, 6.750000, 0.000000;;, - 64;3;-2.000000, 6.750000, 0.000000;;, - 65;3;-2.000000, 6.750000, 0.000000;;, - 66;3;-2.000000, 6.750000, 0.000000;;, - 67;3;-2.000000, 6.750000,-0.000000;;, - 68;3;-2.000000, 6.750000, 0.000000;;, - 69;3;-2.000000, 6.750000,-0.000000;;, - 70;3;-2.000000, 6.750000, 0.000000;;, - 71;3;-2.000000, 6.750000, 0.000000;;, - 72;3;-2.000000, 6.750000, 0.000000;;, - 73;3;-2.000000, 6.750000,-0.000000;;, - 74;3;-2.000000, 6.750000,-0.000000;;, - 75;3;-2.000000, 6.750000, 0.000000;;, - 76;3;-2.000000, 6.750000, 0.000000;;, - 77;3;-2.000000, 6.750000,-0.000000;;, - 78;3;-2.000000, 6.750001,-0.000000;;, - 79;3;-2.000000, 6.750000, 0.000000;;, - 80;3;-2.000000, 6.750000,-0.000000;;, - 81;3;-2.000000, 6.750000, 0.000000;;, - 82;3;-2.000000, 6.750000, 0.000000;;, - 83;3;-2.000000, 6.750000, 0.000000;;, - 84;3;-2.000000, 6.750000, 0.000000;;, - 85;3;-2.000000, 6.750000,-0.000000;;, - 86;3;-2.000000, 6.750000, 0.000000;;, - 87;3;-2.000000, 6.750000,-0.000000;;, - 88;3;-2.000000, 6.750000, 0.000000;;, - 89;3;-2.000000, 6.750000,-0.000000;;, - 90;3;-2.000000, 6.750000,-0.000000;;, - 91;3;-2.000000, 6.750000, 0.000000;;, - 92;3;-2.000000, 6.750000,-0.000000;;, - 93;3;-2.000000, 6.750000, 0.000000;;, - 94;3;-2.000000, 6.750000,-0.000000;;, - 95;3;-2.000000, 6.750000, 0.000000;;, - 96;3;-2.000000, 6.750000,-0.000000;;, - 97;3;-2.000000, 6.750000, 0.000000;;, - 98;3;-2.000000, 6.750000,-0.000000;;, - 99;3;-2.000000, 6.750000,-0.000000;;, - 100;3;-2.000000, 6.750000, 0.000000;;, - 101;3;-2.000000, 6.750000,-0.000000;;, - 102;3;-2.000000, 6.750000, 0.000000;;, - 103;3;-2.000000, 6.750000,-0.000000;;, - 104;3;-2.000000, 6.750000, 0.000000;;, - 105;3;-2.000000, 6.750000,-0.000000;;, - 106;3;-2.000000, 6.750000,-0.000000;;, - 107;3;-2.000000, 6.750000, 0.000000;;, - 108;3;-2.000000, 6.750000, 0.000000;;, - 109;3;-2.000000, 6.750000,-0.000000;;, - 110;3;-2.000000, 6.750000,-0.000000;;, - 111;3;-2.000000, 6.750000,-0.000000;;, - 112;3;-2.000000, 6.750000,-0.000000;;, - 113;3;-2.000000, 6.750000,-0.000000;;, - 114;3;-2.000000, 6.750000,-0.000000;;, - 115;3;-2.000000, 6.750000,-0.000000;;, - 116;3;-2.000000, 6.750000,-0.000000;;, - 117;3;-2.000000, 6.750000,-0.000000;;, - 118;3;-2.000000, 6.750000, 0.000000;;, - 119;3;-2.000000, 6.750000,-0.000000;;, - 120;3;-2.000000, 6.750000, 0.000000;;, - 121;3;-2.000000, 6.750000, 0.000000;;, - 122;3;-2.000000, 6.750000, 0.000000;;, - 123;3;-2.000000, 6.750000,-0.000000;;, - 124;3;-2.000000, 6.750000,-0.000000;;, - 125;3;-2.000000, 6.750000,-0.000000;;, - 126;3;-2.000000, 6.750000, 0.000000;;, - 127;3;-2.000000, 6.750000,-0.000000;;, - 128;3;-2.000000, 6.750000, 0.000000;;, - 129;3;-2.000000, 6.750000,-0.000000;;, - 130;3;-2.000000, 6.750000, 0.000000;;, - 131;3;-2.000000, 6.750000, 0.000000;;, - 132;3;-2.000000, 6.750000,-0.000000;;, - 133;3;-2.000000, 6.750000,-0.000000;;, - 134;3;-2.000000, 6.750000, 0.000000;;, - 135;3;-2.000000, 6.750000, 0.000000;;, - 136;3;-2.000000, 6.750000,-0.000000;;, - 137;3;-2.000000, 6.750000, 0.000000;;, - 138;3;-2.000000, 6.750000,-0.000000;;, - 139;3;-2.000000, 6.750000, 0.000000;;, - 140;3;-2.000000, 6.750000,-0.000000;;, - 141;3;-2.000000, 6.750000,-0.000000;;, - 142;3;-2.000000, 6.750000,-0.000000;;, - 143;3;-2.000000, 6.750000,-0.000000;;, - 144;3;-2.000000, 6.750000, 0.000000;;, - 145;3;-2.000000, 6.750000,-0.000000;;, - 146;3;-2.000000, 6.750000, 0.000000;;, - 147;3;-2.000000, 6.750000, 0.000000;;, - 148;3;-2.000000, 6.750000,-0.000000;;, - 149;3;-2.000000, 6.750000,-0.000000;;, - 150;3;-2.000000, 6.750000,-0.000000;;, - 151;3;-2.000000, 6.750000,-0.000000;;, - 152;3;-2.000000, 6.750000,-0.000000;;, - 153;3;-2.000000, 6.750000, 0.000000;;, - 154;3;-2.000000, 6.750000,-0.000000;;, - 155;3;-2.000000, 6.750000,-0.000000;;, - 156;3;-2.000000, 6.750000,-0.000000;;, - 157;3;-2.000000, 6.750000,-0.000000;;, - 158;3;-2.000000, 6.750000, 0.000000;;, - 159;3;-2.000000, 6.750000, 0.000000;;, - 160;3;-2.000000, 6.750000, 0.000000;;, - 161;3;-2.000000, 6.750000, 0.000000;;, - 162;3;-2.000000, 6.750000, 0.000000;;, - 163;3;-2.000000, 6.750000, 0.000000;;, - 164;3;-2.000000, 6.750000, 0.000000;;, - 165;3;-2.000000, 6.750000, 0.000000;;, - 166;3;-2.000000, 6.750000, 0.000000;;, - 167;3;-2.000000, 6.750000, 0.000000;;, - 168;3;-2.000000, 6.750000,-0.000000;;, - 169;3;-2.000000, 6.750000,-0.000000;;, - 170;3;-2.000000, 6.750000,-0.000000;;, - 171;3;-2.000000, 6.750000,-0.000000;;, - 172;3;-2.000000, 6.750000,-0.000000;;, - 173;3;-2.000000, 6.750000,-0.000000;;, - 174;3;-2.000000, 6.750000,-0.000000;;, - 175;3;-2.000000, 6.750000,-0.000000;;, - 176;3;-2.000000, 6.750000,-0.000000;;, - 177;3;-2.000000, 6.750000,-0.000000;;, - 178;3;-2.000000, 6.750000,-0.000000;;, - 179;3;-2.000000, 6.750000,-0.000000;;, - 180;3;-2.000000, 6.750000,-0.000000;;, - 181;3;-2.000000, 6.750000,-0.000000;;, - 182;3;-2.000000, 6.750000,-0.000000;;, - 183;3;-2.000000, 6.750000,-0.000000;;, - 184;3;-2.000000, 6.750000,-0.000000;;, - 185;3;-2.000000, 6.750000,-0.000000;;, - 186;3;-2.000000, 6.750000,-0.000000;;, - 187;3;-2.000000, 6.750000,-0.000000;;, - 188;3;-2.000000, 6.750000,-0.000000;;, - 189;3;-2.000000, 6.750000,-0.000000;;, - 190;3;-2.000000, 6.750000, 0.000000;;, - 191;3;-2.000000, 6.750000, 0.000000;;, - 192;3;-2.000000, 6.750000,-0.000000;;, - 193;3;-2.000000, 6.750001, 0.000000;;, - 194;3;-2.000000, 6.750001, 0.000000;;, - 195;3;-2.000000, 6.750001, 0.000000;;, - 196;3;-2.000000, 6.750000,-0.000000;;, - 197;3;-2.000000, 6.750000, 0.000000;;, - 198;3;-2.000000, 6.750000, 0.000000;;, - 199;3;-2.000000, 6.750000,-0.000000;;, - 200;3;-2.000000, 6.750000,-0.000000;;, - 201;3;-2.000000, 6.750000,-0.000000;;, - 202;3;-2.000000, 6.750000,-0.000000;;, - 203;3;-2.000000, 6.750000, 0.000000;;, - 204;3;-2.000000, 6.750000,-0.000000;;, - 205;3;-2.000000, 6.750000,-0.000000;;, - 206;3;-2.000000, 6.750000, 0.000000;;, - 207;3;-2.000000, 6.750000,-0.000000;;, - 208;3;-2.000000, 6.750000, 0.000000;;, - 209;3;-2.000000, 6.750000,-0.000000;;, - 210;3;-2.000000, 6.750001, 0.000000;;, - 211;3;-2.000000, 6.750000,-0.000000;;, - 212;3;-2.000000, 6.750000, 0.000000;;, - 213;3;-2.000000, 6.750000, 0.000000;;, - 214;3;-2.000000, 6.750000, 0.000000;;, - 215;3;-2.000000, 6.750000,-0.000000;;, - 216;3;-2.000000, 6.750000,-0.000000;;, - 217;3;-2.000000, 6.750000, 0.000000;;, - 218;3;-2.000000, 6.750000, 0.000000;;, - 219;3;-2.000000, 6.750000, 0.000000;;, - 220;3;-2.000000, 6.750000,-0.000000;;; - } - } - Animation { - {Armature_Arm_Right} - AnimationKey { // Rotation - 0; - 221; - 0;4;-0.000993,-0.997299,-0.072152,-0.013698;;, - 1;4;-0.000771,-0.997293,-0.072149,-0.013790;;, - 2;4;-0.000100,-0.997275,-0.072138,-0.014069;;, - 3;4; 0.001022,-0.997244,-0.072120,-0.014535;;, - 4;4; 0.002587,-0.997202,-0.072094,-0.015185;;, - 5;4; 0.004576,-0.997147,-0.072062,-0.016011;;, - 6;4; 0.006956,-0.997083,-0.072024,-0.017000;;, - 7;4; 0.009676,-0.997008,-0.071980,-0.018130;;, - 8;4; 0.012671,-0.996927,-0.071932,-0.019373;;, - 9;4; 0.015858,-0.996840,-0.071881,-0.020697;;, - 10;4; 0.019145,-0.996751,-0.071828,-0.022062;;, - 11;4; 0.022431,-0.996661,-0.071775,-0.023428;;, - 12;4; 0.025618,-0.996574,-0.071723,-0.024751;;, - 13;4; 0.028613,-0.996493,-0.071675,-0.025995;;, - 14;4; 0.031333,-0.996419,-0.071631,-0.027125;;, - 15;4; 0.033713,-0.996354,-0.071593,-0.028114;;, - 16;4; 0.035702,-0.996300,-0.071561,-0.028940;;, - 17;4; 0.037267,-0.996257,-0.071535,-0.029590;;, - 18;4; 0.038389,-0.996226,-0.071517,-0.030056;;, - 19;4; 0.039060,-0.996208,-0.071507,-0.030335;;, - 20;4; 0.039282,-0.996202,-0.071503,-0.030427;;, - 21;4; 0.039060,-0.996208,-0.071507,-0.030335;;, - 22;4; 0.038389,-0.996226,-0.071517,-0.030056;;, - 23;4; 0.037267,-0.996257,-0.071535,-0.029590;;, - 24;4; 0.035702,-0.996300,-0.071561,-0.028940;;, - 25;4; 0.033713,-0.996354,-0.071593,-0.028114;;, - 26;4; 0.031333,-0.996419,-0.071631,-0.027125;;, - 27;4; 0.028613,-0.996493,-0.071675,-0.025995;;, - 28;4; 0.025618,-0.996574,-0.071723,-0.024751;;, - 29;4; 0.022431,-0.996661,-0.071775,-0.023428;;, - 30;4; 0.019145,-0.996751,-0.071828,-0.022062;;, - 31;4; 0.015858,-0.996840,-0.071881,-0.020697;;, - 32;4; 0.012671,-0.996927,-0.071932,-0.019373;;, - 33;4; 0.009676,-0.997008,-0.071980,-0.018130;;, - 34;4; 0.006956,-0.997083,-0.072024,-0.017000;;, - 35;4; 0.004576,-0.997147,-0.072062,-0.016011;;, - 36;4; 0.002587,-0.997202,-0.072094,-0.015185;;, - 37;4; 0.001022,-0.997244,-0.072120,-0.014535;;, - 38;4;-0.000100,-0.997275,-0.072138,-0.014069;;, - 39;4;-0.000771,-0.997293,-0.072149,-0.013790;;, - 40;4;-0.000993,-0.997299,-0.072152,-0.013698;;, - 41;4;-0.000771,-0.997293,-0.072149,-0.013790;;, - 42;4;-0.000100,-0.997275,-0.072138,-0.014069;;, - 43;4; 0.001022,-0.997244,-0.072120,-0.014535;;, - 44;4; 0.002587,-0.997202,-0.072094,-0.015185;;, - 45;4; 0.004576,-0.997147,-0.072062,-0.016011;;, - 46;4; 0.006956,-0.997083,-0.072024,-0.017000;;, - 47;4; 0.009676,-0.997008,-0.071980,-0.018130;;, - 48;4; 0.012671,-0.996927,-0.071932,-0.019373;;, - 49;4; 0.015858,-0.996840,-0.071881,-0.020697;;, - 50;4; 0.019145,-0.996751,-0.071828,-0.022062;;, - 51;4; 0.022431,-0.996661,-0.071775,-0.023428;;, - 52;4; 0.025618,-0.996574,-0.071723,-0.024751;;, - 53;4; 0.028613,-0.996493,-0.071675,-0.025995;;, - 54;4; 0.031333,-0.996419,-0.071631,-0.027125;;, - 55;4; 0.033713,-0.996354,-0.071593,-0.028114;;, - 56;4; 0.035702,-0.996300,-0.071561,-0.028940;;, - 57;4; 0.037267,-0.996257,-0.071535,-0.029590;;, - 58;4; 0.038389,-0.996226,-0.071517,-0.030056;;, - 59;4; 0.039060,-0.996208,-0.071507,-0.030335;;, - 60;4; 0.039282,-0.996202,-0.071503,-0.030427;;, - 61;4; 0.039073,-0.996208,-0.071506,-0.030340;;, - 62;4; 0.038487,-0.996224,-0.071516,-0.030097;;, - 63;4; 0.037574,-0.996249,-0.071530,-0.029717;;, - 64;4; 0.036375,-0.996281,-0.071550,-0.029219;;, - 65;4; 0.034924,-0.996321,-0.071573,-0.028617;;, - 66;4; 0.033248,-0.996366,-0.071600,-0.027921;;, - 67;4; 0.031373,-0.996417,-0.071630,-0.027142;;, - 68;4; 0.029318,-0.996473,-0.071664,-0.026288;;, - 69;4; 0.027103,-0.996534,-0.071699,-0.025368;;, - 70;4; 0.024745,-0.996598,-0.071737,-0.024389;;, - 71;4; 0.022261,-0.996666,-0.071777,-0.023357;;, - 72;4; 0.019665,-0.996736,-0.071819,-0.022279;;, - 73;4; 0.016975,-0.996810,-0.071863,-0.021161;;, - 74;4; 0.014209,-0.996885,-0.071907,-0.020013;;, - 75;4; 0.011390,-0.996962,-0.071953,-0.018841;;, - 76;4; 0.008545,-0.997039,-0.071998,-0.017659;;, - 77;4; 0.005717,-0.997116,-0.072044,-0.016485;;, - 78;4; 0.002983,-0.997191,-0.072088,-0.015349;;, - 79;4; 0.000513,-0.997258,-0.072128,-0.014324;;, - 80;4;-0.000993,-0.997299,-0.072152,-0.013698;;, - 81;4;-0.000993,-0.997299,-0.072152,-0.013698;;, - 82;4; 0.000513,-0.997258,-0.072128,-0.014324;;, - 83;4; 0.002983,-0.997191,-0.072088,-0.015349;;, - 84;4; 0.005717,-0.997116,-0.072044,-0.016485;;, - 85;4; 0.008545,-0.997039,-0.071998,-0.017659;;, - 86;4; 0.011390,-0.996962,-0.071953,-0.018841;;, - 87;4; 0.014209,-0.996885,-0.071907,-0.020013;;, - 88;4; 0.016975,-0.996810,-0.071863,-0.021161;;, - 89;4; 0.019665,-0.996736,-0.071819,-0.022279;;, - 90;4; 0.022261,-0.996666,-0.071777,-0.023357;;, - 91;4; 0.024745,-0.996598,-0.071737,-0.024389;;, - 92;4; 0.027103,-0.996534,-0.071699,-0.025368;;, - 93;4; 0.029318,-0.996473,-0.071664,-0.026288;;, - 94;4; 0.031373,-0.996417,-0.071630,-0.027142;;, - 95;4; 0.033248,-0.996366,-0.071600,-0.027921;;, - 96;4; 0.034924,-0.996321,-0.071573,-0.028617;;, - 97;4; 0.036375,-0.996281,-0.071550,-0.029219;;, - 98;4; 0.037574,-0.996249,-0.071530,-0.029717;;, - 99;4; 0.038487,-0.996224,-0.071516,-0.030097;;, - 100;4; 0.039073,-0.996208,-0.071506,-0.030340;;, - 101;4; 0.039282,-0.996202,-0.071503,-0.030427;;, - 102;4; 0.039060,-0.996208,-0.071507,-0.030335;;, - 103;4; 0.038389,-0.996226,-0.071517,-0.030056;;, - 104;4; 0.037267,-0.996257,-0.071535,-0.029590;;, - 105;4; 0.035702,-0.996300,-0.071561,-0.028940;;, - 106;4; 0.033713,-0.996354,-0.071593,-0.028114;;, - 107;4; 0.031333,-0.996419,-0.071631,-0.027125;;, - 108;4; 0.028613,-0.996493,-0.071675,-0.025995;;, - 109;4; 0.025618,-0.996574,-0.071723,-0.024751;;, - 110;4; 0.022431,-0.996661,-0.071775,-0.023428;;, - 111;4; 0.019145,-0.996751,-0.071828,-0.022062;;, - 112;4; 0.015858,-0.996840,-0.071881,-0.020697;;, - 113;4; 0.012671,-0.996927,-0.071932,-0.019373;;, - 114;4; 0.009676,-0.997008,-0.071980,-0.018130;;, - 115;4; 0.006956,-0.997083,-0.072024,-0.017000;;, - 116;4; 0.004576,-0.997147,-0.072062,-0.016011;;, - 117;4; 0.002587,-0.997202,-0.072094,-0.015185;;, - 118;4; 0.001022,-0.997244,-0.072120,-0.014535;;, - 119;4;-0.000100,-0.997275,-0.072138,-0.014069;;, - 120;4;-0.000771,-0.997293,-0.072149,-0.013790;;, - 121;4;-0.000993,-0.997299,-0.072152,-0.013698;;, - 122;4;-0.000771,-0.997293,-0.072149,-0.013790;;, - 123;4;-0.000100,-0.997275,-0.072138,-0.014069;;, - 124;4; 0.001022,-0.997244,-0.072120,-0.014535;;, - 125;4; 0.002587,-0.997202,-0.072094,-0.015185;;, - 126;4; 0.004576,-0.997147,-0.072062,-0.016011;;, - 127;4; 0.006956,-0.997083,-0.072024,-0.017000;;, - 128;4; 0.009676,-0.997008,-0.071980,-0.018130;;, - 129;4; 0.012671,-0.996927,-0.071932,-0.019373;;, - 130;4; 0.015858,-0.996840,-0.071881,-0.020697;;, - 131;4; 0.019145,-0.996751,-0.071828,-0.022062;;, - 132;4; 0.022431,-0.996661,-0.071775,-0.023428;;, - 133;4; 0.025618,-0.996574,-0.071723,-0.024751;;, - 134;4; 0.028613,-0.996493,-0.071675,-0.025995;;, - 135;4; 0.031333,-0.996419,-0.071631,-0.027125;;, - 136;4; 0.033713,-0.996354,-0.071593,-0.028114;;, - 137;4; 0.035702,-0.996300,-0.071561,-0.028940;;, - 138;4; 0.037267,-0.996257,-0.071535,-0.029590;;, - 139;4; 0.038389,-0.996226,-0.071517,-0.030056;;, - 140;4; 0.039060,-0.996208,-0.071507,-0.030335;;, - 141;4; 0.039282,-0.996202,-0.071503,-0.030427;;, - 142;4; 0.039113,-0.996208,-0.071506,-0.030343;;, - 143;4; 0.038636,-0.996224,-0.071514,-0.030108;;, - 144;4; 0.037890,-0.996249,-0.071526,-0.029740;;, - 145;4; 0.036903,-0.996282,-0.071543,-0.029258;;, - 146;4; 0.035701,-0.996321,-0.071563,-0.028673;;, - 147;4; 0.034303,-0.996367,-0.071586,-0.027997;;, - 148;4; 0.032725,-0.996419,-0.071612,-0.027240;;, - 149;4; 0.030981,-0.996475,-0.071641,-0.026409;;, - 150;4; 0.029082,-0.996536,-0.071672,-0.025511;;, - 151;4; 0.027037,-0.996600,-0.071706,-0.024555;;, - 152;4; 0.024854,-0.996668,-0.071742,-0.023544;;, - 153;4; 0.022538,-0.996739,-0.071780,-0.022486;;, - 154;4; 0.020093,-0.996813,-0.071820,-0.021387;;, - 155;4; 0.017523,-0.996888,-0.071862,-0.020252;;, - 156;4; 0.014827,-0.996965,-0.071905,-0.019090;;, - 157;4; 0.012003,-0.997043,-0.071951,-0.017910;;, - 158;4; 0.009044,-0.997120,-0.071998,-0.016726;;, - 159;4; 0.005935,-0.997194,-0.072048,-0.015563;;, - 160;4; 0.002637,-0.997260,-0.072099,-0.014477;;, - 161;4;-0.000993,-0.997299,-0.072152,-0.013698;;, - 162;4;-0.003931,-0.958043,-0.286297,-0.013159;;, - 163;4;-0.003931,-0.958043,-0.286297,-0.013159;;, - 164;4;-0.003931,-0.958043,-0.286297,-0.013159;;, - 165;4;-0.003931,-0.958043,-0.286297,-0.013159;;, - 166;4;-0.003931,-0.958043,-0.286297,-0.013159;;, - 167;4;-0.003931,-0.958043,-0.286297,-0.013159;;, - 168;4;-0.000993,-0.997299,-0.072152,-0.013698;;, - 169;4; 0.036332,-0.993297,-0.071786,-0.010879;;, - 170;4; 0.112793,-0.981996,-0.071141,-0.000866;;, - 171;4; 0.203761,-0.967480,-0.070405, 0.012512;;, - 172;4; 0.272366,-0.956172,-0.069860, 0.023094;;, - 173;4; 0.296344,-0.952157,-0.069673, 0.026878;;, - 174;4; 0.279502,-0.956188,-0.070025, 0.024561;;, - 175;4; 0.227904,-0.967532,-0.070959, 0.017470;;, - 176;4; 0.150399,-0.982078,-0.072003, 0.006850;;, - 177;4; 0.068082,-0.993365,-0.072516,-0.004364;;, - 178;4;-0.000993,-0.997299,-0.072152,-0.013698;;, - 179;4;-0.070052,-0.993110,-0.070622,-0.022920;;, - 180;4;-0.152323,-0.981518,-0.067852,-0.033820;;, - 181;4;-0.229770,-0.966686,-0.064680,-0.044036;;, - 182;4;-0.281324,-0.955151,-0.062330,-0.050813;;, - 183;4;-0.298149,-0.951058,-0.061516,-0.053018;;, - 184;4;-0.272274,-0.955135,-0.062466,-0.049489;;, - 185;4;-0.200485,-0.966552,-0.065153,-0.039481;;, - 186;4;-0.106850,-0.981306,-0.068589,-0.026720;;, - 187;4;-0.029983,-0.993038,-0.071230,-0.017030;;, - 188;4;-0.000993,-0.997299,-0.072152,-0.013698;;, - 189;4;-0.835223,-0.536092, 0.025756,-0.119768;;, - 190;4;-0.803190,-0.565877, 0.021817,-0.111188;;, - 191;4;-0.718123,-0.648320, 0.010758,-0.086705;;, - 192;4;-0.614364,-0.752494,-0.003390,-0.054941;;, - 193;4;-0.534783,-0.833219,-0.014396,-0.030130;;, - 194;4;-0.506110,-0.862010,-0.018307,-0.021347;;, - 195;4;-0.535306,-0.833106,-0.014394,-0.030099;;, - 196;4;-0.617424,-0.751827,-0.003381,-0.054756;;, - 197;4;-0.723034,-0.647269, 0.010771,-0.086406;;, - 198;4;-0.805709,-0.565357, 0.021822,-0.111033;;, - 199;4;-0.835223,-0.536092, 0.025756,-0.119768;;, - 200;4;-0.538721,-0.840702,-0.006530,-0.054381;;, - 201;4;-0.565325,-0.813340,-0.003643,-0.060179;;, - 202;4;-0.639822,-0.736773, 0.004459,-0.076535;;, - 203;4;-0.734957,-0.639059, 0.014825,-0.097566;;, - 204;4;-0.808923,-0.563104, 0.022890,-0.113952;;, - 205;4;-0.835223,-0.536092, 0.025756,-0.119768;;, - 206;4;-0.805969,-0.565062, 0.021840,-0.111019;;, - 207;4;-0.723567,-0.646663, 0.010807,-0.086377;;, - 208;4;-0.617765,-0.751439,-0.003358,-0.054737;;, - 209;4;-0.535365,-0.833040,-0.014390,-0.030096;;, - 210;4;-0.506110,-0.862010,-0.018307,-0.021347;;, - 211;4;-0.535365,-0.833040,-0.014390,-0.030096;;, - 212;4;-0.617765,-0.751439,-0.003358,-0.054737;;, - 213;4;-0.723567,-0.646663, 0.010807,-0.086377;;, - 214;4;-0.805969,-0.565062, 0.021840,-0.111019;;, - 215;4;-0.835223,-0.536092, 0.025756,-0.119768;;, - 216;4;-0.808881,-0.563152, 0.022887,-0.113955;;, - 217;4;-0.734713,-0.639339, 0.014809,-0.097580;;, - 218;4;-0.639441,-0.737212, 0.004432,-0.076557;;, - 219;4;-0.565139,-0.813554,-0.003656,-0.060190;;, - 220;4;-0.538721,-0.840702,-0.006530,-0.054381;;; - } - AnimationKey { // Scale - 1; - 221; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 221; - 0;3; 2.000000, 6.750000,-0.000000;;, - 1;3; 2.000000, 6.750000, 0.000000;;, - 2;3; 2.000000, 6.750000,-0.000000;;, - 3;3; 2.000000, 6.750000, 0.000000;;, - 4;3; 2.000000, 6.750000, 0.000000;;, - 5;3; 2.000000, 6.750000, 0.000000;;, - 6;3; 2.000000, 6.750000, 0.000000;;, - 7;3; 2.000000, 6.750000, 0.000000;;, - 8;3; 2.000000, 6.750000,-0.000000;;, - 9;3; 2.000000, 6.750000,-0.000000;;, - 10;3; 2.000000, 6.750000,-0.000000;;, - 11;3; 2.000000, 6.750000,-0.000000;;, - 12;3; 2.000000, 6.750000, 0.000000;;, - 13;3; 2.000000, 6.750000,-0.000000;;, - 14;3; 2.000000, 6.750000, 0.000000;;, - 15;3; 2.000000, 6.750000,-0.000000;;, - 16;3; 2.000000, 6.750000,-0.000000;;, - 17;3; 2.000000, 6.750000,-0.000000;;, - 18;3; 2.000000, 6.750000,-0.000000;;, - 19;3; 2.000000, 6.750000, 0.000000;;, - 20;3; 2.000000, 6.750000,-0.000000;;, - 21;3; 2.000000, 6.750000, 0.000000;;, - 22;3; 2.000000, 6.750000,-0.000000;;, - 23;3; 2.000000, 6.750000,-0.000000;;, - 24;3; 2.000000, 6.750000,-0.000000;;, - 25;3; 2.000000, 6.750000, 0.000000;;, - 26;3; 2.000000, 6.750000, 0.000000;;, - 27;3; 2.000000, 6.750000, 0.000000;;, - 28;3; 2.000000, 6.750000, 0.000000;;, - 29;3; 2.000000, 6.750000,-0.000000;;, - 30;3; 2.000000, 6.750000,-0.000000;;, - 31;3; 2.000000, 6.750000, 0.000000;;, - 32;3; 2.000000, 6.750000, 0.000000;;, - 33;3; 2.000000, 6.750000,-0.000000;;, - 34;3; 2.000000, 6.750000,-0.000000;;, - 35;3; 2.000000, 6.750000, 0.000000;;, - 36;3; 2.000000, 6.750000, 0.000000;;, - 37;3; 2.000000, 6.750000, 0.000000;;, - 38;3; 2.000000, 6.750000,-0.000000;;, - 39;3; 2.000000, 6.750000, 0.000000;;, - 40;3; 2.000000, 6.750000,-0.000000;;, - 41;3; 2.000000, 6.750000, 0.000000;;, - 42;3; 2.000000, 6.750000, 0.000000;;, - 43;3; 2.000000, 6.750000, 0.000000;;, - 44;3; 2.000000, 6.750000, 0.000000;;, - 45;3; 2.000000, 6.750000,-0.000000;;, - 46;3; 2.000000, 6.750000,-0.000000;;, - 47;3; 2.000000, 6.750000, 0.000000;;, - 48;3; 2.000000, 6.750000,-0.000000;;, - 49;3; 2.000000, 6.750000,-0.000000;;, - 50;3; 2.000000, 6.750000,-0.000000;;, - 51;3; 2.000000, 6.750000,-0.000000;;, - 52;3; 2.000000, 6.750000, 0.000000;;, - 53;3; 2.000000, 6.750000, 0.000000;;, - 54;3; 2.000000, 6.750000,-0.000000;;, - 55;3; 2.000000, 6.750000, 0.000000;;, - 56;3; 2.000000, 6.750000,-0.000000;;, - 57;3; 2.000000, 6.750000,-0.000000;;, - 58;3; 2.000000, 6.750000,-0.000000;;, - 59;3; 2.000000, 6.750000, 0.000000;;, - 60;3; 2.000000, 6.750000,-0.000000;;, - 61;3; 2.000000, 6.750000,-0.000000;;, - 62;3; 2.000000, 6.750000, 0.000000;;, - 63;3; 2.000000, 6.750000, 0.000000;;, - 64;3; 2.000000, 6.750000, 0.000000;;, - 65;3; 2.000000, 6.750000, 0.000000;;, - 66;3; 2.000000, 6.750000, 0.000000;;, - 67;3; 2.000000, 6.750000,-0.000000;;, - 68;3; 2.000000, 6.750000, 0.000000;;, - 69;3; 2.000000, 6.750000,-0.000000;;, - 70;3; 2.000000, 6.750000, 0.000000;;, - 71;3; 2.000000, 6.750000, 0.000000;;, - 72;3; 2.000000, 6.750000, 0.000000;;, - 73;3; 2.000000, 6.750000,-0.000000;;, - 74;3; 2.000000, 6.750000,-0.000000;;, - 75;3; 2.000000, 6.750000, 0.000000;;, - 76;3; 2.000000, 6.750000, 0.000000;;, - 77;3; 2.000000, 6.750000,-0.000000;;, - 78;3; 2.000000, 6.750001,-0.000000;;, - 79;3; 2.000000, 6.750000, 0.000000;;, - 80;3; 2.000000, 6.750000,-0.000000;;, - 81;3; 2.000000, 6.750000, 0.000000;;, - 82;3; 2.000000, 6.750000, 0.000000;;, - 83;3; 2.000000, 6.750000, 0.000000;;, - 84;3; 2.000000, 6.750000, 0.000000;;, - 85;3; 2.000000, 6.750000,-0.000000;;, - 86;3; 2.000000, 6.750000, 0.000000;;, - 87;3; 2.000000, 6.750000,-0.000000;;, - 88;3; 2.000000, 6.750000, 0.000000;;, - 89;3; 2.000000, 6.750000,-0.000000;;, - 90;3; 2.000000, 6.750000,-0.000000;;, - 91;3; 2.000000, 6.750000, 0.000000;;, - 92;3; 2.000000, 6.750000,-0.000000;;, - 93;3; 2.000000, 6.750000, 0.000000;;, - 94;3; 2.000000, 6.750000,-0.000000;;, - 95;3; 2.000000, 6.750000, 0.000000;;, - 96;3; 2.000000, 6.750000,-0.000000;;, - 97;3; 2.000000, 6.750000, 0.000000;;, - 98;3; 2.000000, 6.750000,-0.000000;;, - 99;3; 2.000000, 6.750000,-0.000000;;, - 100;3; 2.000000, 6.750000, 0.000000;;, - 101;3; 2.000000, 6.750000,-0.000000;;, - 102;3; 2.000000, 6.750000, 0.000000;;, - 103;3; 2.000000, 6.750000,-0.000000;;, - 104;3; 2.000000, 6.750000, 0.000000;;, - 105;3; 2.000000, 6.750000,-0.000000;;, - 106;3; 2.000000, 6.750000,-0.000000;;, - 107;3; 2.000000, 6.750000, 0.000000;;, - 108;3; 2.000000, 6.750000, 0.000000;;, - 109;3; 2.000000, 6.750000,-0.000000;;, - 110;3; 2.000000, 6.750000,-0.000000;;, - 111;3; 2.000000, 6.750000,-0.000000;;, - 112;3; 2.000000, 6.750000,-0.000000;;, - 113;3; 2.000000, 6.750000,-0.000000;;, - 114;3; 2.000000, 6.750000,-0.000000;;, - 115;3; 2.000000, 6.750000,-0.000000;;, - 116;3; 2.000000, 6.750000,-0.000000;;, - 117;3; 2.000000, 6.750000,-0.000000;;, - 118;3; 2.000000, 6.750000, 0.000000;;, - 119;3; 2.000000, 6.750000,-0.000000;;, - 120;3; 2.000000, 6.750000, 0.000000;;, - 121;3; 2.000000, 6.750000, 0.000000;;, - 122;3; 2.000000, 6.750000, 0.000000;;, - 123;3; 2.000000, 6.750000,-0.000000;;, - 124;3; 2.000000, 6.750000,-0.000000;;, - 125;3; 2.000000, 6.750000,-0.000000;;, - 126;3; 2.000000, 6.750000, 0.000000;;, - 127;3; 2.000000, 6.750000,-0.000000;;, - 128;3; 2.000000, 6.750000, 0.000000;;, - 129;3; 2.000000, 6.750000,-0.000000;;, - 130;3; 2.000000, 6.750000, 0.000000;;, - 131;3; 2.000000, 6.750000, 0.000000;;, - 132;3; 2.000000, 6.750000,-0.000000;;, - 133;3; 2.000000, 6.750000,-0.000000;;, - 134;3; 2.000000, 6.750000, 0.000000;;, - 135;3; 2.000000, 6.750000, 0.000000;;, - 136;3; 2.000000, 6.750000,-0.000000;;, - 137;3; 2.000000, 6.750000, 0.000000;;, - 138;3; 2.000000, 6.750000,-0.000000;;, - 139;3; 2.000000, 6.750000, 0.000000;;, - 140;3; 2.000000, 6.750000,-0.000000;;, - 141;3; 2.000000, 6.750000,-0.000000;;, - 142;3; 2.000000, 6.750000,-0.000000;;, - 143;3; 2.000000, 6.750000,-0.000000;;, - 144;3; 2.000000, 6.750000, 0.000000;;, - 145;3; 2.000000, 6.750000,-0.000000;;, - 146;3; 2.000000, 6.750000, 0.000000;;, - 147;3; 2.000000, 6.750000, 0.000000;;, - 148;3; 2.000000, 6.750000,-0.000000;;, - 149;3; 2.000000, 6.750000,-0.000000;;, - 150;3; 2.000000, 6.750000,-0.000000;;, - 151;3; 2.000000, 6.750000,-0.000000;;, - 152;3; 2.000000, 6.750000,-0.000000;;, - 153;3; 2.000000, 6.750000, 0.000000;;, - 154;3; 2.000000, 6.750000,-0.000000;;, - 155;3; 2.000000, 6.750000,-0.000000;;, - 156;3; 2.000000, 6.750000,-0.000000;;, - 157;3; 2.000000, 6.750000,-0.000000;;, - 158;3; 2.000000, 6.750000, 0.000000;;, - 159;3; 2.000000, 6.750000, 0.000000;;, - 160;3; 2.000000, 6.750000, 0.000000;;, - 161;3; 2.000000, 6.750000, 0.000000;;, - 162;3; 2.000000, 6.750000, 0.000000;;, - 163;3; 2.000000, 6.750000, 0.000000;;, - 164;3; 2.000000, 6.750000, 0.000000;;, - 165;3; 2.000000, 6.750000, 0.000000;;, - 166;3; 2.000000, 6.750000, 0.000000;;, - 167;3; 2.000000, 6.750000, 0.000000;;, - 168;3; 2.000000, 6.750000,-0.000000;;, - 169;3; 2.000000, 6.750000,-0.000000;;, - 170;3; 2.000000, 6.750000,-0.000000;;, - 171;3; 2.000000, 6.750000,-0.000000;;, - 172;3; 2.000000, 6.750000,-0.000000;;, - 173;3; 2.000000, 6.750000,-0.000000;;, - 174;3; 2.000000, 6.750000,-0.000000;;, - 175;3; 2.000000, 6.750000,-0.000000;;, - 176;3; 2.000000, 6.750000,-0.000000;;, - 177;3; 2.000000, 6.750000,-0.000000;;, - 178;3; 2.000000, 6.750000,-0.000000;;, - 179;3; 2.000000, 6.750000,-0.000000;;, - 180;3; 2.000000, 6.750000,-0.000000;;, - 181;3; 2.000000, 6.750000,-0.000000;;, - 182;3; 2.000000, 6.750000,-0.000000;;, - 183;3; 2.000000, 6.750000,-0.000000;;, - 184;3; 2.000000, 6.750000,-0.000000;;, - 185;3; 2.000000, 6.750000,-0.000000;;, - 186;3; 2.000000, 6.750000,-0.000000;;, - 187;3; 2.000000, 6.750000,-0.000000;;, - 188;3; 2.000000, 6.750000,-0.000000;;, - 189;3; 2.000000, 6.750000,-0.000000;;, - 190;3; 2.000000, 6.750000, 0.000000;;, - 191;3; 2.000000, 6.750000, 0.000000;;, - 192;3; 2.000000, 6.750000,-0.000000;;, - 193;3; 2.000000, 6.750001, 0.000000;;, - 194;3; 2.000000, 6.750001, 0.000000;;, - 195;3; 2.000000, 6.750001, 0.000000;;, - 196;3; 2.000000, 6.750000,-0.000000;;, - 197;3; 2.000000, 6.750000, 0.000000;;, - 198;3; 2.000000, 6.750000, 0.000000;;, - 199;3; 2.000000, 6.750000,-0.000000;;, - 200;3; 2.000000, 6.750000,-0.000000;;, - 201;3; 2.000000, 6.750000,-0.000000;;, - 202;3; 2.000000, 6.750000,-0.000000;;, - 203;3; 2.000000, 6.750000, 0.000000;;, - 204;3; 2.000000, 6.750000,-0.000000;;, - 205;3; 2.000000, 6.750000,-0.000000;;, - 206;3; 2.000000, 6.750000, 0.000000;;, - 207;3; 2.000000, 6.750000,-0.000000;;, - 208;3; 2.000000, 6.750000, 0.000000;;, - 209;3; 2.000000, 6.750000,-0.000000;;, - 210;3; 2.000000, 6.750001, 0.000000;;, - 211;3; 2.000000, 6.750000,-0.000000;;, - 212;3; 2.000000, 6.750000, 0.000000;;, - 213;3; 2.000000, 6.750000, 0.000000;;, - 214;3; 2.000000, 6.750000, 0.000000;;, - 215;3; 2.000000, 6.750000,-0.000000;;, - 216;3; 2.000000, 6.750000,-0.000000;;, - 217;3; 2.000000, 6.750000, 0.000000;;, - 218;3; 2.000000, 6.750000, 0.000000;;, - 219;3; 2.000000, 6.750000, 0.000000;;, - 220;3; 2.000000, 6.750000,-0.000000;;; - } - } - Animation { - {Armature_Leg_Right} - AnimationKey { // Rotation - 0; - 221; - 0;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 1;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 2;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 3;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 4;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 5;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 6;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 7;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 8;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 9;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 10;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 11;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 12;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 13;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 14;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 15;4;-0.037588, 0.999180,-0.000000,-0.000000;;, - 16;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 17;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 18;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 19;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 20;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 21;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 22;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 23;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 24;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 25;4;-0.037588, 0.999180,-0.000000,-0.000000;;, - 26;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 27;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 28;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 29;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 30;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 31;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 32;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 33;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 34;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 35;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 36;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 37;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 38;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 39;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 40;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 41;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 42;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 43;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 44;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 45;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 46;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 47;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 48;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 49;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 50;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 51;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 52;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 53;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 54;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 55;4;-0.037588, 0.999180,-0.000000,-0.000000;;, - 56;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 57;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 58;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 59;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 60;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 61;4;-0.043616, 0.999053,-0.000000,-0.000000;;, - 62;4;-0.043594, 0.999067,-0.000000,-0.000000;;, - 63;4;-0.043536, 0.999089,-0.000000,-0.000000;;, - 64;4;-0.043427, 0.999117,-0.000000,-0.000000;;, - 65;4;-0.043250, 0.999151,-0.000000,-0.000000;;, - 66;4;-0.042989, 0.999191,-0.000000,-0.000000;;, - 67;4;-0.042627, 0.999235,-0.000000,-0.000000;;, - 68;4;-0.042144, 0.999283,-0.000000,-0.000000;;, - 69;4;-0.041519, 0.999336,-0.000000,-0.000000;;, - 70;4;-0.040726, 0.999391,-0.000000,-0.000000;;, - 71;4;-0.039733, 0.999450,-0.000000,-0.000000;;, - 72;4;-0.038501, 0.999511,-0.000000,-0.000000;;, - 73;4;-0.036980, 0.999575,-0.000000,-0.000000;;, - 74;4;-0.035101, 0.999640,-0.000000,-0.000000;;, - 75;4;-0.032770, 0.999707,-0.000000,-0.000000;;, - 76;4;-0.029842, 0.999774,-0.000000,-0.000000;;, - 77;4;-0.026086, 0.999841,-0.000000,-0.000000;;, - 78;4;-0.021070, 0.999906,-0.000000,-0.000000;;, - 79;4;-0.013794, 0.999964,-0.000000,-0.000000;;, - 80;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 81;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 82;4; 0.705874, 0.708245, 0.000000,-0.000000;;, - 83;4; 0.703907, 0.710101, 0.000000,-0.000000;;, - 84;4; 0.701752, 0.712152, 0.000000,-0.000000;;, - 85;4; 0.699533, 0.714271, 0.000000,-0.000000;;, - 86;4; 0.697308, 0.716402, 0.000000,-0.000000;;, - 87;4; 0.695107, 0.718513, 0.000000,-0.000000;;, - 88;4; 0.692951, 0.720584, 0.000000,-0.000000;;, - 89;4; 0.690857, 0.722597, 0.000000,-0.000000;;, - 90;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 91;4; 0.686904, 0.726399, 0.000000,-0.000000;;, - 92;4; 0.685070, 0.728163, 0.000000,-0.000000;;, - 93;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 94;4; 0.681750, 0.731358, 0.000000,-0.000000;;, - 95;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 96;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 97;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 98;4; 0.676923, 0.735999, 0.000000,-0.000000;;, - 99;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 100;4; 0.675753, 0.737121, 0.000000,-0.000000;;, - 101;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 102;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 103;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 104;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 105;4; 0.678392, 0.734596, 0.000000,-0.000000;;, - 106;4; 0.679948, 0.733105, 0.000000,-0.000000;;, - 107;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 108;4; 0.683939, 0.729285, 0.000000,-0.000000;;, - 109;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 110;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 111;4; 0.691348, 0.722192, 0.000000,-0.000000;;, - 112;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 113;4; 0.696414, 0.717343, 0.000000,-0.000000;;, - 114;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 115;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 116;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 117;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 118;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 119;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 120;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 121;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 122;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 123;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 124;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 125;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 126;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 127;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 128;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 129;4; 0.696414, 0.717343, 0.000000,-0.000000;;, - 130;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 131;4; 0.691348, 0.722192, 0.000000,-0.000000;;, - 132;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 133;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 134;4; 0.683939, 0.729285, 0.000000,-0.000000;;, - 135;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 136;4; 0.679948, 0.733105, 0.000000,-0.000000;;, - 137;4; 0.678392, 0.734596, 0.000000,-0.000000;;, - 138;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 139;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 140;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 141;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 142;4; 0.675753, 0.737121, 0.000000,-0.000000;;, - 143;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 144;4; 0.676923, 0.735999, 0.000000,-0.000000;;, - 145;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 146;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 147;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 148;4; 0.681750, 0.731357, 0.000000,-0.000000;;, - 149;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 150;4; 0.685070, 0.728163, 0.000000,-0.000000;;, - 151;4; 0.686904, 0.726398, 0.000000,-0.000000;;, - 152;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 153;4; 0.690857, 0.722596, 0.000000,-0.000000;;, - 154;4; 0.692951, 0.720583, 0.000000,-0.000000;;, - 155;4; 0.695107, 0.718512, 0.000000,-0.000000;;, - 156;4; 0.697308, 0.716401, 0.000000,-0.000000;;, - 157;4; 0.699533, 0.714270, 0.000000,-0.000000;;, - 158;4; 0.701752, 0.712151, 0.000000,-0.000000;;, - 159;4; 0.703907, 0.710100, 0.000000,-0.000000;;, - 160;4; 0.705874, 0.708244, 0.000000,-0.000000;;, - 161;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 162;4;-0.000000, 0.991445, 0.130526,-0.000000;;, - 163;4;-0.000000, 0.991445, 0.130526,-0.000000;;, - 164;4;-0.000000, 0.991445, 0.130526,-0.000000;;, - 165;4;-0.000000, 0.991445, 0.130526,-0.000000;;, - 166;4;-0.000000, 0.991445, 0.130526,-0.000000;;, - 167;4;-0.000000, 0.991445, 0.130526,-0.000000;;, - 168;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 169;4; 0.034052, 0.993234, 0.000000,-0.000000;;, - 170;4; 0.129903, 0.974175, 0.000000,-0.000000;;, - 171;4; 0.252901, 0.949704, 0.000000,-0.000000;;, - 172;4; 0.348675, 0.930646, 0.000000,-0.000000;;, - 173;4; 0.382683, 0.923880, 0.000000,-0.000000;;, - 174;4; 0.361005, 0.930646, 0.000000,-0.000000;;, - 175;4; 0.294618, 0.949704, 0.000000,-0.000000;;, - 176;4; 0.194899, 0.974175, 0.000000,-0.000000;;, - 177;4; 0.088939, 0.993234, 0.000000,-0.000000;;, - 178;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 179;4;-0.088939, 0.993234,-0.000000,-0.000000;;, - 180;4;-0.194899, 0.974175,-0.000000,-0.000000;;, - 181;4;-0.294618, 0.949704,-0.000000,-0.000000;;, - 182;4;-0.361005, 0.930646,-0.000000,-0.000000;;, - 183;4;-0.382683, 0.923880,-0.000000,-0.000000;;, - 184;4;-0.348675, 0.930646,-0.000000,-0.000000;;, - 185;4;-0.252901, 0.949704,-0.000000,-0.000000;;, - 186;4;-0.129903, 0.974175,-0.000000,-0.000000;;, - 187;4;-0.034052, 0.993233,-0.000000,-0.000000;;, - 188;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 189;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 190;4; 0.003877, 0.999915, 0.000000,-0.000000;;, - 191;4; 0.014798, 0.999677, 0.000000,-0.000000;;, - 192;4; 0.028821, 0.999371, 0.000000,-0.000000;;, - 193;4; 0.039742, 0.999133, 0.000000,-0.000000;;, - 194;4; 0.043619, 0.999048, 0.000000,-0.000000;;, - 195;4; 0.039742, 0.999133, 0.000000,-0.000000;;, - 196;4; 0.028821, 0.999371, 0.000000,-0.000000;;, - 197;4; 0.014798, 0.999677, 0.000000,-0.000000;;, - 198;4; 0.003877, 0.999915, 0.000000,-0.000000;;, - 199;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 200;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 201;4; 0.034052, 0.993233, 0.000000,-0.000000;;, - 202;4; 0.129903, 0.974175, 0.000000,-0.000000;;, - 203;4; 0.252901, 0.949704, 0.000000,-0.000000;;, - 204;4; 0.348675, 0.930646, 0.000000,-0.000000;;, - 205;4; 0.382683, 0.923880, 0.000000,-0.000000;;, - 206;4; 0.361005, 0.930646, 0.000000,-0.000000;;, - 207;4; 0.294618, 0.949704, 0.000000,-0.000000;;, - 208;4; 0.194899, 0.974175, 0.000000,-0.000000;;, - 209;4; 0.088939, 0.993234, 0.000000,-0.000000;;, - 210;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 211;4;-0.088939, 0.993234,-0.000000,-0.000000;;, - 212;4;-0.194899, 0.974175,-0.000000,-0.000000;;, - 213;4;-0.294618, 0.949704,-0.000000,-0.000000;;, - 214;4;-0.361005, 0.930646,-0.000000,-0.000000;;, - 215;4;-0.382683, 0.923880,-0.000000,-0.000000;;, - 216;4;-0.348699, 0.930646,-0.000000,-0.000000;;, - 217;4;-0.253041, 0.949703,-0.000000,-0.000000;;, - 218;4;-0.130122, 0.974173,-0.000000,-0.000000;;, - 219;4;-0.034158, 0.993233,-0.000000,-0.000000;;, - 220;4;-0.000000, 1.000000,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 221; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 0.999999;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 0.999999;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 221; - 0;3; 1.000000, 0.000000,-0.000001;;, - 1;3; 1.000000, 0.000000,-0.000001;;, - 2;3; 1.000000,-0.000000,-0.000001;;, - 3;3; 1.000000,-0.000000,-0.000001;;, - 4;3; 1.000000,-0.000000,-0.000001;;, - 5;3; 1.000000,-0.000000,-0.000001;;, - 6;3; 1.000000,-0.000000,-0.000001;;, - 7;3; 1.000000, 0.000000,-0.000001;;, - 8;3; 1.000000,-0.000000,-0.000001;;, - 9;3; 1.000000,-0.000000,-0.000001;;, - 10;3; 1.000000,-0.000000,-0.000001;;, - 11;3; 1.000000,-0.000000,-0.000000;;, - 12;3; 1.000000,-0.000000,-0.000001;;, - 13;3; 1.000000, 0.000000,-0.000001;;, - 14;3; 1.000000,-0.000000,-0.000001;;, - 15;3; 1.000000,-0.000000,-0.000001;;, - 16;3; 1.000000,-0.000000,-0.000001;;, - 17;3; 1.000000,-0.000000,-0.000000;;, - 18;3; 1.000000, 0.000000,-0.000000;;, - 19;3; 1.000000,-0.000000,-0.000000;;, - 20;3; 1.000000, 0.000000,-0.000000;;, - 21;3; 1.000000,-0.000000,-0.000001;;, - 22;3; 1.000000, 0.000000,-0.000000;;, - 23;3; 1.000000,-0.000000,-0.000000;;, - 24;3; 1.000000,-0.000000,-0.000001;;, - 25;3; 1.000000,-0.000000,-0.000000;;, - 26;3; 1.000000,-0.000000,-0.000000;;, - 27;3; 1.000000, 0.000000,-0.000001;;, - 28;3; 1.000000,-0.000000,-0.000001;;, - 29;3; 1.000000,-0.000000,-0.000001;;, - 30;3; 1.000000,-0.000000,-0.000001;;, - 31;3; 1.000000,-0.000000,-0.000001;;, - 32;3; 1.000000,-0.000000,-0.000001;;, - 33;3; 1.000000, 0.000000,-0.000001;;, - 34;3; 1.000000,-0.000000,-0.000001;;, - 35;3; 1.000000,-0.000000,-0.000001;;, - 36;3; 1.000000,-0.000000,-0.000001;;, - 37;3; 1.000000,-0.000000,-0.000001;;, - 38;3; 1.000000,-0.000000,-0.000001;;, - 39;3; 1.000000, 0.000000,-0.000001;;, - 40;3; 1.000000, 0.000000,-0.000001;;, - 41;3; 1.000000, 0.000000,-0.000001;;, - 42;3; 1.000000,-0.000000,-0.000001;;, - 43;3; 1.000000,-0.000000,-0.000001;;, - 44;3; 1.000000,-0.000000,-0.000001;;, - 45;3; 1.000000,-0.000000,-0.000001;;, - 46;3; 1.000000,-0.000000,-0.000001;;, - 47;3; 1.000000, 0.000000,-0.000001;;, - 48;3; 1.000000,-0.000000,-0.000001;;, - 49;3; 1.000000,-0.000000,-0.000001;;, - 50;3; 1.000000,-0.000000,-0.000001;;, - 51;3; 1.000000,-0.000000,-0.000001;;, - 52;3; 1.000000,-0.000000,-0.000001;;, - 53;3; 1.000000, 0.000000,-0.000001;;, - 54;3; 1.000000,-0.000000,-0.000001;;, - 55;3; 1.000000,-0.000000,-0.000000;;, - 56;3; 1.000000,-0.000000,-0.000001;;, - 57;3; 1.000000,-0.000000,-0.000000;;, - 58;3; 1.000000, 0.000000,-0.000000;;, - 59;3; 1.000000,-0.000000,-0.000000;;, - 60;3; 1.000000, 0.000000,-0.000000;;, - 61;3; 1.000000, 0.000000,-0.000001;;, - 62;3; 1.000000,-0.000000,-0.000001;;, - 63;3; 1.000000,-0.000000,-0.000001;;, - 64;3; 1.000000, 0.000000,-0.000001;;, - 65;3; 1.000000,-0.000000,-0.000000;;, - 66;3; 1.000000,-0.000000,-0.000001;;, - 67;3; 1.000000,-0.000000,-0.000001;;, - 68;3; 1.000000, 0.000000,-0.000001;;, - 69;3; 1.000000,-0.000000,-0.000001;;, - 70;3; 1.000000,-0.000000,-0.000001;;, - 71;3; 1.000000,-0.000000,-0.000001;;, - 72;3; 1.000000,-0.000000,-0.000001;;, - 73;3; 1.000000, 0.000000,-0.000001;;, - 74;3; 1.000000,-0.000000,-0.000001;;, - 75;3; 1.000000, 0.000000,-0.000001;;, - 76;3; 1.000000,-0.000000,-0.000001;;, - 77;3; 1.000000,-0.000000,-0.000001;;, - 78;3; 1.000000, 0.000000,-0.000001;;, - 79;3; 1.000000,-0.000000,-0.000001;;, - 80;3; 1.000000, 0.000000,-0.000001;;, - 81;3; 1.000000, 0.000000,-0.000001;;, - 82;3; 1.000000,-0.000000,-0.000001;;, - 83;3; 1.000000,-0.000000,-0.000001;;, - 84;3; 1.000000,-0.000000,-0.000001;;, - 85;3; 1.000000,-0.000000,-0.000001;;, - 86;3; 1.000000,-0.000000,-0.000001;;, - 87;3; 1.000000,-0.000000,-0.000001;;, - 88;3; 1.000000,-0.000000,-0.000001;;, - 89;3; 1.000000,-0.000000,-0.000001;;, - 90;3; 1.000000,-0.000000,-0.000001;;, - 91;3; 1.000000,-0.000000,-0.000001;;, - 92;3; 1.000000,-0.000000,-0.000001;;, - 93;3; 1.000000,-0.000000,-0.000001;;, - 94;3; 1.000000,-0.000000,-0.000001;;, - 95;3; 1.000000,-0.000000,-0.000001;;, - 96;3; 1.000000,-0.000000,-0.000001;;, - 97;3; 1.000000,-0.000000,-0.000001;;, - 98;3; 1.000000,-0.000000,-0.000001;;, - 99;3; 1.000000,-0.000000,-0.000001;;, - 100;3; 1.000000,-0.000000,-0.000001;;, - 101;3; 1.000000,-0.000000,-0.000001;;, - 102;3; 1.000000,-0.000000,-0.000001;;, - 103;3; 1.000000,-0.000000,-0.000001;;, - 104;3; 1.000000,-0.000000,-0.000001;;, - 105;3; 1.000000,-0.000000,-0.000001;;, - 106;3; 1.000000,-0.000000,-0.000001;;, - 107;3; 1.000000,-0.000000,-0.000001;;, - 108;3; 1.000000,-0.000000,-0.000001;;, - 109;3; 1.000000,-0.000000,-0.000001;;, - 110;3; 1.000000,-0.000000,-0.000001;;, - 111;3; 1.000000,-0.000000,-0.000001;;, - 112;3; 1.000000,-0.000000,-0.000001;;, - 113;3; 1.000000,-0.000000,-0.000001;;, - 114;3; 1.000000,-0.000000,-0.000001;;, - 115;3; 1.000000,-0.000000,-0.000001;;, - 116;3; 1.000000,-0.000000,-0.000001;;, - 117;3; 1.000000,-0.000000,-0.000001;;, - 118;3; 1.000000,-0.000000,-0.000001;;, - 119;3; 1.000000,-0.000000,-0.000001;;, - 120;3; 1.000000,-0.000000,-0.000001;;, - 121;3; 1.000000, 0.000000,-0.000001;;, - 122;3; 1.000000,-0.000000,-0.000001;;, - 123;3; 1.000000,-0.000000,-0.000001;;, - 124;3; 1.000000,-0.000000,-0.000001;;, - 125;3; 1.000000,-0.000000,-0.000001;;, - 126;3; 1.000000,-0.000000,-0.000001;;, - 127;3; 1.000000,-0.000000,-0.000001;;, - 128;3; 1.000000,-0.000000,-0.000001;;, - 129;3; 1.000000,-0.000000,-0.000001;;, - 130;3; 1.000000,-0.000000,-0.000001;;, - 131;3; 1.000000,-0.000000,-0.000001;;, - 132;3; 1.000000,-0.000000,-0.000001;;, - 133;3; 1.000000,-0.000000,-0.000001;;, - 134;3; 1.000000,-0.000000,-0.000001;;, - 135;3; 1.000000,-0.000000,-0.000001;;, - 136;3; 1.000000,-0.000000,-0.000001;;, - 137;3; 1.000000,-0.000000,-0.000001;;, - 138;3; 1.000000,-0.000000,-0.000001;;, - 139;3; 1.000000,-0.000000,-0.000001;;, - 140;3; 1.000000,-0.000000,-0.000001;;, - 141;3; 1.000000,-0.000000,-0.000001;;, - 142;3; 1.000000,-0.000000,-0.000001;;, - 143;3; 1.000000,-0.000000,-0.000001;;, - 144;3; 1.000000,-0.000000,-0.000001;;, - 145;3; 1.000000,-0.000000,-0.000001;;, - 146;3; 1.000000,-0.000000,-0.000001;;, - 147;3; 1.000000,-0.000000,-0.000001;;, - 148;3; 1.000000,-0.000000,-0.000001;;, - 149;3; 1.000000,-0.000000,-0.000001;;, - 150;3; 1.000000,-0.000000,-0.000001;;, - 151;3; 1.000000,-0.000000,-0.000001;;, - 152;3; 1.000000,-0.000000,-0.000001;;, - 153;3; 1.000000,-0.000000,-0.000001;;, - 154;3; 1.000000,-0.000000,-0.000001;;, - 155;3; 1.000000,-0.000000,-0.000001;;, - 156;3; 1.000000,-0.000000,-0.000001;;, - 157;3; 1.000000,-0.000000,-0.000001;;, - 158;3; 1.000000,-0.000000,-0.000001;;, - 159;3; 1.000000,-0.000000,-0.000001;;, - 160;3; 1.000000,-0.000000,-0.000001;;, - 161;3; 1.000000, 0.000000,-0.000001;;, - 162;3; 1.000000,-0.000000,-0.000001;;, - 163;3; 1.000000,-0.000000,-0.000001;;, - 164;3; 1.000000,-0.000000,-0.000001;;, - 165;3; 1.000000,-0.000000,-0.000001;;, - 166;3; 1.000000,-0.000000,-0.000001;;, - 167;3; 1.000000,-0.000000,-0.000001;;, - 168;3; 1.000000, 0.000000,-0.000001;;, - 169;3; 1.000000, 0.000000,-0.000001;;, - 170;3; 1.000000, 0.000000,-0.000001;;, - 171;3; 1.000000, 0.000000,-0.000001;;, - 172;3; 1.000000, 0.000000,-0.000001;;, - 173;3; 1.000000, 0.000000,-0.000001;;, - 174;3; 1.000000, 0.000000,-0.000001;;, - 175;3; 1.000000, 0.000000,-0.000001;;, - 176;3; 1.000000, 0.000000,-0.000001;;, - 177;3; 1.000000, 0.000000,-0.000001;;, - 178;3; 1.000000, 0.000000,-0.000001;;, - 179;3; 1.000000, 0.000000,-0.000001;;, - 180;3; 1.000000, 0.000000,-0.000001;;, - 181;3; 1.000000, 0.000000,-0.000001;;, - 182;3; 1.000000, 0.000000,-0.000001;;, - 183;3; 1.000000, 0.000000,-0.000001;;, - 184;3; 1.000000, 0.000000,-0.000001;;, - 185;3; 1.000000, 0.000000,-0.000001;;, - 186;3; 1.000000, 0.000000,-0.000001;;, - 187;3; 1.000000, 0.000000,-0.000001;;, - 188;3; 1.000000, 0.000000,-0.000001;;, - 189;3; 1.000000, 0.000000,-0.000001;;, - 190;3; 1.000000,-0.000000,-0.000001;;, - 191;3; 1.000000,-0.000000,-0.000001;;, - 192;3; 1.000000,-0.000000,-0.000001;;, - 193;3; 1.000000, 0.000000,-0.000001;;, - 194;3; 1.000000, 0.000000,-0.000000;;, - 195;3; 1.000000, 0.000000,-0.000001;;, - 196;3; 1.000000,-0.000000,-0.000000;;, - 197;3; 1.000000,-0.000000,-0.000001;;, - 198;3; 1.000000,-0.000000,-0.000001;;, - 199;3; 1.000000, 0.000000,-0.000001;;, - 200;3; 1.000000, 0.000000,-0.000001;;, - 201;3; 1.000000,-0.000000,-0.000001;;, - 202;3; 1.000000,-0.000000,-0.000001;;, - 203;3; 1.000000,-0.000000,-0.000001;;, - 204;3; 1.000000,-0.000000,-0.000000;;, - 205;3; 1.000000, 0.000000,-0.000000;;, - 206;3; 1.000000,-0.000000,-0.000001;;, - 207;3; 1.000000,-0.000000,-0.000001;;, - 208;3; 1.000000,-0.000000,-0.000001;;, - 209;3; 1.000000, 0.000000,-0.000000;;, - 210;3; 1.000000, 0.000000,-0.000000;;, - 211;3; 1.000000, 0.000000,-0.000001;;, - 212;3; 1.000000,-0.000000,-0.000001;;, - 213;3; 1.000000,-0.000000,-0.000001;;, - 214;3; 1.000000,-0.000000,-0.000001;;, - 215;3; 1.000000, 0.000000,-0.000000;;, - 216;3; 1.000000,-0.000000,-0.000000;;, - 217;3; 1.000000,-0.000000,-0.000000;;, - 218;3; 1.000000,-0.000000,-0.000001;;, - 219;3; 1.000000,-0.000000,-0.000001;;, - 220;3; 1.000000, 0.000000,-0.000001;;; - } - } - Animation { - {Armature_Leg_Left} - AnimationKey { // Rotation - 0; - 221; - 0;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 1;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 2;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 3;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 4;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 5;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 6;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 7;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 8;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 9;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 10;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 11;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 12;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 13;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 14;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 15;4;-0.037588, 0.999180,-0.000000,-0.000000;;, - 16;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 17;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 18;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 19;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 20;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 21;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 22;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 23;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 24;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 25;4;-0.037588, 0.999180,-0.000000,-0.000000;;, - 26;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 27;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 28;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 29;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 30;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 31;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 32;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 33;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 34;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 35;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 36;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 37;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 38;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 39;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 40;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 41;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 42;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 43;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 44;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 45;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 46;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 47;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 48;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 49;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 50;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 51;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 52;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 53;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 54;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 55;4;-0.037588, 0.999180,-0.000000,-0.000000;;, - 56;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 57;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 58;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 59;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 60;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 61;4;-0.043616, 0.999053,-0.000000,-0.000000;;, - 62;4;-0.043594, 0.999067,-0.000000,-0.000000;;, - 63;4;-0.043536, 0.999089,-0.000000,-0.000000;;, - 64;4;-0.043427, 0.999117,-0.000000,-0.000000;;, - 65;4;-0.043250, 0.999151,-0.000000,-0.000000;;, - 66;4;-0.042989, 0.999191,-0.000000,-0.000000;;, - 67;4;-0.042627, 0.999235,-0.000000,-0.000000;;, - 68;4;-0.042144, 0.999283,-0.000000,-0.000000;;, - 69;4;-0.041519, 0.999336,-0.000000,-0.000000;;, - 70;4;-0.040726, 0.999391,-0.000000,-0.000000;;, - 71;4;-0.039733, 0.999450,-0.000000,-0.000000;;, - 72;4;-0.038501, 0.999511,-0.000000,-0.000000;;, - 73;4;-0.036980, 0.999575,-0.000000,-0.000000;;, - 74;4;-0.035101, 0.999640,-0.000000,-0.000000;;, - 75;4;-0.032770, 0.999707,-0.000000,-0.000000;;, - 76;4;-0.029842, 0.999774,-0.000000,-0.000000;;, - 77;4;-0.026086, 0.999841,-0.000000,-0.000000;;, - 78;4;-0.021070, 0.999906,-0.000000,-0.000000;;, - 79;4;-0.013794, 0.999964,-0.000000,-0.000000;;, - 80;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 81;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 82;4; 0.705874, 0.708245, 0.000000,-0.000000;;, - 83;4; 0.703907, 0.710101, 0.000000,-0.000000;;, - 84;4; 0.701752, 0.712152, 0.000000,-0.000000;;, - 85;4; 0.699533, 0.714271, 0.000000,-0.000000;;, - 86;4; 0.697308, 0.716402, 0.000000,-0.000000;;, - 87;4; 0.695107, 0.718513, 0.000000,-0.000000;;, - 88;4; 0.692951, 0.720584, 0.000000,-0.000000;;, - 89;4; 0.690857, 0.722597, 0.000000,-0.000000;;, - 90;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 91;4; 0.686904, 0.726399, 0.000000,-0.000000;;, - 92;4; 0.685070, 0.728163, 0.000000,-0.000000;;, - 93;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 94;4; 0.681750, 0.731358, 0.000000,-0.000000;;, - 95;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 96;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 97;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 98;4; 0.676923, 0.735999, 0.000000,-0.000000;;, - 99;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 100;4; 0.675753, 0.737121, 0.000000,-0.000000;;, - 101;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 102;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 103;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 104;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 105;4; 0.678392, 0.734596, 0.000000,-0.000000;;, - 106;4; 0.679948, 0.733105, 0.000000,-0.000000;;, - 107;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 108;4; 0.683939, 0.729285, 0.000000,-0.000000;;, - 109;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 110;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 111;4; 0.691348, 0.722192, 0.000000,-0.000000;;, - 112;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 113;4; 0.696414, 0.717343, 0.000000,-0.000000;;, - 114;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 115;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 116;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 117;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 118;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 119;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 120;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 121;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 122;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 123;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 124;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 125;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 126;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 127;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 128;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 129;4; 0.696414, 0.717343, 0.000000,-0.000000;;, - 130;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 131;4; 0.691348, 0.722192, 0.000000,-0.000000;;, - 132;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 133;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 134;4; 0.683939, 0.729285, 0.000000,-0.000000;;, - 135;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 136;4; 0.679948, 0.733105, 0.000000,-0.000000;;, - 137;4; 0.678392, 0.734596, 0.000000,-0.000000;;, - 138;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 139;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 140;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 141;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 142;4; 0.675753, 0.737121, 0.000000,-0.000000;;, - 143;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 144;4; 0.676923, 0.735999, 0.000000,-0.000000;;, - 145;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 146;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 147;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 148;4; 0.681750, 0.731357, 0.000000,-0.000000;;, - 149;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 150;4; 0.685070, 0.728163, 0.000000,-0.000000;;, - 151;4; 0.686904, 0.726398, 0.000000,-0.000000;;, - 152;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 153;4; 0.690857, 0.722596, 0.000000,-0.000000;;, - 154;4; 0.692951, 0.720583, 0.000000,-0.000000;;, - 155;4; 0.695107, 0.718512, 0.000000,-0.000000;;, - 156;4; 0.697308, 0.716401, 0.000000,-0.000000;;, - 157;4; 0.699533, 0.714270, 0.000000,-0.000000;;, - 158;4; 0.701752, 0.712151, 0.000000,-0.000000;;, - 159;4; 0.703907, 0.710100, 0.000000,-0.000000;;, - 160;4; 0.705874, 0.708244, 0.000000,-0.000000;;, - 161;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 162;4;-0.000000, 0.991445,-0.130526,-0.000000;;, - 163;4;-0.000000, 0.991445,-0.130526,-0.000000;;, - 164;4;-0.000000, 0.991445,-0.130526,-0.000000;;, - 165;4;-0.000000, 0.991445,-0.130526,-0.000000;;, - 166;4;-0.000000, 0.991445,-0.130526,-0.000000;;, - 167;4;-0.000000, 0.991445,-0.130526,-0.000000;;, - 168;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 169;4;-0.034052, 0.993234,-0.000000,-0.000000;;, - 170;4;-0.129904, 0.974175,-0.000000,-0.000000;;, - 171;4;-0.252901, 0.949704,-0.000000,-0.000000;;, - 172;4;-0.348675, 0.930646,-0.000000,-0.000000;;, - 173;4;-0.382683, 0.923880,-0.000000,-0.000000;;, - 174;4;-0.361005, 0.930646,-0.000000,-0.000000;;, - 175;4;-0.294618, 0.949704,-0.000000,-0.000000;;, - 176;4;-0.194899, 0.974175,-0.000000,-0.000000;;, - 177;4;-0.088939, 0.993234,-0.000000,-0.000000;;, - 178;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 179;4; 0.088939, 0.993234, 0.000000,-0.000000;;, - 180;4; 0.194899, 0.974175, 0.000000,-0.000000;;, - 181;4; 0.294618, 0.949704, 0.000000,-0.000000;;, - 182;4; 0.361005, 0.930646, 0.000000,-0.000000;;, - 183;4; 0.382683, 0.923880, 0.000000,-0.000000;;, - 184;4; 0.348675, 0.930646, 0.000000,-0.000000;;, - 185;4; 0.252901, 0.949704, 0.000000,-0.000000;;, - 186;4; 0.129903, 0.974175, 0.000000,-0.000000;;, - 187;4; 0.034052, 0.993233, 0.000000,-0.000000;;, - 188;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 189;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 190;4; 0.003877, 0.999915, 0.000000,-0.000000;;, - 191;4; 0.014798, 0.999677, 0.000000,-0.000000;;, - 192;4; 0.028821, 0.999371, 0.000000,-0.000000;;, - 193;4; 0.039742, 0.999133, 0.000000,-0.000000;;, - 194;4; 0.043619, 0.999048, 0.000000,-0.000000;;, - 195;4; 0.039742, 0.999133, 0.000000,-0.000000;;, - 196;4; 0.028821, 0.999371, 0.000000,-0.000000;;, - 197;4; 0.014798, 0.999677, 0.000000,-0.000000;;, - 198;4; 0.003877, 0.999915, 0.000000,-0.000000;;, - 199;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 200;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 201;4;-0.034052, 0.993233,-0.000000,-0.000000;;, - 202;4;-0.129903, 0.974175,-0.000000,-0.000000;;, - 203;4;-0.252901, 0.949704,-0.000000,-0.000000;;, - 204;4;-0.348675, 0.930646,-0.000000,-0.000000;;, - 205;4;-0.382683, 0.923880,-0.000000,-0.000000;;, - 206;4;-0.361005, 0.930646,-0.000000,-0.000000;;, - 207;4;-0.294618, 0.949704,-0.000000,-0.000000;;, - 208;4;-0.194899, 0.974175,-0.000000,-0.000000;;, - 209;4;-0.088939, 0.993234,-0.000000,-0.000000;;, - 210;4;-0.000000, 1.000000,-0.000000,-0.000000;;, - 211;4; 0.088939, 0.993234, 0.000000,-0.000000;;, - 212;4; 0.194899, 0.974175, 0.000000,-0.000000;;, - 213;4; 0.294618, 0.949704, 0.000000,-0.000000;;, - 214;4; 0.361005, 0.930646, 0.000000,-0.000000;;, - 215;4; 0.382683, 0.923880, 0.000000,-0.000000;;, - 216;4; 0.348699, 0.930646, 0.000000,-0.000000;;, - 217;4; 0.253041, 0.949703, 0.000000,-0.000000;;, - 218;4; 0.130122, 0.974173, 0.000000,-0.000000;;, - 219;4; 0.034158, 0.993233, 0.000000,-0.000000;;, - 220;4;-0.000000, 1.000000,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 221; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 0.999999;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 0.999999;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 221; - 0;3;-1.000000, 0.000000,-0.000001;;, - 1;3;-1.000000, 0.000000,-0.000001;;, - 2;3;-1.000000,-0.000000,-0.000001;;, - 3;3;-1.000000,-0.000000,-0.000001;;, - 4;3;-1.000000,-0.000000,-0.000001;;, - 5;3;-1.000000,-0.000000,-0.000001;;, - 6;3;-1.000000,-0.000000,-0.000001;;, - 7;3;-1.000000, 0.000000,-0.000001;;, - 8;3;-1.000000,-0.000000,-0.000001;;, - 9;3;-1.000000,-0.000000,-0.000001;;, - 10;3;-1.000000,-0.000000,-0.000001;;, - 11;3;-1.000000,-0.000000,-0.000000;;, - 12;3;-1.000000,-0.000000,-0.000001;;, - 13;3;-1.000000, 0.000000,-0.000001;;, - 14;3;-1.000000,-0.000000,-0.000001;;, - 15;3;-1.000000,-0.000000,-0.000001;;, - 16;3;-1.000000,-0.000000,-0.000001;;, - 17;3;-1.000000,-0.000000,-0.000000;;, - 18;3;-1.000000, 0.000000,-0.000000;;, - 19;3;-1.000000,-0.000000,-0.000000;;, - 20;3;-1.000000, 0.000000,-0.000000;;, - 21;3;-1.000000,-0.000000,-0.000001;;, - 22;3;-1.000000, 0.000000,-0.000000;;, - 23;3;-1.000000,-0.000000,-0.000000;;, - 24;3;-1.000000,-0.000000,-0.000001;;, - 25;3;-1.000000,-0.000000,-0.000000;;, - 26;3;-1.000000,-0.000000,-0.000000;;, - 27;3;-1.000000, 0.000000,-0.000001;;, - 28;3;-1.000000,-0.000000,-0.000001;;, - 29;3;-1.000000,-0.000000,-0.000001;;, - 30;3;-1.000000,-0.000000,-0.000001;;, - 31;3;-1.000000,-0.000000,-0.000001;;, - 32;3;-1.000000,-0.000000,-0.000001;;, - 33;3;-1.000000, 0.000000,-0.000001;;, - 34;3;-1.000000,-0.000000,-0.000001;;, - 35;3;-1.000000,-0.000000,-0.000001;;, - 36;3;-1.000000,-0.000000,-0.000001;;, - 37;3;-1.000000,-0.000000,-0.000001;;, - 38;3;-1.000000,-0.000000,-0.000001;;, - 39;3;-1.000000, 0.000000,-0.000001;;, - 40;3;-1.000000, 0.000000,-0.000001;;, - 41;3;-1.000000, 0.000000,-0.000001;;, - 42;3;-1.000000,-0.000000,-0.000001;;, - 43;3;-1.000000,-0.000000,-0.000001;;, - 44;3;-1.000000,-0.000000,-0.000001;;, - 45;3;-1.000000,-0.000000,-0.000001;;, - 46;3;-1.000000,-0.000000,-0.000001;;, - 47;3;-1.000000, 0.000000,-0.000001;;, - 48;3;-1.000000,-0.000000,-0.000001;;, - 49;3;-1.000000,-0.000000,-0.000001;;, - 50;3;-1.000000,-0.000000,-0.000001;;, - 51;3;-1.000000,-0.000000,-0.000001;;, - 52;3;-1.000000,-0.000000,-0.000001;;, - 53;3;-1.000000, 0.000000,-0.000001;;, - 54;3;-1.000000,-0.000000,-0.000001;;, - 55;3;-1.000000,-0.000000,-0.000000;;, - 56;3;-1.000000,-0.000000,-0.000001;;, - 57;3;-1.000000,-0.000000,-0.000000;;, - 58;3;-1.000000, 0.000000,-0.000000;;, - 59;3;-1.000000,-0.000000,-0.000000;;, - 60;3;-1.000000, 0.000000,-0.000000;;, - 61;3;-1.000000, 0.000000,-0.000001;;, - 62;3;-1.000000,-0.000000,-0.000001;;, - 63;3;-1.000000,-0.000000,-0.000001;;, - 64;3;-1.000000, 0.000000,-0.000001;;, - 65;3;-1.000000,-0.000000,-0.000000;;, - 66;3;-1.000000,-0.000000,-0.000001;;, - 67;3;-1.000000,-0.000000,-0.000001;;, - 68;3;-1.000000, 0.000000,-0.000001;;, - 69;3;-1.000000,-0.000000,-0.000001;;, - 70;3;-1.000000,-0.000000,-0.000001;;, - 71;3;-1.000000,-0.000000,-0.000001;;, - 72;3;-1.000000,-0.000000,-0.000001;;, - 73;3;-1.000000, 0.000000,-0.000001;;, - 74;3;-1.000000,-0.000000,-0.000001;;, - 75;3;-1.000000, 0.000000,-0.000001;;, - 76;3;-1.000000,-0.000000,-0.000001;;, - 77;3;-1.000000,-0.000000,-0.000001;;, - 78;3;-1.000000, 0.000000,-0.000001;;, - 79;3;-1.000000,-0.000000,-0.000001;;, - 80;3;-1.000000, 0.000000,-0.000001;;, - 81;3;-1.000000, 0.000000,-0.000001;;, - 82;3;-1.000000,-0.000000,-0.000001;;, - 83;3;-1.000000,-0.000000,-0.000001;;, - 84;3;-1.000000,-0.000000,-0.000001;;, - 85;3;-1.000000,-0.000000,-0.000001;;, - 86;3;-1.000000,-0.000000,-0.000001;;, - 87;3;-1.000000,-0.000000,-0.000001;;, - 88;3;-1.000000,-0.000000,-0.000001;;, - 89;3;-1.000000,-0.000000,-0.000001;;, - 90;3;-1.000000,-0.000000,-0.000001;;, - 91;3;-1.000000,-0.000000,-0.000001;;, - 92;3;-1.000000,-0.000000,-0.000001;;, - 93;3;-1.000000,-0.000000,-0.000001;;, - 94;3;-1.000000,-0.000000,-0.000001;;, - 95;3;-1.000000,-0.000000,-0.000001;;, - 96;3;-1.000000,-0.000000,-0.000001;;, - 97;3;-1.000000,-0.000000,-0.000001;;, - 98;3;-1.000000,-0.000000,-0.000001;;, - 99;3;-1.000000,-0.000000,-0.000001;;, - 100;3;-1.000000,-0.000000,-0.000001;;, - 101;3;-1.000000,-0.000000,-0.000001;;, - 102;3;-1.000000,-0.000000,-0.000001;;, - 103;3;-1.000000,-0.000000,-0.000001;;, - 104;3;-1.000000,-0.000000,-0.000001;;, - 105;3;-1.000000,-0.000000,-0.000001;;, - 106;3;-1.000000,-0.000000,-0.000001;;, - 107;3;-1.000000,-0.000000,-0.000001;;, - 108;3;-1.000000,-0.000000,-0.000001;;, - 109;3;-1.000000,-0.000000,-0.000001;;, - 110;3;-1.000000,-0.000000,-0.000001;;, - 111;3;-1.000000,-0.000000,-0.000001;;, - 112;3;-1.000000,-0.000000,-0.000001;;, - 113;3;-1.000000,-0.000000,-0.000001;;, - 114;3;-1.000000,-0.000000,-0.000001;;, - 115;3;-1.000000,-0.000000,-0.000001;;, - 116;3;-1.000000,-0.000000,-0.000001;;, - 117;3;-1.000000,-0.000000,-0.000001;;, - 118;3;-1.000000,-0.000000,-0.000001;;, - 119;3;-1.000000,-0.000000,-0.000001;;, - 120;3;-1.000000,-0.000000,-0.000001;;, - 121;3;-1.000000, 0.000000,-0.000001;;, - 122;3;-1.000000,-0.000000,-0.000001;;, - 123;3;-1.000000,-0.000000,-0.000001;;, - 124;3;-1.000000,-0.000000,-0.000001;;, - 125;3;-1.000000,-0.000000,-0.000001;;, - 126;3;-1.000000,-0.000000,-0.000001;;, - 127;3;-1.000000,-0.000000,-0.000001;;, - 128;3;-1.000000,-0.000000,-0.000001;;, - 129;3;-1.000000,-0.000000,-0.000001;;, - 130;3;-1.000000,-0.000000,-0.000001;;, - 131;3;-1.000000,-0.000000,-0.000001;;, - 132;3;-1.000000,-0.000000,-0.000001;;, - 133;3;-1.000000,-0.000000,-0.000001;;, - 134;3;-1.000000,-0.000000,-0.000001;;, - 135;3;-1.000000,-0.000000,-0.000001;;, - 136;3;-1.000000,-0.000000,-0.000001;;, - 137;3;-1.000000,-0.000000,-0.000001;;, - 138;3;-1.000000,-0.000000,-0.000001;;, - 139;3;-1.000000,-0.000000,-0.000001;;, - 140;3;-1.000000,-0.000000,-0.000001;;, - 141;3;-1.000000,-0.000000,-0.000001;;, - 142;3;-1.000000,-0.000000,-0.000001;;, - 143;3;-1.000000,-0.000000,-0.000001;;, - 144;3;-1.000000,-0.000000,-0.000001;;, - 145;3;-1.000000,-0.000000,-0.000001;;, - 146;3;-1.000000,-0.000000,-0.000001;;, - 147;3;-1.000000,-0.000000,-0.000001;;, - 148;3;-1.000000,-0.000000,-0.000001;;, - 149;3;-1.000000,-0.000000,-0.000001;;, - 150;3;-1.000000,-0.000000,-0.000001;;, - 151;3;-1.000000,-0.000000,-0.000001;;, - 152;3;-1.000000,-0.000000,-0.000001;;, - 153;3;-1.000000,-0.000000,-0.000001;;, - 154;3;-1.000000,-0.000000,-0.000001;;, - 155;3;-1.000000,-0.000000,-0.000001;;, - 156;3;-1.000000,-0.000000,-0.000001;;, - 157;3;-1.000000,-0.000000,-0.000001;;, - 158;3;-1.000000,-0.000000,-0.000001;;, - 159;3;-1.000000,-0.000000,-0.000001;;, - 160;3;-1.000000,-0.000000,-0.000001;;, - 161;3;-1.000000, 0.000000,-0.000001;;, - 162;3;-1.000000,-0.000000,-0.000001;;, - 163;3;-1.000000,-0.000000,-0.000001;;, - 164;3;-1.000000,-0.000000,-0.000001;;, - 165;3;-1.000000,-0.000000,-0.000001;;, - 166;3;-1.000000,-0.000000,-0.000001;;, - 167;3;-1.000000,-0.000000,-0.000001;;, - 168;3;-1.000000, 0.000000,-0.000001;;, - 169;3;-1.000000, 0.000000,-0.000001;;, - 170;3;-1.000000, 0.000000,-0.000001;;, - 171;3;-1.000000, 0.000000,-0.000001;;, - 172;3;-1.000000, 0.000000,-0.000001;;, - 173;3;-1.000000, 0.000000,-0.000001;;, - 174;3;-1.000000, 0.000000,-0.000001;;, - 175;3;-1.000000, 0.000000,-0.000001;;, - 176;3;-1.000000, 0.000000,-0.000001;;, - 177;3;-1.000000, 0.000000,-0.000001;;, - 178;3;-1.000000, 0.000000,-0.000001;;, - 179;3;-1.000000, 0.000000,-0.000001;;, - 180;3;-1.000000, 0.000000,-0.000001;;, - 181;3;-1.000000, 0.000000,-0.000001;;, - 182;3;-1.000000, 0.000000,-0.000001;;, - 183;3;-1.000000, 0.000000,-0.000001;;, - 184;3;-1.000000, 0.000000,-0.000001;;, - 185;3;-1.000000, 0.000000,-0.000001;;, - 186;3;-1.000000, 0.000000,-0.000001;;, - 187;3;-1.000000, 0.000000,-0.000001;;, - 188;3;-1.000000, 0.000000,-0.000001;;, - 189;3;-1.000000, 0.000000,-0.000001;;, - 190;3;-1.000000,-0.000000,-0.000001;;, - 191;3;-1.000000,-0.000000,-0.000001;;, - 192;3;-1.000000,-0.000000,-0.000001;;, - 193;3;-1.000000, 0.000000,-0.000001;;, - 194;3;-1.000000, 0.000000,-0.000000;;, - 195;3;-1.000000, 0.000000,-0.000001;;, - 196;3;-1.000000,-0.000000,-0.000000;;, - 197;3;-1.000000,-0.000000,-0.000001;;, - 198;3;-1.000000,-0.000000,-0.000001;;, - 199;3;-1.000000, 0.000000,-0.000001;;, - 200;3;-1.000000, 0.000000,-0.000001;;, - 201;3;-1.000000,-0.000000,-0.000001;;, - 202;3;-1.000000,-0.000000,-0.000001;;, - 203;3;-1.000000,-0.000000,-0.000001;;, - 204;3;-1.000000,-0.000000,-0.000000;;, - 205;3;-1.000000, 0.000000,-0.000000;;, - 206;3;-1.000000,-0.000000,-0.000001;;, - 207;3;-1.000000,-0.000000,-0.000001;;, - 208;3;-1.000000,-0.000000,-0.000001;;, - 209;3;-1.000000, 0.000000,-0.000000;;, - 210;3;-1.000000, 0.000000,-0.000000;;, - 211;3;-1.000000, 0.000000,-0.000001;;, - 212;3;-1.000000,-0.000000,-0.000001;;, - 213;3;-1.000000,-0.000000,-0.000001;;, - 214;3;-1.000000,-0.000000,-0.000001;;, - 215;3;-1.000000, 0.000000,-0.000000;;, - 216;3;-1.000000,-0.000000,-0.000000;;, - 217;3;-1.000000,-0.000000,-0.000000;;, - 218;3;-1.000000,-0.000000,-0.000001;;, - 219;3;-1.000000,-0.000000,-0.000001;;, - 220;3;-1.000000, 0.000000,-0.000001;;; - } - } - Animation { - {Armature_Cape} - AnimationKey { // Rotation - 0; - 221; - 0;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 1;4;-0.000274, 1.000000, 0.000000,-0.000000;;, - 2;4;-0.001107, 1.000000, 0.000000,-0.000000;;, - 3;4;-0.002500, 1.000000, 0.000000,-0.000000;;, - 4;4;-0.004443, 1.000000, 0.000000,-0.000000;;, - 5;4;-0.006913, 1.000000, 0.000000,-0.000000;;, - 6;4;-0.009867, 1.000000, 0.000000,-0.000000;;, - 7;4;-0.013244, 1.000000, 0.000000,-0.000000;;, - 8;4;-0.016962, 1.000000, 0.000000,-0.000000;;, - 9;4;-0.020919, 1.000000, 0.000000,-0.000000;;, - 10;4;-0.024999, 1.000000, 0.000000,-0.000000;;, - 11;4;-0.029079, 1.000000, 0.000000,-0.000000;;, - 12;4;-0.033036, 1.000000, 0.000000,-0.000000;;, - 13;4;-0.036753, 1.000000, 0.000000,-0.000000;;, - 14;4;-0.040130, 1.000000, 0.000000,-0.000000;;, - 15;4;-0.043085, 1.000000, 0.000000,-0.000000;;, - 16;4;-0.045554, 1.000000, 0.000000,-0.000000;;, - 17;4;-0.047498, 1.000000, 0.000000,-0.000000;;, - 18;4;-0.048890, 1.000000, 0.000000,-0.000000;;, - 19;4;-0.049723, 1.000000, 0.000000,-0.000000;;, - 20;4;-0.049999, 1.000000, 0.000000,-0.000000;;, - 21;4;-0.049723, 1.000000, 0.000000,-0.000000;;, - 22;4;-0.048890, 1.000000, 0.000000,-0.000000;;, - 23;4;-0.047498, 1.000000, 0.000000,-0.000000;;, - 24;4;-0.045554, 1.000000, 0.000000,-0.000000;;, - 25;4;-0.043085, 1.000000, 0.000000,-0.000000;;, - 26;4;-0.040130, 1.000000, 0.000000,-0.000000;;, - 27;4;-0.036753, 1.000000, 0.000000,-0.000000;;, - 28;4;-0.033036, 1.000000, 0.000000,-0.000000;;, - 29;4;-0.029079, 1.000000, 0.000000,-0.000000;;, - 30;4;-0.024999, 1.000000, 0.000000,-0.000000;;, - 31;4;-0.020919, 1.000000, 0.000000,-0.000000;;, - 32;4;-0.016962, 1.000000, 0.000000,-0.000000;;, - 33;4;-0.013244, 1.000000, 0.000000,-0.000000;;, - 34;4;-0.009867, 1.000000, 0.000000,-0.000000;;, - 35;4;-0.006913, 1.000000, 0.000000,-0.000000;;, - 36;4;-0.004443, 1.000000, 0.000000,-0.000000;;, - 37;4;-0.002500, 1.000000, 0.000000,-0.000000;;, - 38;4;-0.001107, 1.000000, 0.000000,-0.000000;;, - 39;4;-0.000274, 1.000000, 0.000000,-0.000000;;, - 40;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 41;4;-0.000274, 1.000000, 0.000000,-0.000000;;, - 42;4;-0.001107, 1.000000, 0.000000,-0.000000;;, - 43;4;-0.002500, 1.000000, 0.000000,-0.000000;;, - 44;4;-0.004443, 1.000000, 0.000000,-0.000000;;, - 45;4;-0.006913, 1.000000, 0.000000,-0.000000;;, - 46;4;-0.009867, 1.000000, 0.000000,-0.000000;;, - 47;4;-0.013244, 1.000000, 0.000000,-0.000000;;, - 48;4;-0.016962, 1.000000, 0.000000,-0.000000;;, - 49;4;-0.020919, 1.000000, 0.000000,-0.000000;;, - 50;4;-0.024999, 1.000000, 0.000000,-0.000000;;, - 51;4;-0.029079, 1.000000, 0.000000,-0.000000;;, - 52;4;-0.033036, 1.000000, 0.000000,-0.000000;;, - 53;4;-0.036753, 1.000000, 0.000000,-0.000000;;, - 54;4;-0.040130, 1.000000, 0.000000,-0.000000;;, - 55;4;-0.043085, 1.000000, 0.000000,-0.000000;;, - 56;4;-0.045554, 1.000000, 0.000000,-0.000000;;, - 57;4;-0.047498, 1.000000, 0.000000,-0.000000;;, - 58;4;-0.048890, 1.000000, 0.000000,-0.000000;;, - 59;4;-0.049723, 1.000000, 0.000000,-0.000000;;, - 60;4;-0.049999, 1.000000, 0.000000,-0.000000;;, - 61;4;-0.049740, 1.000000, 0.000000,-0.000000;;, - 62;4;-0.049012, 1.000000, 0.000000,-0.000000;;, - 63;4;-0.047878, 1.000000, 0.000000,-0.000000;;, - 64;4;-0.046390, 1.000000, 0.000000,-0.000000;;, - 65;4;-0.044588, 1.000000, 0.000000,-0.000000;;, - 66;4;-0.042508, 1.000000, 0.000000,-0.000000;;, - 67;4;-0.040180, 1.000000, 0.000000,-0.000000;;, - 68;4;-0.037629, 1.000000, 0.000000,-0.000000;;, - 69;4;-0.034879, 1.000000, 0.000000,-0.000000;;, - 70;4;-0.031952, 1.000000, 0.000000,-0.000000;;, - 71;4;-0.028867, 1.000000, 0.000000,-0.000000;;, - 72;4;-0.025645, 1.000000, 0.000000,-0.000000;;, - 73;4;-0.022306, 1.000000, 0.000000,-0.000000;;, - 74;4;-0.018872, 1.000000, 0.000000,-0.000000;;, - 75;4;-0.015371, 1.000000, 0.000000,-0.000000;;, - 76;4;-0.011839, 1.000000, 0.000000,-0.000000;;, - 77;4;-0.008329, 1.000000, 0.000000,-0.000000;;, - 78;4;-0.004935, 1.000000, 0.000000,-0.000000;;, - 79;4;-0.001869, 1.000000, 0.000000,-0.000000;;, - 80;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 81;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 82;4;-0.001869, 1.000000, 0.000000,-0.000000;;, - 83;4;-0.004935, 1.000000, 0.000000,-0.000000;;, - 84;4;-0.008329, 1.000000, 0.000000,-0.000000;;, - 85;4;-0.011839, 1.000000, 0.000000,-0.000000;;, - 86;4;-0.015371, 1.000000, 0.000000,-0.000000;;, - 87;4;-0.018872, 1.000000, 0.000000,-0.000000;;, - 88;4;-0.022306, 1.000000, 0.000000,-0.000000;;, - 89;4;-0.025645, 1.000000, 0.000000,-0.000000;;, - 90;4;-0.028867, 1.000000, 0.000000,-0.000000;;, - 91;4;-0.031952, 1.000000, 0.000000,-0.000000;;, - 92;4;-0.034879, 1.000000, 0.000000,-0.000000;;, - 93;4;-0.037629, 1.000000, 0.000000,-0.000000;;, - 94;4;-0.040180, 1.000000, 0.000000,-0.000000;;, - 95;4;-0.042508, 1.000000, 0.000000,-0.000000;;, - 96;4;-0.044588, 1.000000, 0.000000,-0.000000;;, - 97;4;-0.046390, 1.000000, 0.000000,-0.000000;;, - 98;4;-0.047878, 1.000000, 0.000000,-0.000000;;, - 99;4;-0.049012, 1.000000, 0.000000,-0.000000;;, - 100;4;-0.049740, 1.000000, 0.000000,-0.000000;;, - 101;4;-0.049999, 1.000000, 0.000000,-0.000000;;, - 102;4;-0.049723, 1.000000, 0.000000,-0.000000;;, - 103;4;-0.048890, 1.000000, 0.000000,-0.000000;;, - 104;4;-0.047498, 1.000000, 0.000000,-0.000000;;, - 105;4;-0.045554, 1.000000, 0.000000,-0.000000;;, - 106;4;-0.043085, 1.000000, 0.000000,-0.000000;;, - 107;4;-0.040130, 1.000000, 0.000000,-0.000000;;, - 108;4;-0.036753, 1.000000, 0.000000,-0.000000;;, - 109;4;-0.033036, 1.000000, 0.000000,-0.000000;;, - 110;4;-0.029079, 1.000000, 0.000000,-0.000000;;, - 111;4;-0.024999, 1.000000, 0.000000,-0.000000;;, - 112;4;-0.020919, 1.000000, 0.000000,-0.000000;;, - 113;4;-0.016962, 1.000000, 0.000000,-0.000000;;, - 114;4;-0.013244, 1.000000, 0.000000,-0.000000;;, - 115;4;-0.009867, 1.000000, 0.000000,-0.000000;;, - 116;4;-0.006913, 1.000000, 0.000000,-0.000000;;, - 117;4;-0.004443, 1.000000, 0.000000,-0.000000;;, - 118;4;-0.002500, 1.000000, 0.000000,-0.000000;;, - 119;4;-0.001107, 1.000000, 0.000000,-0.000000;;, - 120;4;-0.000274, 1.000000, 0.000000,-0.000000;;, - 121;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 122;4;-0.000274, 1.000000, 0.000000,-0.000000;;, - 123;4;-0.001107, 1.000000, 0.000000,-0.000000;;, - 124;4;-0.002500, 1.000000, 0.000000,-0.000000;;, - 125;4;-0.004443, 1.000000, 0.000000,-0.000000;;, - 126;4;-0.006913, 1.000000, 0.000000,-0.000000;;, - 127;4;-0.009867, 1.000000, 0.000000,-0.000000;;, - 128;4;-0.013244, 1.000000, 0.000000,-0.000000;;, - 129;4;-0.016962, 1.000000, 0.000000,-0.000000;;, - 130;4;-0.020919, 1.000000, 0.000000,-0.000000;;, - 131;4;-0.024999, 1.000000, 0.000000,-0.000000;;, - 132;4;-0.029079, 1.000000, 0.000000,-0.000000;;, - 133;4;-0.033036, 1.000000, 0.000000,-0.000000;;, - 134;4;-0.036753, 1.000000, 0.000000,-0.000000;;, - 135;4;-0.040130, 1.000000, 0.000000,-0.000000;;, - 136;4;-0.043085, 1.000000, 0.000000,-0.000000;;, - 137;4;-0.045554, 1.000000, 0.000000,-0.000000;;, - 138;4;-0.047498, 1.000000, 0.000000,-0.000000;;, - 139;4;-0.048890, 1.000000, 0.000000,-0.000000;;, - 140;4;-0.049723, 1.000000, 0.000000,-0.000000;;, - 141;4;-0.049999, 1.000000, 0.000000,-0.000000;;, - 142;4;-0.049995, 1.000000, 0.000000,-0.000000;;, - 143;4;-0.049970, 1.000000, 0.000000,-0.000000;;, - 144;4;-0.049904, 1.000000, 0.000000,-0.000000;;, - 145;4;-0.049779, 1.000000, 0.000000,-0.000000;;, - 146;4;-0.049577, 1.000000, 0.000000,-0.000000;;, - 147;4;-0.049280, 1.000000, 0.000000,-0.000000;;, - 148;4;-0.048868, 1.000000, 0.000000,-0.000000;;, - 149;4;-0.048320, 1.000000, 0.000000,-0.000000;;, - 150;4;-0.047610, 1.000000, 0.000000,-0.000000;;, - 151;4;-0.046710, 1.000000, 0.000000,-0.000000;;, - 152;4;-0.045583, 1.000000, 0.000000,-0.000000;;, - 153;4;-0.044186, 1.000000, 0.000000,-0.000000;;, - 154;4;-0.042460, 1.000000, 0.000000,-0.000000;;, - 155;4;-0.040330, 1.000000, 0.000000,-0.000000;;, - 156;4;-0.037685, 1.000000, 0.000000,-0.000000;;, - 157;4;-0.034364, 1.000000, 0.000000,-0.000000;;, - 158;4;-0.030099, 1.000000, 0.000000,-0.000000;;, - 159;4;-0.024395, 1.000000, 0.000000,-0.000000;;, - 160;4;-0.016088, 1.000000, 0.000000,-0.000000;;, - 161;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 162;4; 1.000001, 0.999999,-0.000000,-0.000000;;, - 163;4; 1.000001, 0.999999,-0.000000,-0.000000;;, - 164;4; 1.000001, 0.999999,-0.000000,-0.000000;;, - 165;4; 1.000001, 0.999999,-0.000000,-0.000000;;, - 166;4; 1.000001, 0.999999,-0.000000,-0.000000;;, - 167;4; 1.000001, 0.999999,-0.000000,-0.000000;;, - 168;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 169;4;-0.147005, 1.000000, 0.000000,-0.000000;;, - 170;4;-0.239050, 1.000000, 0.000000,-0.000000;;, - 171;4;-0.283788, 1.000000, 0.000000,-0.000000;;, - 172;4;-0.298244, 1.000000, 0.000000,-0.000000;;, - 173;4;-0.299999, 1.000000, 0.000000,-0.000000;;, - 174;4;-0.273332, 1.000000, 0.000000,-0.000000;;, - 175;4;-0.198220, 1.000000, 0.000000,-0.000000;;, - 176;4;-0.101777, 1.000000, 0.000000,-0.000000;;, - 177;4;-0.026665, 1.000000, 0.000000,-0.000000;;, - 178;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 179;4;-0.026665, 1.000000, 0.000000,-0.000000;;, - 180;4;-0.101777, 1.000000, 0.000000,-0.000000;;, - 181;4;-0.198220, 1.000000, 0.000000,-0.000000;;, - 182;4;-0.273332, 1.000000, 0.000000,-0.000000;;, - 183;4;-0.299999, 1.000000, 0.000000,-0.000000;;, - 184;4;-0.273336, 1.000000, 0.000000,-0.000000;;, - 185;4;-0.198243, 1.000000, 0.000000,-0.000000;;, - 186;4;-0.101812, 1.000000, 0.000000,-0.000000;;, - 187;4;-0.026682, 1.000000, 0.000000,-0.000000;;, - 188;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 189;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 190;4;-0.008888, 1.000000, 0.000000,-0.000000;;, - 191;4;-0.033926, 1.000000, 0.000000,-0.000000;;, - 192;4;-0.066073, 1.000000, 0.000000,-0.000000;;, - 193;4;-0.091110, 1.000000, 0.000000,-0.000000;;, - 194;4;-0.099999, 1.000000, 0.000000,-0.000000;;, - 195;4;-0.091110, 1.000000, 0.000000,-0.000000;;, - 196;4;-0.066073, 1.000000, 0.000000,-0.000000;;, - 197;4;-0.033926, 1.000000, 0.000000,-0.000000;;, - 198;4;-0.008888, 1.000000, 0.000000,-0.000000;;, - 199;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 200;4; 0.000001, 1.000000, 0.000000,-0.000000;;, - 201;4;-0.026681, 1.000000, 0.000000,-0.000000;;, - 202;4;-0.101802, 1.000000, 0.000000,-0.000000;;, - 203;4;-0.198227, 1.000000, 0.000000,-0.000000;;, - 204;4;-0.273328, 1.000000, 0.000000,-0.000000;;, - 205;4;-0.299999, 1.000000, 0.000000,-0.000000;;, - 206;4;-0.291107, 1.000000, 0.000000,-0.000000;;, - 207;4;-0.266067, 1.000000, 0.000000,-0.000000;;, - 208;4;-0.233922, 1.000000, 0.000000,-0.000000;;, - 209;4;-0.208887, 1.000000, 0.000000,-0.000000;;, - 210;4;-0.199999, 1.000000, 0.000000,-0.000000;;, - 211;4;-0.208887, 1.000000, 0.000000,-0.000000;;, - 212;4;-0.233922, 1.000000, 0.000000,-0.000000;;, - 213;4;-0.266067, 1.000000, 0.000000,-0.000000;;, - 214;4;-0.291107, 1.000000, 0.000000,-0.000000;;, - 215;4;-0.299999, 1.000000, 0.000000,-0.000000;;, - 216;4;-0.273340, 1.000000, 0.000000,-0.000000;;, - 217;4;-0.198295, 1.000000, 0.000000,-0.000000;;, - 218;4;-0.101908, 1.000000, 0.000000,-0.000000;;, - 219;4;-0.026732, 1.000000, 0.000000,-0.000000;;, - 220;4; 0.000001, 1.000000, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 221; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 221; - 0;3; 0.000000, 6.750000, 0.976707;;, - 1;3; 0.000000, 6.750000, 0.976707;;, - 2;3; 0.000000, 6.750000, 0.976707;;, - 3;3; 0.000000, 6.750000, 0.976707;;, - 4;3; 0.000000, 6.750000, 0.976707;;, - 5;3; 0.000000, 6.750000, 0.976707;;, - 6;3; 0.000000, 6.750000, 0.976707;;, - 7;3; 0.000000, 6.750000, 0.976707;;, - 8;3; 0.000000, 6.750000, 0.976707;;, - 9;3; 0.000000, 6.750000, 0.976707;;, - 10;3; 0.000000, 6.750000, 0.976707;;, - 11;3; 0.000000, 6.750000, 0.976707;;, - 12;3; 0.000000, 6.750000, 0.976707;;, - 13;3; 0.000000, 6.750000, 0.976707;;, - 14;3; 0.000000, 6.750000, 0.976707;;, - 15;3; 0.000000, 6.750000, 0.976707;;, - 16;3; 0.000000, 6.750000, 0.976707;;, - 17;3; 0.000000, 6.750000, 0.976707;;, - 18;3; 0.000000, 6.750000, 0.976707;;, - 19;3; 0.000000, 6.750000, 0.976707;;, - 20;3; 0.000000, 6.750000, 0.976707;;, - 21;3; 0.000000, 6.750000, 0.976707;;, - 22;3; 0.000000, 6.750000, 0.976707;;, - 23;3; 0.000000, 6.750000, 0.976707;;, - 24;3; 0.000000, 6.750000, 0.976707;;, - 25;3; 0.000000, 6.750000, 0.976707;;, - 26;3; 0.000000, 6.750000, 0.976707;;, - 27;3; 0.000000, 6.750000, 0.976707;;, - 28;3; 0.000000, 6.750000, 0.976707;;, - 29;3; 0.000000, 6.750000, 0.976707;;, - 30;3; 0.000000, 6.750000, 0.976707;;, - 31;3; 0.000000, 6.750000, 0.976707;;, - 32;3; 0.000000, 6.750000, 0.976707;;, - 33;3; 0.000000, 6.750000, 0.976707;;, - 34;3; 0.000000, 6.750000, 0.976707;;, - 35;3; 0.000000, 6.750000, 0.976707;;, - 36;3; 0.000000, 6.750000, 0.976707;;, - 37;3; 0.000000, 6.750000, 0.976707;;, - 38;3; 0.000000, 6.750000, 0.976707;;, - 39;3; 0.000000, 6.750000, 0.976707;;, - 40;3; 0.000000, 6.750000, 0.976707;;, - 41;3; 0.000000, 6.750000, 0.976707;;, - 42;3; 0.000000, 6.750000, 0.976707;;, - 43;3; 0.000000, 6.750000, 0.976707;;, - 44;3; 0.000000, 6.750000, 0.976707;;, - 45;3; 0.000000, 6.750000, 0.976707;;, - 46;3; 0.000000, 6.750000, 0.976707;;, - 47;3; 0.000000, 6.750000, 0.976707;;, - 48;3; 0.000000, 6.750000, 0.976707;;, - 49;3; 0.000000, 6.750000, 0.976707;;, - 50;3; 0.000000, 6.750000, 0.976707;;, - 51;3; 0.000000, 6.750000, 0.976707;;, - 52;3; 0.000000, 6.750000, 0.976707;;, - 53;3; 0.000000, 6.750000, 0.976707;;, - 54;3; 0.000000, 6.750000, 0.976707;;, - 55;3; 0.000000, 6.750000, 0.976707;;, - 56;3; 0.000000, 6.750000, 0.976707;;, - 57;3; 0.000000, 6.750000, 0.976707;;, - 58;3; 0.000000, 6.750000, 0.976707;;, - 59;3; 0.000000, 6.750000, 0.976707;;, - 60;3; 0.000000, 6.750000, 0.976707;;, - 61;3; 0.000000, 6.750000, 0.976707;;, - 62;3; 0.000000, 6.750000, 0.976707;;, - 63;3; 0.000000, 6.750000, 0.976707;;, - 64;3; 0.000000, 6.750000, 0.976707;;, - 65;3; 0.000000, 6.750000, 0.976707;;, - 66;3; 0.000000, 6.750000, 0.976707;;, - 67;3; 0.000000, 6.750000, 0.976707;;, - 68;3; 0.000000, 6.750000, 0.976707;;, - 69;3; 0.000000, 6.750000, 0.976707;;, - 70;3; 0.000000, 6.750000, 0.976707;;, - 71;3; 0.000000, 6.750000, 0.976707;;, - 72;3; 0.000000, 6.750000, 0.976707;;, - 73;3; 0.000000, 6.750000, 0.976707;;, - 74;3; 0.000000, 6.750000, 0.976707;;, - 75;3; 0.000000, 6.750000, 0.976707;;, - 76;3; 0.000000, 6.750000, 0.976707;;, - 77;3; 0.000000, 6.750000, 0.976707;;, - 78;3; 0.000000, 6.750000, 0.976707;;, - 79;3; 0.000000, 6.750000, 0.976707;;, - 80;3; 0.000000, 6.750000, 0.976707;;, - 81;3; 0.000000, 6.750000, 0.976707;;, - 82;3; 0.000000, 6.750000, 0.976707;;, - 83;3; 0.000000, 6.750000, 0.976707;;, - 84;3; 0.000000, 6.750000, 0.976707;;, - 85;3; 0.000000, 6.750000, 0.976707;;, - 86;3; 0.000000, 6.750000, 0.976707;;, - 87;3; 0.000000, 6.750000, 0.976707;;, - 88;3; 0.000000, 6.750000, 0.976707;;, - 89;3; 0.000000, 6.750000, 0.976707;;, - 90;3; 0.000000, 6.750000, 0.976707;;, - 91;3; 0.000000, 6.750000, 0.976707;;, - 92;3; 0.000000, 6.750000, 0.976707;;, - 93;3; 0.000000, 6.750000, 0.976707;;, - 94;3; 0.000000, 6.750000, 0.976707;;, - 95;3; 0.000000, 6.750000, 0.976707;;, - 96;3; 0.000000, 6.750000, 0.976707;;, - 97;3; 0.000000, 6.750000, 0.976707;;, - 98;3; 0.000000, 6.750000, 0.976707;;, - 99;3; 0.000000, 6.750000, 0.976707;;, - 100;3; 0.000000, 6.750000, 0.976707;;, - 101;3; 0.000000, 6.750000, 0.976707;;, - 102;3; 0.000000, 6.750000, 0.976707;;, - 103;3; 0.000000, 6.750000, 0.976707;;, - 104;3; 0.000000, 6.750000, 0.976707;;, - 105;3; 0.000000, 6.750000, 0.976707;;, - 106;3; 0.000000, 6.750000, 0.976707;;, - 107;3; 0.000000, 6.750000, 0.976707;;, - 108;3; 0.000000, 6.750000, 0.976707;;, - 109;3; 0.000000, 6.750000, 0.976707;;, - 110;3; 0.000000, 6.750000, 0.976707;;, - 111;3; 0.000000, 6.750000, 0.976707;;, - 112;3; 0.000000, 6.750000, 0.976707;;, - 113;3; 0.000000, 6.750000, 0.976707;;, - 114;3; 0.000000, 6.750000, 0.976707;;, - 115;3; 0.000000, 6.750000, 0.976707;;, - 116;3; 0.000000, 6.750000, 0.976707;;, - 117;3; 0.000000, 6.750000, 0.976707;;, - 118;3; 0.000000, 6.750000, 0.976707;;, - 119;3; 0.000000, 6.750000, 0.976707;;, - 120;3; 0.000000, 6.750000, 0.976707;;, - 121;3; 0.000000, 6.750000, 0.976707;;, - 122;3; 0.000000, 6.750000, 0.976707;;, - 123;3; 0.000000, 6.750000, 0.976707;;, - 124;3; 0.000000, 6.750000, 0.976707;;, - 125;3; 0.000000, 6.750000, 0.976707;;, - 126;3; 0.000000, 6.750000, 0.976707;;, - 127;3; 0.000000, 6.750000, 0.976707;;, - 128;3; 0.000000, 6.750000, 0.976707;;, - 129;3; 0.000000, 6.750000, 0.976707;;, - 130;3; 0.000000, 6.750000, 0.976707;;, - 131;3; 0.000000, 6.750000, 0.976707;;, - 132;3; 0.000000, 6.750000, 0.976707;;, - 133;3; 0.000000, 6.750000, 0.976707;;, - 134;3; 0.000000, 6.750000, 0.976707;;, - 135;3; 0.000000, 6.750000, 0.976707;;, - 136;3; 0.000000, 6.750000, 0.976707;;, - 137;3; 0.000000, 6.750000, 0.976707;;, - 138;3; 0.000000, 6.750000, 0.976707;;, - 139;3; 0.000000, 6.750000, 0.976707;;, - 140;3; 0.000000, 6.750000, 0.976707;;, - 141;3; 0.000000, 6.750000, 0.976707;;, - 142;3; 0.000000, 6.750000, 0.976707;;, - 143;3; 0.000000, 6.750000, 0.976707;;, - 144;3; 0.000000, 6.750000, 0.976707;;, - 145;3; 0.000000, 6.750000, 0.976707;;, - 146;3; 0.000000, 6.750000, 0.976707;;, - 147;3; 0.000000, 6.750000, 0.976707;;, - 148;3; 0.000000, 6.750000, 0.976707;;, - 149;3; 0.000000, 6.750000, 0.976707;;, - 150;3; 0.000000, 6.750000, 0.976707;;, - 151;3; 0.000000, 6.750000, 0.976707;;, - 152;3; 0.000000, 6.750000, 0.976707;;, - 153;3; 0.000000, 6.750000, 0.976707;;, - 154;3; 0.000000, 6.750000, 0.976707;;, - 155;3; 0.000000, 6.750000, 0.976707;;, - 156;3; 0.000000, 6.750000, 0.976707;;, - 157;3; 0.000000, 6.750000, 0.976707;;, - 158;3; 0.000000, 6.750000, 0.976707;;, - 159;3; 0.000000, 6.750000, 0.976707;;, - 160;3; 0.000000, 6.750000, 0.976707;;, - 161;3; 0.000000, 6.750000, 0.976707;;, - 162;3; 0.000000, 6.750000, 0.976707;;, - 163;3; 0.000000, 6.750000, 0.976707;;, - 164;3; 0.000000, 6.750000, 0.976707;;, - 165;3; 0.000000, 6.750000, 0.976707;;, - 166;3; 0.000000, 6.750000, 0.976707;;, - 167;3; 0.000000, 6.750000, 0.976707;;, - 168;3; 0.000000, 6.750000, 0.976707;;, - 169;3; 0.000000, 6.750000, 0.976707;;, - 170;3; 0.000000, 6.750000, 0.976707;;, - 171;3; 0.000000, 6.750000, 0.976707;;, - 172;3; 0.000000, 6.750000, 0.976707;;, - 173;3; 0.000000, 6.750000, 0.976707;;, - 174;3; 0.000000, 6.750000, 0.976707;;, - 175;3; 0.000000, 6.750000, 0.976707;;, - 176;3; 0.000000, 6.750000, 0.976707;;, - 177;3; 0.000000, 6.750000, 0.976707;;, - 178;3; 0.000000, 6.750000, 0.976707;;, - 179;3; 0.000000, 6.750000, 0.976707;;, - 180;3; 0.000000, 6.750000, 0.976707;;, - 181;3; 0.000000, 6.750000, 0.976707;;, - 182;3; 0.000000, 6.750000, 0.976707;;, - 183;3; 0.000000, 6.750000, 0.976707;;, - 184;3; 0.000000, 6.750000, 0.976707;;, - 185;3; 0.000000, 6.750000, 0.976707;;, - 186;3; 0.000000, 6.750000, 0.976707;;, - 187;3; 0.000000, 6.750000, 0.976707;;, - 188;3; 0.000000, 6.750000, 0.976707;;, - 189;3; 0.000000, 6.750000, 0.976707;;, - 190;3; 0.000000, 6.750000, 0.976707;;, - 191;3; 0.000000, 6.750000, 0.976707;;, - 192;3; 0.000000, 6.750000, 0.976707;;, - 193;3; 0.000000, 6.750000, 0.976707;;, - 194;3; 0.000000, 6.750000, 0.976707;;, - 195;3; 0.000000, 6.750000, 0.976707;;, - 196;3; 0.000000, 6.750000, 0.976707;;, - 197;3; 0.000000, 6.750000, 0.976707;;, - 198;3; 0.000000, 6.750000, 0.976707;;, - 199;3; 0.000000, 6.750000, 0.976707;;, - 200;3; 0.000000, 6.750000, 0.976707;;, - 201;3; 0.000000, 6.750000, 0.976707;;, - 202;3; 0.000000, 6.750000, 0.976707;;, - 203;3; 0.000000, 6.750000, 0.976707;;, - 204;3; 0.000000, 6.750000, 0.976707;;, - 205;3; 0.000000, 6.750000, 0.976707;;, - 206;3; 0.000000, 6.750000, 0.976707;;, - 207;3; 0.000000, 6.750000, 0.976707;;, - 208;3; 0.000000, 6.750000, 0.976707;;, - 209;3; 0.000000, 6.750000, 0.976707;;, - 210;3; 0.000000, 6.750000, 0.976707;;, - 211;3; 0.000000, 6.750000, 0.976707;;, - 212;3; 0.000000, 6.750000, 0.976707;;, - 213;3; 0.000000, 6.750000, 0.976707;;, - 214;3; 0.000000, 6.750000, 0.976707;;, - 215;3; 0.000000, 6.750000, 0.976707;;, - 216;3; 0.000000, 6.750000, 0.976707;;, - 217;3; 0.000000, 6.750000, 0.976707;;, - 218;3; 0.000000, 6.750000, 0.976707;;, - 219;3; 0.000000, 6.750000, 0.976707;;, - 220;3; 0.000000, 6.750000, 0.976707;;; - } - } -} // End of AnimationSet ArmatureAction -AnimationSet Default_Action { - Animation { - {Player} - AnimationKey { // Rotation - 0; - 221; - 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 221; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 221; - 0;3; 0.000000, 0.000000, 0.000000;;, - 1;3; 0.000000, 0.000000, 0.000000;;, - 2;3; 0.000000, 0.000000, 0.000000;;, - 3;3; 0.000000, 0.000000, 0.000000;;, - 4;3; 0.000000, 0.000000, 0.000000;;, - 5;3; 0.000000, 0.000000, 0.000000;;, - 6;3; 0.000000, 0.000000, 0.000000;;, - 7;3; 0.000000, 0.000000, 0.000000;;, - 8;3; 0.000000, 0.000000, 0.000000;;, - 9;3; 0.000000, 0.000000, 0.000000;;, - 10;3; 0.000000, 0.000000, 0.000000;;, - 11;3; 0.000000, 0.000000, 0.000000;;, - 12;3; 0.000000, 0.000000, 0.000000;;, - 13;3; 0.000000, 0.000000, 0.000000;;, - 14;3; 0.000000, 0.000000, 0.000000;;, - 15;3; 0.000000, 0.000000, 0.000000;;, - 16;3; 0.000000, 0.000000, 0.000000;;, - 17;3; 0.000000, 0.000000, 0.000000;;, - 18;3; 0.000000, 0.000000, 0.000000;;, - 19;3; 0.000000, 0.000000, 0.000000;;, - 20;3; 0.000000, 0.000000, 0.000000;;, - 21;3; 0.000000, 0.000000, 0.000000;;, - 22;3; 0.000000, 0.000000, 0.000000;;, - 23;3; 0.000000, 0.000000, 0.000000;;, - 24;3; 0.000000, 0.000000, 0.000000;;, - 25;3; 0.000000, 0.000000, 0.000000;;, - 26;3; 0.000000, 0.000000, 0.000000;;, - 27;3; 0.000000, 0.000000, 0.000000;;, - 28;3; 0.000000, 0.000000, 0.000000;;, - 29;3; 0.000000, 0.000000, 0.000000;;, - 30;3; 0.000000, 0.000000, 0.000000;;, - 31;3; 0.000000, 0.000000, 0.000000;;, - 32;3; 0.000000, 0.000000, 0.000000;;, - 33;3; 0.000000, 0.000000, 0.000000;;, - 34;3; 0.000000, 0.000000, 0.000000;;, - 35;3; 0.000000, 0.000000, 0.000000;;, - 36;3; 0.000000, 0.000000, 0.000000;;, - 37;3; 0.000000, 0.000000, 0.000000;;, - 38;3; 0.000000, 0.000000, 0.000000;;, - 39;3; 0.000000, 0.000000, 0.000000;;, - 40;3; 0.000000, 0.000000, 0.000000;;, - 41;3; 0.000000, 0.000000, 0.000000;;, - 42;3; 0.000000, 0.000000, 0.000000;;, - 43;3; 0.000000, 0.000000, 0.000000;;, - 44;3; 0.000000, 0.000000, 0.000000;;, - 45;3; 0.000000, 0.000000, 0.000000;;, - 46;3; 0.000000, 0.000000, 0.000000;;, - 47;3; 0.000000, 0.000000, 0.000000;;, - 48;3; 0.000000, 0.000000, 0.000000;;, - 49;3; 0.000000, 0.000000, 0.000000;;, - 50;3; 0.000000, 0.000000, 0.000000;;, - 51;3; 0.000000, 0.000000, 0.000000;;, - 52;3; 0.000000, 0.000000, 0.000000;;, - 53;3; 0.000000, 0.000000, 0.000000;;, - 54;3; 0.000000, 0.000000, 0.000000;;, - 55;3; 0.000000, 0.000000, 0.000000;;, - 56;3; 0.000000, 0.000000, 0.000000;;, - 57;3; 0.000000, 0.000000, 0.000000;;, - 58;3; 0.000000, 0.000000, 0.000000;;, - 59;3; 0.000000, 0.000000, 0.000000;;, - 60;3; 0.000000, 0.000000, 0.000000;;, - 61;3; 0.000000, 0.000000, 0.000000;;, - 62;3; 0.000000, 0.000000, 0.000000;;, - 63;3; 0.000000, 0.000000, 0.000000;;, - 64;3; 0.000000, 0.000000, 0.000000;;, - 65;3; 0.000000, 0.000000, 0.000000;;, - 66;3; 0.000000, 0.000000, 0.000000;;, - 67;3; 0.000000, 0.000000, 0.000000;;, - 68;3; 0.000000, 0.000000, 0.000000;;, - 69;3; 0.000000, 0.000000, 0.000000;;, - 70;3; 0.000000, 0.000000, 0.000000;;, - 71;3; 0.000000, 0.000000, 0.000000;;, - 72;3; 0.000000, 0.000000, 0.000000;;, - 73;3; 0.000000, 0.000000, 0.000000;;, - 74;3; 0.000000, 0.000000, 0.000000;;, - 75;3; 0.000000, 0.000000, 0.000000;;, - 76;3; 0.000000, 0.000000, 0.000000;;, - 77;3; 0.000000, 0.000000, 0.000000;;, - 78;3; 0.000000, 0.000000, 0.000000;;, - 79;3; 0.000000, 0.000000, 0.000000;;, - 80;3; 0.000000, 0.000000, 0.000000;;, - 81;3; 0.000000, 0.000000, 0.000000;;, - 82;3; 0.000000, 0.000000, 0.000000;;, - 83;3; 0.000000, 0.000000, 0.000000;;, - 84;3; 0.000000, 0.000000, 0.000000;;, - 85;3; 0.000000, 0.000000, 0.000000;;, - 86;3; 0.000000, 0.000000, 0.000000;;, - 87;3; 0.000000, 0.000000, 0.000000;;, - 88;3; 0.000000, 0.000000, 0.000000;;, - 89;3; 0.000000, 0.000000, 0.000000;;, - 90;3; 0.000000, 0.000000, 0.000000;;, - 91;3; 0.000000, 0.000000, 0.000000;;, - 92;3; 0.000000, 0.000000, 0.000000;;, - 93;3; 0.000000, 0.000000, 0.000000;;, - 94;3; 0.000000, 0.000000, 0.000000;;, - 95;3; 0.000000, 0.000000, 0.000000;;, - 96;3; 0.000000, 0.000000, 0.000000;;, - 97;3; 0.000000, 0.000000, 0.000000;;, - 98;3; 0.000000, 0.000000, 0.000000;;, - 99;3; 0.000000, 0.000000, 0.000000;;, - 100;3; 0.000000, 0.000000, 0.000000;;, - 101;3; 0.000000, 0.000000, 0.000000;;, - 102;3; 0.000000, 0.000000, 0.000000;;, - 103;3; 0.000000, 0.000000, 0.000000;;, - 104;3; 0.000000, 0.000000, 0.000000;;, - 105;3; 0.000000, 0.000000, 0.000000;;, - 106;3; 0.000000, 0.000000, 0.000000;;, - 107;3; 0.000000, 0.000000, 0.000000;;, - 108;3; 0.000000, 0.000000, 0.000000;;, - 109;3; 0.000000, 0.000000, 0.000000;;, - 110;3; 0.000000, 0.000000, 0.000000;;, - 111;3; 0.000000, 0.000000, 0.000000;;, - 112;3; 0.000000, 0.000000, 0.000000;;, - 113;3; 0.000000, 0.000000, 0.000000;;, - 114;3; 0.000000, 0.000000, 0.000000;;, - 115;3; 0.000000, 0.000000, 0.000000;;, - 116;3; 0.000000, 0.000000, 0.000000;;, - 117;3; 0.000000, 0.000000, 0.000000;;, - 118;3; 0.000000, 0.000000, 0.000000;;, - 119;3; 0.000000, 0.000000, 0.000000;;, - 120;3; 0.000000, 0.000000, 0.000000;;, - 121;3; 0.000000, 0.000000, 0.000000;;, - 122;3; 0.000000, 0.000000, 0.000000;;, - 123;3; 0.000000, 0.000000, 0.000000;;, - 124;3; 0.000000, 0.000000, 0.000000;;, - 125;3; 0.000000, 0.000000, 0.000000;;, - 126;3; 0.000000, 0.000000, 0.000000;;, - 127;3; 0.000000, 0.000000, 0.000000;;, - 128;3; 0.000000, 0.000000, 0.000000;;, - 129;3; 0.000000, 0.000000, 0.000000;;, - 130;3; 0.000000, 0.000000, 0.000000;;, - 131;3; 0.000000, 0.000000, 0.000000;;, - 132;3; 0.000000, 0.000000, 0.000000;;, - 133;3; 0.000000, 0.000000, 0.000000;;, - 134;3; 0.000000, 0.000000, 0.000000;;, - 135;3; 0.000000, 0.000000, 0.000000;;, - 136;3; 0.000000, 0.000000, 0.000000;;, - 137;3; 0.000000, 0.000000, 0.000000;;, - 138;3; 0.000000, 0.000000, 0.000000;;, - 139;3; 0.000000, 0.000000, 0.000000;;, - 140;3; 0.000000, 0.000000, 0.000000;;, - 141;3; 0.000000, 0.000000, 0.000000;;, - 142;3; 0.000000, 0.000000, 0.000000;;, - 143;3; 0.000000, 0.000000, 0.000000;;, - 144;3; 0.000000, 0.000000, 0.000000;;, - 145;3; 0.000000, 0.000000, 0.000000;;, - 146;3; 0.000000, 0.000000, 0.000000;;, - 147;3; 0.000000, 0.000000, 0.000000;;, - 148;3; 0.000000, 0.000000, 0.000000;;, - 149;3; 0.000000, 0.000000, 0.000000;;, - 150;3; 0.000000, 0.000000, 0.000000;;, - 151;3; 0.000000, 0.000000, 0.000000;;, - 152;3; 0.000000, 0.000000, 0.000000;;, - 153;3; 0.000000, 0.000000, 0.000000;;, - 154;3; 0.000000, 0.000000, 0.000000;;, - 155;3; 0.000000, 0.000000, 0.000000;;, - 156;3; 0.000000, 0.000000, 0.000000;;, - 157;3; 0.000000, 0.000000, 0.000000;;, - 158;3; 0.000000, 0.000000, 0.000000;;, - 159;3; 0.000000, 0.000000, 0.000000;;, - 160;3; 0.000000, 0.000000, 0.000000;;, - 161;3; 0.000000, 0.000000, 0.000000;;, - 162;3; 0.000000, 0.000000, 0.000000;;, - 163;3; 0.000000, 0.000000, 0.000000;;, - 164;3; 0.000000, 0.000000, 0.000000;;, - 165;3; 0.000000, 0.000000, 0.000000;;, - 166;3; 0.000000, 0.000000, 0.000000;;, - 167;3; 0.000000, 0.000000, 0.000000;;, - 168;3; 0.000000, 0.000000, 0.000000;;, - 169;3; 0.000000, 0.000000, 0.000000;;, - 170;3; 0.000000, 0.000000, 0.000000;;, - 171;3; 0.000000, 0.000000, 0.000000;;, - 172;3; 0.000000, 0.000000, 0.000000;;, - 173;3; 0.000000, 0.000000, 0.000000;;, - 174;3; 0.000000, 0.000000, 0.000000;;, - 175;3; 0.000000, 0.000000, 0.000000;;, - 176;3; 0.000000, 0.000000, 0.000000;;, - 177;3; 0.000000, 0.000000, 0.000000;;, - 178;3; 0.000000, 0.000000, 0.000000;;, - 179;3; 0.000000, 0.000000, 0.000000;;, - 180;3; 0.000000, 0.000000, 0.000000;;, - 181;3; 0.000000, 0.000000, 0.000000;;, - 182;3; 0.000000, 0.000000, 0.000000;;, - 183;3; 0.000000, 0.000000, 0.000000;;, - 184;3; 0.000000, 0.000000, 0.000000;;, - 185;3; 0.000000, 0.000000, 0.000000;;, - 186;3; 0.000000, 0.000000, 0.000000;;, - 187;3; 0.000000, 0.000000, 0.000000;;, - 188;3; 0.000000, 0.000000, 0.000000;;, - 189;3; 0.000000, 0.000000, 0.000000;;, - 190;3; 0.000000, 0.000000, 0.000000;;, - 191;3; 0.000000, 0.000000, 0.000000;;, - 192;3; 0.000000, 0.000000, 0.000000;;, - 193;3; 0.000000, 0.000000, 0.000000;;, - 194;3; 0.000000, 0.000000, 0.000000;;, - 195;3; 0.000000, 0.000000, 0.000000;;, - 196;3; 0.000000, 0.000000, 0.000000;;, - 197;3; 0.000000, 0.000000, 0.000000;;, - 198;3; 0.000000, 0.000000, 0.000000;;, - 199;3; 0.000000, 0.000000, 0.000000;;, - 200;3; 0.000000, 0.000000, 0.000000;;, - 201;3; 0.000000, 0.000000, 0.000000;;, - 202;3; 0.000000, 0.000000, 0.000000;;, - 203;3; 0.000000, 0.000000, 0.000000;;, - 204;3; 0.000000, 0.000000, 0.000000;;, - 205;3; 0.000000, 0.000000, 0.000000;;, - 206;3; 0.000000, 0.000000, 0.000000;;, - 207;3; 0.000000, 0.000000, 0.000000;;, - 208;3; 0.000000, 0.000000, 0.000000;;, - 209;3; 0.000000, 0.000000, 0.000000;;, - 210;3; 0.000000, 0.000000, 0.000000;;, - 211;3; 0.000000, 0.000000, 0.000000;;, - 212;3; 0.000000, 0.000000, 0.000000;;, - 213;3; 0.000000, 0.000000, 0.000000;;, - 214;3; 0.000000, 0.000000, 0.000000;;, - 215;3; 0.000000, 0.000000, 0.000000;;, - 216;3; 0.000000, 0.000000, 0.000000;;, - 217;3; 0.000000, 0.000000, 0.000000;;, - 218;3; 0.000000, 0.000000, 0.000000;;, - 219;3; 0.000000, 0.000000, 0.000000;;, - 220;3; 0.000000, 0.000000, 0.000000;;; - } - } -} // End of AnimationSet Default_Action diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index 90b6dbd..0796db5 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -1,97 +1,257 @@ -- mods/default/nodes.lua +--[[ Index: + +Stone +----- +(1. Material 2. Cobble variant 3. Brick variant [4. Modified forms]) + +default:stone +default:cobble +default:stonebrick +default:mossycobble + +default:desert_stone +default:desert_cobble +default:desert_stonebrick + +default:sandstone +default:sandstonebrick + +default:obsidian +default:obsidianbrick + +Soft / Non-Stone +---------------- +(1. Material [2. Modified forms]) + +default:dirt +default:dirt_with_grass +default:dirt_with_grass_footsteps +default:dirt_with_snow + +default:sand +default:desert_sand + +default:gravel + +default:clay + +default:snow +default:snowblock + +default:ice + +Trees +----- +(1. Trunk 2. Fabricated trunk 3. Leaves 4. Sapling [5. Fruits]) + +default:tree +default:wood +default:leaves +default:sapling +default:apple + +default:jungletree +default:junglewood +default:jungleleaves +default:junglesapling + +default:pinetree +default:pinewood +default:pine_needles +default:pine_sapling + +Ores +---- +(1. In stone 2. Block) + +default:stone_with_coal +default:coalblock + +default:stone_with_iron +default:steelblock + +default:stone_with_copper +default:copperblock +default:bronzeblock + +default:stone_with_gold +default:goldblock + +default:stone_with_mese +default:mese + +default:stone_with_diamond +default:diamondblock + +Plantlife (non-cubic) +--------------------- +default:cactus +default:papyrus +default:dry_shrub +default:junglegrass +default:grass_1 +default:grass_2 +default:grass_3 +default:grass_4 +default:grass_5 + +Liquids +------- +(1. Source 2. Flowing) + +default:water_source +default:water_flowing + +default:river_water_source +default:river_water_flowing + +default:lava_source +default:lava_flowing + +Tools / "Advanced" crafting / Non-"natural" +------------------------------------------- +default:torch + +default:chest +default:chest_locked + +default:bookshelf + +default:sign_wall +default:ladder +default:fence_wood + +default:glass +default:obsidian_glass + +default:rail + +default:brick + +default:meselamp + +Misc +---- +default:cloud +default:nyancat +default:nyancat_rainbow + +--]] + +-- +-- Stone +-- + minetest.register_node("default:stone", { description = "Stone", tiles = {"default_stone.png"}, - is_ground_content = true, groups = {cracky=3, stone=1}, drop = 'default:cobble', legacy_mineral = true, sounds = default.node_sound_stone_defaults(), }) -minetest.register_node("default:desert_stone", { - description = "Desert Stone", - tiles = {"default_desert_stone.png"}, - is_ground_content = true, - groups = {cracky=3, stone=1}, - drop = 'default:desert_cobble', - legacy_mineral = true, - sounds = default.node_sound_stone_defaults(), -}) - -minetest.register_node("default:stone_with_coal", { - description = "Coal Ore", - tiles = {"default_stone.png^default_mineral_coal.png"}, - is_ground_content = true, - groups = {cracky=3}, - drop = 'default:coal_lump', - sounds = default.node_sound_stone_defaults(), -}) - -minetest.register_node("default:stone_with_iron", { - description = "Iron Ore", - tiles = {"default_stone.png^default_mineral_iron.png"}, - is_ground_content = true, - groups = {cracky=2}, - drop = 'default:iron_lump', - sounds = default.node_sound_stone_defaults(), -}) - -minetest.register_node("default:stone_with_copper", { - description = "Copper Ore", - tiles = {"default_stone.png^default_mineral_copper.png"}, - is_ground_content = true, - groups = {cracky=2}, - drop = 'default:copper_lump', - sounds = default.node_sound_stone_defaults(), -}) - -minetest.register_node("default:stone_with_mese", { - description = "Mese Ore", - tiles = {"default_stone.png^default_mineral_mese.png"}, - is_ground_content = true, - groups = {cracky=1}, - drop = "default:mese_crystal", - sounds = default.node_sound_stone_defaults(), -}) - -minetest.register_node("default:stone_with_gold", { - description = "Gold Ore", - tiles = {"default_stone.png^default_mineral_gold.png"}, - is_ground_content = true, - groups = {cracky=2}, - drop = "default:gold_lump", - sounds = default.node_sound_stone_defaults(), -}) - -minetest.register_node("default:stone_with_diamond", { - description = "Diamond Ore", - tiles = {"default_stone.png^default_mineral_diamond.png"}, - is_ground_content = true, - groups = {cracky=1}, - drop = "default:diamond", +minetest.register_node("default:cobble", { + description = "Cobblestone", + tiles = {"default_cobble.png"}, + is_ground_content = false, + groups = {cracky=3, stone=2}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("default:stonebrick", { description = "Stone Brick", tiles = {"default_stone_brick.png"}, + is_ground_content = false, groups = {cracky=2, stone=1}, sounds = default.node_sound_stone_defaults(), }) +minetest.register_node("default:mossycobble", { + description = "Mossy Cobblestone", + tiles = {"default_mossycobble.png"}, + is_ground_content = false, + groups = {cracky=3, stone=1}, + sounds = default.node_sound_stone_defaults(), +}) + + + +minetest.register_node("default:desert_stone", { + description = "Desert Stone", + tiles = {"default_desert_stone.png"}, + groups = {cracky=3, stone=1}, + drop = 'default:desert_cobble', + legacy_mineral = true, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:desert_cobble", { + description = "Desert Cobblestone", + tiles = {"default_desert_cobble.png"}, + is_ground_content = false, + groups = {cracky=3, stone=2}, + sounds = default.node_sound_stone_defaults(), +}) + minetest.register_node("default:desert_stonebrick", { description = "Desert Stone Brick", tiles = {"default_desert_stone_brick.png"}, + is_ground_content = false, groups = {cracky=2, stone=1}, sounds = default.node_sound_stone_defaults(), }) + + +minetest.register_node("default:sandstone", { + description = "Sandstone", + tiles = {"default_sandstone.png"}, + groups = {crumbly=2,cracky=3}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:sandstonebrick", { + description = "Sandstone Brick", + tiles = {"default_sandstone_brick.png"}, + is_ground_content = false, + groups = {cracky=2}, + sounds = default.node_sound_stone_defaults(), +}) + + + +minetest.register_node("default:obsidian", { + description = "Obsidian", + tiles = {"default_obsidian.png"}, + sounds = default.node_sound_stone_defaults(), + groups = {cracky=1,level=2}, +}) + +minetest.register_node("default:obsidianbrick", { + description = "Obsidian Brick", + tiles = {"default_obsidian_brick.png"}, + is_ground_content = false, + sounds = default.node_sound_stone_defaults(), + groups = {cracky=1,level=2}, +}) + +-- +-- Soft / Non-Stone +-- + +minetest.register_node("default:dirt", { + description = "Dirt", + tiles = {"default_dirt.png"}, + groups = {crumbly=3,soil=1}, + sounds = default.node_sound_dirt_defaults(), +}) + minetest.register_node("default:dirt_with_grass", { description = "Dirt with Grass", tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"}, - is_ground_content = true, groups = {crumbly=3,soil=1}, drop = 'default:dirt', sounds = default.node_sound_dirt_defaults({ @@ -102,7 +262,6 @@ minetest.register_node("default:dirt_with_grass", { minetest.register_node("default:dirt_with_grass_footsteps", { description = "Dirt with Grass and Footsteps", tiles = {"default_grass_footsteps.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"}, - is_ground_content = true, groups = {crumbly=3,soil=1,not_in_creative_inventory=1}, drop = 'default:dirt', sounds = default.node_sound_dirt_defaults({ @@ -113,7 +272,6 @@ minetest.register_node("default:dirt_with_grass_footsteps", { minetest.register_node("default:dirt_with_snow", { description = "Dirt with Snow", tiles = {"default_snow.png", "default_dirt.png", "default_dirt.png^default_snow_side.png"}, - is_ground_content = true, groups = {crumbly=3,soil=1}, drop = 'default:dirt', sounds = default.node_sound_dirt_defaults({ @@ -121,54 +279,11 @@ minetest.register_node("default:dirt_with_snow", { }), }) -minetest.register_node("default:dirt", { - description = "Dirt", - tiles = {"default_dirt.png"}, - is_ground_content = true, - groups = {crumbly=3,soil=1}, - sounds = default.node_sound_dirt_defaults(), -}) -minetest.register_abm({ - nodenames = {"default:dirt"}, - interval = 2, - chance = 200, - action = function(pos, node) - local above = {x=pos.x, y=pos.y+1, z=pos.z} - local name = minetest.get_node(above).name - local nodedef = minetest.registered_nodes[name] - if nodedef and (nodedef.sunlight_propagates or nodedef.paramtype == "light") - and nodedef.liquidtype == "none" - and (minetest.get_node_light(above) or 0) >= 13 then - if name == "default:snow" or name == "default:snowblock" then - minetest.set_node(pos, {name = "default:dirt_with_snow"}) - else - minetest.set_node(pos, {name = "default:dirt_with_grass"}) - end - end - end -}) - -minetest.register_abm({ - nodenames = {"default:dirt_with_grass"}, - interval = 2, - chance = 20, - action = function(pos, node) - local above = {x=pos.x, y=pos.y+1, z=pos.z} - local name = minetest.get_node(above).name - local nodedef = minetest.registered_nodes[name] - if name ~= "ignore" and nodedef - and not ((nodedef.sunlight_propagates or nodedef.paramtype == "light") - and nodedef.liquidtype == "none") then - minetest.set_node(pos, {name = "default:dirt"}) - end - end -}) minetest.register_node("default:sand", { description = "Sand", tiles = {"default_sand.png"}, - is_ground_content = true, groups = {crumbly=3, falling_node=1, sand=1}, sounds = default.node_sound_sand_defaults(), }) @@ -176,15 +291,15 @@ minetest.register_node("default:sand", { minetest.register_node("default:desert_sand", { description = "Desert Sand", tiles = {"default_desert_sand.png"}, - is_ground_content = true, groups = {crumbly=3, falling_node=1, sand=1}, sounds = default.node_sound_sand_defaults(), }) + + minetest.register_node("default:gravel", { description = "Gravel", tiles = {"default_gravel.png"}, - is_ground_content = true, groups = {crumbly=2, falling_node=1}, sounds = default.node_sound_dirt_defaults({ footstep = {name="default_gravel_footstep", gain=0.5}, @@ -192,39 +307,72 @@ minetest.register_node("default:gravel", { }), }) -minetest.register_node("default:sandstone", { - description = "Sandstone", - tiles = {"default_sandstone.png"}, - is_ground_content = true, - groups = {crumbly=2,cracky=3}, - sounds = default.node_sound_stone_defaults(), -}) -minetest.register_node("default:sandstonebrick", { - description = "Sandstone Brick", - tiles = {"default_sandstone_brick.png"}, - is_ground_content = true, - groups = {cracky=2}, - sounds = default.node_sound_stone_defaults(), -}) minetest.register_node("default:clay", { description = "Clay", tiles = {"default_clay.png"}, - is_ground_content = true, groups = {crumbly=3}, drop = 'default:clay_lump 4', sounds = default.node_sound_dirt_defaults(), }) -minetest.register_node("default:brick", { - description = "Brick Block", - tiles = {"default_brick.png"}, - is_ground_content = false, - groups = {cracky=3}, - sounds = default.node_sound_stone_defaults(), + + +minetest.register_node("default:snow", { + description = "Snow", + tiles = {"default_snow.png"}, + inventory_image = "default_snowball.png", + wield_image = "default_snowball.png", + paramtype = "light", + buildable_to = true, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.5+2/16, 0.5}, + }, + }, + groups = {crumbly=3,falling_node=1}, + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_snow_footstep", gain=0.25}, + dug = {name="default_snow_footstep", gain=0.75}, + }), + + on_construct = function(pos) + pos.y = pos.y - 1 + if minetest.get_node(pos).name == "default:dirt_with_grass" then + minetest.set_node(pos, {name="default:dirt_with_snow"}) + end + end, }) + +minetest.register_node("default:snowblock", { + description = "Snow Block", + tiles = {"default_snow.png"}, + groups = {crumbly=3}, + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_snow_footstep", gain=0.25}, + dug = {name="default_snow_footstep", gain=0.75}, + }), +}) + + + +minetest.register_node("default:ice", { + description = "Ice", + tiles = {"default_ice.png"}, + is_ground_content = false, + paramtype = "light", + groups = {cracky=3}, + sounds = default.node_sound_glass_defaults(), +}) + +-- +-- Trees +-- + minetest.register_node("default:tree", { description = "Tree", tiles = {"default_tree_top.png", "default_tree_top.png", "default_tree.png"}, @@ -232,9 +380,92 @@ minetest.register_node("default:tree", { is_ground_content = false, groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2}, sounds = default.node_sound_wood_defaults(), + on_place = minetest.rotate_node }) +minetest.register_node("default:wood", { + description = "Wooden Planks", + tiles = {"default_wood.png"}, + is_ground_content = false, + groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:sapling", { + description = "Sapling", + drawtype = "plantlike", + visual_scale = 1.0, + tiles = {"default_sapling.png"}, + inventory_image = "default_sapling.png", + wield_image = "default_sapling.png", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3} + }, + groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1,sapling=1}, + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_node("default:leaves", { + description = "Leaves", + drawtype = "allfaces_optional", + waving = 1, + visual_scale = 1.3, + tiles = {"default_leaves.png"}, + paramtype = "light", + is_ground_content = false, + groups = {snappy=3, leafdecay=3, flammable=2, leaves=1}, + drop = { + max_items = 1, + items = { + { + -- player will get sapling with 1/20 chance + items = {'default:sapling'}, + rarity = 20, + }, + { + -- player will get leaves only if he get no saplings, + -- this is because max_items is 1 + items = {'default:leaves'}, + } + } + }, + sounds = default.node_sound_leaves_defaults(), + + after_place_node = default.after_place_leaves, +}) + +minetest.register_node("default:apple", { + description = "Apple", + drawtype = "plantlike", + visual_scale = 1.0, + tiles = {"default_apple.png"}, + inventory_image = "default_apple.png", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + is_ground_content = false, + selection_box = { + type = "fixed", + fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} + }, + groups = {fleshy=3,dig_immediate=3,flammable=2,leafdecay=3,leafdecay_drop=1}, + on_use = minetest.item_eat(2), + sounds = default.node_sound_leaves_defaults(), + + after_place_node = function(pos, placer, itemstack) + if placer:is_player() then + minetest.set_node(pos, {name="default:apple", param2=1}) + end + end, +}) + + + minetest.register_node("default:jungletree", { description = "Jungle Tree", tiles = {"default_jungletree_top.png", "default_jungletree_top.png", "default_jungletree.png"}, @@ -242,12 +473,14 @@ minetest.register_node("default:jungletree", { is_ground_content = false, groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2}, sounds = default.node_sound_wood_defaults(), + on_place = minetest.rotate_node }) minetest.register_node("default:junglewood", { description = "Junglewood Planks", tiles = {"default_junglewood.png"}, + is_ground_content = false, groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1}, sounds = default.node_sound_wood_defaults(), }) @@ -277,6 +510,7 @@ minetest.register_node("default:jungleleaves", { } }, sounds = default.node_sound_leaves_defaults(), + after_place_node = default.after_place_leaves, }) @@ -288,6 +522,7 @@ minetest.register_node("default:junglesapling", { inventory_image = "default_junglesapling.png", wield_image = "default_junglesapling.png", paramtype = "light", + sunlight_propagates = true, walkable = false, selection_box = { type = "fixed", @@ -297,32 +532,33 @@ minetest.register_node("default:junglesapling", { sounds = default.node_sound_leaves_defaults(), }) -minetest.register_node("default:junglegrass", { - description = "Jungle Grass", - drawtype = "plantlike", - waving = 1, - visual_scale = 1.3, - tiles = {"default_junglegrass.png"}, - inventory_image = "default_junglegrass.png", - wield_image = "default_junglegrass.png", - paramtype = "light", - walkable = false, - buildable_to = true, - is_ground_content = true, - groups = {snappy=3,flammable=2,flora=1,attached_node=1}, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, - }, + + +minetest.register_node("default:pinetree", { + description = "Pine Tree", + tiles = {"default_pinetree_top.png", "default_pinetree_top.png", "default_pinetree.png"}, + paramtype2 = "facedir", + is_ground_content = false, + groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2}, + sounds = default.node_sound_wood_defaults(), + + on_place = minetest.rotate_node }) -minetest.register_node("default:leaves", { - description = "Leaves", +minetest.register_node("default:pinewood", { + description = "Pinewood Planks", + tiles = {"default_pinewood.png"}, + is_ground_content = false, + groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("default:pine_needles",{ + description = "Pine Needles", drawtype = "allfaces_optional", - waving = 1, visual_scale = 1.3, - tiles = {"default_leaves.png"}, + tiles = {"default_pine_needles.png"}, + waving = 1, paramtype = "light", is_ground_content = false, groups = {snappy=3, leafdecay=3, flammable=2, leaves=1}, @@ -331,28 +567,172 @@ minetest.register_node("default:leaves", { items = { { -- player will get sapling with 1/20 chance - items = {'default:sapling'}, + items = {"default:pine_sapling"}, rarity = 20, }, { -- player will get leaves only if he get no saplings, -- this is because max_items is 1 - items = {'default:leaves'}, + items = {"default:pine_needles"}, } } }, sounds = default.node_sound_leaves_defaults(), + after_place_node = default.after_place_leaves, }) +minetest.register_node("default:pine_sapling", { + description = "Pine Sapling", + drawtype = "plantlike", + visual_scale = 1.0, + tiles = {"default_pine_sapling.png"}, + inventory_image = "default_pine_sapling.png", + wield_image = "default_pine_sapling.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3} + }, + groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1,sapling=1}, + sounds = default.node_sound_leaves_defaults(), +}) + +-- +-- Ores +-- + +minetest.register_node("default:stone_with_coal", { + description = "Coal Ore", + tiles = {"default_stone.png^default_mineral_coal.png"}, + groups = {cracky=3}, + drop = 'default:coal_lump', + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:coalblock", { + description = "Coal Block", + tiles = {"default_coal_block.png"}, + is_ground_content = false, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), +}) + + + +minetest.register_node("default:stone_with_iron", { + description = "Iron Ore", + tiles = {"default_stone.png^default_mineral_iron.png"}, + groups = {cracky=2}, + drop = 'default:iron_lump', + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:steelblock", { + description = "Steel Block", + tiles = {"default_steel_block.png"}, + is_ground_content = false, + groups = {cracky=1,level=2}, + sounds = default.node_sound_stone_defaults(), +}) + + + +minetest.register_node("default:stone_with_copper", { + description = "Copper Ore", + tiles = {"default_stone.png^default_mineral_copper.png"}, + groups = {cracky=2}, + drop = 'default:copper_lump', + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:copperblock", { + description = "Copper Block", + tiles = {"default_copper_block.png"}, + is_ground_content = false, + groups = {cracky=1,level=2}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:bronzeblock", { + description = "Bronze Block", + tiles = {"default_bronze_block.png"}, + is_ground_content = false, + groups = {cracky=1,level=2}, + sounds = default.node_sound_stone_defaults(), +}) + + + +minetest.register_node("default:stone_with_mese", { + description = "Mese Ore", + tiles = {"default_stone.png^default_mineral_mese.png"}, + paramtype = "light", + groups = {cracky = 1}, + drop = "default:mese_crystal", + sounds = default.node_sound_stone_defaults(), + light_source = 1, +}) + +minetest.register_node("default:mese", { + description = "Mese Block", + tiles = {"default_mese_block.png"}, + paramtype = "light", + groups = {cracky = 1, level = 2}, + sounds = default.node_sound_stone_defaults(), + light_source = 3, +}) + + + + +minetest.register_node("default:stone_with_gold", { + description = "Gold Ore", + tiles = {"default_stone.png^default_mineral_gold.png"}, + groups = {cracky=2}, + drop = "default:gold_lump", + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:goldblock", { + description = "Gold Block", + tiles = {"default_gold_block.png"}, + is_ground_content = false, + groups = {cracky=1}, + sounds = default.node_sound_stone_defaults(), +}) + + + +minetest.register_node("default:stone_with_diamond", { + description = "Diamond Ore", + tiles = {"default_stone.png^default_mineral_diamond.png"}, + groups = {cracky=1}, + drop = "default:diamond", + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("default:diamondblock", { + description = "Diamond Block", + tiles = {"default_diamond_block.png"}, + is_ground_content = false, + groups = {cracky=1,level=3}, + sounds = default.node_sound_stone_defaults(), +}) + +-- +-- Plantlife (non-cubic) +-- + minetest.register_node("default:cactus", { description = "Cactus", tiles = {"default_cactus_top.png", "default_cactus_top.png", "default_cactus_side.png"}, paramtype2 = "facedir", - is_ground_content = true, groups = {snappy=1,choppy=3,flammable=2}, sounds = default.node_sound_wood_defaults(), on_place = minetest.rotate_node, + after_dig_node = function(pos, node, metadata, digger) default.dig_up(pos, node, digger) end, @@ -365,169 +745,156 @@ minetest.register_node("default:papyrus", { inventory_image = "default_papyrus.png", wield_image = "default_papyrus.png", paramtype = "light", + sunlight_propagates = true, walkable = false, - is_ground_content = true, selection_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} }, groups = {snappy=3,flammable=2}, sounds = default.node_sound_leaves_defaults(), + after_dig_node = function(pos, node, metadata, digger) default.dig_up(pos, node, digger) end, }) -default.bookshelf_formspec = - "size[8,7;]".. - default.gui_bg.. - default.gui_bg_img.. - default.gui_slots.. - "list[context;books;0,0.3;8,2;]".. - "list[current_player;main;0,2.85;8,1;]".. - "list[current_player;main;0,4.08;8,3;8]".. - default.get_hotbar_bg(0,2.85) - -minetest.register_node("default:bookshelf", { - description = "Bookshelf", - tiles = {"default_wood.png", "default_wood.png", "default_bookshelf.png"}, - is_ground_content = false, - groups = {choppy=3,oddly_breakable_by_hand=2,flammable=3}, - sounds = default.node_sound_wood_defaults(), - on_construct = function(pos) - local meta = minetest.get_meta(pos) - meta:set_string("formspec", default.bookshelf_formspec) - local inv = meta:get_inventory() - inv:set_size("books", 8*2) - end, - can_dig = function(pos,player) - local meta = minetest.get_meta(pos); - local inv = meta:get_inventory() - return inv:is_empty("books") - end, - - allow_metadata_inventory_put = function(pos, listname, index, stack, player) - local meta = minetest.get_meta(pos) - local inv = meta:get_inventory() - local to_stack = inv:get_stack(listname, index) - if listname == "books" then - if minetest.get_item_group(stack:get_name(), "book") ~= 0 - and to_stack:is_empty() then - return 1 - else - return 0 - end - end - end, - - allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) - local meta = minetest.get_meta(pos) - local inv = meta:get_inventory() - local stack = inv:get_stack(from_list, from_index) - local to_stack = inv:get_stack(to_list, to_index) - if to_list == "books" then - if stack:get_name() == "default:book" and to_stack:is_empty() then - return 1 - else - return 0 - end - end - end, - - on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) - minetest.log("action", player:get_player_name().. - " moves stuff in bookshelf at "..minetest.pos_to_string(pos)) - end, - on_metadata_inventory_put = function(pos, listname, index, stack, player) - minetest.log("action", player:get_player_name().. - " moves stuff to bookshelf at "..minetest.pos_to_string(pos)) - end, - on_metadata_inventory_take = function(pos, listname, index, stack, player) - minetest.log("action", player:get_player_name().. - " takes stuff from bookshelf at "..minetest.pos_to_string(pos)) - end, -}) - -minetest.register_node("default:glass", { - description = "Glass", - drawtype = "glasslike_framed_optional", - tiles = {"default_glass.png", "default_glass_detail.png"}, - inventory_image = minetest.inventorycube("default_glass.png"), +minetest.register_node("default:dry_shrub", { + description = "Dry Shrub", + drawtype = "plantlike", + waving = 1, + visual_scale = 1.0, + tiles = {"default_dry_shrub.png"}, + inventory_image = "default_dry_shrub.png", + wield_image = "default_dry_shrub.png", paramtype = "light", sunlight_propagates = true, - is_ground_content = false, - groups = {cracky=3,oddly_breakable_by_hand=3}, - sounds = default.node_sound_glass_defaults(), -}) - -local fence_texture = "default_fence_overlay.png^default_wood.png^default_fence_overlay.png^[makealpha:255,126,126" -minetest.register_node("default:fence_wood", { - description = "Wooden Fence", - drawtype = "fencelike", - tiles = {"default_wood.png"}, - inventory_image = fence_texture, - wield_image = fence_texture, - paramtype = "light", - is_ground_content = false, + walkable = false, + buildable_to = true, + groups = {snappy=3,flammable=3,attached_node=1}, + sounds = default.node_sound_leaves_defaults(), selection_box = { type = "fixed", - fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7}, + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, }, - groups = {choppy=2,oddly_breakable_by_hand=2,flammable=2}, - sounds = default.node_sound_wood_defaults(), }) -minetest.register_node("default:rail", { - description = "Rail", - drawtype = "raillike", - tiles = {"default_rail.png", "default_rail_curved.png", "default_rail_t_junction.png", "default_rail_crossing.png"}, - inventory_image = "default_rail.png", - wield_image = "default_rail.png", +minetest.register_node("default:junglegrass", { + description = "Jungle Grass", + drawtype = "plantlike", + waving = 1, + visual_scale = 1.3, + tiles = {"default_junglegrass.png"}, + inventory_image = "default_junglegrass.png", + wield_image = "default_junglegrass.png", paramtype = "light", + sunlight_propagates = true, walkable = false, - is_ground_content = false, + buildable_to = true, + groups = {snappy=3,flammable=2,flora=1,attached_node=1}, + sounds = default.node_sound_leaves_defaults(), selection_box = { type = "fixed", - -- but how to specify the dimensions for curved and sideways rails? - fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, }, - groups = {bendy=2,dig_immediate=2,attached_node=1}, }) -minetest.register_node("default:ladder", { - description = "Ladder", - drawtype = "signlike", - tiles = {"default_ladder.png"}, - inventory_image = "default_ladder.png", - wield_image = "default_ladder.png", +minetest.register_node("default:grass_1", { + description = "Grass", + drawtype = "plantlike", + waving = 1, + tiles = {"default_grass_1.png"}, + -- Use texture of a taller grass stage in inventory + inventory_image = "default_grass_3.png", + wield_image = "default_grass_3.png", paramtype = "light", - paramtype2 = "wallmounted", + sunlight_propagates = true, walkable = false, - climbable = true, - is_ground_content = false, + buildable_to = true, + groups = {snappy=3,flammable=3,flora=1,attached_node=1}, + sounds = default.node_sound_leaves_defaults(), selection_box = { - type = "wallmounted", - --wall_top = = - --wall_bottom = = - --wall_side = = + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, }, - groups = {choppy=2,oddly_breakable_by_hand=3,flammable=2}, - legacy_wallmounted = true, - sounds = default.node_sound_wood_defaults(), + + on_place = function(itemstack, placer, pointed_thing) + -- place a random grass node + local stack = ItemStack("default:grass_"..math.random(1,5)) + local ret = minetest.item_place(stack, placer, pointed_thing) + return ItemStack("default:grass_1 "..itemstack:get_count()-(1-ret:get_count())) + end, }) -minetest.register_node("default:wood", { - description = "Wooden Planks", - tiles = {"default_wood.png"}, - groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1}, - sounds = default.node_sound_wood_defaults(), -}) +for i=2,5 do + minetest.register_node("default:grass_"..i, { + description = "Grass", + drawtype = "plantlike", + waving = 1, + tiles = {"default_grass_"..i..".png"}, + inventory_image = "default_grass_"..i..".png", + wield_image = "default_grass_"..i..".png", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + buildable_to = true, + drop = "default:grass_1", + groups = {snappy=3,flammable=3,flora=1,attached_node=1,not_in_creative_inventory=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, + }, + }) +end -minetest.register_node("default:cloud", { - description = "Cloud", - tiles = {"default_cloud.png"}, - sounds = default.node_sound_defaults(), - groups = {not_in_creative_inventory=1}, +-- +-- Liquids +-- + +minetest.register_node("default:water_source", { + description = "Water Source", + inventory_image = minetest.inventorycube("default_water.png"), + drawtype = "liquid", + tiles = { + { + name = "default_water_source_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 2.0, + }, + }, + }, + special_tiles = { + -- New-style water source material (mostly unused) + { + name = "default_water_source_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 2.0, + }, + backface_culling = false, + }, + }, + alpha = 160, + paramtype = "light", + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + is_ground_content = false, + drop = "", + drowning = 1, + liquidtype = "source", + liquid_alternative_flowing = "default:water_flowing", + liquid_alternative_source = "default:water_source", + liquid_viscosity = 1, + post_effect_color = {a=120, r=30, g=60, b=90}, + groups = {water=3, liquid=3, puts_out_fire=1}, }) minetest.register_node("default:water_flowing", { @@ -537,64 +904,187 @@ minetest.register_node("default:water_flowing", { tiles = {"default_water.png"}, special_tiles = { { - image="default_water_flowing_animated.png", - backface_culling=false, - animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8} + name = "default_water_flowing_animated.png", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 0.8, + }, }, { - image="default_water_flowing_animated.png", - backface_culling=true, - animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8} + name = "default_water_flowing_animated.png", + backface_culling = true, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 0.8, + }, }, }, - alpha = WATER_ALPHA, + alpha = 160, paramtype = "light", paramtype2 = "flowingliquid", walkable = false, pointable = false, diggable = false, buildable_to = true, + is_ground_content = false, drop = "", drowning = 1, liquidtype = "flowing", liquid_alternative_flowing = "default:water_flowing", liquid_alternative_source = "default:water_source", - liquid_viscosity = WATER_VISC, - post_effect_color = {a=64, r=100, g=100, b=200}, + liquid_viscosity = 1, + post_effect_color = {a=120, r=30, g=60, b=90}, groups = {water=3, liquid=3, puts_out_fire=1, not_in_creative_inventory=1}, }) -minetest.register_node("default:water_source", { - description = "Water Source", - inventory_image = minetest.inventorycube("default_water.png"), + +minetest.register_node("default:river_water_source", { + description = "River Water Source", + inventory_image = minetest.inventorycube("default_river_water.png"), drawtype = "liquid", tiles = { - {name="default_water_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}} + { + name = "default_river_water_source_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 2.0, + }, + }, }, special_tiles = { - -- New-style water source material (mostly unused) { - name="default_water_source_animated.png", - animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}, + name = "default_river_water_source_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 2.0, + }, backface_culling = false, - } + }, }, - alpha = WATER_ALPHA, + alpha = 160, paramtype = "light", walkable = false, pointable = false, diggable = false, buildable_to = true, + is_ground_content = false, drop = "", drowning = 1, liquidtype = "source", - liquid_alternative_flowing = "default:water_flowing", - liquid_alternative_source = "default:water_source", - liquid_viscosity = WATER_VISC, - post_effect_color = {a=64, r=100, g=100, b=200}, + liquid_alternative_flowing = "default:river_water_flowing", + liquid_alternative_source = "default:river_water_source", + liquid_viscosity = 1, + liquid_renewable = false, + liquid_range = 2, + post_effect_color = {a=120, r=30, g=76, b=90}, groups = {water=3, liquid=3, puts_out_fire=1}, }) +minetest.register_node("default:river_water_flowing", { + description = "Flowing River Water", + inventory_image = minetest.inventorycube("default_river_water.png"), + drawtype = "flowingliquid", + tiles = {"default_river_water.png"}, + special_tiles = { + { + name = "default_river_water_flowing_animated.png", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 0.8, + }, + }, + { + name = "default_river_water_flowing_animated.png", + backface_culling = true, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 0.8, + }, + }, + }, + alpha = 160, + paramtype = "light", + paramtype2 = "flowingliquid", + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + is_ground_content = false, + drop = "", + drowning = 1, + liquidtype = "flowing", + liquid_alternative_flowing = "default:river_water_flowing", + liquid_alternative_source = "default:river_water_source", + liquid_viscosity = 1, + liquid_renewable = false, + liquid_range = 2, + post_effect_color = {a=120, r=30, g=76, b=90}, + groups = {water=3, liquid=3, puts_out_fire=1, not_in_creative_inventory=1}, +}) + + + +minetest.register_node("default:lava_source", { + description = "Lava Source", + inventory_image = minetest.inventorycube("default_lava.png"), + drawtype = "liquid", + tiles = { + { + name = "default_lava_source_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.0, + }, + }, + }, + special_tiles = { + -- New-style lava source material (mostly unused) + { + name = "default_lava_source_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.0, + }, + backface_culling = false, + }, + }, + paramtype = "light", + light_source = default.LIGHT_MAX - 1, + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + is_ground_content = false, + drop = "", + drowning = 1, + liquidtype = "source", + liquid_alternative_flowing = "default:lava_flowing", + liquid_alternative_source = "default:lava_source", + liquid_viscosity = 7, + liquid_renewable = false, + damage_per_second = 4 * 2, + post_effect_color = {a=192, r=255, g=64, b=0}, + groups = {lava=3, liquid=2, hot=3, igniter=1}, +}) + minetest.register_node("default:lava_flowing", { description = "Flowing Lava", inventory_image = minetest.inventorycube("default_lava.png"), @@ -602,76 +1092,81 @@ minetest.register_node("default:lava_flowing", { tiles = {"default_lava.png"}, special_tiles = { { - image="default_lava_flowing_animated.png", - backface_culling=false, - animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.3} + name = "default_lava_flowing_animated.png", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.3, + }, }, { - image="default_lava_flowing_animated.png", - backface_culling=true, - animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.3} + name = "default_lava_flowing_animated.png", + backface_culling = true, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.3, + }, }, }, paramtype = "light", paramtype2 = "flowingliquid", - light_source = LIGHT_MAX - 1, + light_source = default.LIGHT_MAX - 1, walkable = false, pointable = false, diggable = false, buildable_to = true, + is_ground_content = false, drop = "", drowning = 1, liquidtype = "flowing", liquid_alternative_flowing = "default:lava_flowing", liquid_alternative_source = "default:lava_source", - liquid_viscosity = LAVA_VISC, + liquid_viscosity = 7, liquid_renewable = false, - damage_per_second = 4*2, + damage_per_second = 4 * 2, post_effect_color = {a=192, r=255, g=64, b=0}, groups = {lava=3, liquid=2, hot=3, igniter=1, not_in_creative_inventory=1}, }) -minetest.register_node("default:lava_source", { - description = "Lava Source", - inventory_image = minetest.inventorycube("default_lava.png"), - drawtype = "liquid", - tiles = { - {name="default_lava_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}} - }, - special_tiles = { - -- New-style lava source material (mostly unused) - { - name="default_lava_source_animated.png", - animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}, - backface_culling = false, - } - }, - paramtype = "light", - light_source = LIGHT_MAX - 1, - walkable = false, - pointable = false, - diggable = false, - buildable_to = true, - drop = "", - drowning = 1, - liquidtype = "source", - liquid_alternative_flowing = "default:lava_flowing", - liquid_alternative_source = "default:lava_source", - liquid_viscosity = LAVA_VISC, - liquid_renewable = false, - damage_per_second = 4*2, - post_effect_color = {a=192, r=255, g=64, b=0}, - groups = {lava=3, liquid=2, hot=3, igniter=1}, -}) +-- +-- Tools / "Advanced" crafting / Non-"natural" +-- minetest.register_node("default:torch", { description = "Torch", drawtype = "torchlike", - --tiles = {"default_torch_on_floor.png", "default_torch_on_ceiling.png", "default_torch.png"}, tiles = { - {name="default_torch_on_floor_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}}, - {name="default_torch_on_ceiling_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}}, - {name="default_torch_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}} + { + name = "default_torch_on_floor_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.0 + }, + }, + { + name="default_torch_on_ceiling_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.0 + }, + }, + { + name="default_torch_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.0 + }, + }, }, inventory_image = "default_torch_on_floor.png", wield_image = "default_torch_on_floor.png", @@ -680,7 +1175,7 @@ minetest.register_node("default:torch", { sunlight_propagates = true, is_ground_content = false, walkable = false, - light_source = LIGHT_MAX-1, + light_source = default.LIGHT_MAX - 1, selection_box = { type = "wallmounted", wall_top = {-0.1, 0.5-0.6, -0.1, 0.1, 0.5, 0.1}, @@ -692,48 +1187,9 @@ minetest.register_node("default:torch", { sounds = default.node_sound_defaults(), }) -minetest.register_node("default:sign_wall", { - description = "Sign", - drawtype = "nodebox", - tiles = {"default_sign.png"}, - inventory_image = "default_sign_wall.png", - wield_image = "default_sign_wall.png", - paramtype = "light", - paramtype2 = "wallmounted", - sunlight_propagates = true, - is_ground_content = false, - walkable = false, - node_box = { - type = "wallmounted", - wall_top = {-0.4375, 0.4375, -0.3125, 0.4375, 0.5, 0.3125}, - wall_bottom = {-0.4375, -0.5, -0.3125, 0.4375, -0.4375, 0.3125}, - wall_side = {-0.5, -0.3125, -0.4375, -0.4375, 0.3125, 0.4375}, - }, - groups = {choppy=2,dig_immediate=2,attached_node=1}, - legacy_wallmounted = true, - sounds = default.node_sound_defaults(), - on_construct = function(pos) - --local n = minetest.get_node(pos) - local meta = minetest.get_meta(pos) - meta:set_string("formspec", "field[text;;${text}]") - meta:set_string("infotext", "\"\"") - end, - on_receive_fields = function(pos, formname, fields, sender) - --print("Sign at "..minetest.pos_to_string(pos).." got "..dump(fields)) - if minetest.is_protected(pos, sender:get_player_name()) then - minetest.record_protection_violation(pos, sender:get_player_name()) - return - end - local meta = minetest.get_meta(pos) - if not fields.text then return end - minetest.log("action", (sender:get_player_name() or "").." wrote \""..fields.text.. - "\" to sign at "..minetest.pos_to_string(pos)) - meta:set_string("text", fields.text) - meta:set_string("infotext", '"'..fields.text..'"') - end, -}) -default.chest_formspec = + +local chest_formspec = "size[8,9]".. default.gui_bg.. default.gui_bg_img.. @@ -741,9 +1197,11 @@ default.chest_formspec = "list[current_name;main;0,0.3;8,4;]".. "list[current_player;main;0,4.85;8,1;]".. "list[current_player;main;0,6.08;8,3;8]".. + "listring[current_name;main]".. + "listring[current_player;main]".. default.get_hotbar_bg(0,4.85) -function default.get_locked_chest_formspec(pos) +local function get_locked_chest_formspec(pos) local spos = pos.x .. "," .. pos.y .. "," ..pos.z local formspec = "size[8,9]".. @@ -753,10 +1211,18 @@ function default.get_locked_chest_formspec(pos) "list[nodemeta:".. spos .. ";main;0,0.3;8,4;]".. "list[current_player;main;0,4.85;8,1;]".. "list[current_player;main;0,6.08;8,3;8]".. + "listring[nodemeta:".. spos .. ";main]".. + "listring[current_player;main]".. default.get_hotbar_bg(0,4.85) return formspec end +local function has_locked_chest_privilege(meta, player) + if player:get_player_name() ~= meta:get_string("owner") then + return false + end + return true +end minetest.register_node("default:chest", { description = "Chest", @@ -767,9 +1233,10 @@ minetest.register_node("default:chest", { legacy_facedir_simple = true, is_ground_content = false, sounds = default.node_sound_wood_defaults(), + on_construct = function(pos) local meta = minetest.get_meta(pos) - meta:set_string("formspec",default.chest_formspec) + meta:set_string("formspec", chest_formspec) meta:set_string("infotext", "Chest") local inv = meta:get_inventory() inv:set_size("main", 8*4) @@ -793,12 +1260,7 @@ minetest.register_node("default:chest", { end, }) -local function has_locked_chest_privilege(meta, player) - if player:get_player_name() ~= meta:get_string("owner") then - return false - end - return true -end + minetest.register_node("default:chest_locked", { description = "Locked Chest", @@ -809,6 +1271,7 @@ minetest.register_node("default:chest_locked", { legacy_facedir_simple = true, is_ground_content = false, sounds = default.node_sound_wood_defaults(), + after_place_node = function(pos, placer) local meta = minetest.get_meta(pos) meta:set_string("owner", placer:get_player_name() or "") @@ -862,91 +1325,186 @@ minetest.register_node("default:chest_locked", { minetest.show_formspec( clicker:get_player_name(), "default:chest_locked", - default.get_locked_chest_formspec(pos) + get_locked_chest_formspec(pos) ) end end, + on_blast = function() end, }) -minetest.register_node("default:cobble", { - description = "Cobblestone", - tiles = {"default_cobble.png"}, - is_ground_content = true, - groups = {cracky=3, stone=2}, - sounds = default.node_sound_stone_defaults(), + + +local bookshelf_formspec = + "size[8,7;]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[context;books;0,0.3;8,2;]".. + "list[current_player;main;0,2.85;8,1;]".. + "list[current_player;main;0,4.08;8,3;8]".. + "listring[context;books]".. + "listring[current_player;main]".. + default.get_hotbar_bg(0,2.85) + +minetest.register_node("default:bookshelf", { + description = "Bookshelf", + tiles = {"default_wood.png", "default_wood.png", "default_bookshelf.png"}, + is_ground_content = false, + groups = {choppy=3,oddly_breakable_by_hand=2,flammable=3}, + sounds = default.node_sound_wood_defaults(), + + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", bookshelf_formspec) + local inv = meta:get_inventory() + inv:set_size("books", 8*2) + end, + can_dig = function(pos,player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return inv:is_empty("books") + end, + + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local to_stack = inv:get_stack(listname, index) + if listname == "books" then + if minetest.get_item_group(stack:get_name(), "book") ~= 0 + and to_stack:is_empty() then + return 1 + else + return 0 + end + end + end, + + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local stack = inv:get_stack(from_list, from_index) + local to_stack = inv:get_stack(to_list, to_index) + if to_list == "books" then + if minetest.get_item_group(stack:get_name(), "book") ~= 0 + and to_stack:is_empty() then + return 1 + else + return 0 + end + end + end, + + on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + minetest.log("action", player:get_player_name().. + " moves stuff in bookshelf at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_put = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " moves stuff to bookshelf at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_take = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " takes stuff from bookshelf at "..minetest.pos_to_string(pos)) + end, }) -minetest.register_node("default:desert_cobble", { - description = "Desert Cobblestone", - tiles = {"default_desert_cobble.png"}, - is_ground_content = true, - groups = {cracky=3, stone=2}, - sounds = default.node_sound_stone_defaults(), + + +minetest.register_node("default:sign_wall", { + description = "Sign", + drawtype = "nodebox", + tiles = {"default_sign.png"}, + inventory_image = "default_sign_wall.png", + wield_image = "default_sign_wall.png", + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + is_ground_content = false, + walkable = false, + node_box = { + type = "wallmounted", + wall_top = {-0.4375, 0.4375, -0.3125, 0.4375, 0.5, 0.3125}, + wall_bottom = {-0.4375, -0.5, -0.3125, 0.4375, -0.4375, 0.3125}, + wall_side = {-0.5, -0.3125, -0.4375, -0.4375, 0.3125, 0.4375}, + }, + groups = {choppy=2,dig_immediate=2,attached_node=1}, + legacy_wallmounted = true, + sounds = default.node_sound_defaults(), + + on_construct = function(pos) + --local n = minetest.get_node(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", "field[text;;${text}]") + meta:set_string("infotext", "\"\"") + end, + on_receive_fields = function(pos, formname, fields, sender) + --print("Sign at "..minetest.pos_to_string(pos).." got "..dump(fields)) + if minetest.is_protected(pos, sender:get_player_name()) then + minetest.record_protection_violation(pos, sender:get_player_name()) + return + end + local meta = minetest.get_meta(pos) + if not fields.text then return end + minetest.log("action", (sender:get_player_name() or "").." wrote \""..fields.text.. + "\" to sign at "..minetest.pos_to_string(pos)) + meta:set_string("text", fields.text) + meta:set_string("infotext", '"'..fields.text..'"') + end, }) -minetest.register_node("default:mossycobble", { - description = "Mossy Cobblestone", - tiles = {"default_mossycobble.png"}, - is_ground_content = true, - groups = {cracky=3}, - sounds = default.node_sound_stone_defaults(), +minetest.register_node("default:ladder", { + description = "Ladder", + drawtype = "signlike", + tiles = {"default_ladder.png"}, + inventory_image = "default_ladder.png", + wield_image = "default_ladder.png", + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + walkable = false, + climbable = true, + is_ground_content = false, + selection_box = { + type = "wallmounted", + --wall_top = = + --wall_bottom = = + --wall_side = = + }, + groups = {choppy=2,oddly_breakable_by_hand=3,flammable=2}, + legacy_wallmounted = true, + sounds = default.node_sound_wood_defaults(), }) -minetest.register_node("default:coalblock", { - description = "Coal Block", - tiles = {"default_coal_block.png"}, - is_ground_content = true, - groups = {cracky=3}, - sounds = default.node_sound_stone_defaults(), +local fence_texture = "default_fence_overlay.png^default_wood.png^default_fence_overlay.png^[makealpha:255,126,126" +minetest.register_node("default:fence_wood", { + description = "Wooden Fence", + drawtype = "fencelike", + tiles = {"default_wood.png"}, + inventory_image = fence_texture, + wield_image = fence_texture, + paramtype = "light", + sunlight_propagates = true, + is_ground_content = false, + selection_box = { + type = "fixed", + fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7}, + }, + groups = {choppy=2,oddly_breakable_by_hand=2,flammable=2}, + sounds = default.node_sound_wood_defaults(), }) -minetest.register_node("default:steelblock", { - description = "Steel Block", - tiles = {"default_steel_block.png"}, - is_ground_content = true, - groups = {cracky=1,level=2}, - sounds = default.node_sound_stone_defaults(), -}) -minetest.register_node("default:copperblock", { - description = "Copper Block", - tiles = {"default_copper_block.png"}, - is_ground_content = true, - groups = {cracky=1,level=2}, - sounds = default.node_sound_stone_defaults(), -}) -minetest.register_node("default:bronzeblock", { - description = "Bronze Block", - tiles = {"default_bronze_block.png"}, - is_ground_content = true, - groups = {cracky=1,level=2}, - sounds = default.node_sound_stone_defaults(), -}) - -minetest.register_node("default:mese", { - description = "Mese Block", - tiles = {"default_mese_block.png"}, - is_ground_content = true, - groups = {cracky=1,level=2}, - sounds = default.node_sound_stone_defaults(), -}) -minetest.register_alias("default:mese_block", "default:mese") - -minetest.register_node("default:goldblock", { - description = "Gold Block", - tiles = {"default_gold_block.png"}, - is_ground_content = true, - groups = {cracky=1}, - sounds = default.node_sound_stone_defaults(), -}) - -minetest.register_node("default:diamondblock", { - description = "Diamond Block", - tiles = {"default_diamond_block.png"}, - is_ground_content = true, - groups = {cracky=1,level=3}, - sounds = default.node_sound_stone_defaults(), +minetest.register_node("default:glass", { + description = "Glass", + drawtype = "glasslike_framed_optional", + tiles = {"default_glass.png", "default_glass_detail.png"}, + inventory_image = minetest.inventorycube("default_glass.png"), + paramtype = "light", + sunlight_propagates = true, + is_ground_content = false, + groups = {cracky=3,oddly_breakable_by_hand=3}, + sounds = default.node_sound_glass_defaults(), }) minetest.register_node("default:obsidian_glass", { @@ -960,19 +1518,59 @@ minetest.register_node("default:obsidian_glass", { groups = {cracky=3,oddly_breakable_by_hand=3}, }) -minetest.register_node("default:obsidian", { - description = "Obsidian", - tiles = {"default_obsidian.png"}, - is_ground_content = true, - sounds = default.node_sound_stone_defaults(), - groups = {cracky=1,level=2}, + + +minetest.register_node("default:rail", { + description = "Rail", + drawtype = "raillike", + tiles = {"default_rail.png", "default_rail_curved.png", "default_rail_t_junction.png", "default_rail_crossing.png"}, + inventory_image = "default_rail.png", + wield_image = "default_rail.png", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + is_ground_content = false, + selection_box = { + type = "fixed", + -- but how to specify the dimensions for curved and sideways rails? + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + groups = {bendy=2,dig_immediate=2,attached_node=1,connect_to_raillike=minetest.raillike_group("rail")}, }) -minetest.register_node("default:obsidianbrick", { - description = "Obsidian Brick", - tiles = {"default_obsidian_brick.png"}, + + +minetest.register_node("default:brick", { + description = "Brick Block", + tiles = {"default_brick.png"}, + is_ground_content = false, + groups = {cracky=3}, sounds = default.node_sound_stone_defaults(), - groups = {cracky=1,level=2}, +}) + + +minetest.register_node("default:meselamp", { + description = "Mese Lamp", + drawtype = "glasslike", + tiles = {"default_meselamp.png"}, + paramtype = "light", + sunlight_propagates = true, + is_ground_content = false, + groups = {cracky = 3, oddly_breakable_by_hand = 3}, + sounds = default.node_sound_glass_defaults(), + light_source = default.LIGHT_MAX, +}) + +-- +-- Misc +-- + +minetest.register_node("default:cloud", { + description = "Cloud", + tiles = {"default_cloud.png"}, + is_ground_content = false, + sounds = default.node_sound_defaults(), + groups = {not_in_creative_inventory=1}, }) minetest.register_node("default:nyancat", { @@ -988,233 +1586,12 @@ minetest.register_node("default:nyancat", { minetest.register_node("default:nyancat_rainbow", { description = "Nyan Cat Rainbow", - tiles = {"default_nc_rb.png^[transformR90", "default_nc_rb.png^[transformR90", - "default_nc_rb.png", "default_nc_rb.png"}, + tiles = { + "default_nc_rb.png^[transformR90", "default_nc_rb.png^[transformR90", + "default_nc_rb.png", "default_nc_rb.png" + }, paramtype2 = "facedir", groups = {cracky=2}, is_ground_content = false, sounds = default.node_sound_defaults(), }) - -minetest.register_node("default:sapling", { - description = "Sapling", - drawtype = "plantlike", - visual_scale = 1.0, - tiles = {"default_sapling.png"}, - inventory_image = "default_sapling.png", - wield_image = "default_sapling.png", - paramtype = "light", - walkable = false, - is_ground_content = true, - selection_box = { - type = "fixed", - fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3} - }, - groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1,sapling=1}, - sounds = default.node_sound_leaves_defaults(), -}) - -minetest.register_node("default:apple", { - description = "Apple", - drawtype = "plantlike", - visual_scale = 1.0, - tiles = {"default_apple.png"}, - inventory_image = "default_apple.png", - paramtype = "light", - sunlight_propagates = true, - walkable = false, - is_ground_content = true, - selection_box = { - type = "fixed", - fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} - }, - groups = {fleshy=3,dig_immediate=3,flammable=2,leafdecay=3,leafdecay_drop=1}, - on_use = minetest.item_eat(1), - sounds = default.node_sound_leaves_defaults(), - after_place_node = function(pos, placer, itemstack) - if placer:is_player() then - minetest.set_node(pos, {name="default:apple", param2=1}) - end - end, -}) - -minetest.register_node("default:dry_shrub", { - description = "Dry Shrub", - drawtype = "plantlike", - waving = 1, - visual_scale = 1.0, - tiles = {"default_dry_shrub.png"}, - inventory_image = "default_dry_shrub.png", - wield_image = "default_dry_shrub.png", - paramtype = "light", - walkable = false, - is_ground_content = true, - buildable_to = true, - groups = {snappy=3,flammable=3,attached_node=1}, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, - }, -}) - -minetest.register_node("default:grass_1", { - description = "Grass", - drawtype = "plantlike", - waving = 1, - tiles = {"default_grass_1.png"}, - -- use a bigger inventory image - inventory_image = "default_grass_3.png", - wield_image = "default_grass_3.png", - paramtype = "light", - walkable = false, - is_ground_content = true, - buildable_to = true, - groups = {snappy=3,flammable=3,flora=1,attached_node=1}, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, - }, - on_place = function(itemstack, placer, pointed_thing) - -- place a random grass node - local stack = ItemStack("default:grass_"..math.random(1,5)) - local ret = minetest.item_place(stack, placer, pointed_thing) - return ItemStack("default:grass_1 "..itemstack:get_count()-(1-ret:get_count())) - end, -}) - -for i=2,5 do - minetest.register_node("default:grass_"..i, { - description = "Grass", - drawtype = "plantlike", - waving = 1, - tiles = {"default_grass_"..i..".png"}, - inventory_image = "default_grass_"..i..".png", - wield_image = "default_grass_"..i..".png", - paramtype = "light", - walkable = false, - buildable_to = true, - is_ground_content = true, - drop = "default:grass_1", - groups = {snappy=3,flammable=3,flora=1,attached_node=1,not_in_creative_inventory=1}, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, - }, - }) -end - -minetest.register_node("default:ice", { - description = "Ice", - tiles = {"default_ice.png"}, - is_ground_content = true, - paramtype = "light", - groups = {cracky=3}, - sounds = default.node_sound_glass_defaults(), -}) - -minetest.register_node("default:snow", { - description = "Snow", - tiles = {"default_snow.png"}, - inventory_image = "default_snowball.png", - wield_image = "default_snowball.png", - is_ground_content = true, - paramtype = "light", - buildable_to = true, - drawtype = "nodebox", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, -0.5+2/16, 0.5}, - }, - }, - groups = {crumbly=3,falling_node=1}, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_snow_footstep", gain=0.25}, - dug = {name="default_snow_footstep", gain=0.75}, - }), - on_construct = function(pos) - pos.y = pos.y - 1 - if minetest.get_node(pos).name == "default:dirt_with_grass" then - minetest.set_node(pos, {name="default:dirt_with_snow"}) - end - end, -}) -minetest.register_alias("snow", "default:snow") - -minetest.register_node("default:snowblock", { - description = "Snow Block", - tiles = {"default_snow.png"}, - is_ground_content = true, - groups = {crumbly=3}, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_snow_footstep", gain=0.25}, - dug = {name="default_snow_footstep", gain=0.75}, - }), -}) - -minetest.register_node("default:pine_needles",{ - description = "Pine Needles", - drawtype = "allfaces_optional", - visual_scale = 1.3, - tiles = {"default_pine_needles.png"}, - waving = 1, - paramtype = "light", - is_ground_content = false, - groups = {snappy=3, leafdecay=3, flammable=2, leaves=1}, - drop = { - max_items = 1, - items = { - { - -- player will get sapling with 1/20 chance - items = {"default:pine_sapling"}, - rarity = 20, - }, - { - -- player will get leaves only if he get no saplings, - -- this is because max_items is 1 - items = {"default:pine_needles"}, - } - } - }, - sounds = default.node_sound_leaves_defaults(), - after_place_node = default.after_place_leaves, -}) - -minetest.register_node("default:pine_sapling", { - description = "Pine Sapling", - drawtype = "plantlike", - visual_scale = 1.0, - tiles = {"default_pine_sapling.png"}, - inventory_image = "default_pine_sapling.png", - wield_image = "default_pine_sapling.png", - paramtype = "light", - walkable = false, - is_ground_content = true, - selection_box = { - type = "fixed", - fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3} - }, - groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1,sapling=1}, - sounds = default.node_sound_leaves_defaults(), -}) - -minetest.register_node("default:pinetree", { - description = "Pine Tree", - tiles = {"default_pinetree_top.png", "default_pinetree_top.png", "default_pinetree.png"}, - paramtype2 = "facedir", - is_ground_content = false, - groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2}, - sounds = default.node_sound_wood_defaults(), - on_place = minetest.rotate_node -}) - -minetest.register_node("default:pinewood", { - description = "Pinewood Planks", - tiles = {"default_pinewood.png"}, - groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1}, - sounds = default.node_sound_wood_defaults(), -}) - diff --git a/mods/default/player.lua b/mods/default/player.lua index 688ef62..e4fb2ad 100644 --- a/mods/default/player.lua +++ b/mods/default/player.lua @@ -15,7 +15,7 @@ function default.player_register_model(name, def) end -- Default player appearance -default.player_register_model("character.x", { +default.player_register_model("character.b3d", { animation_speed = 30, textures = {"character.png", }, animations = { @@ -93,12 +93,12 @@ end -- Update appearance when the player joins minetest.register_on_joinplayer(function(player) default.player_attached[player:get_player_name()] = false - default.player_set_model(player, "character.x") + default.player_set_model(player, "character.b3d") player:set_local_animation({x=0, y=79}, {x=168, y=187}, {x=189, y=198}, {x=200, y=219}, 30) -- set GUI if not minetest.setting_getbool("creative_mode") then - player:set_inventory_formspec(default.gui_suvival_form) + player:set_inventory_formspec(default.gui_survival_form) end player:hud_set_hotbar_image("gui_hotbar.png") player:hud_set_hotbar_selected_image("gui_hotbar_selected.png") diff --git a/mods/default/sounds/default_place_node_hard.1.ogg b/mods/default/sounds/default_place_node_hard.1.ogg index 76eecf9..9f97fac 100644 Binary files a/mods/default/sounds/default_place_node_hard.1.ogg and b/mods/default/sounds/default_place_node_hard.1.ogg differ diff --git a/mods/default/textures/bubble.png b/mods/default/textures/bubble.png index f48aa35..100fe15 100644 Binary files a/mods/default/textures/bubble.png and b/mods/default/textures/bubble.png differ diff --git a/mods/default/textures/crack_anylength.png b/mods/default/textures/crack_anylength.png index d07d65e..297eced 100644 Binary files a/mods/default/textures/crack_anylength.png and b/mods/default/textures/crack_anylength.png differ diff --git a/mods/default/textures/default_apple.png b/mods/default/textures/default_apple.png index 962cf7f..7549bfd 100644 Binary files a/mods/default/textures/default_apple.png and b/mods/default/textures/default_apple.png differ diff --git a/mods/default/textures/default_book.png b/mods/default/textures/default_book.png index db96636..15af2b6 100644 Binary files a/mods/default/textures/default_book.png and b/mods/default/textures/default_book.png differ diff --git a/mods/default/textures/default_bookshelf.png b/mods/default/textures/default_bookshelf.png index 7afbcda..10d6483 100644 Binary files a/mods/default/textures/default_bookshelf.png and b/mods/default/textures/default_bookshelf.png differ diff --git a/mods/default/textures/default_brick.png b/mods/default/textures/default_brick.png index d5850a0..ab19121 100644 Binary files a/mods/default/textures/default_brick.png and b/mods/default/textures/default_brick.png differ diff --git a/mods/default/textures/default_brick_normal.png b/mods/default/textures/default_brick_normal.png new file mode 100644 index 0000000..9947439 Binary files /dev/null and b/mods/default/textures/default_brick_normal.png differ diff --git a/mods/default/textures/default_bronze_block.png b/mods/default/textures/default_bronze_block.png index 9c78911..1d0c9d5 100644 Binary files a/mods/default/textures/default_bronze_block.png and b/mods/default/textures/default_bronze_block.png differ diff --git a/mods/default/textures/default_bronze_ingot.png b/mods/default/textures/default_bronze_ingot.png index 527641b..6cccdf6 100644 Binary files a/mods/default/textures/default_bronze_ingot.png and b/mods/default/textures/default_bronze_ingot.png differ diff --git a/mods/default/textures/default_cactus_side.png b/mods/default/textures/default_cactus_side.png index 1fc8f27..8d6c40c 100644 Binary files a/mods/default/textures/default_cactus_side.png and b/mods/default/textures/default_cactus_side.png differ diff --git a/mods/default/textures/default_cactus_top.png b/mods/default/textures/default_cactus_top.png index df48b73..cf46aa2 100644 Binary files a/mods/default/textures/default_cactus_top.png and b/mods/default/textures/default_cactus_top.png differ diff --git a/mods/default/textures/default_chest_front.png b/mods/default/textures/default_chest_front.png index baa8b2a..85227d8 100644 Binary files a/mods/default/textures/default_chest_front.png and b/mods/default/textures/default_chest_front.png differ diff --git a/mods/default/textures/default_chest_lock.png b/mods/default/textures/default_chest_lock.png index 44819c2..73f46c7 100644 Binary files a/mods/default/textures/default_chest_lock.png and b/mods/default/textures/default_chest_lock.png differ diff --git a/mods/default/textures/default_chest_side.png b/mods/default/textures/default_chest_side.png index 2653b9d..44a65a4 100644 Binary files a/mods/default/textures/default_chest_side.png and b/mods/default/textures/default_chest_side.png differ diff --git a/mods/default/textures/default_chest_top.png b/mods/default/textures/default_chest_top.png index 46f1f19..f1a5cb5 100644 Binary files a/mods/default/textures/default_chest_top.png and b/mods/default/textures/default_chest_top.png differ diff --git a/mods/default/textures/default_clay.png b/mods/default/textures/default_clay.png index 070b69e..76e5a40 100644 Binary files a/mods/default/textures/default_clay.png and b/mods/default/textures/default_clay.png differ diff --git a/mods/default/textures/default_clay_brick.png b/mods/default/textures/default_clay_brick.png index fd14ea1..dc7a431 100644 Binary files a/mods/default/textures/default_clay_brick.png and b/mods/default/textures/default_clay_brick.png differ diff --git a/mods/default/textures/default_clay_lump.png b/mods/default/textures/default_clay_lump.png index aef6efd..c1d0220 100644 Binary files a/mods/default/textures/default_clay_lump.png and b/mods/default/textures/default_clay_lump.png differ diff --git a/mods/default/textures/default_coal_block.png b/mods/default/textures/default_coal_block.png index 08fcd92..6fe9ed9 100644 Binary files a/mods/default/textures/default_coal_block.png and b/mods/default/textures/default_coal_block.png differ diff --git a/mods/default/textures/default_coal_lump.png b/mods/default/textures/default_coal_lump.png index 487f458..792961d 100644 Binary files a/mods/default/textures/default_coal_lump.png and b/mods/default/textures/default_coal_lump.png differ diff --git a/mods/default/textures/default_cobble.png b/mods/default/textures/default_cobble.png index bfb8632..d379840 100644 Binary files a/mods/default/textures/default_cobble.png and b/mods/default/textures/default_cobble.png differ diff --git a/mods/default/textures/default_cobble_normal.png b/mods/default/textures/default_cobble_normal.png new file mode 100644 index 0000000..37de21e Binary files /dev/null and b/mods/default/textures/default_cobble_normal.png differ diff --git a/mods/default/textures/default_copper_block.png b/mods/default/textures/default_copper_block.png index 0e28a82..8533754 100644 Binary files a/mods/default/textures/default_copper_block.png and b/mods/default/textures/default_copper_block.png differ diff --git a/mods/default/textures/default_copper_ingot.png b/mods/default/textures/default_copper_ingot.png index 5f2cf03..bcad9c0 100644 Binary files a/mods/default/textures/default_copper_ingot.png and b/mods/default/textures/default_copper_ingot.png differ diff --git a/mods/default/textures/default_copper_lump.png b/mods/default/textures/default_copper_lump.png index 8a706fe..998c592 100644 Binary files a/mods/default/textures/default_copper_lump.png and b/mods/default/textures/default_copper_lump.png differ diff --git a/mods/default/textures/default_desert_cobble.png b/mods/default/textures/default_desert_cobble.png index 4cbab56..f914c98 100644 Binary files a/mods/default/textures/default_desert_cobble.png and b/mods/default/textures/default_desert_cobble.png differ diff --git a/mods/default/textures/default_desert_sand.png b/mods/default/textures/default_desert_sand.png index d9049b4..371b8c7 100644 Binary files a/mods/default/textures/default_desert_sand.png and b/mods/default/textures/default_desert_sand.png differ diff --git a/mods/default/textures/default_desert_sand_normal.png b/mods/default/textures/default_desert_sand_normal.png new file mode 100644 index 0000000..b0b7932 Binary files /dev/null and b/mods/default/textures/default_desert_sand_normal.png differ diff --git a/mods/default/textures/default_desert_stone_brick.png b/mods/default/textures/default_desert_stone_brick.png index 366c88b..cc0f04a 100644 Binary files a/mods/default/textures/default_desert_stone_brick.png and b/mods/default/textures/default_desert_stone_brick.png differ diff --git a/mods/default/textures/default_desert_stone_normal.png b/mods/default/textures/default_desert_stone_normal.png new file mode 100644 index 0000000..e245682 Binary files /dev/null and b/mods/default/textures/default_desert_stone_normal.png differ diff --git a/mods/default/textures/default_diamond.png b/mods/default/textures/default_diamond.png index fcfa2ab..a8dac74 100644 Binary files a/mods/default/textures/default_diamond.png and b/mods/default/textures/default_diamond.png differ diff --git a/mods/default/textures/default_diamond_block.png b/mods/default/textures/default_diamond_block.png index 7437f4d..20c33ed 100644 Binary files a/mods/default/textures/default_diamond_block.png and b/mods/default/textures/default_diamond_block.png differ diff --git a/mods/default/textures/default_dirt.png b/mods/default/textures/default_dirt.png index 4636d9f..ca7e4ae 100644 Binary files a/mods/default/textures/default_dirt.png and b/mods/default/textures/default_dirt.png differ diff --git a/mods/default/textures/default_dry_shrub.png b/mods/default/textures/default_dry_shrub.png index f8c39a2..e8a7f27 100644 Binary files a/mods/default/textures/default_dry_shrub.png and b/mods/default/textures/default_dry_shrub.png differ diff --git a/mods/default/textures/default_fence_overlay.png b/mods/default/textures/default_fence_overlay.png index 034fbb0..718184c 100644 Binary files a/mods/default/textures/default_fence_overlay.png and b/mods/default/textures/default_fence_overlay.png differ diff --git a/mods/default/textures/default_furnace_bottom.png b/mods/default/textures/default_furnace_bottom.png index 1e482da..b79ed06 100644 Binary files a/mods/default/textures/default_furnace_bottom.png and b/mods/default/textures/default_furnace_bottom.png differ diff --git a/mods/default/textures/default_furnace_fire_bg.png b/mods/default/textures/default_furnace_fire_bg.png index 091679b..126204a 100644 Binary files a/mods/default/textures/default_furnace_fire_bg.png and b/mods/default/textures/default_furnace_fire_bg.png differ diff --git a/mods/default/textures/default_furnace_fire_fg.png b/mods/default/textures/default_furnace_fire_fg.png index 7a126e3..63888f3 100644 Binary files a/mods/default/textures/default_furnace_fire_fg.png and b/mods/default/textures/default_furnace_fire_fg.png differ diff --git a/mods/default/textures/default_furnace_front.png b/mods/default/textures/default_furnace_front.png index ddb1d0e..8c1798e 100644 Binary files a/mods/default/textures/default_furnace_front.png and b/mods/default/textures/default_furnace_front.png differ diff --git a/mods/default/textures/default_furnace_front_active.png b/mods/default/textures/default_furnace_front_active.png index 1720a9b..ea43ed9 100644 Binary files a/mods/default/textures/default_furnace_front_active.png and b/mods/default/textures/default_furnace_front_active.png differ diff --git a/mods/default/textures/default_furnace_side.png b/mods/default/textures/default_furnace_side.png index 75f46ec..33408cf 100644 Binary files a/mods/default/textures/default_furnace_side.png and b/mods/default/textures/default_furnace_side.png differ diff --git a/mods/default/textures/default_furnace_top.png b/mods/default/textures/default_furnace_top.png index 1e482da..b79ed06 100644 Binary files a/mods/default/textures/default_furnace_top.png and b/mods/default/textures/default_furnace_top.png differ diff --git a/mods/default/textures/default_glass.png b/mods/default/textures/default_glass.png index b4c7fb5..da25402 100644 Binary files a/mods/default/textures/default_glass.png and b/mods/default/textures/default_glass.png differ diff --git a/mods/default/textures/default_glass_detail.png b/mods/default/textures/default_glass_detail.png index b459665..d38dbb7 100644 Binary files a/mods/default/textures/default_glass_detail.png and b/mods/default/textures/default_glass_detail.png differ diff --git a/mods/default/textures/default_gold_block.png b/mods/default/textures/default_gold_block.png index 2337f00..170d50b 100644 Binary files a/mods/default/textures/default_gold_block.png and b/mods/default/textures/default_gold_block.png differ diff --git a/mods/default/textures/default_gold_ingot.png b/mods/default/textures/default_gold_ingot.png index 04117bc..ba66471 100644 Binary files a/mods/default/textures/default_gold_ingot.png and b/mods/default/textures/default_gold_ingot.png differ diff --git a/mods/default/textures/default_gold_lump.png b/mods/default/textures/default_gold_lump.png index 5c5afef..d5a1be7 100644 Binary files a/mods/default/textures/default_gold_lump.png and b/mods/default/textures/default_gold_lump.png differ diff --git a/mods/default/textures/default_grass.png b/mods/default/textures/default_grass.png index 8cd9e1f..7c17c6f 100644 Binary files a/mods/default/textures/default_grass.png and b/mods/default/textures/default_grass.png differ diff --git a/mods/default/textures/default_grass_1.png b/mods/default/textures/default_grass_1.png index f79307d..5052930 100644 Binary files a/mods/default/textures/default_grass_1.png and b/mods/default/textures/default_grass_1.png differ diff --git a/mods/default/textures/default_grass_2.png b/mods/default/textures/default_grass_2.png index 41d6be5..9d99a6a 100644 Binary files a/mods/default/textures/default_grass_2.png and b/mods/default/textures/default_grass_2.png differ diff --git a/mods/default/textures/default_grass_3.png b/mods/default/textures/default_grass_3.png index 3e96869..4833df4 100644 Binary files a/mods/default/textures/default_grass_3.png and b/mods/default/textures/default_grass_3.png differ diff --git a/mods/default/textures/default_grass_4.png b/mods/default/textures/default_grass_4.png index f358193..1496fb1 100644 Binary files a/mods/default/textures/default_grass_4.png and b/mods/default/textures/default_grass_4.png differ diff --git a/mods/default/textures/default_grass_5.png b/mods/default/textures/default_grass_5.png index 2c15c56..a212535 100644 Binary files a/mods/default/textures/default_grass_5.png and b/mods/default/textures/default_grass_5.png differ diff --git a/mods/default/textures/default_grass_footsteps.png b/mods/default/textures/default_grass_footsteps.png index 4e44c1f..3741a0b 100644 Binary files a/mods/default/textures/default_grass_footsteps.png and b/mods/default/textures/default_grass_footsteps.png differ diff --git a/mods/default/textures/default_grass_side.png b/mods/default/textures/default_grass_side.png index a8a2bb3..87ae3ca 100644 Binary files a/mods/default/textures/default_grass_side.png and b/mods/default/textures/default_grass_side.png differ diff --git a/mods/default/textures/default_gravel.png b/mods/default/textures/default_gravel.png index 752c47c..ad48fa4 100644 Binary files a/mods/default/textures/default_gravel.png and b/mods/default/textures/default_gravel.png differ diff --git a/mods/default/textures/default_ice.png b/mods/default/textures/default_ice.png index 14e4f56..2046eac 100644 Binary files a/mods/default/textures/default_ice.png and b/mods/default/textures/default_ice.png differ diff --git a/mods/default/textures/default_iron_lump.png b/mods/default/textures/default_iron_lump.png index fcc799c..db61a94 100644 Binary files a/mods/default/textures/default_iron_lump.png and b/mods/default/textures/default_iron_lump.png differ diff --git a/mods/default/textures/default_jungleleaves.png b/mods/default/textures/default_jungleleaves.png index 65ad848..870b4bb 100644 Binary files a/mods/default/textures/default_jungleleaves.png and b/mods/default/textures/default_jungleleaves.png differ diff --git a/mods/default/textures/default_junglesapling.png b/mods/default/textures/default_junglesapling.png index fbb74d5..05e1e50 100644 Binary files a/mods/default/textures/default_junglesapling.png and b/mods/default/textures/default_junglesapling.png differ diff --git a/mods/default/textures/default_junglewood.png b/mods/default/textures/default_junglewood.png index 1f22d9a..6198d26 100644 Binary files a/mods/default/textures/default_junglewood.png and b/mods/default/textures/default_junglewood.png differ diff --git a/mods/default/textures/default_ladder.png b/mods/default/textures/default_ladder.png index d04c603..c167fff 100644 Binary files a/mods/default/textures/default_ladder.png and b/mods/default/textures/default_ladder.png differ diff --git a/mods/default/textures/default_lava_flowing_animated.png b/mods/default/textures/default_lava_flowing_animated.png index 36b081b..2ec0746 100644 Binary files a/mods/default/textures/default_lava_flowing_animated.png and b/mods/default/textures/default_lava_flowing_animated.png differ diff --git a/mods/default/textures/default_lava_source_animated.png b/mods/default/textures/default_lava_source_animated.png index e69369a..32267a6 100644 Binary files a/mods/default/textures/default_lava_source_animated.png and b/mods/default/textures/default_lava_source_animated.png differ diff --git a/mods/default/textures/default_leaves.png b/mods/default/textures/default_leaves.png index dc737ce..e39535c 100644 Binary files a/mods/default/textures/default_leaves.png and b/mods/default/textures/default_leaves.png differ diff --git a/mods/default/textures/default_mese_block.png b/mods/default/textures/default_mese_block.png index 4b05214..2e6895d 100644 Binary files a/mods/default/textures/default_mese_block.png and b/mods/default/textures/default_mese_block.png differ diff --git a/mods/default/textures/default_mese_crystal.png b/mods/default/textures/default_mese_crystal.png index a177731..f1d71f1 100644 Binary files a/mods/default/textures/default_mese_crystal.png and b/mods/default/textures/default_mese_crystal.png differ diff --git a/mods/default/textures/default_meselamp.png b/mods/default/textures/default_meselamp.png new file mode 100644 index 0000000..b227a25 Binary files /dev/null and b/mods/default/textures/default_meselamp.png differ diff --git a/mods/default/textures/default_mineral_coal_normal.png b/mods/default/textures/default_mineral_coal_normal.png new file mode 100644 index 0000000..8d685f9 Binary files /dev/null and b/mods/default/textures/default_mineral_coal_normal.png differ diff --git a/mods/default/textures/default_mineral_copper_normal.png b/mods/default/textures/default_mineral_copper_normal.png new file mode 100644 index 0000000..a6d1795 Binary files /dev/null and b/mods/default/textures/default_mineral_copper_normal.png differ diff --git a/mods/default/textures/default_mineral_diamond.png b/mods/default/textures/default_mineral_diamond.png index fca966b..39c0f83 100644 Binary files a/mods/default/textures/default_mineral_diamond.png and b/mods/default/textures/default_mineral_diamond.png differ diff --git a/mods/default/textures/default_mineral_diamond_normal.png b/mods/default/textures/default_mineral_diamond_normal.png new file mode 100644 index 0000000..8d685f9 Binary files /dev/null and b/mods/default/textures/default_mineral_diamond_normal.png differ diff --git a/mods/default/textures/default_mineral_gold_normal.png b/mods/default/textures/default_mineral_gold_normal.png new file mode 100644 index 0000000..8d685f9 Binary files /dev/null and b/mods/default/textures/default_mineral_gold_normal.png differ diff --git a/mods/default/textures/default_mineral_iron.png b/mods/default/textures/default_mineral_iron.png index 6c894ce..bfec8b1 100644 Binary files a/mods/default/textures/default_mineral_iron.png and b/mods/default/textures/default_mineral_iron.png differ diff --git a/mods/default/textures/default_mineral_iron_normal.png b/mods/default/textures/default_mineral_iron_normal.png new file mode 100644 index 0000000..72fc6c1 Binary files /dev/null and b/mods/default/textures/default_mineral_iron_normal.png differ diff --git a/mods/default/textures/default_mineral_mese.png b/mods/default/textures/default_mineral_mese.png index b14488e..566d379 100644 Binary files a/mods/default/textures/default_mineral_mese.png and b/mods/default/textures/default_mineral_mese.png differ diff --git a/mods/default/textures/default_mineral_mese_normal.png b/mods/default/textures/default_mineral_mese_normal.png new file mode 100644 index 0000000..8229c68 Binary files /dev/null and b/mods/default/textures/default_mineral_mese_normal.png differ diff --git a/mods/default/textures/default_mossycobble.png b/mods/default/textures/default_mossycobble.png index fa5e7af..1ae7c91 100644 Binary files a/mods/default/textures/default_mossycobble.png and b/mods/default/textures/default_mossycobble.png differ diff --git a/mods/default/textures/default_obsidian.png b/mods/default/textures/default_obsidian.png index cb170ea..8f4a49c 100644 Binary files a/mods/default/textures/default_obsidian.png and b/mods/default/textures/default_obsidian.png differ diff --git a/mods/default/textures/default_obsidian_brick.png b/mods/default/textures/default_obsidian_brick.png index 2d938af..30c67ca 100644 Binary files a/mods/default/textures/default_obsidian_brick.png and b/mods/default/textures/default_obsidian_brick.png differ diff --git a/mods/default/textures/default_obsidian_glass.png b/mods/default/textures/default_obsidian_glass.png index ef5f8b5..d5ac83d 100644 Binary files a/mods/default/textures/default_obsidian_glass.png and b/mods/default/textures/default_obsidian_glass.png differ diff --git a/mods/default/textures/default_paper.png b/mods/default/textures/default_paper.png index db32a23..8f23924 100644 Binary files a/mods/default/textures/default_paper.png and b/mods/default/textures/default_paper.png differ diff --git a/mods/default/textures/default_papyrus.png b/mods/default/textures/default_papyrus.png index 96b23c4..a85e809 100644 Binary files a/mods/default/textures/default_papyrus.png and b/mods/default/textures/default_papyrus.png differ diff --git a/mods/default/textures/default_pine_needles.png b/mods/default/textures/default_pine_needles.png index 2b007be..1a32f63 100644 Binary files a/mods/default/textures/default_pine_needles.png and b/mods/default/textures/default_pine_needles.png differ diff --git a/mods/default/textures/default_pine_sapling.png b/mods/default/textures/default_pine_sapling.png index cd8167a..c30131d 100644 Binary files a/mods/default/textures/default_pine_sapling.png and b/mods/default/textures/default_pine_sapling.png differ diff --git a/mods/default/textures/default_pinetree.png b/mods/default/textures/default_pinetree.png index 5a2a8b2..4a5328f 100644 Binary files a/mods/default/textures/default_pinetree.png and b/mods/default/textures/default_pinetree.png differ diff --git a/mods/default/textures/default_pinetree_top.png b/mods/default/textures/default_pinetree_top.png index 9e2f864..8705710 100644 Binary files a/mods/default/textures/default_pinetree_top.png and b/mods/default/textures/default_pinetree_top.png differ diff --git a/mods/default/textures/default_pinewood.png b/mods/default/textures/default_pinewood.png index 4225296..6844ceb 100644 Binary files a/mods/default/textures/default_pinewood.png and b/mods/default/textures/default_pinewood.png differ diff --git a/mods/default/textures/default_rail.png b/mods/default/textures/default_rail.png index 061949e..26fed02 100644 Binary files a/mods/default/textures/default_rail.png and b/mods/default/textures/default_rail.png differ diff --git a/mods/default/textures/default_rail_crossing.png b/mods/default/textures/default_rail_crossing.png index 3774beb..ba66e01 100644 Binary files a/mods/default/textures/default_rail_crossing.png and b/mods/default/textures/default_rail_crossing.png differ diff --git a/mods/default/textures/default_rail_curved.png b/mods/default/textures/default_rail_curved.png index b721289..9084ac2 100644 Binary files a/mods/default/textures/default_rail_curved.png and b/mods/default/textures/default_rail_curved.png differ diff --git a/mods/default/textures/default_rail_t_junction.png b/mods/default/textures/default_rail_t_junction.png index d692241..486c416 100644 Binary files a/mods/default/textures/default_rail_t_junction.png and b/mods/default/textures/default_rail_t_junction.png differ diff --git a/mods/default/textures/default_river_water.png b/mods/default/textures/default_river_water.png new file mode 100644 index 0000000..3b55c5f Binary files /dev/null and b/mods/default/textures/default_river_water.png differ diff --git a/mods/default/textures/default_river_water_flowing_animated.png b/mods/default/textures/default_river_water_flowing_animated.png new file mode 100644 index 0000000..536acc5 Binary files /dev/null and b/mods/default/textures/default_river_water_flowing_animated.png differ diff --git a/mods/default/textures/default_river_water_source_animated.png b/mods/default/textures/default_river_water_source_animated.png new file mode 100644 index 0000000..daa5653 Binary files /dev/null and b/mods/default/textures/default_river_water_source_animated.png differ diff --git a/mods/default/textures/default_sand.png b/mods/default/textures/default_sand.png index ba5eb0e..645a300 100644 Binary files a/mods/default/textures/default_sand.png and b/mods/default/textures/default_sand.png differ diff --git a/mods/default/textures/default_sand_normal.png b/mods/default/textures/default_sand_normal.png new file mode 100644 index 0000000..0258dec Binary files /dev/null and b/mods/default/textures/default_sand_normal.png differ diff --git a/mods/default/textures/default_sandstone.png b/mods/default/textures/default_sandstone.png index 90f6dc6..16e3d13 100644 Binary files a/mods/default/textures/default_sandstone.png and b/mods/default/textures/default_sandstone.png differ diff --git a/mods/default/textures/default_sandstone_brick.png b/mods/default/textures/default_sandstone_brick.png index 82a1e6e..e7150e5 100644 Binary files a/mods/default/textures/default_sandstone_brick.png and b/mods/default/textures/default_sandstone_brick.png differ diff --git a/mods/default/textures/default_sandstone_brick_normal.png b/mods/default/textures/default_sandstone_brick_normal.png new file mode 100644 index 0000000..9ef5865 Binary files /dev/null and b/mods/default/textures/default_sandstone_brick_normal.png differ diff --git a/mods/default/textures/default_sapling.png b/mods/default/textures/default_sapling.png index b58b51c..3fd64f0 100644 Binary files a/mods/default/textures/default_sapling.png and b/mods/default/textures/default_sapling.png differ diff --git a/mods/default/textures/default_sign.png b/mods/default/textures/default_sign.png index be5e916..912a372 100644 Binary files a/mods/default/textures/default_sign.png and b/mods/default/textures/default_sign.png differ diff --git a/mods/default/textures/default_sign_wall.png b/mods/default/textures/default_sign_wall.png index e36361e..56a7d2e 100644 Binary files a/mods/default/textures/default_sign_wall.png and b/mods/default/textures/default_sign_wall.png differ diff --git a/mods/default/textures/default_snowball.png b/mods/default/textures/default_snowball.png index c85e205..ecdba9a 100644 Binary files a/mods/default/textures/default_snowball.png and b/mods/default/textures/default_snowball.png differ diff --git a/mods/default/textures/default_steel_block.png b/mods/default/textures/default_steel_block.png index 0f7918e..7f49f61 100644 Binary files a/mods/default/textures/default_steel_block.png and b/mods/default/textures/default_steel_block.png differ diff --git a/mods/default/textures/default_steel_ingot.png b/mods/default/textures/default_steel_ingot.png index 4babe96..8100b01 100644 Binary files a/mods/default/textures/default_steel_ingot.png and b/mods/default/textures/default_steel_ingot.png differ diff --git a/mods/default/textures/default_stick.png b/mods/default/textures/default_stick.png index 0ba6720..0378d07 100644 Binary files a/mods/default/textures/default_stick.png and b/mods/default/textures/default_stick.png differ diff --git a/mods/default/textures/default_stone.png b/mods/default/textures/default_stone.png index 23fba6a..63cb7c4 100644 Binary files a/mods/default/textures/default_stone.png and b/mods/default/textures/default_stone.png differ diff --git a/mods/default/textures/default_stone_brick.png b/mods/default/textures/default_stone_brick.png index 12ea953..c254cc6 100644 Binary files a/mods/default/textures/default_stone_brick.png and b/mods/default/textures/default_stone_brick.png differ diff --git a/mods/default/textures/default_stone_brick_normal.png b/mods/default/textures/default_stone_brick_normal.png new file mode 100644 index 0000000..893714f Binary files /dev/null and b/mods/default/textures/default_stone_brick_normal.png differ diff --git a/mods/default/textures/default_stone_normal.png b/mods/default/textures/default_stone_normal.png new file mode 100644 index 0000000..66fc0b9 Binary files /dev/null and b/mods/default/textures/default_stone_normal.png differ diff --git a/mods/default/textures/default_tnt_top.png b/mods/default/textures/default_tnt_top.png index a031a34..473c8fd 100644 Binary files a/mods/default/textures/default_tnt_top.png and b/mods/default/textures/default_tnt_top.png differ diff --git a/mods/default/textures/default_tool_bronzeaxe.png b/mods/default/textures/default_tool_bronzeaxe.png index e35a81e..8ae43b5 100644 Binary files a/mods/default/textures/default_tool_bronzeaxe.png and b/mods/default/textures/default_tool_bronzeaxe.png differ diff --git a/mods/default/textures/default_tool_bronzepick.png b/mods/default/textures/default_tool_bronzepick.png index 18b18c9..c88a5f0 100644 Binary files a/mods/default/textures/default_tool_bronzepick.png and b/mods/default/textures/default_tool_bronzepick.png differ diff --git a/mods/default/textures/default_tool_bronzeshovel.png b/mods/default/textures/default_tool_bronzeshovel.png index e21a47e..d7d800e 100644 Binary files a/mods/default/textures/default_tool_bronzeshovel.png and b/mods/default/textures/default_tool_bronzeshovel.png differ diff --git a/mods/default/textures/default_tool_bronzesword.png b/mods/default/textures/default_tool_bronzesword.png index 597bbe6..cdab898 100644 Binary files a/mods/default/textures/default_tool_bronzesword.png and b/mods/default/textures/default_tool_bronzesword.png differ diff --git a/mods/default/textures/default_tool_diamondaxe.png b/mods/default/textures/default_tool_diamondaxe.png index 48c1c8b..e32a0bf 100644 Binary files a/mods/default/textures/default_tool_diamondaxe.png and b/mods/default/textures/default_tool_diamondaxe.png differ diff --git a/mods/default/textures/default_tool_diamondpick.png b/mods/default/textures/default_tool_diamondpick.png index 10cdd90..f9883c6 100644 Binary files a/mods/default/textures/default_tool_diamondpick.png and b/mods/default/textures/default_tool_diamondpick.png differ diff --git a/mods/default/textures/default_tool_diamondshovel.png b/mods/default/textures/default_tool_diamondshovel.png index 3998022..d0fe24d 100644 Binary files a/mods/default/textures/default_tool_diamondshovel.png and b/mods/default/textures/default_tool_diamondshovel.png differ diff --git a/mods/default/textures/default_tool_diamondsword.png b/mods/default/textures/default_tool_diamondsword.png index a02acb6..dbccd0e 100644 Binary files a/mods/default/textures/default_tool_diamondsword.png and b/mods/default/textures/default_tool_diamondsword.png differ diff --git a/mods/default/textures/default_tool_meseaxe.png b/mods/default/textures/default_tool_meseaxe.png index de97224..c01fb4f 100644 Binary files a/mods/default/textures/default_tool_meseaxe.png and b/mods/default/textures/default_tool_meseaxe.png differ diff --git a/mods/default/textures/default_tool_mesepick.png b/mods/default/textures/default_tool_mesepick.png index 17451cb..1b2e25b 100644 Binary files a/mods/default/textures/default_tool_mesepick.png and b/mods/default/textures/default_tool_mesepick.png differ diff --git a/mods/default/textures/default_tool_meseshovel.png b/mods/default/textures/default_tool_meseshovel.png index dc58644..00813a2 100644 Binary files a/mods/default/textures/default_tool_meseshovel.png and b/mods/default/textures/default_tool_meseshovel.png differ diff --git a/mods/default/textures/default_tool_mesesword.png b/mods/default/textures/default_tool_mesesword.png index 0cba3ed..d395d3a 100644 Binary files a/mods/default/textures/default_tool_mesesword.png and b/mods/default/textures/default_tool_mesesword.png differ diff --git a/mods/default/textures/default_tool_steelaxe.png b/mods/default/textures/default_tool_steelaxe.png index 3964a75..1528cad 100644 Binary files a/mods/default/textures/default_tool_steelaxe.png and b/mods/default/textures/default_tool_steelaxe.png differ diff --git a/mods/default/textures/default_tool_steelpick.png b/mods/default/textures/default_tool_steelpick.png index 9df944f..a7543a1 100644 Binary files a/mods/default/textures/default_tool_steelpick.png and b/mods/default/textures/default_tool_steelpick.png differ diff --git a/mods/default/textures/default_tool_steelshovel.png b/mods/default/textures/default_tool_steelshovel.png index 05bc02b..65e4045 100644 Binary files a/mods/default/textures/default_tool_steelshovel.png and b/mods/default/textures/default_tool_steelshovel.png differ diff --git a/mods/default/textures/default_tool_steelsword.png b/mods/default/textures/default_tool_steelsword.png index bc1e642..630a339 100644 Binary files a/mods/default/textures/default_tool_steelsword.png and b/mods/default/textures/default_tool_steelsword.png differ diff --git a/mods/default/textures/default_tool_stoneaxe.png b/mods/default/textures/default_tool_stoneaxe.png index 9a18990..cc36054 100644 Binary files a/mods/default/textures/default_tool_stoneaxe.png and b/mods/default/textures/default_tool_stoneaxe.png differ diff --git a/mods/default/textures/default_tool_stonepick.png b/mods/default/textures/default_tool_stonepick.png index 0518ca7..237d739 100644 Binary files a/mods/default/textures/default_tool_stonepick.png and b/mods/default/textures/default_tool_stonepick.png differ diff --git a/mods/default/textures/default_tool_stoneshovel.png b/mods/default/textures/default_tool_stoneshovel.png index fa29e85..11711bd 100644 Binary files a/mods/default/textures/default_tool_stoneshovel.png and b/mods/default/textures/default_tool_stoneshovel.png differ diff --git a/mods/default/textures/default_tool_stonesword.png b/mods/default/textures/default_tool_stonesword.png index e8814ab..1a493ac 100644 Binary files a/mods/default/textures/default_tool_stonesword.png and b/mods/default/textures/default_tool_stonesword.png differ diff --git a/mods/default/textures/default_tool_woodaxe.png b/mods/default/textures/default_tool_woodaxe.png index 0d683ad..68f1fd8 100644 Binary files a/mods/default/textures/default_tool_woodaxe.png and b/mods/default/textures/default_tool_woodaxe.png differ diff --git a/mods/default/textures/default_tool_woodpick.png b/mods/default/textures/default_tool_woodpick.png index 127a76c..0aed583 100644 Binary files a/mods/default/textures/default_tool_woodpick.png and b/mods/default/textures/default_tool_woodpick.png differ diff --git a/mods/default/textures/default_tool_woodshovel.png b/mods/default/textures/default_tool_woodshovel.png index 5652580..dcef2b5 100644 Binary files a/mods/default/textures/default_tool_woodshovel.png and b/mods/default/textures/default_tool_woodshovel.png differ diff --git a/mods/default/textures/default_tool_woodsword.png b/mods/default/textures/default_tool_woodsword.png index 792a046..c78ba50 100644 Binary files a/mods/default/textures/default_tool_woodsword.png and b/mods/default/textures/default_tool_woodsword.png differ diff --git a/mods/default/textures/default_torch_animated.png b/mods/default/textures/default_torch_animated.png index 2629f85..cdf33ef 100644 Binary files a/mods/default/textures/default_torch_animated.png and b/mods/default/textures/default_torch_animated.png differ diff --git a/mods/default/textures/default_torch_on_ceiling_animated.png b/mods/default/textures/default_torch_on_ceiling_animated.png index b15836d..3a8b5ad 100644 Binary files a/mods/default/textures/default_torch_on_ceiling_animated.png and b/mods/default/textures/default_torch_on_ceiling_animated.png differ diff --git a/mods/default/textures/default_torch_on_floor.png b/mods/default/textures/default_torch_on_floor.png index 1567f0b..bc4bdd6 100644 Binary files a/mods/default/textures/default_torch_on_floor.png and b/mods/default/textures/default_torch_on_floor.png differ diff --git a/mods/default/textures/default_torch_on_floor_animated.png b/mods/default/textures/default_torch_on_floor_animated.png index 97bbe43..ad51c03 100644 Binary files a/mods/default/textures/default_torch_on_floor_animated.png and b/mods/default/textures/default_torch_on_floor_animated.png differ diff --git a/mods/default/textures/default_tree.png b/mods/default/textures/default_tree.png index 5fa4b65..10e297b 100644 Binary files a/mods/default/textures/default_tree.png and b/mods/default/textures/default_tree.png differ diff --git a/mods/default/textures/default_tree_top.png b/mods/default/textures/default_tree_top.png index e672d13..da99bce 100644 Binary files a/mods/default/textures/default_tree_top.png and b/mods/default/textures/default_tree_top.png differ diff --git a/mods/default/textures/default_water.png b/mods/default/textures/default_water.png index 9b6ff35..00500e9 100644 Binary files a/mods/default/textures/default_water.png and b/mods/default/textures/default_water.png differ diff --git a/mods/default/textures/default_water_flowing_animated.png b/mods/default/textures/default_water_flowing_animated.png index 9cb138c..070d797 100644 Binary files a/mods/default/textures/default_water_flowing_animated.png and b/mods/default/textures/default_water_flowing_animated.png differ diff --git a/mods/default/textures/default_water_source_animated.png b/mods/default/textures/default_water_source_animated.png index 3b9b2d9..7e7f9ff 100644 Binary files a/mods/default/textures/default_water_source_animated.png and b/mods/default/textures/default_water_source_animated.png differ diff --git a/mods/default/textures/default_wood.png b/mods/default/textures/default_wood.png index 4f31b6d..af56d6c 100644 Binary files a/mods/default/textures/default_wood.png and b/mods/default/textures/default_wood.png differ diff --git a/mods/default/textures/gui_formbg.png b/mods/default/textures/gui_formbg.png index d38040e..c543466 100644 Binary files a/mods/default/textures/gui_formbg.png and b/mods/default/textures/gui_formbg.png differ diff --git a/mods/default/textures/gui_furnace_arrow_bg.png b/mods/default/textures/gui_furnace_arrow_bg.png index 7fbb908..046d8cd 100644 Binary files a/mods/default/textures/gui_furnace_arrow_bg.png and b/mods/default/textures/gui_furnace_arrow_bg.png differ diff --git a/mods/default/textures/gui_hotbar.png b/mods/default/textures/gui_hotbar.png index a80ab46..73fb3ca 100644 Binary files a/mods/default/textures/gui_hotbar.png and b/mods/default/textures/gui_hotbar.png differ diff --git a/mods/default/textures/gui_hotbar_selected.png b/mods/default/textures/gui_hotbar_selected.png index 09385c0..40bafe6 100644 Binary files a/mods/default/textures/gui_hotbar_selected.png and b/mods/default/textures/gui_hotbar_selected.png differ diff --git a/mods/default/textures/heart.png b/mods/default/textures/heart.png index af8399a..fb8dcc7 100644 Binary files a/mods/default/textures/heart.png and b/mods/default/textures/heart.png differ diff --git a/mods/default/textures/player_back.png b/mods/default/textures/player_back.png index 9bba932..5e9ef05 100644 Binary files a/mods/default/textures/player_back.png and b/mods/default/textures/player_back.png differ diff --git a/mods/default/textures/wieldhand.png b/mods/default/textures/wieldhand.png index 2307ba4..69f4b7b 100644 Binary files a/mods/default/textures/wieldhand.png and b/mods/default/textures/wieldhand.png differ diff --git a/mods/default/tools.lua b/mods/default/tools.lua index 25cf81b..a948886 100644 --- a/mods/default/tools.lua +++ b/mods/default/tools.lua @@ -40,7 +40,7 @@ minetest.register_tool("default:pick_stone", { full_punch_interval = 1.3, max_drop_level=0, groupcaps={ - cracky = {times={[2]=2.0, [3]=1.20}, uses=20, maxlevel=1}, + cracky = {times={[2]=2.0, [3]=1.00}, uses=20, maxlevel=1}, }, damage_groups = {fleshy=3}, }, @@ -188,7 +188,7 @@ minetest.register_tool("default:axe_wood", { full_punch_interval = 1.0, max_drop_level=0, groupcaps={ - choppy = {times={[2]=3.00, [3]=2.00}, uses=10, maxlevel=1}, + choppy = {times={[2]=3.00, [3]=1.60}, uses=10, maxlevel=1}, }, damage_groups = {fleshy=2}, }, @@ -200,7 +200,7 @@ minetest.register_tool("default:axe_stone", { full_punch_interval = 1.2, max_drop_level=0, groupcaps={ - choppy={times={[1]=3.00, [2]=2.00, [3]=1.50}, uses=20, maxlevel=1}, + choppy={times={[1]=3.00, [2]=2.00, [3]=1.30}, uses=20, maxlevel=1}, }, damage_groups = {fleshy=3}, }, diff --git a/mods/default/trees.lua b/mods/default/trees.lua index f2baaf8..8e50355 100644 --- a/mods/default/trees.lua +++ b/mods/default/trees.lua @@ -45,7 +45,7 @@ minetest.register_abm({ minetest.log("action", "A jungle sapling grows into a tree at ".. minetest.pos_to_string(pos)) - default.grow_jungletree(pos) + default.grow_jungle_tree(pos) end }) @@ -60,7 +60,7 @@ minetest.register_abm({ minetest.log("action", "A pine sapling grows into a tree at ".. minetest.pos_to_string(pos)) - default.grow_pinetree(pos) + default.grow_pine_tree(pos) end }) @@ -74,11 +74,11 @@ local function add_trunk_and_leaves(data, a, pos, tree_cid, leaves_cid, local c_apple = minetest.get_content_id("default:apple") -- Trunk - for y_dist = 0, height - 1 do - local vi = a:index(x, y + y_dist, z) + data[a:index(x, y, z)] = tree_cid -- Force-place lowest trunk node to replace sapling + for yy = y + 1, y + height - 1 do + local vi = a:index(x, yy, z) local node_id = data[vi] - if y_dist == 0 or node_id == c_air or node_id == c_ignore - or node_id == leaves_cid then + if node_id == c_air or node_id == c_ignore or node_id == leaves_cid then data[vi] = tree_cid end end @@ -157,14 +157,14 @@ end -- Jungletree -function default.grow_jungletree(pos, bad) +function default.grow_jungle_tree(pos, bad) --[[ NOTE: Jungletree-placing code is currently duplicated in the engine and in games that have saplings; both are deprecated but not replaced yet --]] if bad then - error("Deprecated use of default.grow_jungletree") + error("Deprecated use of default.grow_jungle_tree") end local x, y, z = pos.x, pos.y, pos.z @@ -209,18 +209,20 @@ end -- Pinetree from mg mapgen mod, design by sfan5, pointy top added by paramat local function add_pine_needles(data, vi, c_air, c_ignore, c_snow, c_pine_needles) - if data[vi] == c_air or data[vi] == c_ignore or data[vi] == c_snow then + local node_id = data[vi] + if node_id == c_air or node_id == c_ignore or node_id == c_snow then data[vi] = c_pine_needles end end local function add_snow(data, vi, c_air, c_ignore, c_snow) - if data[vi] == c_air or data[vi] == c_ignore then + local node_id = data[vi] + if node_id == c_air or node_id == c_ignore then data[vi] = c_snow end end -function default.grow_pinetree(pos) +function default.grow_pine_tree(pos) local x, y, z = pos.x, pos.y, pos.z local maxy = y + random(9, 13) -- Trunk top @@ -240,16 +242,14 @@ function default.grow_pinetree(pos) local a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp}) local data = vm:get_data() - -- Scan for snow nodes near sapling + -- Scan for snow nodes near sapling to enable snow on branches local snow = false for yy = y - 1, y + 1 do for zz = z - 1, z + 1 do local vi = a:index(x - 1, yy, zz) for xx = x - 1, x + 1 do local nodid = data[vi] - if nodid == c_snow - or nodid == c_snowblock - or nodid == c_dirtsnow then + if nodid == c_snow or nodid == c_snowblock or nodid == c_dirtsnow then snow = true end vi = vi + 1 @@ -266,7 +266,7 @@ function default.grow_pinetree(pos) for xx = x - dev, x + dev do if random() < 0.95 - dev * 0.05 then add_pine_needles(data, vi, c_air, c_ignore, c_snow, - c_pine_needles) + c_pine_needles) if snow then add_snow(data, via, c_air, c_ignore, c_snow) end @@ -280,9 +280,9 @@ function default.grow_pinetree(pos) -- Centre top nodes add_pine_needles(data, a:index(x, maxy + 1, z), c_air, c_ignore, c_snow, - c_pine_needles) + c_pine_needles) add_pine_needles(data, a:index(x, maxy + 2, z), c_air, c_ignore, c_snow, - c_pine_needles) -- Paramat added a pointy top node + c_pine_needles) -- Paramat added a pointy top node if snow then add_snow(data, a:index(x, maxy + 3, z), c_air, c_ignore, c_snow) end @@ -301,7 +301,7 @@ function default.grow_pinetree(pos) local via = a:index(xi, yy + 1, zz) for xx = xi, xi + 1 do add_pine_needles(data, vi, c_air, c_ignore, c_snow, - c_pine_needles) + c_pine_needles) if snow then add_snow(data, via, c_air, c_ignore, c_snow) end @@ -319,7 +319,7 @@ function default.grow_pinetree(pos) for xx = x - dev, x + dev do if random() < 0.95 - dev * 0.05 then add_pine_needles(data, vi, c_air, c_ignore, c_snow, - c_pine_needles) + c_pine_needles) if snow then add_snow(data, via, c_air, c_ignore, c_snow) end @@ -332,9 +332,13 @@ function default.grow_pinetree(pos) end -- Trunk - for yy = y, maxy do + data[a:index(x, y, z)] = c_pinetree -- Force-place lowest trunk node to replace sapling + for yy = y + 1, maxy do local vi = a:index(x, yy, z) - data[vi] = c_pinetree + local node_id = data[vi] + if node_id == c_air or node_id == c_ignore or node_id == c_pine_needles then + data[vi] = c_pinetree + end end vm:set_data(data) diff --git a/mods/doors/depends.txt b/mods/doors/depends.txt index 4ad96d5..5e28bee 100644 --- a/mods/doors/depends.txt +++ b/mods/doors/depends.txt @@ -1 +1,2 @@ default +screwdriver? diff --git a/mods/doors/init.lua b/mods/doors/init.lua index c82de23..a553565 100644 --- a/mods/doors/init.lua +++ b/mods/doors/init.lua @@ -1,22 +1,6 @@ doors = {} -- Registers a door --- name: The name of the door --- def: a table with the folowing fields: --- description --- inventory_image --- groups --- tiles_bottom: the tiles of the bottom part of the door {front, side} --- tiles_top: the tiles of the bottom part of the door {front, side} --- If the following fields are not defined the default values are used --- node_box_bottom --- node_box_top --- selection_box_bottom --- selection_box_top --- only_placer_can_open: if true only the player who placed the door can --- open it - - function doors.register_door(name, def) def.groups.not_in_creative_inventory = 1 @@ -36,10 +20,10 @@ function doors.register_door(name, def) end if not def.sound_close_door then - def.sound_close_door = "door_close" + def.sound_close_door = "doors_door_close" end if not def.sound_open_door then - def.sound_open_door = "door_open" + def.sound_open_door = "doors_door_open" end @@ -124,6 +108,25 @@ function doors.register_door(name, def) end end + local function check_and_blast(pos, name) + local node = minetest.get_node(pos) + if node.name == name then + minetest.remove_node(pos) + end + end + + local function make_on_blast(base_name, dir, door_type, other_door_type) + if def.only_placer_can_open then + return function() end + else + return function(pos, intensity) + check_and_blast(pos, base_name .. door_type) + pos.y = pos.y + dir + check_and_blast(pos, base_name .. other_door_type) + end + end + end + local function on_rightclick(pos, dir, check_name, replace, replace_dir, params) pos.y = pos.y+dir if not minetest.get_node(pos).name == check_name then @@ -160,10 +163,38 @@ function doors.register_door(name, def) return meta:get_string("doors_owner") == pn end + local function on_rotate(pos, node, dir, user, check_name, mode, new_param2) + if not check_player_priv(pos, user) then + return false + end + if mode ~= screwdriver.ROTATE_FACE then + return false + end + + pos.y = pos.y + dir + if not minetest.get_node(pos).name == check_name then + return false + end + if minetest.is_protected(pos, user:get_player_name()) then + minetest.record_protection_violation(pos, user:get_player_name()) + return false + end + + local node2 = minetest.get_node(pos) + node2.param2 = (node2.param2 + 1) % 4 + minetest.swap_node(pos, node2) + + pos.y = pos.y - dir + node.param2 = (node.param2 + 1) % 4 + minetest.swap_node(pos, node) + return true + end + minetest.register_node(name.."_b_1", { tiles = {tb[2], tb[2], tb[2], tb[2], tb[1], tb[1].."^[transformfx"}, paramtype = "light", paramtype2 = "facedir", + is_ground_content = false, drop = name, drawtype = "nodebox", node_box = { @@ -187,15 +218,21 @@ function doors.register_door(name, def) end end, + on_rotate = function(pos, node, user, mode, new_param2) + return on_rotate(pos, node, 1, user, name.."_t_1", mode) + end, + can_dig = check_player_priv, sounds = def.sounds, - sunlight_propagates = def.sunlight + sunlight_propagates = def.sunlight, + on_blast = make_on_blast(name, 1, "_b_1", "_t_1") }) minetest.register_node(name.."_t_1", { tiles = {tt[2], tt[2], tt[2], tt[2], tt[1], tt[1].."^[transformfx"}, paramtype = "light", paramtype2 = "facedir", + is_ground_content = false, drop = "", drawtype = "nodebox", node_box = { @@ -219,15 +256,21 @@ function doors.register_door(name, def) end end, + on_rotate = function(pos, node, user, mode, new_param2) + return on_rotate(pos, node, -1, user, name.."_b_1", mode) + end, + can_dig = check_player_priv, sounds = def.sounds, - sunlight_propagates = def.sunlight, + sunlight_propagates = def.sunlight, + on_blast = make_on_blast(name, -1, "_t_1", "_b_1") }) minetest.register_node(name.."_b_2", { tiles = {tb[2], tb[2], tb[2], tb[2], tb[1].."^[transformfx", tb[1]}, paramtype = "light", paramtype2 = "facedir", + is_ground_content = false, drop = name, drawtype = "nodebox", node_box = { @@ -251,15 +294,21 @@ function doors.register_door(name, def) end end, + on_rotate = function(pos, node, user, mode, new_param2) + return on_rotate(pos, node, 1, user, name.."_t_2", mode) + end, + can_dig = check_player_priv, sounds = def.sounds, - sunlight_propagates = def.sunlight + sunlight_propagates = def.sunlight, + on_blast = make_on_blast(name, 1, "_b_2", "_t_2") }) minetest.register_node(name.."_t_2", { tiles = {tt[2], tt[2], tt[2], tt[2], tt[1].."^[transformfx", tt[1]}, paramtype = "light", paramtype2 = "facedir", + is_ground_content = false, drop = "", drawtype = "nodebox", node_box = { @@ -283,19 +332,24 @@ function doors.register_door(name, def) end end, + on_rotate = function(pos, node, user, mode, new_param2) + return on_rotate(pos, node, -1, user, name.."_b_2", mode) + end, + can_dig = check_player_priv, sounds = def.sounds, - sunlight_propagates = def.sunlight + sunlight_propagates = def.sunlight, + on_blast = make_on_blast(name, -1, "_t_2", "_b_2") }) end doors.register_door("doors:door_wood", { description = "Wooden Door", - inventory_image = "door_wood.png", + inventory_image = "doors_wood.png", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1}, - tiles_bottom = {"door_wood_b.png", "door_brown.png"}, - tiles_top = {"door_wood_a.png", "door_brown.png"}, + tiles_bottom = {"doors_wood_b.png", "doors_brown.png"}, + tiles_top = {"doors_wood_a.png", "doors_brown.png"}, sounds = default.node_sound_wood_defaults(), sunlight = false, }) @@ -311,10 +365,10 @@ minetest.register_craft({ doors.register_door("doors:door_steel", { description = "Steel Door", - inventory_image = "door_steel.png", + inventory_image = "doors_steel.png", groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2,door=1}, - tiles_bottom = {"door_steel_b.png", "door_grey.png"}, - tiles_top = {"door_steel_a.png", "door_grey.png"}, + tiles_bottom = {"doors_steel_b.png", "doors_grey.png"}, + tiles_top = {"doors_steel_a.png", "doors_grey.png"}, only_placer_can_open = true, sounds = default.node_sound_wood_defaults(), sunlight = false, @@ -331,10 +385,10 @@ minetest.register_craft({ doors.register_door("doors:door_glass", { description = "Glass Door", - inventory_image = "door_glass.png", + inventory_image = "doors_glass.png", groups = {snappy=1,cracky=1,oddly_breakable_by_hand=3,door=1}, - tiles_bottom = {"door_glass_b.png", "door_glass_side.png"}, - tiles_top = {"door_glass_a.png", "door_glass_side.png"}, + tiles_bottom = {"doors_glass_b.png", "doors_glass_side.png"}, + tiles_top = {"doors_glass_a.png", "doors_glass_side.png"}, sounds = default.node_sound_glass_defaults(), sunlight = true, }) @@ -350,10 +404,10 @@ minetest.register_craft({ doors.register_door("doors:door_obsidian_glass", { description = "Obsidian Glass Door", - inventory_image = "door_obsidian_glass.png", + inventory_image = "doors_obsidian_glass.png", groups = {snappy=1,cracky=1,oddly_breakable_by_hand=3,door=1}, - tiles_bottom = {"door_obsidian_glass_b.png", "door_obsidian_glass_side.png"}, - tiles_top = {"door_obsidian_glass_b.png", "door_obsidian_glass_side.png"}, + tiles_bottom = {"doors_obsidian_glass_b.png", "doors_obsidian_glass_side.png"}, + tiles_top = {"doors_obsidian_glass_a.png", "doors_obsidian_glass_side.png"}, sounds = default.node_sound_glass_defaults(), sunlight = true, }) @@ -370,77 +424,72 @@ minetest.register_craft({ ----trapdoor---- -local function update_door(pos, node) - minetest.set_node(pos, node) -end +function doors.register_trapdoor(name, def) + local name_closed = name + local name_opened = name.."_open" -local function punch(pos) - local meta = minetest.get_meta(pos) - local state = meta:get_int("state") - local me = minetest.get_node(pos) - local tmp_node - local tmp_node2 - if state == 1 then - state = 0 - minetest.sound_play("door_close", {pos = pos, gain = 0.3, max_hear_distance = 10}) - tmp_node = {name="doors:trapdoor", param1=me.param1, param2=me.param2} - else - state = 1 - minetest.sound_play("door_open", {pos = pos, gain = 0.3, max_hear_distance = 10}) - tmp_node = {name="doors:trapdoor_open", param1=me.param1, param2=me.param2} + def.on_rightclick = function (pos, node) + local newname = node.name == name_closed and name_opened or name_closed + local sound = false + if node.name == name_closed then sound = def.sound_open end + if node.name == name_opened then sound = def.sound_close end + if sound then + minetest.sound_play(sound, {pos = pos, gain = 0.3, max_hear_distance = 10}) + end + minetest.set_node(pos, {name = newname, param1 = node.param1, param2 = node.param2}) end - update_door(pos, tmp_node) - meta:set_int("state", state) + + def.on_rotate = minetest.get_modpath("screwdriver") and screwdriver.rotate_simple + + -- Common trapdoor configuration + def.drawtype = "nodebox" + def.paramtype = "light" + def.paramtype2 = "facedir" + def.is_ground_content = false + + local def_opened = table.copy(def) + local def_closed = table.copy(def) + + def_closed.node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.4, 0.5} + } + def_closed.selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.4, 0.5} + } + def_closed.tiles = { def.tile_front, def.tile_front, def.tile_side, def.tile_side, + def.tile_side, def.tile_side } + + def_opened.node_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0.4, 0.5, 0.5, 0.5} + } + def_opened.selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0.4, 0.5, 0.5, 0.5} + } + def_opened.tiles = { def.tile_side, def.tile_side, def.tile_side, def.tile_side, + def.tile_front, def.tile_front } + def_opened.drop = name_closed + def_opened.groups.not_in_creative_inventory = 1 + + minetest.register_node(name_opened, def_opened) + minetest.register_node(name_closed, def_closed) end -minetest.register_node("doors:trapdoor", { - description = "Trapdoor", - inventory_image = "door_trapdoor.png", - drawtype = "nodebox", - tiles = {"door_trapdoor.png", "door_trapdoor.png", "door_trapdoor_side.png", "door_trapdoor_side.png", "door_trapdoor_side.png", "door_trapdoor_side.png"}, - paramtype = "light", - paramtype2 = "facedir", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1}, - sounds = default.node_sound_wood_defaults(), - drop = "doors:trapdoor", - node_box = { - type = "fixed", - fixed = {-0.5, -0.5, -0.5, 0.5, -0.4, 0.5} - }, - selection_box = { - type = "fixed", - fixed = {-0.5, -0.5, -0.5, 0.5, -0.4, 0.5} - }, - on_creation = function(pos) - state = 0 - end, - on_rightclick = function(pos, node, clicker) - punch(pos) - end, -}) -minetest.register_node("doors:trapdoor_open", { - drawtype = "nodebox", - tiles = {"door_trapdoor_side.png", "door_trapdoor_side.png", "door_trapdoor_side.png", "door_trapdoor_side.png", "door_trapdoor.png", "door_trapdoor.png"}, - paramtype = "light", - paramtype2 = "facedir", - pointable = true, - stack_max = 0, - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1}, - climbable = true, + +doors.register_trapdoor("doors:trapdoor", { + description = "Trapdoor", + inventory_image = "doors_trapdoor.png", + wield_image = "doors_trapdoor.png", + tile_front = "doors_trapdoor.png", + tile_side = "doors_trapdoor_side.png", + groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=2, door=1}, sounds = default.node_sound_wood_defaults(), - drop = "doors:trapdoor", - node_box = { - type = "fixed", - fixed = {-0.5, -0.5, 0.4, 0.5, 0.5, 0.5} - }, - selection_box = { - type = "fixed", - fixed = {-0.5, -0.5, 0.4, 0.5, 0.5, 0.5} - }, - on_rightclick = function(pos, node, clicker) - punch(pos) - end, + sound_open = "doors_door_open", + sound_close = "doors_door_close" }) minetest.register_craft({ diff --git a/mods/doors/sounds/door_close.ogg b/mods/doors/sounds/doors_door_close.ogg similarity index 100% rename from mods/doors/sounds/door_close.ogg rename to mods/doors/sounds/doors_door_close.ogg diff --git a/mods/doors/sounds/door_open.ogg b/mods/doors/sounds/doors_door_open.ogg similarity index 100% rename from mods/doors/sounds/door_open.ogg rename to mods/doors/sounds/doors_door_open.ogg diff --git a/mods/doors/textures/door_brown.png b/mods/doors/textures/door_brown.png deleted file mode 100644 index 77f748d..0000000 Binary files a/mods/doors/textures/door_brown.png and /dev/null differ diff --git a/mods/doors/textures/door_glass_a.png b/mods/doors/textures/door_glass_a.png deleted file mode 100644 index b4c7fb5..0000000 Binary files a/mods/doors/textures/door_glass_a.png and /dev/null differ diff --git a/mods/doors/textures/door_glass_b.png b/mods/doors/textures/door_glass_b.png deleted file mode 100644 index b4c7fb5..0000000 Binary files a/mods/doors/textures/door_glass_b.png and /dev/null differ diff --git a/mods/doors/textures/door_grey.png b/mods/doors/textures/door_grey.png deleted file mode 100644 index 13665d2..0000000 Binary files a/mods/doors/textures/door_grey.png and /dev/null differ diff --git a/mods/doors/textures/door_obsidian_glass_a.png b/mods/doors/textures/door_obsidian_glass_a.png deleted file mode 100644 index ef5f8b5..0000000 Binary files a/mods/doors/textures/door_obsidian_glass_a.png and /dev/null differ diff --git a/mods/doors/textures/door_obsidian_glass_b.png b/mods/doors/textures/door_obsidian_glass_b.png deleted file mode 100644 index ef5f8b5..0000000 Binary files a/mods/doors/textures/door_obsidian_glass_b.png and /dev/null differ diff --git a/mods/doors/textures/door_obsidian_glass_side.png b/mods/doors/textures/door_obsidian_glass_side.png deleted file mode 100644 index 0df598b..0000000 Binary files a/mods/doors/textures/door_obsidian_glass_side.png and /dev/null differ diff --git a/mods/doors/textures/door_steel_a.png b/mods/doors/textures/door_steel_a.png deleted file mode 100644 index 515dafc..0000000 Binary files a/mods/doors/textures/door_steel_a.png and /dev/null differ diff --git a/mods/doors/textures/door_steel_b.png b/mods/doors/textures/door_steel_b.png deleted file mode 100644 index c1b75a4..0000000 Binary files a/mods/doors/textures/door_steel_b.png and /dev/null differ diff --git a/mods/doors/textures/door_trapdoor.png b/mods/doors/textures/door_trapdoor.png deleted file mode 100644 index 3039dd8..0000000 Binary files a/mods/doors/textures/door_trapdoor.png and /dev/null differ diff --git a/mods/doors/textures/door_wood_a.png b/mods/doors/textures/door_wood_a.png deleted file mode 100644 index 0317b1f..0000000 Binary files a/mods/doors/textures/door_wood_a.png and /dev/null differ diff --git a/mods/doors/textures/door_wood_b.png b/mods/doors/textures/door_wood_b.png deleted file mode 100644 index f016933..0000000 Binary files a/mods/doors/textures/door_wood_b.png and /dev/null differ diff --git a/mods/doors/textures/doors_brown.png b/mods/doors/textures/doors_brown.png new file mode 100644 index 0000000..8c8e3d8 Binary files /dev/null and b/mods/doors/textures/doors_brown.png differ diff --git a/mods/doors/textures/door_glass.png b/mods/doors/textures/doors_glass.png similarity index 100% rename from mods/doors/textures/door_glass.png rename to mods/doors/textures/doors_glass.png diff --git a/mods/doors/textures/doors_glass_a.png b/mods/doors/textures/doors_glass_a.png new file mode 100644 index 0000000..da25402 Binary files /dev/null and b/mods/doors/textures/doors_glass_a.png differ diff --git a/mods/doors/textures/doors_glass_b.png b/mods/doors/textures/doors_glass_b.png new file mode 100644 index 0000000..da25402 Binary files /dev/null and b/mods/doors/textures/doors_glass_b.png differ diff --git a/mods/doors/textures/door_glass_side.png b/mods/doors/textures/doors_glass_side.png similarity index 100% rename from mods/doors/textures/door_glass_side.png rename to mods/doors/textures/doors_glass_side.png diff --git a/mods/doors/textures/doors_grey.png b/mods/doors/textures/doors_grey.png new file mode 100644 index 0000000..ad110c7 Binary files /dev/null and b/mods/doors/textures/doors_grey.png differ diff --git a/mods/doors/textures/door_obsidian_glass.png b/mods/doors/textures/doors_obsidian_glass.png similarity index 100% rename from mods/doors/textures/door_obsidian_glass.png rename to mods/doors/textures/doors_obsidian_glass.png diff --git a/mods/doors/textures/doors_obsidian_glass_a.png b/mods/doors/textures/doors_obsidian_glass_a.png new file mode 100644 index 0000000..d5ac83d Binary files /dev/null and b/mods/doors/textures/doors_obsidian_glass_a.png differ diff --git a/mods/doors/textures/doors_obsidian_glass_b.png b/mods/doors/textures/doors_obsidian_glass_b.png new file mode 100644 index 0000000..d5ac83d Binary files /dev/null and b/mods/doors/textures/doors_obsidian_glass_b.png differ diff --git a/mods/doors/textures/doors_obsidian_glass_side.png b/mods/doors/textures/doors_obsidian_glass_side.png new file mode 100644 index 0000000..aa4c63a Binary files /dev/null and b/mods/doors/textures/doors_obsidian_glass_side.png differ diff --git a/mods/doors/textures/door_steel.png b/mods/doors/textures/doors_steel.png similarity index 100% rename from mods/doors/textures/door_steel.png rename to mods/doors/textures/doors_steel.png diff --git a/mods/doors/textures/doors_steel_a.png b/mods/doors/textures/doors_steel_a.png new file mode 100644 index 0000000..84ff11d Binary files /dev/null and b/mods/doors/textures/doors_steel_a.png differ diff --git a/mods/doors/textures/doors_steel_b.png b/mods/doors/textures/doors_steel_b.png new file mode 100644 index 0000000..77ffbe3 Binary files /dev/null and b/mods/doors/textures/doors_steel_b.png differ diff --git a/mods/doors/textures/doors_trapdoor.png b/mods/doors/textures/doors_trapdoor.png new file mode 100644 index 0000000..e92c8b2 Binary files /dev/null and b/mods/doors/textures/doors_trapdoor.png differ diff --git a/mods/doors/textures/door_trapdoor_side.png b/mods/doors/textures/doors_trapdoor_side.png similarity index 100% rename from mods/doors/textures/door_trapdoor_side.png rename to mods/doors/textures/doors_trapdoor_side.png diff --git a/mods/doors/textures/door_wood.png b/mods/doors/textures/doors_wood.png similarity index 100% rename from mods/doors/textures/door_wood.png rename to mods/doors/textures/doors_wood.png diff --git a/mods/doors/textures/doors_wood_a.png b/mods/doors/textures/doors_wood_a.png new file mode 100644 index 0000000..86a747a Binary files /dev/null and b/mods/doors/textures/doors_wood_a.png differ diff --git a/mods/doors/textures/doors_wood_b.png b/mods/doors/textures/doors_wood_b.png new file mode 100644 index 0000000..9665098 Binary files /dev/null and b/mods/doors/textures/doors_wood_b.png differ diff --git a/mods/farming/API.txt b/mods/farming/API.txt index a2f3d9d..171c3c3 100644 --- a/mods/farming/API.txt +++ b/mods/farming/API.txt @@ -9,7 +9,8 @@ Hoe Definition description = "", -- Description for tooltip inventory_image = "unknown_item.png", -- Image to be used as wield- and inventory image max_uses = 30, -- Uses until destroyed - recipe = { -- Craft recipe + material = "", -- Material for recipes + recipe = { -- Craft recipe, if material isn't used {"air", "air", "air"}, {"", "group:stick"}, {"", "group:stick"}, @@ -21,7 +22,7 @@ Plant definition description = "", -- Description of seed item inventory_image = "unknown_item.png", -- Image to be used as seed's wield- and inventory image steps = 8, -- How many steps the plant has to grow, until it can be harvested - ^ Always provide a plant texture for ech step, format: modname_plantname_i.png (i = stepnumber) + ^ Always provide a plant texture for each step, format: modname_plantname_i.png (i = stepnumber) minlight = 13, -- Minimum light to grow - maxlight = LIGHT_MAX -- Maximum light to grow + maxlight = default.LIGHT_MAX -- Maximum light to grow } \ No newline at end of file diff --git a/mods/farming/README.txt b/mods/farming/README.txt index 4663181..6724695 100644 --- a/mods/farming/README.txt +++ b/mods/farming/README.txt @@ -36,24 +36,13 @@ Created by BlockMen (License: CC BY 3.0): farming_tool_stonehoe.png farming_tool_woodhoe.png -Created by VanessaE (License: WTFPL): - farming_cotton_seed.png - farming_wheat_seed.png - farming_flour.png +Created by MasterGollum (License: WTFPL): + farming_straw.png + +Created by Gambit (License: WTFPL): farming_wheat.png - farming_wheat_1.png - farming_wheat_2.png - farming_wheat_3.png - farming_wheat_4.png - farming_wheat_5.png - farming_wheat_5.png - farming_wheat_7.png - farming_wheat_8.png - farming_cotton_1.png - farming_cotton_2.png - farming_cotton_3.png - farming_cotton_4.png - farming_cotton_5.png - farming_cotton_6.png - farming_cotton_7.png - farming_cotton_8.png + farming_wheat_*.png + farming_cotton_*.png + farming_flour.png + farming_cotton_seed.png + farming_wheat_seed.png \ No newline at end of file diff --git a/mods/farming/api.lua b/mods/farming/api.lua index 6ce996d..4b6f561 100644 --- a/mods/farming/api.lua +++ b/mods/farming/api.lua @@ -83,10 +83,30 @@ farming.register_hoe = function(name, def) end }) -- Register its recipe - minetest.register_craft({ - output = name:gsub(":", "", 1), - recipe = def.recipe - }) + if def.material == nil then + minetest.register_craft({ + output = name:sub(2), + recipe = def.recipe + }) + else + minetest.register_craft({ + output = name:sub(2), + recipe = { + {def.material, def.material, ""}, + {"", "group:stick", ""}, + {"", "group:stick", ""} + } + }) + -- Reverse Recipe + minetest.register_craft({ + output = name:sub(2), + recipe = { + {"", def.material, def.material}, + {"", "group:stick", ""}, + {"", "group:stick", ""} + } + }) + end end -- Seed placement @@ -210,7 +230,6 @@ farming.register_plant = function(name, def) paramtype = "light", walkable = false, buildable_to = true, - is_ground_content = true, drop = drop, selection_box = { type = "fixed", diff --git a/mods/farming/hoes.lua b/mods/farming/hoes.lua index 084d586..31da19f 100644 --- a/mods/farming/hoes.lua +++ b/mods/farming/hoes.lua @@ -2,64 +2,40 @@ farming.register_hoe(":farming:hoe_wood", { description = "Wooden Hoe", inventory_image = "farming_tool_woodhoe.png", max_uses = 30, - recipe = { - {"group:wood", "group:wood"}, - {"", "group:stick"}, - {"", "group:stick"}, - } + material = "group:wood" }) farming.register_hoe(":farming:hoe_stone", { description = "Stone Hoe", inventory_image = "farming_tool_stonehoe.png", max_uses = 90, - recipe = { - {"group:stone", "group:stone"}, - {"", "group:stick"}, - {"", "group:stick"}, - } + material = "group:stone" }) farming.register_hoe(":farming:hoe_steel", { description = "Steel Hoe", inventory_image = "farming_tool_steelhoe.png", max_uses = 200, - recipe = { - {"default:steel_ingot", "default:steel_ingot"}, - {"", "group:stick"}, - {"", "group:stick"}, - } + material = "default:steel_ingot" }) farming.register_hoe(":farming:hoe_bronze", { description = "Bronze Hoe", inventory_image = "farming_tool_bronzehoe.png", max_uses = 220, - recipe = { - {"default:bronze_ingot", "default:bronze_ingot"}, - {"", "group:stick"}, - {"", "group:stick"}, - } + material = "default:bronze_ingot" }) farming.register_hoe(":farming:hoe_mese", { description = "Mese Hoe", inventory_image = "farming_tool_mesehoe.png", max_uses = 350, - recipe = { - {"default:mese_crystal", "default:mese_crystal"}, - {"", "group:stick"}, - {"", "group:stick"}, - } + material = "default:mese_crystal" }) farming.register_hoe(":farming:hoe_diamond", { description = "Diamond Hoe", inventory_image = "farming_tool_diamondhoe.png", max_uses = 500, - recipe = { - {"default:diamond", "default:diamond"}, - {"", "group:stick"}, - {"", "group:stick"}, - } + material = "default:diamond" }) diff --git a/mods/farming/init.lua b/mods/farming/init.lua index 9245470..45370e7 100644 --- a/mods/farming/init.lua +++ b/mods/farming/init.lua @@ -13,7 +13,7 @@ farming.register_plant("farming:wheat", { inventory_image = "farming_wheat_seed.png", steps = 8, minlight = 13, - maxlight = LIGHT_MAX, + maxlight = default.LIGHT_MAX, fertility = {"grassland"} }) minetest.register_craftitem("farming:flour", { @@ -24,7 +24,7 @@ minetest.register_craftitem("farming:flour", { minetest.register_craftitem("farming:bread", { description = "Bread", inventory_image = "farming_bread.png", - on_use = minetest.item_eat(4), + on_use = minetest.item_eat(5), }) minetest.register_craft({ @@ -46,7 +46,7 @@ farming.register_plant("farming:cotton", { inventory_image = "farming_cotton_seed.png", steps = 8, minlight = 13, - maxlight = LIGHT_MAX, + maxlight = default.LIGHT_MAX, fertility = {"grassland", "desert"} }) @@ -59,3 +59,20 @@ minetest.register_craft({ {"farming:cotton", "farming:cotton"}, } }) + +-- Straw +minetest.register_craft({ + output = "farming:straw 3", + recipe = { + {"farming:wheat", "farming:wheat", "farming:wheat"}, + {"farming:wheat", "farming:wheat", "farming:wheat"}, + {"farming:wheat", "farming:wheat", "farming:wheat"}, + } +}) + +minetest.register_craft({ + output = "farming:wheat 3", + recipe = { + {"farming:straw"}, + } +}) diff --git a/mods/farming/nodes.lua b/mods/farming/nodes.lua index a99f505..3c0f940 100644 --- a/mods/farming/nodes.lua +++ b/mods/farming/nodes.lua @@ -20,7 +20,6 @@ minetest.register_node("farming:soil", { description = "Soil", tiles = {"default_dirt.png^farming_soil.png", "default_dirt.png"}, drop = "default:dirt", - is_ground_content = true, groups = {crumbly=3, not_in_creative_inventory=1, soil=2, grassland = 1, field = 1}, sounds = default.node_sound_dirt_defaults(), soil = { @@ -34,7 +33,6 @@ minetest.register_node("farming:soil_wet", { description = "Wet Soil", tiles = {"default_dirt.png^farming_soil_wet.png", "default_dirt.png^farming_soil_wet_side.png"}, drop = "default:dirt", - is_ground_content = true, groups = {crumbly=3, not_in_creative_inventory=1, soil=3, wet = 1, grassland = 1, field = 1}, sounds = default.node_sound_dirt_defaults(), soil = { @@ -56,7 +54,6 @@ minetest.register_node("farming:desert_sand_soil", { description = "Desert Sand Soil", drop = "default:desert_sand", tiles = {"farming_desert_sand_soil.png", "default_desert_sand.png"}, - is_ground_content = true, groups = {crumbly=3, not_in_creative_inventory = 1, falling_node=1, sand=1, soil = 2, desert = 1, field = 1}, sounds = default.node_sound_sand_defaults(), soil = { @@ -70,7 +67,6 @@ minetest.register_node("farming:desert_sand_soil_wet", { description = "Wet Desert Sand Soil", drop = "default:desert_sand", tiles = {"farming_desert_sand_soil_wet.png", "farming_desert_sand_soil_wet_side.png"}, - is_ground_content = true, groups = {crumbly=3, falling_node=1, sand=1, not_in_creative_inventory=1, soil=3, wet = 1, desert = 1, field = 1}, sounds = default.node_sound_sand_defaults(), soil = { @@ -80,6 +76,14 @@ minetest.register_node("farming:desert_sand_soil_wet", { } }) +minetest.register_node("farming:straw", { + description = "Straw", + tiles = {"farming_straw.png"}, + is_ground_content = false, + groups = {snappy=3, flammable=4}, + sounds = default.node_sound_leaves_defaults(), +}) + minetest.register_abm({ nodenames = {"group:field"}, interval = 15, diff --git a/mods/farming/textures/farming_bread.png b/mods/farming/textures/farming_bread.png index 00e5371..0c25678 100644 Binary files a/mods/farming/textures/farming_bread.png and b/mods/farming/textures/farming_bread.png differ diff --git a/mods/farming/textures/farming_cotton_1.png b/mods/farming/textures/farming_cotton_1.png index 2581db5..5fc2180 100644 Binary files a/mods/farming/textures/farming_cotton_1.png and b/mods/farming/textures/farming_cotton_1.png differ diff --git a/mods/farming/textures/farming_cotton_2.png b/mods/farming/textures/farming_cotton_2.png index af9ed34..db4f4a3 100644 Binary files a/mods/farming/textures/farming_cotton_2.png and b/mods/farming/textures/farming_cotton_2.png differ diff --git a/mods/farming/textures/farming_cotton_3.png b/mods/farming/textures/farming_cotton_3.png index ba46f3d..df3d7a7 100644 Binary files a/mods/farming/textures/farming_cotton_3.png and b/mods/farming/textures/farming_cotton_3.png differ diff --git a/mods/farming/textures/farming_cotton_4.png b/mods/farming/textures/farming_cotton_4.png index e6708b5..f314b07 100644 Binary files a/mods/farming/textures/farming_cotton_4.png and b/mods/farming/textures/farming_cotton_4.png differ diff --git a/mods/farming/textures/farming_cotton_5.png b/mods/farming/textures/farming_cotton_5.png index 0ad6a8f..3e89085 100644 Binary files a/mods/farming/textures/farming_cotton_5.png and b/mods/farming/textures/farming_cotton_5.png differ diff --git a/mods/farming/textures/farming_cotton_6.png b/mods/farming/textures/farming_cotton_6.png index 838fa93..f4bd4fb 100644 Binary files a/mods/farming/textures/farming_cotton_6.png and b/mods/farming/textures/farming_cotton_6.png differ diff --git a/mods/farming/textures/farming_cotton_7.png b/mods/farming/textures/farming_cotton_7.png index f2623c2..466d40a 100644 Binary files a/mods/farming/textures/farming_cotton_7.png and b/mods/farming/textures/farming_cotton_7.png differ diff --git a/mods/farming/textures/farming_cotton_8.png b/mods/farming/textures/farming_cotton_8.png index d4bf6bd..f835ba5 100644 Binary files a/mods/farming/textures/farming_cotton_8.png and b/mods/farming/textures/farming_cotton_8.png differ diff --git a/mods/farming/textures/farming_cotton_seed.png b/mods/farming/textures/farming_cotton_seed.png index cff769b..f1d5b8a 100644 Binary files a/mods/farming/textures/farming_cotton_seed.png and b/mods/farming/textures/farming_cotton_seed.png differ diff --git a/mods/farming/textures/farming_desert_sand_soil.png b/mods/farming/textures/farming_desert_sand_soil.png index 1450e01..3c09ef0 100644 Binary files a/mods/farming/textures/farming_desert_sand_soil.png and b/mods/farming/textures/farming_desert_sand_soil.png differ diff --git a/mods/farming/textures/farming_desert_sand_soil_wet.png b/mods/farming/textures/farming_desert_sand_soil_wet.png index cffa955..facc83e 100644 Binary files a/mods/farming/textures/farming_desert_sand_soil_wet.png and b/mods/farming/textures/farming_desert_sand_soil_wet.png differ diff --git a/mods/farming/textures/farming_desert_sand_soil_wet_side.png b/mods/farming/textures/farming_desert_sand_soil_wet_side.png index fbb2815..41e5a04 100644 Binary files a/mods/farming/textures/farming_desert_sand_soil_wet_side.png and b/mods/farming/textures/farming_desert_sand_soil_wet_side.png differ diff --git a/mods/farming/textures/farming_flour.png b/mods/farming/textures/farming_flour.png index bd33f93..b1a9783 100644 Binary files a/mods/farming/textures/farming_flour.png and b/mods/farming/textures/farming_flour.png differ diff --git a/mods/farming/textures/farming_soil.png b/mods/farming/textures/farming_soil.png index 6a59fca..5cd3e68 100644 Binary files a/mods/farming/textures/farming_soil.png and b/mods/farming/textures/farming_soil.png differ diff --git a/mods/farming/textures/farming_soil_wet.png b/mods/farming/textures/farming_soil_wet.png index 7e24c70..0b4487d 100644 Binary files a/mods/farming/textures/farming_soil_wet.png and b/mods/farming/textures/farming_soil_wet.png differ diff --git a/mods/farming/textures/farming_soil_wet_side.png b/mods/farming/textures/farming_soil_wet_side.png index 58bc4fb..f0b1bd4 100644 Binary files a/mods/farming/textures/farming_soil_wet_side.png and b/mods/farming/textures/farming_soil_wet_side.png differ diff --git a/mods/farming/textures/farming_straw.png b/mods/farming/textures/farming_straw.png new file mode 100644 index 0000000..f9f5fe7 Binary files /dev/null and b/mods/farming/textures/farming_straw.png differ diff --git a/mods/farming/textures/farming_tool_bronzehoe.png b/mods/farming/textures/farming_tool_bronzehoe.png index ef07a80..2802d11 100644 Binary files a/mods/farming/textures/farming_tool_bronzehoe.png and b/mods/farming/textures/farming_tool_bronzehoe.png differ diff --git a/mods/farming/textures/farming_tool_diamondhoe.png b/mods/farming/textures/farming_tool_diamondhoe.png index 093acb8..66f1042 100644 Binary files a/mods/farming/textures/farming_tool_diamondhoe.png and b/mods/farming/textures/farming_tool_diamondhoe.png differ diff --git a/mods/farming/textures/farming_tool_mesehoe.png b/mods/farming/textures/farming_tool_mesehoe.png index ffd597a..4534fba 100644 Binary files a/mods/farming/textures/farming_tool_mesehoe.png and b/mods/farming/textures/farming_tool_mesehoe.png differ diff --git a/mods/farming/textures/farming_tool_steelhoe.png b/mods/farming/textures/farming_tool_steelhoe.png index 893a695..d057af2 100644 Binary files a/mods/farming/textures/farming_tool_steelhoe.png and b/mods/farming/textures/farming_tool_steelhoe.png differ diff --git a/mods/farming/textures/farming_tool_stonehoe.png b/mods/farming/textures/farming_tool_stonehoe.png index 4f8dade..55d8123 100644 Binary files a/mods/farming/textures/farming_tool_stonehoe.png and b/mods/farming/textures/farming_tool_stonehoe.png differ diff --git a/mods/farming/textures/farming_tool_woodhoe.png b/mods/farming/textures/farming_tool_woodhoe.png index 8b20d2d..a287152 100644 Binary files a/mods/farming/textures/farming_tool_woodhoe.png and b/mods/farming/textures/farming_tool_woodhoe.png differ diff --git a/mods/farming/textures/farming_wheat.png b/mods/farming/textures/farming_wheat.png index cba5137..1e0ad3b 100644 Binary files a/mods/farming/textures/farming_wheat.png and b/mods/farming/textures/farming_wheat.png differ diff --git a/mods/farming/textures/farming_wheat_1.png b/mods/farming/textures/farming_wheat_1.png index 2ca23ee..c16ad94 100644 Binary files a/mods/farming/textures/farming_wheat_1.png and b/mods/farming/textures/farming_wheat_1.png differ diff --git a/mods/farming/textures/farming_wheat_2.png b/mods/farming/textures/farming_wheat_2.png index 6ae90d6..baddb4c 100644 Binary files a/mods/farming/textures/farming_wheat_2.png and b/mods/farming/textures/farming_wheat_2.png differ diff --git a/mods/farming/textures/farming_wheat_3.png b/mods/farming/textures/farming_wheat_3.png index 29950fe..36ebb19 100644 Binary files a/mods/farming/textures/farming_wheat_3.png and b/mods/farming/textures/farming_wheat_3.png differ diff --git a/mods/farming/textures/farming_wheat_4.png b/mods/farming/textures/farming_wheat_4.png index cdc2003..735ed77 100644 Binary files a/mods/farming/textures/farming_wheat_4.png and b/mods/farming/textures/farming_wheat_4.png differ diff --git a/mods/farming/textures/farming_wheat_5.png b/mods/farming/textures/farming_wheat_5.png index 2ddff03..f40b5f0 100644 Binary files a/mods/farming/textures/farming_wheat_5.png and b/mods/farming/textures/farming_wheat_5.png differ diff --git a/mods/farming/textures/farming_wheat_6.png b/mods/farming/textures/farming_wheat_6.png index f7d8145..e9c78e0 100644 Binary files a/mods/farming/textures/farming_wheat_6.png and b/mods/farming/textures/farming_wheat_6.png differ diff --git a/mods/farming/textures/farming_wheat_7.png b/mods/farming/textures/farming_wheat_7.png index 89a9591..cc26ca9 100644 Binary files a/mods/farming/textures/farming_wheat_7.png and b/mods/farming/textures/farming_wheat_7.png differ diff --git a/mods/farming/textures/farming_wheat_8.png b/mods/farming/textures/farming_wheat_8.png index 78181ff..d050093 100644 Binary files a/mods/farming/textures/farming_wheat_8.png and b/mods/farming/textures/farming_wheat_8.png differ diff --git a/mods/farming/textures/farming_wheat_seed.png b/mods/farming/textures/farming_wheat_seed.png index 81fc3b2..a9031fb 100644 Binary files a/mods/farming/textures/farming_wheat_seed.png and b/mods/farming/textures/farming_wheat_seed.png differ diff --git a/mods/fire/init.lua b/mods/fire/init.lua index f932b0c..20b1dd2 100644 --- a/mods/fire/init.lua +++ b/mods/fire/init.lua @@ -24,6 +24,9 @@ minetest.register_node("fire:basic_flame", { on_destruct = function(pos) minetest.after(0, fire.on_flame_remove_at, pos) end, + + -- unaffected by explosions + on_blast = function() end, }) fire.D = 6 @@ -63,7 +66,7 @@ function fire.update_sounds_around(pos) if not sound then if should_have_sound then fire.sounds[p0_hash] = { - handle = minetest.sound_play(wanted_sound, {pos=cp, loop=true}), + handle = minetest.sound_play(wanted_sound, {pos=cp, max_hear_distance = 16, loop=true}), name = wanted_sound.name, } end @@ -74,7 +77,7 @@ function fire.update_sounds_around(pos) elseif sound.name ~= wanted_sound.name then minetest.sound_stop(sound.handle) fire.sounds[p0_hash] = { - handle = minetest.sound_play(wanted_sound, {pos=cp, loop=true}), + handle = minetest.sound_play(wanted_sound, {pos=cp, max_hear_distance = 16, loop=true}), name = wanted_sound.name, } end @@ -106,7 +109,7 @@ end minetest.register_abm({ nodenames = {"group:flammable"}, neighbors = {"group:igniter"}, - interval = 1, + interval = 5, chance = 2, action = function(p0, node, _, _) -- If there is water or stuff like that around flame, don't ignite @@ -124,7 +127,7 @@ minetest.register_abm({ minetest.register_abm({ nodenames = {"group:igniter"}, neighbors = {"air"}, - interval = 2, + interval = 5, chance = 10, action = function(p0, node, _, _) local reg = minetest.registered_nodes[node.name] @@ -149,7 +152,7 @@ minetest.register_abm({ -- Remove flammable nodes and flame minetest.register_abm({ nodenames = {"fire:basic_flame"}, - interval = 1, + interval = 3, chance = 2, action = function(p0, node, _, _) -- If there is water or stuff like that around flame, remove flame diff --git a/mods/fire/textures/fire_basic_flame.png b/mods/fire/textures/fire_basic_flame.png index 7a126e3..1da0702 100644 Binary files a/mods/fire/textures/fire_basic_flame.png and b/mods/fire/textures/fire_basic_flame.png differ diff --git a/mods/fire/textures/fire_basic_flame_animated.png b/mods/fire/textures/fire_basic_flame_animated.png index 3b312e5..1cdd9fd 100644 Binary files a/mods/fire/textures/fire_basic_flame_animated.png and b/mods/fire/textures/fire_basic_flame_animated.png differ diff --git a/mods/flowers/init.lua b/mods/flowers/init.lua index 6baae4c..672f8b5 100644 --- a/mods/flowers/init.lua +++ b/mods/flowers/init.lua @@ -15,113 +15,47 @@ minetest.register_alias("flowers:flower_rose", "flowers:rose") minetest.register_alias("flowers:flower_tulip", "flowers:tulip") minetest.register_alias("flowers:flower_viola", "flowers:viola") -minetest.register_node("flowers:dandelion_white", { - description = "White Dandelion", - drawtype = "plantlike", - tiles = { "flowers_dandelion_white.png" }, - inventory_image = "flowers_dandelion_white.png", - wield_image = "flowers_dandelion_white.png", - sunlight_propagates = true, - paramtype = "light", - walkable = false, - buildable_to = true, - groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_white=1}, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = { -0.5, -0.5, -0.5, 0.5, -0.2, 0.5 }, - }, -}) +-- Flower registration function +local function add_simple_flower(name, desc, box, f_groups) + -- Common flowers' groups + f_groups.snappy = 3 + f_groups.flammable = 2 + f_groups.flower = 1 + f_groups.flora = 1 + f_groups.attached_node = 1 -minetest.register_node("flowers:dandelion_yellow", { - description = "Yellow Dandelion", - drawtype = "plantlike", - tiles = { "flowers_dandelion_yellow.png" }, - inventory_image = "flowers_dandelion_yellow.png", - wield_image = "flowers_dandelion_yellow.png", - sunlight_propagates = true, - paramtype = "light", - walkable = false, - buildable_to = true, - groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_yellow=1}, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = { -0.15, -0.5, -0.15, 0.15, 0.2, 0.15 }, - }, -}) + minetest.register_node("flowers:"..name.."", { + description = desc, + drawtype = "plantlike", + tiles = { "flowers_" .. name .. ".png" }, + inventory_image = "flowers_" .. name .. ".png", + wield_image = "flowers_" .. name .. ".png", + sunlight_propagates = true, + paramtype = "light", + walkable = false, + stack_max = 99, + groups = f_groups, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = box + } + }) +end -minetest.register_node("flowers:geranium", { - description = "Blue Geranium", - drawtype = "plantlike", - tiles = { "flowers_geranium.png" }, - inventory_image = "flowers_geranium.png", - wield_image = "flowers_geranium.png", - sunlight_propagates = true, - paramtype = "light", - walkable = false, - buildable_to = true, - groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_blue=1}, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = { -0.15, -0.5, -0.15, 0.15, 0.2, 0.15 }, - }, -}) +-- Registrations using the function above +flowers.datas = { + {"dandelion_yellow", "Yellow Dandelion", { -0.15, -0.5, -0.15, 0.15, 0.2, 0.15 }, {color_yellow=1}}, + {"geranium", "Blue Geranium", { -0.15, -0.5, -0.15, 0.15, 0.2, 0.15 }, {color_blue=1}}, + {"rose", "Rose", { -0.15, -0.5, -0.15, 0.15, 0.3, 0.15 }, {color_red=1}}, + {"tulip", "Orange Tulip", { -0.15, -0.5, -0.15, 0.15, 0.2, 0.15 }, {color_orange=1}}, + {"dandelion_white", "White dandelion", { -0.5, -0.5, -0.5, 0.5, -0.2, 0.5 }, {color_white=1}}, + {"viola", "Viola", { -0.5, -0.5, -0.5, 0.5, -0.2, 0.5 }, {color_violet=1}} +} -minetest.register_node("flowers:rose", { - description = "Rose", - drawtype = "plantlike", - tiles = { "flowers_rose.png" }, - inventory_image = "flowers_rose.png", - wield_image = "flowers_rose.png", - sunlight_propagates = true, - paramtype = "light", - walkable = false, - buildable_to = true, - groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_red=1}, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = { -0.15, -0.5, -0.15, 0.15, 0.3, 0.15 }, - }, -}) - -minetest.register_node("flowers:tulip", { - description = "Tulip", - drawtype = "plantlike", - tiles = { "flowers_tulip.png" }, - inventory_image = "flowers_tulip.png", - wield_image = "flowers_tulip.png", - sunlight_propagates = true, - paramtype = "light", - walkable = false, - buildable_to = true, - groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_orange=1}, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = { -0.15, -0.5, -0.15, 0.15, 0.2, 0.15 }, - }, -}) - -minetest.register_node("flowers:viola", { - description = "Viola", - drawtype = "plantlike", - tiles = { "flowers_viola.png" }, - inventory_image = "flowers_viola.png", - wield_image = "flowers_viola.png", - sunlight_propagates = true, - paramtype = "light", - walkable = false, - buildable_to = true, - groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,color_violet=1}, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = { -0.5, -0.5, -0.5, 0.5, -0.2, 0.5 }, - }, -}) +for _,item in pairs(flowers.datas) do + add_simple_flower(unpack(item)) +end minetest.register_abm({ nodenames = {"group:flora"}, diff --git a/mods/flowers/mapgen.lua b/mods/flowers/mapgen.lua index 55e0edc..aa0380a 100644 --- a/mods/flowers/mapgen.lua +++ b/mods/flowers/mapgen.lua @@ -1,70 +1,35 @@ -function flowers.mgv6ongen(minp, maxp, seed) - if maxp.y >= 2 and minp.y <= 0 then - -- Generate flowers - local perlin1 = minetest.get_perlin(436, 3, 0.6, 100) - -- Assume X and Z lengths are equal - local divlen = 16 - local divs = (maxp.x-minp.x)/divlen+1; - for divx=0,divs-1 do - for divz=0,divs-1 do - local x0 = minp.x + math.floor((divx+0)*divlen) - local z0 = minp.z + math.floor((divz+0)*divlen) - local x1 = minp.x + math.floor((divx+1)*divlen) - local z1 = minp.z + math.floor((divz+1)*divlen) - -- Determine flowers amount from perlin noise - local grass_amount = math.floor(perlin1:get2d({x=x0, y=z0}) ^ 3 * 9) - -- Find random positions for flowers based on this random - local pr = PseudoRandom(seed+456) - for i=0,grass_amount do - local x = pr:next(x0, x1) - local z = pr:next(z0, z1) - -- Find ground level (0...15) - local ground_y = nil - for y=30,0,-1 do - if minetest.get_node({x=x,y=y,z=z}).name ~= "air" then - ground_y = y - break - end - end +local function register_flower(name) + minetest.register_decoration({ + deco_type = "simple", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = 0, + scale = 0.006, + spread = {x=100, y=100, z=100}, + seed = 436, + octaves = 3, + persist = 0.6 + }, + y_min = 1, + y_max = 30, + decoration = "flowers:"..name, + }) +end - if ground_y then - local p = {x=x,y=ground_y+1,z=z} - local nn = minetest.get_node(p).name - -- Check if the node can be replaced - if minetest.registered_nodes[nn] and - minetest.registered_nodes[nn].buildable_to then - nn = minetest.get_node({x=x,y=ground_y,z=z}).name - if nn == "default:dirt_with_grass" then - local flower_choice = pr:next(1, 6) - local flower - if flower_choice == 1 then - flower = "flowers:tulip" - elseif flower_choice == 2 then - flower = "flowers:rose" - elseif flower_choice == 3 then - flower = "flowers:dandelion_yellow" - elseif flower_choice == 4 then - flower = "flowers:dandelion_white" - elseif flower_choice == 5 then - flower = "flowers:geranium" - elseif flower_choice == 6 then - flower = "flowers:viola" - end - minetest.set_node(p, {name=flower}) - end - end - end - - end - end - end - end +function flowers.register_mgv6_decorations() + register_flower("rose") + register_flower("tulip") + register_flower("dandelion_yellow") + register_flower("geranium") + register_flower("viola") + register_flower("dandelion_white") end -- Enable in mapgen v6 only -minetest.register_on_mapgen_init(function(mg_params) - if mg_params.mgname == "v6" then - minetest.register_on_generated(flowers.mgv6ongen) - end -end) +local mg_params = minetest.get_mapgen_params() +if mg_params.mgname == "v6" then + flowers.register_mgv6_decorations() +end + diff --git a/mods/flowers/textures/flowers_dandelion_white.png b/mods/flowers/textures/flowers_dandelion_white.png index 8c0e9fe..1bc02fb 100644 Binary files a/mods/flowers/textures/flowers_dandelion_white.png and b/mods/flowers/textures/flowers_dandelion_white.png differ diff --git a/mods/flowers/textures/flowers_dandelion_yellow.png b/mods/flowers/textures/flowers_dandelion_yellow.png index ae14554..ec11c1c 100644 Binary files a/mods/flowers/textures/flowers_dandelion_yellow.png and b/mods/flowers/textures/flowers_dandelion_yellow.png differ diff --git a/mods/flowers/textures/flowers_geranium.png b/mods/flowers/textures/flowers_geranium.png index ed49950..88de1d7 100644 Binary files a/mods/flowers/textures/flowers_geranium.png and b/mods/flowers/textures/flowers_geranium.png differ diff --git a/mods/flowers/textures/flowers_rose.png b/mods/flowers/textures/flowers_rose.png index 3e72bd6..e3b841d 100644 Binary files a/mods/flowers/textures/flowers_rose.png and b/mods/flowers/textures/flowers_rose.png differ diff --git a/mods/flowers/textures/flowers_tulip.png b/mods/flowers/textures/flowers_tulip.png index 293b041..471fcd3 100644 Binary files a/mods/flowers/textures/flowers_tulip.png and b/mods/flowers/textures/flowers_tulip.png differ diff --git a/mods/flowers/textures/flowers_viola.png b/mods/flowers/textures/flowers_viola.png index e176765..ca2d750 100644 Binary files a/mods/flowers/textures/flowers_viola.png and b/mods/flowers/textures/flowers_viola.png differ diff --git a/mods/screwdriver/init.lua b/mods/screwdriver/init.lua index 65e7f00..0c77754 100644 --- a/mods/screwdriver/init.lua +++ b/mods/screwdriver/init.lua @@ -1,3 +1,5 @@ +screwdriver = {} + local function nextrange(x, max) x = x + 1 if x > max then @@ -6,8 +8,16 @@ local function nextrange(x, max) return x end -local ROTATE_FACE = 1 -local ROTATE_AXIS = 2 +screwdriver.ROTATE_FACE = 1 +screwdriver.ROTATE_AXIS = 2 +screwdriver.disallow = function(pos, node, user, mode, new_param2) + return false +end +screwdriver.rotate_simple = function(pos, node, user, mode, new_param2) + if mode ~= screwdriver.ROTATE_FACE then + return false + end +end local USES = 200 -- Handles rotation @@ -25,31 +35,47 @@ local function screwdriver_handler(itemstack, user, pointed_thing, mode) local node = minetest.get_node(pos) local ndef = minetest.registered_nodes[node.name] - if not ndef or not ndef.paramtype2 == "facedir" or - (ndef.drawtype == "nodebox" and - not ndef.node_box.type == "fixed") or - node.param2 == nil then - return - end - - if ndef.can_dig and not ndef.can_dig(pos, user) then - return - end - - -- Set param2 + -- Compute param2 local rotationPart = node.param2 % 32 -- get first 4 bits local preservePart = node.param2 - rotationPart - local axisdir = math.floor(rotationPart / 4) local rotation = rotationPart - axisdir * 4 - if mode == ROTATE_FACE then + if mode == screwdriver.ROTATE_FACE then rotationPart = axisdir * 4 + nextrange(rotation, 3) - elseif mode == ROTATE_AXIS then + elseif mode == screwdriver.ROTATE_AXIS then rotationPart = nextrange(axisdir, 5) * 4 end - node.param2 = preservePart + rotationPart - minetest.swap_node(pos, node) + local new_param2 = preservePart + rotationPart + local should_rotate = true + + if ndef and ndef.on_rotate then -- Node provides a handler, so let the handler decide instead if the node can be rotated + -- Copy pos and node because callback can modify it + local result = ndef.on_rotate(vector.new(pos), + {name = node.name, param1 = node.param1, param2 = node.param2}, + user, mode, new_param2) + if result == false then -- Disallow rotation + return + elseif result == true then + should_rotate = false + end + else + if not ndef or not ndef.paramtype2 == "facedir" or + (ndef.drawtype == "nodebox" and + not ndef.node_box.type == "fixed") or + node.param2 == nil then + return + end + + if ndef.can_dig and not ndef.can_dig(pos, user) then + return + end + end + + if should_rotate then + node.param2 = new_param2 + minetest.swap_node(pos, node) + end if not minetest.setting_getbool("creative_mode") then itemstack:add_wear(65535 / (USES - 1)) @@ -63,11 +89,11 @@ minetest.register_tool("screwdriver:screwdriver", { description = "Screwdriver (left-click rotates face, right-click rotates axis)", inventory_image = "screwdriver.png", on_use = function(itemstack, user, pointed_thing) - screwdriver_handler(itemstack, user, pointed_thing, ROTATE_FACE) + screwdriver_handler(itemstack, user, pointed_thing, screwdriver.ROTATE_FACE) return itemstack end, on_place = function(itemstack, user, pointed_thing) - screwdriver_handler(itemstack, user, pointed_thing, ROTATE_AXIS) + screwdriver_handler(itemstack, user, pointed_thing, screwdriver.ROTATE_AXIS) return itemstack end, }) diff --git a/mods/screwdriver/readme.txt b/mods/screwdriver/readme.txt index d0b10e0..ced1ff5 100644 --- a/mods/screwdriver/readme.txt +++ b/mods/screwdriver/readme.txt @@ -16,3 +16,6 @@ License of media (textures and sounds) -------------------------------------- Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) http://creativecommons.org/licenses/by-sa/3.0/ + +Created by Gambit (WTFPL): + screwdriver.png \ No newline at end of file diff --git a/mods/screwdriver/textures/screwdriver.png b/mods/screwdriver/textures/screwdriver.png index 33cb83f..b2a56d5 100644 Binary files a/mods/screwdriver/textures/screwdriver.png and b/mods/screwdriver/textures/screwdriver.png differ diff --git a/mods/stairs/init.lua b/mods/stairs/init.lua index c7df28c..7f84b4c 100644 --- a/mods/stairs/init.lua +++ b/mods/stairs/init.lua @@ -7,14 +7,22 @@ stairs = {} function stairs.register_stair(subname, recipeitem, groups, images, description, sounds) minetest.register_node(":stairs:stair_" .. subname, { description = description, - drawtype = "nodebox", + drawtype = "mesh", + mesh = "stairs_stair.obj", tiles = images, paramtype = "light", paramtype2 = "facedir", - is_ground_content = true, + is_ground_content = false, groups = groups, sounds = sounds, - node_box = { + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + collision_box = { type = "fixed", fixed = { {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, @@ -87,7 +95,7 @@ function stairs.register_slab(subname, recipeitem, groups, images, description, tiles = images, paramtype = "light", paramtype2 = "facedir", - is_ground_content = true, + is_ground_content = false, groups = groups, sounds = sounds, node_box = { @@ -296,3 +304,16 @@ stairs.register_stair_and_slab("pinewood", "default:pinewood", "Pinewood Slab", default.node_sound_wood_defaults()) +stairs.register_stair_and_slab("obsidian", "default:obsidian", + {cracky=1,level=2}, + {"default_obsidian.png"}, + "Obsidian Stair", + "Obsidian Slab", + default.node_sound_stone_defaults()) + +stairs.register_stair_and_slab("obsidianbrick", "default:obsidianbrick", + {cracky=1,level=2}, + {"default_obsidian_brick.png"}, + "Obsidian Brick Stair", + "Obsidian Brick Slab", + default.node_sound_stone_defaults()) diff --git a/mods/tnt/init.lua b/mods/tnt/init.lua index a2e5ada..8ce018b 100644 --- a/mods/tnt/init.lua +++ b/mods/tnt/init.lua @@ -23,6 +23,7 @@ minetest.after(0, function() name = name, drops = def.drops, flammable = def.groups.flammable, + on_blast = def.on_blast, } end end) @@ -79,6 +80,10 @@ local function destroy(drops, pos, cid) return end local def = cid_data[cid] + if def and def.on_blast then + def.on_blast(vector.new(pos), 1) + return + end if def and def.flammable then minetest.set_node(pos, fire_node) else @@ -172,12 +177,6 @@ local function explode(pos, radius) local p = {} local c_air = minetest.get_content_id("air") - local c_tnt = minetest.get_content_id("tnt:tnt") - local c_tnt_burning = minetest.get_content_id("tnt:tnt_burning") - local c_gunpowder = minetest.get_content_id("tnt:gunpowder") - local c_gunpowder_burning = minetest.get_content_id("tnt:gunpowder_burning") - local c_boom = minetest.get_content_id("tnt:boom") - local c_fire = minetest.get_content_id("fire:basic_flame") for z = -radius, radius do for y = -radius, radius do @@ -189,13 +188,7 @@ local function explode(pos, radius) p.x = pos.x + x p.y = pos.y + y p.z = pos.z + z - if cid == c_tnt or cid == c_gunpowder then - burn(p) - elseif cid ~= c_tnt_burning and - cid ~= c_gunpowder_burning and - cid ~= c_air and - cid ~= c_fire and - cid ~= c_boom then + if cid ~= c_air then destroy(drops, p, cid) end end @@ -222,6 +215,7 @@ end minetest.register_node("tnt:tnt", { description = "TNT", tiles = {"tnt_top.png", "tnt_bottom.png", "tnt_side.png"}, + is_ground_content = false, groups = {dig_immediate=2, mesecon=2}, sounds = default.node_sound_wood_defaults(), on_punch = function(pos, node, puncher) @@ -231,6 +225,9 @@ minetest.register_node("tnt:tnt", { minetest.get_node_timer(pos):start(4) end end, + on_blast = function(pos, intensity) + burn(pos) + end, mesecons = {effector = {action_on = boom}}, }) @@ -250,34 +247,39 @@ minetest.register_node("tnt:tnt_burning", { drop = "", sounds = default.node_sound_wood_defaults(), on_timer = boom, + -- unaffected by explosions + on_blast = function() end, }) minetest.register_node("tnt:boom", { drawtype = "plantlike", tiles = {"tnt_boom.png"}, - light_source = LIGHT_MAX, + light_source = default.LIGHT_MAX, walkable = false, drop = "", groups = {dig_immediate=3}, on_timer = function(pos, elapsed) minetest.remove_node(pos) end, + -- unaffected by explosions + on_blast = function() end, }) minetest.register_node("tnt:gunpowder", { description = "Gun Powder", drawtype = "raillike", paramtype = "light", + is_ground_content = false, sunlight_propagates = true, walkable = false, - tiles = {"tnt_gunpowder.png",}, + tiles = {"tnt_gunpowder_straight.png", "tnt_gunpowder_curved.png", "tnt_gunpowder_t_junction.png", "tnt_gunpowder_crossing.png"}, inventory_image = "tnt_gunpowder_inventory.png", wield_image = "tnt_gunpowder_inventory.png", selection_box = { type = "fixed", fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, }, - groups = {dig_immediate=2,attached_node=1}, + groups = {dig_immediate=2,attached_node=1,connect_to_raillike=minetest.raillike_group("gunpowder")}, sounds = default.node_sound_leaves_defaults(), on_punch = function(pos, node, puncher) @@ -285,6 +287,9 @@ minetest.register_node("tnt:gunpowder", { burn(pos) end end, + on_blast = function(pos, intensity) + burn(pos) + end, }) minetest.register_node("tnt:gunpowder_burning", { @@ -294,7 +299,34 @@ minetest.register_node("tnt:gunpowder_burning", { walkable = false, light_source = 5, tiles = {{ - name = "tnt_gunpowder_burning_animated.png", + name = "tnt_gunpowder_burning_straight_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 1, + } + }, + { + name = "tnt_gunpowder_burning_curved_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 1, + } + }, + { + name = "tnt_gunpowder_burning_t_junction_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 1, + } + }, + { + name = "tnt_gunpowder_burning_crossing_animated.png", animation = { type = "vertical_frames", aspect_w = 16, @@ -307,7 +339,7 @@ minetest.register_node("tnt:gunpowder_burning", { fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, }, drop = "", - groups = {dig_immediate=2,attached_node=1}, + groups = {dig_immediate=2,attached_node=1,connect_to_raillike=minetest.raillike_group("gunpowder")}, sounds = default.node_sound_leaves_defaults(), on_timer = function(pos, elapsed) for dx = -1, 1 do @@ -324,7 +356,9 @@ minetest.register_node("tnt:gunpowder_burning", { end end minetest.remove_node(pos) - end + end, + -- unaffected by explosions + on_blast = function() end, }) minetest.register_abm({ diff --git a/mods/tnt/textures/tnt_gunpowder.png b/mods/tnt/textures/tnt_gunpowder.png deleted file mode 100644 index 52153e9..0000000 Binary files a/mods/tnt/textures/tnt_gunpowder.png and /dev/null differ diff --git a/mods/tnt/textures/tnt_gunpowder_burning.png b/mods/tnt/textures/tnt_gunpowder_burning.png deleted file mode 100644 index fa7d107..0000000 Binary files a/mods/tnt/textures/tnt_gunpowder_burning.png and /dev/null differ diff --git a/mods/tnt/textures/tnt_gunpowder_burning_animated.png b/mods/tnt/textures/tnt_gunpowder_burning_animated.png deleted file mode 100644 index 5ee2484..0000000 Binary files a/mods/tnt/textures/tnt_gunpowder_burning_animated.png and /dev/null differ diff --git a/mods/tnt/textures/tnt_gunpowder_burning_crossing_animated.png b/mods/tnt/textures/tnt_gunpowder_burning_crossing_animated.png new file mode 100644 index 0000000..a901f7b Binary files /dev/null and b/mods/tnt/textures/tnt_gunpowder_burning_crossing_animated.png differ diff --git a/mods/tnt/textures/tnt_gunpowder_burning_curved_animated.png b/mods/tnt/textures/tnt_gunpowder_burning_curved_animated.png new file mode 100644 index 0000000..bc01806 Binary files /dev/null and b/mods/tnt/textures/tnt_gunpowder_burning_curved_animated.png differ diff --git a/mods/tnt/textures/tnt_gunpowder_burning_straight_animated.png b/mods/tnt/textures/tnt_gunpowder_burning_straight_animated.png new file mode 100644 index 0000000..c860ace Binary files /dev/null and b/mods/tnt/textures/tnt_gunpowder_burning_straight_animated.png differ diff --git a/mods/tnt/textures/tnt_gunpowder_burning_t_junction_animated.png b/mods/tnt/textures/tnt_gunpowder_burning_t_junction_animated.png new file mode 100644 index 0000000..a556072 Binary files /dev/null and b/mods/tnt/textures/tnt_gunpowder_burning_t_junction_animated.png differ diff --git a/mods/tnt/textures/tnt_gunpowder_crossing.png b/mods/tnt/textures/tnt_gunpowder_crossing.png new file mode 100644 index 0000000..916c84e Binary files /dev/null and b/mods/tnt/textures/tnt_gunpowder_crossing.png differ diff --git a/mods/tnt/textures/tnt_gunpowder_curved.png b/mods/tnt/textures/tnt_gunpowder_curved.png new file mode 100644 index 0000000..cb8b4ea Binary files /dev/null and b/mods/tnt/textures/tnt_gunpowder_curved.png differ diff --git a/mods/tnt/textures/tnt_gunpowder_straight.png b/mods/tnt/textures/tnt_gunpowder_straight.png new file mode 100644 index 0000000..8ab0e3c Binary files /dev/null and b/mods/tnt/textures/tnt_gunpowder_straight.png differ diff --git a/mods/tnt/textures/tnt_gunpowder_t_junction.png b/mods/tnt/textures/tnt_gunpowder_t_junction.png new file mode 100644 index 0000000..ac997a7 Binary files /dev/null and b/mods/tnt/textures/tnt_gunpowder_t_junction.png differ diff --git a/mods/vessels/init.lua b/mods/vessels/init.lua index 6ca8771..6389a24 100644 --- a/mods/vessels/init.lua +++ b/mods/vessels/init.lua @@ -1,6 +1,89 @@ -- Minetest 0.4 mod: vessels -- See README.txt for licensing and other information. +local vessels_shelf_formspec = + "size[8,7;]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[context;vessels;0,0.3;8,2;]".. + "list[current_player;main;0,2.85;8,1;]".. + "list[current_player;main;0,4.08;8,3;8]".. + "listring[context;vessels]".. + "listring[current_player;main]".. + default.get_hotbar_bg(0,2.85) + +minetest.register_node("vessels:shelf", { + description = "Vessels shelf", + tiles = {"default_wood.png", "default_wood.png", "default_wood.png^vessels_shelf.png"}, + is_ground_content = false, + groups = {choppy=3,oddly_breakable_by_hand=2,flammable=3}, + sounds = default.node_sound_wood_defaults(), + + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", vessels_shelf_formspec) + local inv = meta:get_inventory() + inv:set_size("vessels", 8*2) + end, + can_dig = function(pos,player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return inv:is_empty("vessels") + end, + + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local to_stack = inv:get_stack(listname, index) + if listname == "vessels" then + if minetest.get_item_group(stack:get_name(), "vessel") ~= 0 + and to_stack:is_empty() then + return 1 + else + return 0 + end + end + end, + + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local stack = inv:get_stack(from_list, from_index) + local to_stack = inv:get_stack(to_list, to_index) + if to_list == "vessels" then + if minetest.get_item_group(stack:get_name(), "vessel") ~= 0 + and to_stack:is_empty() then + return 1 + else + return 0 + end + end + end, + + on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + minetest.log("action", player:get_player_name().. + " moves stuff in vessels shelf at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_put = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " moves stuff to vessels shelf at "..minetest.pos_to_string(pos)) + end, + on_metadata_inventory_take = function(pos, listname, index, stack, player) + minetest.log("action", player:get_player_name().. + " takes stuff from vessels shelf at "..minetest.pos_to_string(pos)) + end, +}) + +minetest.register_craft({ + output = 'vessels:shelf', + recipe = { + {'group:wood', 'group:wood', 'group:wood'}, + {'group:vessel', 'group:vessel', 'group:vessel'}, + {'group:wood', 'group:wood', 'group:wood'}, + } +}) + minetest.register_node("vessels:glass_bottle", { description = "Glass Bottle (empty)", drawtype = "plantlike", @@ -8,6 +91,7 @@ minetest.register_node("vessels:glass_bottle", { inventory_image = "vessels_glass_bottle_inv.png", wield_image = "vessels_glass_bottle.png", paramtype = "light", + is_ground_content = false, walkable = false, selection_box = { type = "fixed", @@ -33,6 +117,7 @@ minetest.register_node("vessels:drinking_glass", { inventory_image = "vessels_drinking_glass_inv.png", wield_image = "vessels_drinking_glass.png", paramtype = "light", + is_ground_content = false, walkable = false, selection_box = { type = "fixed", @@ -58,6 +143,7 @@ minetest.register_node("vessels:steel_bottle", { inventory_image = "vessels_steel_bottle_inv.png", wield_image = "vessels_steel_bottle.png", paramtype = "light", + is_ground_content = false, walkable = false, selection_box = { type = "fixed", diff --git a/mods/vessels/textures/alternates/vessels_drinking_glass.png b/mods/vessels/textures/alternates/vessels_drinking_glass.png deleted file mode 100644 index 1ddbfd3..0000000 Binary files a/mods/vessels/textures/alternates/vessels_drinking_glass.png and /dev/null differ diff --git a/mods/vessels/textures/alternates/vessels_glass_bottle.png b/mods/vessels/textures/alternates/vessels_glass_bottle.png deleted file mode 100644 index 336d8b7..0000000 Binary files a/mods/vessels/textures/alternates/vessels_glass_bottle.png and /dev/null differ diff --git a/mods/vessels/textures/alternates/vessels_steel_bottle.png b/mods/vessels/textures/alternates/vessels_steel_bottle.png deleted file mode 100644 index f0246c8..0000000 Binary files a/mods/vessels/textures/alternates/vessels_steel_bottle.png and /dev/null differ diff --git a/mods/vessels/textures/vessels_drinking_glass.png b/mods/vessels/textures/vessels_drinking_glass.png index e41ad31..4cff308 100644 Binary files a/mods/vessels/textures/vessels_drinking_glass.png and b/mods/vessels/textures/vessels_drinking_glass.png differ diff --git a/mods/vessels/textures/vessels_drinking_glass_inv.png b/mods/vessels/textures/vessels_drinking_glass_inv.png index e41ad31..4cff308 100644 Binary files a/mods/vessels/textures/vessels_drinking_glass_inv.png and b/mods/vessels/textures/vessels_drinking_glass_inv.png differ diff --git a/mods/vessels/textures/vessels_glass_bottle.png b/mods/vessels/textures/vessels_glass_bottle.png index e06ecfc..e9dc683 100644 Binary files a/mods/vessels/textures/vessels_glass_bottle.png and b/mods/vessels/textures/vessels_glass_bottle.png differ diff --git a/mods/vessels/textures/vessels_glass_bottle_inv.png b/mods/vessels/textures/vessels_glass_bottle_inv.png index 74cb631..e9dc683 100644 Binary files a/mods/vessels/textures/vessels_glass_bottle_inv.png and b/mods/vessels/textures/vessels_glass_bottle_inv.png differ diff --git a/mods/vessels/textures/vessels_glass_fragments.png b/mods/vessels/textures/vessels_glass_fragments.png index ab7760d..7c6c488 100644 Binary files a/mods/vessels/textures/vessels_glass_fragments.png and b/mods/vessels/textures/vessels_glass_fragments.png differ diff --git a/mods/vessels/textures/vessels_shelf.png b/mods/vessels/textures/vessels_shelf.png new file mode 100644 index 0000000..87c69b2 Binary files /dev/null and b/mods/vessels/textures/vessels_shelf.png differ diff --git a/mods/vessels/textures/vessels_steel_bottle.png b/mods/vessels/textures/vessels_steel_bottle.png index dfb760e..834a3d5 100644 Binary files a/mods/vessels/textures/vessels_steel_bottle.png and b/mods/vessels/textures/vessels_steel_bottle.png differ diff --git a/mods/vessels/textures/vessels_steel_bottle_inv.png b/mods/vessels/textures/vessels_steel_bottle_inv.png index dfb760e..834a3d5 100644 Binary files a/mods/vessels/textures/vessels_steel_bottle_inv.png and b/mods/vessels/textures/vessels_steel_bottle_inv.png differ diff --git a/mods/wool/init.lua b/mods/wool/init.lua index 14cffa5..9c17b0c 100644 --- a/mods/wool/init.lua +++ b/mods/wool/init.lua @@ -34,6 +34,7 @@ for _, row in ipairs(wool.dyes) do minetest.register_node("wool:"..name, { description = desc.." Wool", tiles = {"wool_"..name..".png"}, + is_ground_content = false, groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,wool=1}, sounds = default.node_sound_defaults(), }) diff --git a/mods/wool/textures/wool_black.png b/mods/wool/textures/wool_black.png index e24e52b..a9e566b 100644 Binary files a/mods/wool/textures/wool_black.png and b/mods/wool/textures/wool_black.png differ diff --git a/mods/wool/textures/wool_blue.png b/mods/wool/textures/wool_blue.png index 710a9a2..035a8da 100644 Binary files a/mods/wool/textures/wool_blue.png and b/mods/wool/textures/wool_blue.png differ diff --git a/mods/wool/textures/wool_brown.png b/mods/wool/textures/wool_brown.png index dfc0c7f..2620dfd 100644 Binary files a/mods/wool/textures/wool_brown.png and b/mods/wool/textures/wool_brown.png differ diff --git a/mods/wool/textures/wool_cyan.png b/mods/wool/textures/wool_cyan.png index 46f8728..4e1e4a3 100644 Binary files a/mods/wool/textures/wool_cyan.png and b/mods/wool/textures/wool_cyan.png differ diff --git a/mods/wool/textures/wool_dark_green.png b/mods/wool/textures/wool_dark_green.png index d2a0297..92c5631 100644 Binary files a/mods/wool/textures/wool_dark_green.png and b/mods/wool/textures/wool_dark_green.png differ diff --git a/mods/wool/textures/wool_dark_grey.png b/mods/wool/textures/wool_dark_grey.png index 98f1488..0624525 100644 Binary files a/mods/wool/textures/wool_dark_grey.png and b/mods/wool/textures/wool_dark_grey.png differ diff --git a/mods/wool/textures/wool_green.png b/mods/wool/textures/wool_green.png index c211ef5..554471a 100644 Binary files a/mods/wool/textures/wool_green.png and b/mods/wool/textures/wool_green.png differ diff --git a/mods/wool/textures/wool_grey.png b/mods/wool/textures/wool_grey.png index b1b28fa..ff38bf7 100644 Binary files a/mods/wool/textures/wool_grey.png and b/mods/wool/textures/wool_grey.png differ diff --git a/mods/wool/textures/wool_magenta.png b/mods/wool/textures/wool_magenta.png index 79afdb8..5b254e4 100644 Binary files a/mods/wool/textures/wool_magenta.png and b/mods/wool/textures/wool_magenta.png differ diff --git a/mods/wool/textures/wool_orange.png b/mods/wool/textures/wool_orange.png index ca14698..64f34c0 100644 Binary files a/mods/wool/textures/wool_orange.png and b/mods/wool/textures/wool_orange.png differ diff --git a/mods/wool/textures/wool_pink.png b/mods/wool/textures/wool_pink.png index c282740..0513540 100644 Binary files a/mods/wool/textures/wool_pink.png and b/mods/wool/textures/wool_pink.png differ diff --git a/mods/wool/textures/wool_red.png b/mods/wool/textures/wool_red.png index 4a5d43a..de05af1 100644 Binary files a/mods/wool/textures/wool_red.png and b/mods/wool/textures/wool_red.png differ diff --git a/mods/wool/textures/wool_violet.png b/mods/wool/textures/wool_violet.png index 59720bd..a41a9f4 100644 Binary files a/mods/wool/textures/wool_violet.png and b/mods/wool/textures/wool_violet.png differ diff --git a/mods/wool/textures/wool_white.png b/mods/wool/textures/wool_white.png index a49f08e..2bbb9cf 100644 Binary files a/mods/wool/textures/wool_white.png and b/mods/wool/textures/wool_white.png differ diff --git a/mods/wool/textures/wool_yellow.png b/mods/wool/textures/wool_yellow.png index 9bf9f16..a95bb34 100644 Binary files a/mods/wool/textures/wool_yellow.png and b/mods/wool/textures/wool_yellow.png differ diff --git a/mods/xpanes/README.txt b/mods/xpanes/README.txt index 021f8f8..233978c 100644 --- a/mods/xpanes/README.txt +++ b/mods/xpanes/README.txt @@ -6,6 +6,9 @@ License: Copyright (C) xyz modified by BlockMen (iron bars) +Gambit (WTFPL): + xpanes_bar.png + 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/mods/xpanes/init.lua b/mods/xpanes/init.lua index b9c578e..84221d6 100644 --- a/mods/xpanes/init.lua +++ b/mods/xpanes/init.lua @@ -152,6 +152,7 @@ xpanes.register_pane("pane", { tiles = {"xpanes_space.png"}, drawtype = "airlike", paramtype = "light", + is_ground_content = false, sunlight_propagates = true, walkable = false, pointable = false, @@ -174,6 +175,7 @@ xpanes.register_pane("bar", { tiles = {"xpanes_space.png"}, drawtype = "airlike", paramtype = "light", + is_ground_content = false, sunlight_propagates = true, walkable = false, pointable = false, diff --git a/mods/xpanes/textures/xpanes_bar.png b/mods/xpanes/textures/xpanes_bar.png index 5534a5c..4d17ceb 100644 Binary files a/mods/xpanes/textures/xpanes_bar.png and b/mods/xpanes/textures/xpanes_bar.png differ