diff --git a/3d_models/akira/akira olivia pink.bbmodel b/3d_models/akira/model 3.0/akira olivia pink.bbmodel similarity index 100% rename from 3d_models/akira/akira olivia pink.bbmodel rename to 3d_models/akira/model 3.0/akira olivia pink.bbmodel diff --git a/3d_models/akira/akira olivia pink_limbs-grouped.bbmodel b/3d_models/akira/model 3.0/akira olivia pink_limbs-grouped.bbmodel similarity index 100% rename from 3d_models/akira/akira olivia pink_limbs-grouped.bbmodel rename to 3d_models/akira/model 3.0/akira olivia pink_limbs-grouped.bbmodel diff --git a/3d_models/akira/akiracombined.png b/3d_models/akira/model 3.0/akiracombined.png similarity index 100% rename from 3d_models/akira/akiracombined.png rename to 3d_models/akira/model 3.0/akiracombined.png diff --git a/3d_models/akira/akiranavy.png b/3d_models/akira/model 3.0/akiranavy.png similarity index 100% rename from 3d_models/akira/akiranavy.png rename to 3d_models/akira/model 3.0/akiranavy.png diff --git a/3d_models/akira/akirapink.png b/3d_models/akira/model 3.0/akirapink.png similarity index 100% rename from 3d_models/akira/akirapink.png rename to 3d_models/akira/model 3.0/akirapink.png diff --git a/3d_models/akira/akirashadow.png b/3d_models/akira/model 3.0/akirashadow.png similarity index 100% rename from 3d_models/akira/akirashadow.png rename to 3d_models/akira/model 3.0/akirashadow.png diff --git a/3d_models/akira/backpack.png b/3d_models/akira/model 3.0/backpack.png similarity index 100% rename from 3d_models/akira/backpack.png rename to 3d_models/akira/model 3.0/backpack.png diff --git a/3d_models/akira/elytra.png b/3d_models/akira/model 3.0/elytra.png similarity index 100% rename from 3d_models/akira/elytra.png rename to 3d_models/akira/model 3.0/elytra.png diff --git a/3d_models/akira/net.akirapink.akirapink_3d_new.gif b/3d_models/akira/model 3.0/net.akirapink.akirapink_3d_new.gif similarity index 100% rename from 3d_models/akira/net.akirapink.akirapink_3d_new.gif rename to 3d_models/akira/model 3.0/net.akirapink.akirapink_3d_new.gif diff --git a/3d_models/akira/shotgun.png b/3d_models/akira/model 3.0/shotgun.png similarity index 100% rename from 3d_models/akira/shotgun.png rename to 3d_models/akira/model 3.0/shotgun.png diff --git a/3d_models/akira/model 4.13/EZAnims.lua b/3d_models/akira/model 4.13/EZAnims.lua new file mode 100644 index 0000000..3f47a9f --- /dev/null +++ b/3d_models/akira/model 4.13/EZAnims.lua @@ -0,0 +1,700 @@ +-- V1.14 for 0.1.0 and above +-- Made by JimmyHelp +-- Contains Manuel's runLater + +local anims = {} + +local controller = {} +local controllerMT = {__index = controller} + +local objects = {} + +local exList = { + "idling", + "walking", + "walkingback", + "jumpingup", + "jumpingdown", + "falling", + "sprinting", + "sprintjumpup", + "sprintjumpdown", + "crouching", + "crouchwalk", + "crouchwalkback", + "crouchjumpup", + "crouchjumpdown", + "elytra", + "elytradown", + "trident", + "sleeping", + "swimming", + "sitting", + "sitmove", + "sitmoveback", + "sitjumpup", + "sitjumpdown", + "sitpass", + "crawling", + "crawlstill", + "flying", + "flywalk", + "flywalkback", + "flysprint", + "flyup", + "flydown", + "climbing", + "climbstill", + "climbdown", + "climbcrouch", + "climbcrouchwalking", + "water", + "waterwalk", + "waterwalkback", + "waterup", + "waterdown", + "watercrouch", + "watercrouchwalk", + "watercrouchwalkback", + "watercrouchup", + "watercrouchdown", + "hurt", + "death" +} + +local incList = { + "attackR", + "attackL", + "mineR", + "mineL", + "holdR", + "holdL", + "eatR", + "eatL", + "drinkR", + "drinkL", + "blockR", + "blockL", + "bowR", + "bowL", + "loadR", + "loadL", + "crossR", + "crossL", + "spearR", + "spearL", + "spyglassR", + "spyglassL", + "hornR", + "hornL", + "brushR", + "brushL", +} + +--[[local oldList = {} -- simply make the list again + +for key, _ in pairs(aList) do + oldList[key] = {active = false} +end]] + +local GSAnimBlend +for _, key in ipairs(listFiles(nil,true)) do + if key:find("GSAnimBlend$") then + GSAnimBlend = require(key) + break + end +end +if GSAnimBlend then GSAnimBlend.safe = false end + +local function setBlendTime(ex,inc,o) + for _,list in pairs(o.aList) do + for _,value in pairs(list.list) do + value:setBlendTime(list.type == "excluAnims" and ex or inc) + end + end +end + +---@param ex? number +---@param inc? number +function controller:setBlendTimes(ex,inc) + if not GSAnimBlend then error("GSAnimBlend was not found in the avatar, and this function is for interacting with GSAnimBlend.",2) end + if type(ex) ~= "number" and ex ~= nil then + error("The first arg is a non-number value ("..type(ex).."), must be a number or nil.",2) + end + if type(inc) ~= "number" and inc ~= nil then + error("The second arg is a non-number value ("..type(inc).."), must be a number or nil.",2) + end + if ex == nil then + ex = 0 + end + if inc == nil then + inc = ex + end + setBlendTime(ex,inc,self) + return self +end + +local flyinit +local function addAnims(bb,o) + local listy = o.aList + for _,anim in pairs(bb) do + for name,animation in pairs(anim) do + if name:find("fly") then flyinit = true end + for key, _ in pairs(o.aList) do + if name:find(key.."$") then + listy[key].list[#listy[key].list+1] = animation + break + end + end + end + end + + if GSAnimBlend then setBlendTime(4,4,o) end +end + +---@param anim table +---@param ifFly? boolean +function controller:setAnims(anim,ifFly) + flyinit = ifFly + for key, value in pairs(anim) do + self.aList[key].list = value + end + if GSAnimBlend then setBlendTime(4,4,self) end + return self +end + +---- Run Later by manuel_2867 ---- +local tmrs={} +local t=0 +---Schedules a function to run after a certain amount of ticks +---@param ticks number|function Amount of ticks to wait, or a predicate function to check each tick until it returns true +---@param next function Function to run after amount of ticks, or after the predicate function returned true +local function wait(ticks,next) + local x=type(ticks)=="number" + table.insert(tmrs,{t=x and t+ticks,p=x and function()end or ticks,n=next}) +end +function events.TICK() + t=t+1 + for key,timer in pairs(tmrs) do + if timer.p()or(timer.t and t >= timer.t)then + timer.n() + tmrs[key]=nil + end + end +end + +local fallVel = -0.6 +---@param vel? number +function anims:setFallVel(vel) + if type(vel) ~= "number" and vel ~= nil then + error("Tried to set the velocity to a non-number value ("..type(vel)..").") + end + fallVel = vel or -0.6 + return self +end + +local oneJump = false +---@param state? boolean +function anims:setOneJump(state) + oneJump = state or false + return self +end + +local auto = true +function anims:disableAutoSearch() + auto = false + return self +end + +local function getPlay(anim) + local exists, hold = pcall(anim.isHolding,anim) + return anim:isPlaying() or (exists and hold) +end + +local function getOverriders(type,o) + return o.overrideStates[type] or o.overrideStates.allAnims +end + +local function addOverriders(self,type,...) + for _, value in pairs({...}) do + if #self.overriders[type] == 64 then + error("The max amount of overriding animations for "..type.." (64) was reached. Do not put the code for adding overriding animations in a function, it will infinitely add animations.",3) + end + self.overriders[type][#self.overriders[type]+1] = value + end +end + +---@param state? boolean +function controller:setAllOff(state) + self.setOverrides.allAnims = state + return self +end + +---@param state? boolean +function controller:setExcluOff(state) + self.setOverrides.excluAnims = state + return self +end + +---@param state? boolean +function controller:setIncluOff(state) + self.setOverrides.incluAnims = state + return self +end + +---@param ... Animation +function controller:addExcluOverrider(...) + addOverriders(self,"excluAnims",...) + return self +end + +---@param ... Animation +function controller:addIncluOverrider(...) + addOverriders(self,"incluAnims",...) + return self +end + +---@param ... Animation +function controller:addAllOverrider(...) + addOverriders(self,"allAnims",...) + return self +end + +---@param exState? string +---@param inState? string +function controller:setState(exState,inState) + if type(exState) ~= "string" and exState ~= nil then + error("The first arg is a non-string value ("..type(exState).."), must be a string or nil.",2) + end + if type(inState) ~= "string" and inState ~= nil then + error("The second arg is a non-string value ("..type(inState).."), must be a string or nil.",2) + end + self.toggleState = {excluAnims = exState or "",incluAnims = inState or exState or ""} + return self +end + +function controller:getState() + return self.toggleState +end + +local function getStates(type,o) + return o.toggleState[type] +end + +---@param spec? string +function controller:getAnimationStates(spec) + if type(spec) ~= "string" and spec ~= nil then + error("The animation state is a non-string value ("..type(spec).."), must be a string or nil.",2) + end + local states = {} + for k,v in pairs(self.aList) do + states[k] = v.active + end + if spec then return self.aList[spec].active else return states end +end + +local function setAnimation(anim,override,state,o) + local saved = o.aList[anim] + local exists = true + for _,value in pairs(saved.list) do + if value:getName() == state..anim then + if not saved.active and saved.stop then break end + value:setPlaying(saved.active and not override) + if saved.active and saved.stop and not override then + value:stop():play() + end + exists = false + else + if not saved.active and saved.stop then break end + value:stop() + end + end + for _,value in pairs(saved.list) do + if exists and value:getName() == anim then + if not saved.active and saved.stop then break end + if saved.active and saved.stop and not override then + value:stop():play() + break + end + value:setPlaying(saved.active and not override) + end + end +end + +local flying +function pings.EZAnims_cFly(x) + flying = x +end + +local diff = false +local rightResult, leftResult, targetEntity, rightMine, leftMine, rightAttack, leftAttack, oldhitBlock, targetBlock, blockSuccess, blockResult, hitBlock +local yvel, grounded, oldgrounded, hasJumped, cFlying, oldcFlying +local cooldown = false +local updateTimer = 0 +local toggleDiff +local function getInfo() + if host:isHost() then + if flyinit then + cFlying = host:isFlying() + if cFlying ~= oldcFlying then + pings.EZAnims_cFly(cFlying) + end + oldcFlying = cFlying + + updateTimer = updateTimer + 1 + if updateTimer % 200 == 0 then + pings.EZAnims_cFly(cFlying) + end + end + end + + local pose = player:getPose() + local velocity = player:getVelocity() + local moving = velocity.xz:length() > 0.01 + local sprinty = player:isSprinting() + local vehicle = player:getVehicle() + local sitting = vehicle ~= nil or pose == "SITTING" -- if you're reading this code and see this, "SITTING" isn't a vanilla pose, this is for mods + local passenger = vehicle and vehicle:getControllingPassenger() ~= player + local creativeFlying = (flying or false) and not sitting + local standing = pose == "STANDING" + local crouching = pose == "CROUCHING" and not creativeFlying + local gliding = pose == "FALL_FLYING" + local spin = pose == "SPIN_ATTACK" + local sleeping = pose == "SLEEPING" + local swimming = pose == "SWIMMING" + local inWater = player:isUnderwater() and not sitting + local inLiquid = player:isInWater() or player:isInLava() + local liquidSwim = swimming and inLiquid + local crawling = swimming and not inLiquid + + -- hasJumped stuff + + yvel = velocity.y + local hover = yvel < .01 and yvel > -.01 + local goingUp = yvel > .01 + local goingDown = yvel < -.01 + local falling = yvel < fallVel + local playerGround = world.getBlockState(player:getPos():add(0,-.1,0)) + local vehicleGround = sitting and world.getBlockState(vehicle:getPos():add(0,-.1,0)) + oldgrounded = grounded + grounded = playerGround:isSolidBlock() or player:isOnGround() or (sitting and vehicleGround:isSolidBlock() or sitting and vehicle:isOnGround()) + + local pv = velocity:mul(1, 0, 1):normalize() + local pl = models:partToWorldMatrix():applyDir(0,0,-1):mul(1, 0, 1):normalize() + local fwd = pv:dot(pl) + local backwards = fwd < -.8 + --local sideways = pv:cross(pl) + --local right = sideways.y > .6 + --local left = sideways.y < -.6 + + -- canJump stuff + local webbed = world.getBlockState(player:getPos()).id == "minecraft:cobweb" + local ladder = player:isClimbing() and not grounded and not flying + + local canJump = not (inLiquid or webbed or grounded) + + local hp = player:getHealth() + player:getAbsorptionAmount() + + if oldgrounded ~= grounded and not grounded and yvel > 0 then + cooldown = true + wait(10,function() cooldown = false end) + end + + if (oldgrounded ~= grounded and not grounded and yvel > 0) and canJump then hasJumped = true end + if (grounded and (yvel <= 0 and yvel > -0.1)) or (gliding or inLiquid) then hasJumped = false end + + local neverJump = not (gliding or spin or sleeping or swimming or ladder) + local jumpingUp = hasJumped and goingUp and neverJump + local jumpingDown = hasJumped and goingDown and not falling and neverJump or (cooldown and not jumpingUp) + local isJumping = jumpingUp or jumpingDown or falling + local sprinting = sprinty and standing and not inLiquid and not sitting + local walking = moving and not sprinting and not isJumping and not sitting + local forward = walking and not backwards + local backward = walking and backwards + + local handedness = player:isLeftHanded() + local rightItem = player:getHeldItem(handedness) + local leftItem = player:getHeldItem(not handedness) + local rightActive = handedness and "OFF_HAND" or "MAIN_HAND" + local leftActive = not handedness and "OFF_HAND" or "MAIN_HAND" + local activeness = player:getActiveHand() + local using = player:isUsingItem() + local rightSuccess = pcall(rightItem.getUseAction,rightItem) + if rightSuccess then rightResult = rightItem:getUseAction() else rightResult = "NONE" end + local usingR = using and activeness == rightActive and rightResult + local leftSuccess = pcall(leftItem.getUseAction,leftItem) + if leftSuccess then leftResult = leftItem:getUseAction() else leftResult = "NONE" end + local usingL = using and activeness == leftActive and leftResult + local swing = player:getSwingTime() + local arm = swing == 1 and not sleeping and player:getSwingArm() + local rTag= rightItem.tag + local lTag = leftItem.tag + local crossR = rTag and (rTag["Charged"] == 1 or (rTag["ChargedProjectiles"] and next(rTag["ChargedProjectiles"])~= nil)) or false + local crossL = lTag and (lTag["Charged"] == 1 or (lTag["ChargedProjectiles"] and next(lTag["ChargedProjectiles"])~= nil)) or false + local exclude = not (crossR or crossL or using) + local game = player:getGamemode() + local reach = game and 6 or 3 + + if swing == 1 then + targetEntity = type(player:getTargetedEntity(reach)) == "PlayerAPI" or type(player:getTargetedEntity(reach)) == "LivingEntityAPI" + rightMine = oldhitBlock and not targetEntity + leftMine = oldhitBlock and not targetEntity + rightAttack = (not oldhitBlock or targetEntity) + leftAttack = (not oldhitBlock or targetEntity) + end + + for _,o in pairs(objects) do + + o.diff = false + for types, tabs in pairs(o.overriders) do + o.overrideStates[types] = o.setOverrides[types] or false + for _, value in pairs(tabs) do + if getPlay(value) then + o.overrideStates[types] = true + break + end + end + if o.oldoverStates[types] ~= o.overrideStates[types] then + o.diff = true + end + o.oldoverStates[types] = o.overrideStates[types] + end + + local ob = o.aList + + ob.flywalkback.active = creativeFlying and backward and (not (goingDown or goingUp)) + ob.flysprint.active = creativeFlying and sprinting and not isJumping and (not (goingDown or goingUp)) + ob.flyup.active = creativeFlying and goingUp + ob.flydown.active = creativeFlying and goingDown + ob.flywalk.active = creativeFlying and forward and (not (goingDown or goingUp)) and not sleeping or (ob.flysprint.active and next(ob.flysprint.list)==nil) or (ob.flywalkback.active and next(ob.flywalkback.list)==nil) + or (ob.flyup.active and next(ob.flyup.list)==nil) or (ob.flydown.active and next(ob.flydown.list)==nil) + ob.flying.active = creativeFlying and not sprinting and not moving and standing and not isJumping and (not (goingDown or goingUp)) and not sleeping or (ob.flywalk.active and next(ob.flywalk.list)==nil) + + ob.watercrouchwalkback.active = inWater and crouching and backward and not goingDown + ob.watercrouchwalk.active = inWater and crouching and forward and not (goingDown or goingUp) or (ob.watercrouchwalkback.active and next(ob.watercrouchwalkback.list)==nil) + ob.watercrouchup.active = inWater and crouching and goingUp + ob.watercrouchdown.active = inWater and crouching and goingDown or (ob.watercrouchup.active and next(ob.watercrouchup.list)==nil) + ob.watercrouch.active = inWater and crouching and not moving and not (goingDown or goingUp) or (ob.watercrouchdown.active and next(ob.watercrouchdown.list)==nil) or (ob.watercrouchwalk.active and next(ob.watercrouchwalk.list)==nil) + + ob.waterdown.active = inWater and goingDown and not falling and standing and not creativeFlying + ob.waterup.active = inWater and goingUp and standing and not creativeFlying + ob.waterwalkback.active = inWater and backward and hover and standing and not creativeFlying + ob.waterwalk.active = inWater and forward and hover and standing and not creativeFlying or (ob.waterwalkback.active and next(ob.waterwalkback.list)==nil) or (ob.waterdown.active and next(ob.waterdown.list)==nil) + or (ob.waterup.active and next(ob.waterup.list)==nil) + ob.water.active = inWater and not moving and standing and hover and not creativeFlying or (ob.waterwalk.active and next(ob.waterwalk.list)==nil) + + + + ob.crawlstill.active = crawling and not moving + ob.crawling.active = crawling and moving or (ob.crawlstill.active and next(ob.crawlstill.list)==nil) + + ob.swimming.active = liquidSwim or (ob.crawling.active and next(ob.crawling.list)==nil) + + ob.elytradown.active = gliding and goingDown + ob.elytra.active = gliding and not goingDown or (ob.elytradown.active and next(ob.elytradown.list)==nil) + + ob.sitpass.active = passenger and standing or false + ob.sitjumpdown.active = sitting and not passenger and standing and (jumpingDown or falling) + ob.sitjumpup.active = sitting and not passenger and jumpingUp and standing or (ob.sitjumpdown.active and next(ob.sitjumpdown.list)==nil) + ob.sitmoveback.active = sitting and not passenger and not isJumping and backwards and standing + ob.sitmove.active = velocity:length() > 0 and not passenger and not backwards and standing and sitting and not isJumping or (ob.sitmoveback.active and next(ob.sitmoveback.list)==nil) or (ob.sitjumpup.active and next(ob.sitjumpup.list)==nil) + ob.sitting.active = sitting and not passenger and velocity:length() == 0 and not isJumping and standing or (ob.sitmove.active and next(ob.sitmove.list)==nil) or (ob.sitpass.active and next(ob.sitpass.list)==nil) or false + + ob.trident.active = spin + ob.sleeping.active = sleeping + + ob.climbcrouchwalking.active = ladder and crouching and not inWater and (moving or yvel ~= 0) + ob.climbcrouch.active = ladder and crouching and hover and not moving or (ob.climbcrouchwalking.active and next(ob.climbcrouchwalking.list)==nil) + ob.climbdown.active = ladder and goingDown and not crouching + ob.climbstill.active = ladder and not crouching and hover + ob.climbing.active = ladder and goingUp and not crouching or (ob.climbdown.active and next(ob.climbdown.list)==nil) or (ob.climbstill.active and next(ob.climbstill.list)==nil) + + ob.crouchjumpdown.active = crouching and jumpingDown and not inWater and not ladder + ob.crouchjumpup.active = crouching and jumpingUp and not inWater and not ladder or (not oneJump and (ob.crouchjumpdown.active and next(ob.crouchjumpdown.list)==nil)) + ob.crouchwalkback.active = backward and crouching and not inWater and not ladder or (ob.watercrouchwalkback.active and next(ob.watercrouchwalkback.list)==nil and next(ob.watercrouchwalk.list)==nil and next(ob.watercrouch.list)==nil) + ob.crouchwalk.active = forward and crouching and not (jumpingDown or jumpingUp) and not inWater and not ladder or (ob.crouchwalkback.active and next(ob.crouchwalkback.list)==nil) or (not oneJump and (ob.crouchjumpup.active and next(ob.crouchjumpup.list)==nil)) or ((ob.watercrouchwalk.active and not ob.watercrouchwalkback.active) and next(ob.watercrouchwalk.list)==nil and next(ob.watercrouch.list)==nil) + ob.crouching.active = crouching and not walking and not inWater and not isJumping and not ladder and not cooldown or (ob.crouchwalk.active and next(ob.crouchwalk.list)==nil) or (ob.climbcrouch.active and next(ob.climbcrouch.list)==nil) or ((ob.watercrouch.active and not ob.watercrouchwalk.active) and next(ob.watercrouch.list)==nil) + + ob.falling.active = falling and not gliding and not creativeFlying and not sitting + + ob.sprintjumpdown.active = jumpingDown and sprinting and not creativeFlying and not ladder or false + ob.sprintjumpup.active = jumpingUp and sprinting and not creativeFlying and not ladder or (not oneJump and (ob.sprintjumpdown.active and next(ob.sprintjumpdown.list)==nil)) or false + ob.jumpingdown.active = jumpingDown and not ladder and not sprinting and not crouching and not sitting and not sleeping and not gliding and not creativeFlying and not spin and not inWater or (ob.falling.active and next(ob.falling.list)==nil) or (oneJump and (ob.sprintjumpdown.active and next(ob.sprintjumpdown.list)==nil)) or (oneJump and (ob.crouchjumpdown.active and next(ob.crouchjumpdown.list)==nil)) + ob.jumpingup.active = jumpingUp and not ladder and not sprinting and not crouching and not sitting and not creativeFlying and not inWater or (ob.jumpingdown.active and next(ob.jumpingdown.list)==nil) or (ob.trident.active and next(ob.trident.list)==nil) or (oneJump and (ob.sprintjumpup.active and next(ob.sprintjumpup.list)==nil)) or (oneJump and (ob.crouchjumpup.active and next(ob.crouchjumpup.list)==nil)) + + ob.sprinting.active = sprinting and not isJumping and not creativeFlying and not ladder and not cooldown and not inWater or (not oneJump and (ob.sprintjumpup.active and next(ob.sprintjumpup.list)==nil)) or false + ob.walkingback.active = backward and standing and not creativeFlying and not ladder and not inWater or (ob.flywalkback.active and next(ob.flywalkback.list)==nil and next(ob.flywalk.list)==nil and next(ob.flying.list)==nil) + ob.walking.active = forward and standing and not creativeFlying and not ladder and not cooldown and not inWater or (ob.walkingback.active and next(ob.walkingback.list)==nil) or (ob.sprinting.active and next(ob.sprinting.list)==nil) or (ob.climbing.active and next(ob.climbing.list)==nil) + or (ob.swimming.active and next(ob.swimming.list)==nil) or (ob.elytra.active and next(ob.elytra.list)==nil) or (ob.jumpingup.active and next(ob.jumpingup.list)==nil) or (ob.waterwalk.active and (next(ob.waterwalk.list)==nil and next(ob.water.list)==nil)) or ((ob.flywalk.active and not ob.flywalkback.active) and next(ob.flywalk.list)==nil and next(ob.flying.list)==nil) + or (ob.crouchwalk.active and (next(ob.crouchwalk)==nil or next(ob.crouching.list)==nil)) + ob.idling.active = not moving and not sprinting and standing and not isJumping and not sitting and not inWater and not creativeFlying and not ladder or (ob.sleeping.active and next(ob.sleeping.list)==nil) or (ob.sitting.active and next(ob.sitting.list)==nil) + or ((ob.water.active and not ob.waterwalk.active) and next(ob.water.list)==nil) or ((ob.flying.active and not ob.flywalk.active) and next(ob.flying.list)==nil) or ((ob.crouching.active and not ob.crouchwalk.active) and next(ob.crouching.list)==nil) + + ob.death.active = hp <= 0 + ob.hurt.active = player:getNbt().HurtTime > 0 and hp > 0 + + ob.attackR.active = arm == rightActive and rightAttack + ob.attackL.active = arm == leftActive and leftAttack + ob.mineR.active = arm == rightActive and rightMine + ob.mineL.active = arm == leftActive and leftMine + ob.holdR.active = rightItem.id~="minecraft:air" and exclude + ob.holdL.active = leftItem.id~="minecraft:air" and exclude + ob.eatR.active = usingR == "EAT" + ob.eatL.active = usingL == "EAT" + ob.drinkR.active = usingR == "DRINK" + ob.drinkL.active = usingL == "DRINK" + ob.blockR.active = usingR == "BLOCK" + ob.blockL.active = usingL == "BLOCK" + ob.bowR.active = usingR == "BOW" + ob.bowL.active = usingL == "BOW" + ob.loadR.active = usingR == "CROSSBOW" + ob.loadL.active = usingL == "CROSSBOW" + ob.crossR.active = crossR + ob.crossL.active = crossL + ob.spearR.active = usingR == "SPEAR" + ob.spearL.active = usingL == "SPEAR" + ob.spyglassR.active = usingR == "SPYGLASS" + ob.spyglassL.active = usingL == "SPYGLASS" + ob.hornR.active = usingR == "TOOT_HORN" + ob.hornL.active = usingL == "TOOT_HORN" + ob.brushR.active = usingR == "BRUSH" + ob.brushL.active = usingL == "BRUSH" + + for key,value in pairs(o.aList) do + if (value.active ~= o.oldList[key].active) then + setAnimation(key,getOverriders(value.type,o),getStates(value.type,o),o) + end + if (o.toggleDiff or o.diff) and value.active then + setAnimation(key,getOverriders(value.type,o),getStates(value.type,o),o) + end + o.oldList[key].active = value.active + end + + o.toggleDiff = false + for key,_ in pairs(o.toggleState) do + if o.oldToggle[key] ~= o.toggleState[key] then + o.toggleDiff = true + end + o.oldToggle[key] = o.toggleState[key] + end + end + oldhitBlock = hitBlock + targetBlock = player:getTargetedBlock(true, game and 5 or 4.5) + blockSuccess, blockResult = pcall(targetBlock.getTextures, targetBlock) + if blockSuccess then hitBlock = not (next(blockResult) == nil) else hitBlock = true end +end + +function events.tick() + getInfo() +end + +local function getBBModels() + local bbmodels = {} + for _,layer in pairs(models:getChildren()) do + local name = layer:getName() + if animations[name] then + bbmodels[name] = animations[name] + else + for _,layer2 in pairs(layer:getChildren()) do + local name2 = name.."."..layer2:getName() + bbmodels[name2] = animations[name2] + end + end + end + + if next(bbmodels) == nil then + error("No blockbench models containing animations were found.") + end + + local aList = {} + local oldList = {} + for _, value in pairs(exList) do + aList[value] = {active = false,list = {},type = "excluAnims"} + oldList[value] = {active = false} + end + + for _, value in pairs(incList) do + aList[value] = {active = false,list = {},type = "incluAnims"} + oldList[value] = {active = false} + end + + aList.attackR.stop = true + aList.attackL.stop = true + aList.mineR.stop = true + aList.mineL.stop = true + aList.hurt.stop = true + + local o = setmetatable( + { + bbmodels=bbmodels, + aList=aList, + oldList=oldList, + toggleState = {excluAnims="",incluAnims=""}, + oldToggle = {excluAnims="",incluAnims=""}, + toggleDiff = toggleDiff, + overriders = {excluAnims = {},incluAnims = {}, allAnims = {}}, + overrideStates = {excluAnims = false,incluAnims = false, allAnims = false}, + oldoverStates = {excluAnims = false,incluAnims = false, allAnims = false}, + setOverrides = {excluAnims = false,incluAnims = false, allAnims = false}, + diff = diff + }, + controllerMT) + objects[1] = o + addAnims(bbmodels,o) +end + +function events.entity_init() + if #objects == 0 then getBBModels() end +end + +local firstRun = true +---@param ... table +function anims:addBBModel(...) + local bbmodels = {...} + if next(bbmodels) == nil then + error("The blockbench model provided couldn't be found because it has no animations, or because of a typo or some other mistake.",2) + end + + local aList = {} + local oldList = {} + for _, value in pairs(exList) do + aList[value] = {active = false,list = {},type = "excluAnims"} + oldList[value] = {active = false} + end + + for _, value in pairs(incList) do + aList[value] = {active = false,list = {},type = "incluAnims"} + oldList[value] = {active = false} + end + + aList.attackR.stop = true + aList.attackL.stop = true + aList.mineR.stop = true + aList.mineL.stop = true + aList.hurt.stop = true + + local o = setmetatable( + { + bbmodels=bbmodels, + aList=aList, + oldList=oldList, + toggleState = {excluAnims="",incluAnims=""}, + oldToggle = {excluAnims="",incluAnims=""}, + toggleDiff = toggleDiff, + overriders = {excluAnims = {},incluAnims = {}, allAnims = {}}, + overrideStates = {excluAnims = false,incluAnims = false, allAnims = false}, + oldoverStates = {excluAnims = false,incluAnims = false, allAnims = false}, + setOverrides = {excluAnims = false,incluAnims = false, allAnims = false}, + diff = diff + }, + controllerMT) + objects[#objects+1] = o + if #objects == 16 then + error("The max amount of blockbench models (16) was reached. Do not put the code for adding blockbench models in a function, it will infinitely add blockbench models.",3) + end + if auto then addAnims(bbmodels,o) end + return o +end + +anims.controller = controller +return anims diff --git a/3d_models/akira/model 4.13/GSAnimBlend.lua b/3d_models/akira/model 4.13/GSAnimBlend.lua new file mode 100644 index 0000000..db0530b --- /dev/null +++ b/3d_models/akira/model 4.13/GSAnimBlend.lua @@ -0,0 +1,2041 @@ +-- ┌───┐ ┌───┐ -- +-- │ ┌─┘ ┌─────┐┌─────┐ └─┐ │ -- +-- │ │ │ ┌───┘│ ╶───┤ │ │ -- +-- │ │ │ ├───┐└───┐ │ │ │ -- +-- │ │ │ └─╴ │┌───┘ │ │ │ -- +-- │ └─┐ └─────┘└─────┘ ┌─┘ │ -- +-- └───┘ └───┘ -- +---@module "Animation Blending Library" +---@version v2.0.2 +---@see GrandpaScout @ https://github.com/GrandpaScout +-- Adds prewrite-like animation blending to the rewrite. +-- Also includes the ability to modify how the blending works per-animation with blending callbacks. +-- +-- Simply `require`ing this library is enough to make it run. However, if you place this library in +-- a variable, you can get access to functions and tools that allow for generating pre-build blend +-- callbacks or creating your own blend callbacks. +-- +-- This library is fully documented. If you use Sumneko's Lua Language server, you will get +-- descriptions of each function, method, and field in this library. + +local ID = "GSAnimBlend" +local VER = "2.0.2" +local FIG = {"0.1.0-rc.14", "0.1.5"} + +-- Safe version comparison -- +local CLIENT_VERSION = client.getFiguraVersion() + :match("^([^%+]*)") + :gsub("^([pr])", "0.1.3-%1") +local COMPARABLE_VERSION = CLIENT_VERSION + :gsub("^(%d+).-%..-(%d+).-%..-(%d+).-(%-?)", "%1.%2.%3%4") + +local cmp = function(to) + local s, r = pcall(client.compareVersions, COMPARABLE_VERSION, to) + return s and r or nil +end +----------------------------- + +---@type boolean, Lib.GS.AnimBlend +local s, this = pcall(function() + --|================================================================================================================|-- + --|=====|| SCRIPT ||===============================================================================================|-- + --||==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==||-- + + -- Localize Lua basic + local getmetatable = getmetatable + local setmetatable = setmetatable + local type = type + local assert = assert + local error = error + local next = next + local ipairs = ipairs + local pairs = pairs + local rawset = rawset + local tostring = tostring + -- Localize Lua math + local m_abs = math.abs + local m_cos = math.cos + local m_lerp = math.lerp + local m_map = math.map + local m_max = math.max + local m_sin = math.sin + local m_sqrt = math.sqrt + local m_pi = math.pi + local m_1s2pi = m_pi * 0.5 + local m_2s3pi = m_pi / 1.5 + local m_4s9pi = m_pi / 2.25 + -- Localize Figura globals + local animations = animations + local figuraMetatables = figuraMetatables + local vanilla_model = vanilla_model + local events = events + -- Localize current environment + local _ENV = _ENV --[[@as _G]] + local FUTURE = cmp("0.1.4") == 1 + + ---@diagnostic disable: duplicate-set-field, duplicate-doc-field + + ---This library is used to allow prewrite-like animation blending with one new feature with infinite + ---possibility added on top. + ---Any fields, functions, and methods injected by this library will be prefixed with + ---**[GS AnimBlend Library]** in their description. + --- + ---If this library is required without being stored to a variable, it will automatically set up the + ---blending features. + ---If this library is required *and* stored to a variable, it will also contain tools for generating + ---pre-built blending callbacks and creating custom blending callbacks. + ---```lua + ---require "···" + --- -- OR -- + ---local anim_blend = require "···" + ---``` + ---@class Lib.GS.AnimBlend + ---This library's perferred ID. + ---@field _ID string + ---This library's version. + ---@field _VERSION string + local this = { + ---Enables error checking in the library. `true` by default. + --- + ---Turning off error checking will greatly reduce the amount of instructions used by this library + ---at the cost of not telling you when you put in a wrong value. + --- + ---If an error pops up while this is `false`, try setting it to `true` and see if a different + ---error pops up. + safe = true + } + local thismt = { + __type = ID, + __metatable = false, + __index = { + _ID = ID, + _VERSION = VER + } + } + + -- Create private space for blending trigger. + -- This is done non-destructively so other scripts may do this as well. + if not getmetatable(_ENV) then setmetatable(_ENV, {}) end + + + -----======================================= VARIABLES ========================================----- + + local _ENVMT = getmetatable(_ENV) + + ---Contains the data required to make animation blending for each animation. + ---@type {[Animation]: Lib.GS.AnimBlend.AnimData} + local animData = {} + + ---Contains the currently blending animations. + ---@type {[Animation]?: true} + local blending = {} + + this.animData = animData + this.blending = blending + + local ticker = 0 + local last_delta = 0 + local allowed_contexts = { + RENDER = true, + FIRST_PERSON = true, + OTHER = true + } + + + -----=================================== UTILITY FUNCTIONS ====================================----- + + local chk = {} + + chk.types = { + ["nil"] = "nil", + boolean = "boolean", + number = "number", + string = "string", + table = "table", + ["function"] = "function" + } + + function chk.badarg(i, name, got, exp, opt) + if opt and got == nil then return true end + local gotT = type(got) + local gotType = chk.types[gotT] or "userdata" + + local expType = chk.types[exp] or "userdata" + if gotType ~= expType then + if expType == "function" and gotType == "table" then + local mt = getmetatable(got) + if mt and mt.__call then return true end + end + return false, ("bad argument #%s to '%s' (%s expected, got %s)") + :format(i, name, expType, gotType) + elseif expType ~= exp and gotT ~= exp then + return false, ("bad argument #%s to '%s' (%s expected, got %s)") + :format(i, name, exp, gotType) + end + + return true + end + + function chk.badnum(i, name, got, opt) + if opt and got == nil then + return true + elseif type(got) ~= "number" then + local gotType = chk.types[type(got)] or "userdata" + return false, ("bad argument #%s to '%s' (number expected, got %s)"):format(i, name, gotType) + elseif got * 0 ~= 0 then + return false, ("bad argument #%s to '%s' (value cannot be %s)"):format(i, name, got) + end + + return true + end + + local function makeSane(val, def) + return val * 0 == 0 and val or def + end + + + -----=================================== PREPARE ANIMATIONS ===================================----- + + local animPause + local blendCommand = [[getmetatable(_ENV).GSLib_triggerBlend[%d](%s, ...)]] + + _ENVMT.GSLib_triggerBlend = {} + + local anim_nbt = avatar:getNBT().animations + if anim_nbt then + for i, nbt in ipairs(anim_nbt) do + ---@type Animation + local anim = animations[nbt.mdl][nbt.name] + local blend = anim:getBlend() + local len = anim:getLength() + local lenSane = makeSane(len, false) + + ---@type function?, function? + local start_func, end_func + ---@type string?, string? + local start_src, end_src + if nbt.code then + for _, code in ipairs(nbt.code) do + if code.time == 0 then + start_src = code.src + ---@diagnostic disable-next-line: redundant-parameter + start_func = load(start_src, ("animations.%s.%s"):format(nbt.mdl, nbt.name)) + elseif code.time == len then + end_src = code.src + ---@diagnostic disable-next-line: redundant-parameter + end_func = load(end_src, ("animations.%s.%s"):format(nbt.mdl, nbt.name)) + end + if start_func and (len == 0 or end_func) then break end + end + end + + animData[anim] = { + blendTimeIn = 0, + blendTimeOut = 0, + blend = blend, + blendSane = makeSane(blend, 0), + length = lenSane, + triggerId = i, + startFunc = start_func, + startSource = start_src, + endFunc = end_func, + endSource = end_src + } + + _ENVMT.GSLib_triggerBlend[i] = function(at_start, ...) + if + anim:getLoop() == "ONCE" + and (animData[...].blendTimeOut > 0) + and (at_start == nil or (anim:getSpeed() < 0) == at_start) + then + animPause(anim) + anim:stop() + end + local data = animData[anim] + if at_start == false then + if data.endFunc then data.endFunc(...) end + elseif data.startFunc then + data.startFunc(...) + end + end + + if lenSane == 0 then + anim:newCode(0, blendCommand:format(i, "nil")) + else + anim:newCode(0, blendCommand:format(i, "true")) + if lenSane then anim:newCode(lenSane, blendCommand:format(i, "false")) end + end + end + end + + + -----============================ PREPARE METATABLE MODIFICATIONS =============================----- + + local animation_mt = figuraMetatables.Animation + local animationapi_mt = figuraMetatables.AnimationAPI + + local ext_Animation = next(animData) + if not ext_Animation then + error( + "No animations have been found!\n" .. + "This library cannot build its functions without an animation to use.\n" .. + "Create an animation or stop this library from running to fix the error." + ) + end + + + -- Check for conflicts + if ext_Animation.blendTime then + local path = tostring(ext_Animation.blendTime):match("^function: (.-):%d+%-%d+$") + error( + "Conflicting script [" .. path .. "] found!\n" .. + "Remove the other script or this script to fix the error." + ) + end + + local _animationIndex = animation_mt.__index + local _animationNewIndex = animation_mt.__newindex or rawset + local _animationapiIndex = animationapi_mt.__index + + local animPlay = ext_Animation.play + local animStop = ext_Animation.stop + animPause = ext_Animation.pause + local animRestart = ext_Animation.restart + local animBlend = ext_Animation.blend + local animLength = ext_Animation.length + local animGetPlayState = ext_Animation.getPlayState + local animGetBlend = ext_Animation.getBlend + local animGetTime = ext_Animation.getTime + local animIsPlaying = ext_Animation.isPlaying + local animIsPaused = ext_Animation.isPaused + local animNewCode = ext_Animation.newCode + local animPlaying = ext_Animation.playing + local animapiGetPlaying = animations.getPlaying + + ---Contains the old functions, just in case you need direct access to them again. + --- + ---These are useful for creating your own blending callbacks. + this.oldF = { + play = animPlay, + stop = animStop, + pause = animPause, + restart = animRestart, + + getBlend = animGetBlend, + getPlayState = animGetPlayState, + getTime = animGetTime, + isPlaying = animIsPlaying, + isPaused = animIsPaused, + + setBlend = ext_Animation.setBlend, + setLength = ext_Animation.setLength, + setPlaying = ext_Animation.setPlaying, + + blend = animBlend, + length = animLength, + playing = animPlaying, + + api_getPlaying = animapiGetPlaying + } + + + -----===================================== SET UP LIBRARY =====================================----- + + ---Causes a blending event to happen and returns the blending state for that event. + ---If a blending event could not happen for some reason, nothing will be returned. + --- + ---If `time`, `from`, or `to` are `nil`, they will take from the animation's data to determine this + ---value. + --- + ---One of `from` or `to` *must* be set. + --- + ---If `starting` is given, it will be used instead of the guessed value from the data given. + ---@param anim Animation + ---@param time? number + ---@param from? number + ---@param to? number + ---@param starting? boolean + ---@return Lib.GS.AnimBlend.BlendState + function this.blend(anim, time, from, to, starting) + if this.safe then + assert(chk.badarg(1, "blend", anim, "Animation")) + assert(chk.badarg(2, "blend", time, "number", true)) + assert(chk.badarg(3, "blend", from, "number", true)) + assert(chk.badarg(4, "blend", to, "number", true)) + if not from and not to then error("one of arguments #3 or #4 must be a number", 2) end + end + + local data = animData[anim] + local blendSane = data.blendSane + + if starting == nil then + starting = (from or blendSane) < (to or blendSane) + end + + data.state = { + time = 0, + max = time or false, + + from = from or false, + to = to or false, + + callback = data.callback or this.defaultCallback, + curve = data.curve or this.defaultCurve, + + paused = false, + starting = starting, + delay = starting and m_max(anim:getStartDelay() * 20, 0) or 0, + + callbackState = { + anim = anim, + time = 0, + max = time or (starting and data.blendTimeIn or data.blendTimeOut), + progress = 0, + rawProgress = 0, + from = from or blendSane, + to = to or blendSane, + starting = starting, + done = false + } + } + + blending[anim] = true + + animBlend(anim, from or blendSane) + if starting then + animPlay(anim) + if anim:getSpeed() < 0 then + anim:setTime(anim:getLength() - anim:getOffset()) + else + anim:setTime(anim:getOffset()) + end + end + animPause(anim) + + return blendState + end + + + -----==================================== PRESET CALLBACKS ====================================----- + + ---Contains blending callback generators. + --- + ---These are *not* callbacks themselves. They are meant to be called to generate a callback which + ---can *then* be used. + local callbackFunction = {} + + ---Contains custom blending curves. + --- + ---These callbacks change the curve used when blending. These cannot be used to modify custom or + ---generated callbacks (yet). + local easingCurve = {} + + + ---===== CALLBACK FUNCTIONS =====--- + + ---The base blending callback used by GSAnimBlend. + ---Does the bare minimum of setting the blend weight of the animation to match the blend progress. + ---@param state Lib.GS.AnimBlend.CallbackState + function callbackFunction.base(state) + animBlend(state.anim, m_lerp(state.from, state.to, state.progress)) + end + + ---Given a list of parts, this will generate a blending callback that will blend between the vanilla + ---parts' normal rotations and the rotations of the animation. + --- + ---The list of parts given is expected to the the list of parts that have a vanilla parent type in + ---the chosen animation in no particular order. + --- + ---This callback *also* expects the animation to override vanilla rotations. + --- + ---Note: The resulting callback makes *heavy* use of `:offsetRot()` and will conflict with any other + ---code that also uses that method! + ---@param parts ModelPart[] + ---@return Lib.GS.AnimBlend.blendCallback + function callbackFunction.genBlendVanilla(parts) + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if parts.done ~= nil then + error("attempt to use generator 'genBlendVanilla' as a blend callback.", 2) + end + + if this.safe then + for i, part in ipairs(parts) do + assert(chk.badarg("1[" .. i .. "]", "genBlendVanilla", part, "ModelPart")) + end + end + + ---@type {[string]: ModelPart[]} + local part_list = {} + local partscopy = {} + + -- Gather the vanilla parent of each part. + for i, part in ipairs(parts) do + partscopy[i] = part + local vpart = part:getParentType():gsub("([a-z])([A-Z])", "%1_%2"):upper() + if vanilla_model[vpart] then + if not part_list[vpart] then part_list[vpart] = {} end + local plvp = part_list[vpart] + plvp[#plvp+1] = part + end + end + + -- The actual callback is created here. + return function(state) + if state.done then + local id = "GSAnimBlend:BlendVanillaCleanup_" .. math.random(0, 0xFFFF) + events.POST_RENDER:register(function(_, ctx) + if not allowed_contexts[ctx] then return end + for _, part in ipairs(partscopy) do part:offsetRot() end + events.POST_RENDER:remove(id) + end, id) + else + local pct = state.starting and 1 - state.progress or state.progress + + for n, v in pairs(part_list) do + ---@type Vector3 + local rot = vanilla_model[n]:getOriginRot() + if n == "HEAD" then rot[2] = ((rot[2] + 180) % 360) - 180 end + rot:scale(pct) + for _, p in ipairs(v) do p:offsetRot(rot) end + end + + animBlend(state.anim, m_lerp(state.from, state.to, state.progress)) + end + end + end + + ---Generates a callback that causes an animation to blend into another animation. + ---@param anim Animation + ---@return Lib.GS.AnimBlend.blendCallback + function callbackFunction.genBlendTo(anim) + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if anim.done ~= nil then + error("attempt to use generator 'genBlendTo' as a blend callback.", 2) + end + + if this.safe then + assert(chk.badarg(1, "genBlendTo", anim, "Animation")) + end + + ---This is used to track when the next animation should start blending. + local ready = true + + return function(state, data) + if state.done then + ready = true + else + if not state.starting and ready then + ready = false + anim:play() + end + animBlend(state.anim, m_lerp(state.from, state.to, state.progress)) + end + end + end + + ---Generates a callback that forces all given animations to blend out if they are playing. + ---@param anims Animation[] + ---@return Lib.GS.AnimBlend.blendCallback + function callbackFunction.genBlendOut(anims) + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if anim.done ~= nil then + error("attempt to use generator 'genBlendOut' as a blend callback.", 2) + end + + if this.safe then + for i, anim in ipairs(anims) do + assert(chk.badarg("1[" .. i .. "]", "genBlendOut", anim, "Animation")) + end + end + + local ready = true + + return function(state) + if state.done then + ready = true + else + if state.starting and ready then + ready = false + for _, anim in ipairs(anims) do anim:stop() end + end + animBlend(state.anim, m_lerp(state.from, state.to, state.progress)) + end + end + end + + ---Generates a callback that plays one callback while blending in and another callback while blending out. + --- + ---If `nil` is given, the default callback is used. + ---@param blend_in? Lib.GS.AnimBlend.blendCallback + ---@param blend_out? Lib.GS.AnimBlend.blendCallback + ---@return Lib.GS.AnimBlend.blendCallback + function callbackFunction.genDualBlend(blend_in, blend_out) + -- The dumbass check is a bit further down. + + local tbin, tbout = type(blend_in), type(blend_out) + local infunc, outfunc = blend_in, blend_out + if tbin == "table" then + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if blend_in.done ~= nil then + error("attempt to use generator 'genDualBlend' as a blend callback.", 2) + end + local mt = getmetatable(blend_in) + if not (mt and mt.__call) then + error("bad argument #1 to 'genDualBlend' (function expected, got " .. tbin .. ")") + end + else + assert(chk.badarg(1, "genDualBlend", blend_in, "function", true)) + end + + if tbout == "table" then + local mt = getmetatable(blend_out) + if not (mt and mt.__call) then + error("bad argument #2 to 'genDualBlend' (function expected, got " .. tbin .. ")") + end + else + assert(chk.badarg(2, "genDualBlend", blend_out, "function", true)) + end + + return function(state, data) + (state.starting and (infunc or this.defaultCallback) or (outfunc or this.defaultCallback))(state, data) + end + end + + ---Generates a callback that plays other callbacks on a timeline. + --- + ---Callbacks generated by this function *ignore easing curves in favor of the curves provided by the timeline*. + --- + ---An example of a valid timeline: + ---```lua + ---...timeline({ + --- {time = 0, min = 0, max = 1, curve = "easeInSine"}, + --- {time = 0.25, min = 1, max = 0.5, curve = "easeOutCubic"}, + --- {time = 0.8, min = 0.5, max = 1, curve = "easeInCubic"} + ---}) + ---``` + ---@param tl Lib.GS.AnimBlend.timeline + ---@return Lib.GS.AnimBlend.blendCallback + function callbackFunction.genTimeline(tl) + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if tl.done ~= nil then + error("attempt to use generator 'genTimeline' as a blend callback.", 2) + end + + if this.safe then + assert(chk.badarg(1, "genTimeline", tl, "table")) + for i, kf in ipairs(tl) do + assert(chk.badarg("1[" .. i .. "]", "genTimeline", kf, "table")) + end + local time = 0 + local ftime = tl[1].time + if ftime ~= 0 then error("error in keyframe #1: timeline does not start at 0 (got " .. ftime .. ")") end + for i, kf in ipairs(tl) do + assert(chk.badnum("1[" .. i .. ']["time"]', "genTimeline", kf.time)) + if kf.time <= time then + error( + "error in keyframe #" .. i .. + ": timeline did not move forward (from " .. time .. " to " .. kf.time .. ")", 2 + ) + end + + if kf.min then assert(chk.badnum("1[" .. i .. ']["min"]', "genTimeline", kf.min)) end + if kf.max then assert(chk.badnum("1[" .. i .. ']["max"]', "genTimeline", kf.max)) end + + assert(chk.badarg("1[" .. i .. ']["callback"]', "genTimeline", kf.callback, "function", true)) + if type(kf.curve) ~= "string" then + assert(chk.badarg("1[" .. i .. ']["curve"]', "genTimeline", kf.callback, "function", true)) + elseif not easingCurve[kf.curve] then + error("bad argument 1[" .. i .. "][\"curve\"] of 'genTimeline' ('" .. kf.curve .. "' is not a valid curve)") + end + end + end + + return function(state, data) + ---@type Lib.GS.AnimBlend.tlKeyframe, Lib.GS.AnimBlend.tlKeyframe + local kf, nextkf + for _, _kf in ipairs(tl) do + if _kf.time > state.rawProgress then + if _kf.time < 1 then nextkf = _kf end + break + end + kf = _kf + end + + local adj_prog = m_map( + state.rawProgress, + kf.time, nextkf and nextkf.time or 1, + kf.min or 0, kf.max or 1 + ) + + local newstate = setmetatable( + {time = state.max * adj_prog, progress = (kf.curve or this.defaultCurve)(adj_prog)}, + {__index = state} + ); + (kf.callback or this.defaultCallback)(newstate, data) + end + end + + + ---===== EASING CURVES =====--- + + ---The `linear` easing curve. + --- + ---This is the default curve used by GSAnimBlend. + ---@param x number + ---@return number + function easingCurve.linear(x) return x end + + ---The `smoothstep` easing curve. + --- + ---This is a more performant, but slightly less accurate version of `easeInOutSine`. + ---@param x number + ---@return number + function easingCurve.smoothstep(x) return x^2 * (3 - 2 * x) end + + -- I planned to add easeOutIn curves but I'm lazy. I'll do it if people request it. + + ---The [`easeInSine`](https://easings.net/#easeInSine) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInSine(x) return 1 - m_cos(x * m_1s2pi) end + + ---The [`easeOutSine`](https://easings.net/#easeOutSine) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutSine(x) return m_sin(x * m_1s2pi) end + + ---The [`easeInOutSine`](https://easings.net/#easeInOutSine) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutSine(x) return (m_cos(x * m_pi) - 1) * -0.5 end + + ---The [`easeInQuad`](https://easings.net/#easeInQuad) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInQuad(x) return x^2 end + + ---The [`easeOutQuad`](https://easings.net/#easeOutQuad) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutQuad(x) return 1 - (1 - x)^2 end + + ---The [`easeInOutQuad`](https://easings.net/#easeInOutQuad) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutQuad(x) + return x < 0.5 + and 2 * x^2 + or 1 - (-2 * x + 2)^2 * 0.5 + end + + ---The [`easeInCubic`](https://easings.net/#easeInCubic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInCubic(x) return x^3 end + + ---The [`easeOutCubic`](https://easings.net/#easeOutCubic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutCubic(x) return 1 - (1 - x)^3 end + + ---The [`easeInOutCubic`](https://easings.net/#easeInOutCubic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutCubic(x) + return x < 0.5 + and 4 * x^3 + or 1 - (-2 * x + 2)^3 * 0.5 + end + + ---The [`easeInQuart`](https://easings.net/#easeInQuart) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInQuart(x) return x^4 end + + ---The [`easeOutQuart`](https://easings.net/#easeOutQuart) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutQuart(x) return 1 - (1 - x)^4 end + + ---The [`easeInOutQuart`](https://easings.net/#easeInOutQuart) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutQuart(x) + return x < 0.5 + and 8 * x^4 + or 1 - (-2 * x + 2)^4 * 0.5 + end + + ---The [`easeInQuint`](https://easings.net/#easeInQuint) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInQuint(x) return x^5 end + + ---The [`easeOutQuint`](https://easings.net/#easeOutQuint) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutQuint(x) return 1 - (1 - x)^5 end + + ---The [`easeInOutQuint`](https://easings.net/#easeInOutQuint) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutQuint(x) + return x < 0.5 + and 16 * x^5 + or 1 - (-2 * x + 2)^5 * 0.5 + end + + ---The [`easeInExpo`](https://easings.net/#easeInExpo) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInExpo(x) + return x == 0 + and 0 + or 2^(10 * x - 10) + end + + ---The [`easeOutExpo`](https://easings.net/#easeOutExpo) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutExpo(x) + return x == 1 + and 1 + or 1 - 2^(-10 * x) + end + + ---The [`easeInOutExpo`](https://easings.net/#easeInOutExpo) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutExpo(x) + return (x == 0 or x == 1) and x + or x < 0.5 and 2^(20 * x - 10) * 0.5 + or (2 - 2^(-20 * x + 10)) * 0.5 + end + + ---The [`easeInCirc`](https://easings.net/#easeInCirc) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInCirc(x) return 1 - m_sqrt(1 - x^2) end + + ---The [`easeOutCirc`](https://easings.net/#easeOutCirc) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutCirc(x) return m_sqrt(1 - (x - 1)^2) end + + ---The [`easeInOutCirc`](https://easings.net/#easeInOutCirc) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutCirc(x) + return x < 0.5 + and (1 - m_sqrt(1 - (2 * x)^2)) * 0.5 + or (m_sqrt(1 - (-2 * x + 2)^2) + 1) * 0.5 + end + + ---The [`easeInBack`](https://easings.net/#easeInBack) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInBack(x) return 2.70158 * x^3 - 1.70158 * x^2 end + + ---The [`easeOutBack`](https://easings.net/#easeOutBack) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutBack(x) + x = x - 1 + return 1 + 2.70158 * x^3 + 1.70158 * x^2 + end + + ---The [`easeInOutBack`](https://easings.net/#easeInOutBack) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutBack(x) + x = x * 2 + return x < 1 + and (x^2 * (3.5949095 * x - 2.5949095)) * 0.5 + or ((x - 2)^2 * (3.5949095 * (x - 2) + 2.5949095) + 2) * 0.5 + end + + ---The [`easeInElastic`](https://easings.net/#easeInElastic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInElastic(x) + return (x == 0 or x == 1) and x + or -(2^(10 * x - 10)) * m_sin((x * 10 - 10.75) * m_2s3pi) + end + + ---The [`easeOutElastic`](https://easings.net/#easeOutElastic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutElastic(x) + return (x == 0 or x == 1) and x + or 2^(-10 * x) * m_sin((x * 10 - 0.75) * m_2s3pi) + 1 + end + + ---The [`easeInOutElastic`](https://easings.net/#easeInOutElastic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutElastic(x) + return (x == 0 or x == 1) and x + or x < 0.5 and -(2^(x * 20 - 10) * m_sin((x * 20 - 11.125) * m_4s9pi)) * 0.5 + or (2^(x * -20 + 10) * m_sin((x * 20 - 11.125) * m_4s9pi)) * 0.5 + 1 + end + + ---The [`easeInBounce`](https://easings.net/#easeInBounce) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInBounce(x) + x = 1 - x + return 1 - ( + x < (1 / 2.75) and 7.5625 * x^2 + or x < (2 / 2.75) and 7.5625 * (x - 1.5 / 2.75)^2 + 0.75 + or x < (2.5 / 2.75) and 7.5625 * (x - 2.25 / 2.75)^2 + 0.9375 + or 7.5625 * (x - 2.625 / 2.75)^2 + 0.984375 + ) + end + + ---The [`easeOutBounce`](https://easings.net/#easeOutBounce) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutBounce(x) + return x < (1 / 2.75) and 7.5625 * x^2 + or x < (2 / 2.75) and 7.5625 * (x - 1.5 / 2.75)^2 + 0.75 + or x < (2.5 / 2.75) and 7.5625 * (x - 2.25 / 2.75)^2 + 0.9375 + or 7.5625 * (x - 2.625 / 2.75)^2 + 0.984375 + end + + ---The [`easeInOutBounce`](https://easings.net/#easeInOutBounce) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutBounce(x) + local s = x < 0.5 and -1 or 1 + x = x < 0.5 and 1 - 2 * x or 2 * x - 1 + return (1 + s * ( + x < (1 / 2.75) and 7.5625 * x^2 + or x < (2 / 2.75) and 7.5625 * (x - 1.5 / 2.75)^2 + 0.75 + or x < (2.5 / 2.75) and 7.5625 * (x - 2.25 / 2.75)^2 + 0.9375 + or 7.5625 * (x - 2.625 / 2.75)^2 + 0.984375 + )) * 0.5 + end + + + do ---@source https://github.com/gre/bezier-easing/blob/master/src/index.js + + -- Bezier curves are extremely expensive to use especially with higher settings. + -- Every function has been in-lined to improve instruction counts as much as possible. + -- + -- In-lined functions are labeled with a --[[funcName(param1, paramN, ...)]] + -- If an in-lined function spans more than one line, it will contain a #marker# that will appear later to close the + -- function. + -- + -- All of the functions below in the block comment are in-lined somewhere else. + + local default_subdiv_iters = 10 + local default_subdiv_prec = 0.0000001 + local default_newton_minslope = 0.001 + local default_newton_iters = 4 + local default_sample_size = 11 + + --[=[ + local function _A(A1, A2) return 1.0 - 3.0 * A2 + 3.0 * A1 end + local function _B(A1, A2) return 3.0 * A2 - 6.0 * A1 end + local function _C(A1) return 3.0 * A1 end + + -- Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2. + local function calcBezier(T, A1, A2) + --[[((_A(A1, A2) * T + _B(A1, A2)) * T + _C(A1)) * T]] + return (((1.0 - 3.0 * A2 + 3.0 * A1) * T + (3.0 * A2 - 6.0 * A1)) * T + (3.0 * A1)) * T + end + + -- Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2. + local function getSlope(T, A1, A2) + --[[3.0 * _A(A1, A2) * T ^ 2 + 2.0 * _B(A1, A2) * T + _C(A1)]] + return 3.0 * (1.0 - 3.0 * A2 + 3.0 * A1) * T ^ 2 + 2.0 * (3.0 * A2 - 6.0 * A1) * T + (3.0 * A1) + end + + local function binarySubdivide(X, A, B, X1, X2) + local curX, curT + local iter = 0 + while (m_abs(curX) > SUBDIVISION_PRECISION and iter < SUBDIVISION_MAX_ITERATIONS) do + curT = A + (B - A) * 0.5 + --[[calcBezier(curT, X1, X2) - X]] + curX = ((((1.0 - 3.0 * X2 + 3.0 * X1) * curT + (3.0 * X2 - 6.0 * X1)) * curT + (3.0 * X1)) * curT) - X + if curX > 0.0 then B = curT else A = curT end + iter = iter + 1 + end + return curT or (A + (B - A) * 0.5) + end + + local function newtonRaphsonIterate(X, Tguess, X1, X2) + for _ = 1, NEWTON_ITERATIONS do + --[[getSlope(Tguess, X1, X2)]] + local curSlope = 3.0 * (1.0 - 3.0 * X2 + 3.0 * X1) * Tguess ^ 2 + 2.0 * (3.0 * X2 - 6.0 * X1) * Tguess + (3.0 * X1) + if (curSlope == 0.0) then return Tguess end + --[[calcBezier(Tguess, X1, X2) - X]] + local curX = ((((1.0 - 3.0 * X2 + 3.0 * X1) * Tguess + (3.0 * X2 - 6.0 * X1)) * Tguess + (3.0 * X1)) * Tguess) - X + Tguess = Tguess - (curX / curSlope) + end + return Tguess + end + + local function getTForX(X) + local intervalStart = 0.0 + local curSample = 1 + local lastSample = SAMPLE_SIZE - 1 + + while curSample ~= lastSample and SAMPLES[curSample] <= X do + intervalStart = intervalStart + STEP_SIZE + curSample = curSample + 1 + end + curSample = curSample - 1 + + -- Interpolate to provide an initial guess for t + local dist = (X - SAMPLES[curSample]) / (SAMPLES[curSample + 1] - SAMPLES[curSample]) + local Tguess = intervalStart + dist * STEP_SIZE + + local initSlope = getSlope(Tguess, X1, X2) + if (initSlope >= NEWTON_MIN_SLOPE) then + return newtonRaphsonIterate(X, Tguess, X1, X2) + elseif (initSlope == 0) then + return Tguess + else + return binarySubdivide(X, intervalStart, intervalStart + STEP_SIZE, X1, X2) + end + end + ]=] + + local BezierMT = { + ---@param self Lib.GS.AnimBlend.Bezier + __call = function(self, X) + local X1, X2 = self[1], self[3] + local Y1, Y2 = self[2], self[4] + local T + --[[getTForX(state.progress) #start getTForX#]] + local intervalStart = 0 + local curSample = 1 + local lastSample = self.options.sample_size - 1 + local samples = self.samples + local step_size = samples.step + + while curSample ~= lastSample and samples[curSample] <= X do + intervalStart = intervalStart + step_size + curSample = curSample + 1 + end + curSample = curSample - 1 + + -- Interpolate to provide an initial guess for T + local dist = (X - samples[curSample]) / (samples[curSample + 1] - samples[curSample]) + local Tguess = intervalStart + dist * step_size + + local c1 = (1.0 - 3.0 * X2 + 3.0 * X1) + local c2 = (3.0 * X2 - 6.0 * X1) + local c3 = (3.0 * X1) + --[[getSlope(Tguess, X1, X2)]] + local initSlope = 3.0 * c1 * Tguess ^ 2 + 2.0 * c2 * Tguess + c3 + if (initSlope >= self.options.newton_minslope) then + --[[newtonRaphsonIterate(X, Tguess, X1, X2)]] + for _ = 1, self.options.newton_iters do + --[[getSlope(Tguess, X1, X2)]] + local curSlope = 3.0 * c1 * Tguess ^ 2 + 2.0 * c2 * Tguess + c3 + if (curSlope == 0.0) then break end + --[[calcBezier(Tguess, X1, X2) - X]] + local curX = (((c1 * Tguess + c2) * Tguess + c3) * Tguess) - X + Tguess = Tguess - (curX / curSlope) + end + T = Tguess + elseif (initSlope == 0) then + T = Tguess + else + local A = intervalStart + local B = intervalStart + step_size + --[[binarySubdivide(X, A, B, X1, X2)]] + local curX, curT + local iter = 0 + while (m_abs(curX) > self.options.subdiv_prec and iter < self.options.subdiv_iters) do + curT = A + (B - A) * 0.5 + --[[calcBezier(curT, X1, X2) - X]] + curX = ((((1.0 - 3.0 * X2 + 3.0 * X1) * curT + (3.0 * X2 - 6.0 * X1)) * curT + (3.0 * X1)) * curT) - X + if curX > 0.0 then B = curT else A = curT end + iter = iter + 1 + end + T = curT or (A + (B - A) * 0.5) + end + --#end getTForX# + --[[calcBezier(T, Y1, Y2)]] + return (((1.0 - 3.0 * Y2 + 3.0 * Y1) * T + (3.0 * Y2 - 6.0 * Y1)) * T + (3.0 * Y1)) * T + end, + __index = { + wrap = function(self) return function(state, data) self(state, data) end end + }, + type = "Bezier" + } + + + ---Generates a custom bezier curve. + --- + ---These are expensive to run so use them sparingly or use low settings. + ---@param x1 number + ---@param y1 number + ---@param x2 number + ---@param y2 number + ---@param options? Lib.GS.AnimBlend.BezierOptions + ---@return Lib.GS.AnimBlend.blendCurve + function callbackFunction.genBezier(x1, y1, x2, y2, options) + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if type(x1) == "table" and x1.done ~= nil then + error("attempt to use generator 'bezierEasing' as a blend callback.", 2) + end + + -- Optimization. This may cause an issue if a Bezier object is expected. + -- If you actually need a Bezier object then don't make a linear bezier lmao. + if x1 == y1 and x2 == y2 then return easingCurve.linear end + + ---===== Verify options =====--- + local to = type(options) + if to == "nil" then + options = { + newton_iters = default_newton_iters, + newton_minslope = default_newton_minslope, + subdiv_prec = default_subdiv_prec, + subdiv_iters = default_subdiv_iters, + sample_size = default_sample_size + } + elseif to ~= "table" then + error("bad argument #5 to 'bezierEasing' (table expected, got " .. to .. ")") + else + local safe = this.safe + local oni = options.newton_iters + if oni == nil then + options.newton_iters = default_newton_iters + elseif safe then + assert(chk.badnum('5["newton_iters"]', "bezierEasing", oni)) + end + + local onm = options.newton_minslope + if onm == nil then + options.newton_minslope = default_newton_minslope + elseif safe then + assert(chk.badnum('5["newton_minslope"]', "bezierEasing", onm)) + end + + local osp = options.subdiv_prec + if osp == nil then + options.subdiv_prec = default_subdiv_prec + elseif safe then + assert(chk.badnum('5["subdiv_prec"]', "bezierEasing", osp)) + end + + local osi = options.subdiv_iters + if osi == nil then + options.subdiv_iters = default_subdiv_iters + elseif safe then + assert(chk.badnum('5["subdiv_iters"]', "bezierEasing", osi)) + end + + local oss = options.sample_size + if oss == nil then + options.sample_size = default_sample_size + elseif safe then + assert(chk.badnum('5["sample_size"]', "bezierEasing", oss)) + end + end + + if this.safe then + chk.badnum(1, "bezierEasing", x1) + chk.badnum(2, "bezierEasing", y1) + chk.badnum(3, "bezierEasing", x2) + chk.badnum(4, "bezierEasing", y2) + end + + if x1 > 1 or x1 < 0 then + error("bad argument #1 to 'bezierEasing' (value out of [0, 1] range)", 2) + end + if x2 > 1 or x2 < 0 then + error("bad argument #3 to 'bezierEasing' (value out of [0, 1] range)", 2) + end + + local samples = {step = 1 / (options.sample_size - 1)} + + ---@type Lib.GS.AnimBlend.bezierCurve + local obj = setmetatable({ + x1, y1, x2, y2, + options = options, + samples = samples + }, BezierMT) + + local step = samples.step + local c1 = (1.0 - 3.0 * x2 + 3.0 * x1) + local c2 = (3.0 * x2 - 6.0 * x1) + local c3 = (3.0 * x1) + for i = 0, options.sample_size - 1 do + local istep = i * step + --[[calcBezier(istep, X1, X2)]] + samples[i] = ((c1 * istep + c2) * istep + c3) * istep + end + + return obj + end + end + + + ---The default callback used by this library. This is used when no other callback is being used. + ---@type Lib.GS.AnimBlend.blendCallback + this.defaultCallback = callbackFunction[("base")] + ---The default curve used by this library. This is used when no other curve is being used. + ---@type Lib.GS.AnimBlend.blendCurve + this.defaultCurve = easingCurve[("linear")] + this.callback = callbackFunction + this.curve = easingCurve + + + -----===================================== BLENDING LOGIC =====================================----- + + events.TICK:register(function() + ticker = ticker + 1 + end, "GSAnimBlend:Tick_TimeTicker") + + events.RENDER:register(function(delta, ctx) + if not allowed_contexts[ctx] or (delta == last_delta and ticker == 0) then return end + local elapsed_time = ticker + (delta - last_delta) + ticker = 0 + for anim in pairs(blending) do + -- Every frame, update time and progress, then call the callback. + local data = animData[anim] + local state = data.state + if not state.paused then + if state.delay > 0 then state.delay = state.delay - elapsed_time end + if state.delay <= 0 then + local cbs = state.callbackState + state.time = state.time + elapsed_time + cbs.max = state.max or (state.starting and data.blendTimeIn or data.blendTimeOut) + if not state.from then + cbs.from = data.blendSane + cbs.to = state.to + elseif not state.to then + cbs.from = state.from + cbs.to = data.blendSane + else + cbs.from = state.from + cbs.to = state.to + end + + -- When a blend stops, update all info to signal it has stopped. + if (state.time >= cbs.max) or (animGetPlayState(anim) == "STOPPED") then + cbs.time = cbs.max + cbs.rawProgress = 1 + cbs.progress = state.curve(1) + cbs.done = true + + -- Do final callback. + state.callback(cbs, animData[anim]) + blending[anim] = nil + animPlaying(cbs.anim, state.starting) + animBlend(cbs.anim, data.blend) + else + cbs.time = state.time + cbs.rawProgress = cbs.time / cbs.max + cbs.progress = state.curve(cbs.rawProgress) + state.callback(cbs, animData[anim]) + end + end + end + end + last_delta = delta + end, "GSAnimBlend:Render_UpdateBlendStates") + + + -----================================ METATABLE MODIFICATIONS =================================----- + + ---===== FIELDS =====--- + + local animationGetters = {} + local animationSetters = {} + + function animationGetters:blendCallback() + if this.safe then assert(chk.badarg(1, "__index", self, "Animation")) end + return animData[self].callback + end + function animationSetters:blendCallback(value) + if this.safe then + assert(chk.badarg(1, "__newindex", self, "Animation")) + if type(value) ~= "string" then + assert(chk.badarg(3, "__newindex", value, "function", true)) + end + end + + if type(func) == "string" then + value = easingCurve[value] + if not value then error("bad argument #3 of '__newindex' ('" .. func .. "' is not a valid curve)") end + end + animData[self].callback = value + end + + + ---===== METHODS =====--- + + local animationMethods = {} + + function animationMethods:newCode(time, code) + local data = animData[self] + if time == 0 then + ---@diagnostic disable-next-line: redundant-parameter + data.startFunc = load(code, ("animations.%s.%s"):format(nbt.mdl, nbt.name)) + data.startSource = code + elseif time == data.length then + ---@diagnostic disable-next-line: redundant-parameter + data.endFunc = load(code, ("animations.%s.%s"):format(nbt.mdl, nbt.name)) + data.endSource = code + else + return animNewCode(self, time, code) + end + + return self + end + + function animationMethods:play(instant) + if this.safe then assert(chk.badarg(1, "play", self, "Animation")) end + + if blending[self] then + local data = animData[self] + local state = data.state + if instant then + local cbs = state.callbackState + cbs.progress = 1 + cbs.time = cbs.max + cbs.done = true + state.callback(cbs, data) + blending[self] = nil + animBlend(self, data.blend) + return animPlay(self) + elseif state.paused then + state.paused = false + return self + elseif state.starting then + return self + end + + animStop(self) + local time = data.blendTimeIn * state.callbackState.progress + this.blend(self, time, animGetBlend(self), nil, true) + return self + elseif instant or animData[self].blendTimeIn == 0 or animGetPlayState(self) ~= "STOPPED" then + return animPlay(self) + end + + this.blend(self, nil, 0, nil, true) + return self + end + + function animationMethods:stop(instant) + if this.safe then assert(chk.badarg(1, "stop", self, "Animation")) end + + if blending[self] then + local data = animData[self] + local state = data.state + if instant then + local cbs = state.callbackState + cbs.progress = 1 + cbs.time = cbs.max + cbs.done = true + state.callback(cbs, data) + blending[self] = nil + animBlend(self, data.blend) + return animStop(self) + elseif not state.starting then + return self + end + + local time = data.blendTimeOut * state.callbackState.progress + this.blend(self, time, animGetBlend(self), 0, false) + return self + elseif instant or animData[self].blendTimeOut == 0 or animGetPlayState(self) == "STOPPED" then + return animStop(self) + end + + this.blend(self, nil, nil, 0, false) + return self + end + + function animationMethods:pause() + if this.safe then assert(chk.badarg(1, "pause", self, "Animation")) end + + if blending[self] then + animData[self].state.paused = true + return self + end + + return animPause(self) + end + + function animationMethods:restart(blend) + if this.safe then assert(chk.badarg(1, "restart", self, "Animation")) end + + if blend then + animStop(self) + this.blend(self, nil, 0, nil, true) + elseif blending[self] then + animBlend(self, animData[self].blend) + blending[self] = nil + else + animRestart(self) + end + + return self + end + + + ---===== GETTERS =====--- + + function animationMethods:getBlendTime() + if this.safe then assert(chk.badarg(1, "getBlendTime", self, "Animation")) end + local data = animData[self] + return data.blendTimeIn, data.blendTimeOut + end + + function animationMethods:isBlending() + if this.safe then assert(chk.badarg(1, "isBlending", self, "Animation")) end + return not not blending[self] + end + + function animationMethods:getBlend() + if this.safe then assert(chk.badarg(1, "getBlend", self, "Animation")) end + return animData[self].blend + end + + function animationMethods:getPlayState() + if this.safe then assert(chk.badarg(1, "getPlayState", self, "Animation")) end + return blending[self] and (animData[self].state.paused and "PAUSED" or "PLAYING") or animGetPlayState(self) + end + + function animationMethods:getTime() + if this.safe then assert(chk.badarg(1, "getPlayState", self, "Animation")) end + local state = animData[self].state + return blending[self] and state.delay > 0 and (state.delay / -20) or animGetTime(self) + end + + function animationMethods:isPlaying() + if this.safe then assert(chk.badarg(1, "isPlaying", self, "Animation")) end + return blending[self] and not animData[self].state.paused or animIsPlaying(self) + end + + function animationMethods:isPaused() + if this.safe then assert(chk.badarg(1, "isPaused", self, "Animation")) end + return (not blending[self] or animData[self].state.paused) and animIsPaused(self) + end + + + ---===== SETTERS =====--- + + function animationMethods:setBlendTime(time_in, time_out) + if time_in == nil then time_in = 0 end + if this.safe then + assert(chk.badarg(1, "setBlendTime", self, "Animation")) + assert(chk.badnum(2, "setBlendTime", time_in)) + assert(chk.badnum(3, "setBlendTime", time_out, true)) + end + + animData[self].blendTimeIn = m_max(time_in, 0) + animData[self].blendTimeOut = m_max(time_out or time_in, 0) + return self + end + + function animationMethods:setOnBlend(func) + if this.safe then + assert(chk.badarg(1, "setOnBlend", self, "Animation")) + assert(chk.badarg(2, "setOnBlend", func, "function", true)) + end + + animData[self].callback = func + return self + end + + function animationMethods:setBlendCurve(curve) + if this.safe then + assert(chk.badarg(1, "setBlendCurve", self, "Animation")) + if type(curve) ~= "string" then + assert(chk.badarg(2, "setBlendCurve", curve, "function", true)) + end + end + + if type(curve) == "string" then + local str = curve + curve = easingCurve[str] + if not curve then error("bad argument #2 of 'setBlendCurve' ('" .. str .. "' is not a valid curve)") end + end + animData[self].curve = curve + return self + end + + function animationMethods:setBlend(weight) + if weight == nil then weight = 0 end + if this.safe then + assert(chk.badarg(1, "setBlend", self, "Animation")) + assert(chk.badarg(2, "setBlend", weight, "number")) + end + + local data = animData[self] + data.blend = weight + data.blendSane = makeSane(weight, 0) + return blending[self] and self or animBlend(self, weight) + end + + function animationMethods:setLength(len) + if len == nil then len = 0 end + if len == anim:getLength() then return animLength(self, len) end + if this.safe then + assert(chk.badarg(1, "setLength", self, "Animation")) + assert(chk.badarg(2, "setLength", len, "number")) + end + + local data = animData[self] + if data.endSource or (data.length and data.length ~= 0) then + animNewCode(self, data.length, data.endSource or "") + data.endFunc = nil + data.endSource = nil + end + + local lenSane = makeSane(len, false) + + if data.length == 0 then + animNewCode(self, 0, blendCommand:format(data.triggerId, "true")) + end + + if lenSane then + if lenSane == 0 then + animNewCode(self, 0, blendCommand:format(data.triggerId, "nil")) + else + animNewCode(self, lenSane, blendCommand:format(data.triggerId, "false")) + end + end + data.length = lenSane + + return animLength(self, len) + end + + function animationMethods:setPlaying(state, instant) + if this.safe then assert(chk.badarg(1, "setPlaying", self, "Animation")) end + return state and self:play(instant) or self:stop(instant) + end + + + ---===== CHAINED =====--- + + animationMethods.blendTime = animationMethods.setBlendTime + animationMethods.onBlend = animationMethods.setOnBlend + animationMethods.blendCurve = animationMethods.setBlendCurve + animationMethods.blend = animationMethods.setBlend + animationMethods.length = animationMethods.setLength + animationMethods.playing = animationMethods.setPlaying + + + ---===== METAMETHODS =====--- + + function animation_mt:__index(key) + if animationGetters[key] then + return animationGetters[key](self) + elseif animationMethods[key] then + return animationMethods[key] + else + return _animationIndex(self, key) + end + end + + function animation_mt:__newindex(key, value) + if animationSetters[key] then + animationSetters[key](self, value) + else + _animationNewIndex(self, key, value) + end + end + + + -----============================== ANIMATION API MODIFICATIONS ===============================----- + + if animationapi_mt then + local apiMethods = {} + + if FUTURE then + function apiMethods:getPlaying(hold, ignore_blending) + if this.safe then assert(chk.badarg(1, "getPlaying", self, "AnimationAPI")) end + if ignore_blending then return animapiGetPlaying(animations, hold) end + local anims = {} + ---@diagnostic disable-next-line: redundant-parameter + for _, anim in ipairs(animations:getAnimations(hold)) do + if anim:isPlaying() then anims[#anims+1] = anim end + end + + return anims + end + else + function apiMethods:getPlaying(ignore_blending) + if this.safe then assert(chk.badarg(1, "getPlaying", self, "AnimationAPI")) end + if ignore_blending then return animapiGetPlaying(animations) end + local anims = {} + for _, anim in ipairs(animations:getAnimations()) do + if anim:isPlaying() then anims[#anims+1] = anim end + end + + return anims + end + end + + function animationapi_mt:__index(key) + return apiMethods[key] or _animationapiIndex(self, key) + end + end + + + return setmetatable(this, thismt) +end) + +if s then + return this +else -- This is *all* error handling. + ---@cast this string + local e_msg, e_stack = string.match(this, "^(.-)\nstack traceback:\n(.*)$") + + -- Modify Stack + local stack_lines = {} + local skip_next + for line in e_stack:gmatch("[ \t]*([^\n]+)") do + -- If the level is not a Java level, keep it. + if not line:match("^%[Java]:") then + if not skip_next then + stack_lines[#stack_lines+1] = (" §4" .. line) + else + skip_next = false + end + elseif line:match("in function 'pcall'") then + -- If the level *is* a Java level and it contains the pcall, remove both it and the level above. + stack_lines[#stack_lines] = stack_lines[#stack_lines]:gsub("in function %b<>", "in protected chunk") + skip_next = true + end + end + + local extra_reason = "" + + local check = 0 + if FIG[1] then + local check = cmp(FIG[1]) + if check == -1 then + extra_reason = ("\n§7§oYour Figura version (%s) is below the recommended minimum of %s§r"):format(CLIENT_VERSION, FIG[1]) + elseif not check then + check = -1 + extra_reason = ("\n§7§oYour Figura version (%s) is not valid!§r"):format(CLIENT_VERSION) + end + end + if check >= 0 and FIG[2] then + local check = cmp(FIG[2]) + if check == -1 then + extra_reason = ("\n§7§oYour Figura version (%s) is above the recommended maximum of %s§r"):format(CLIENT_VERSION, FIG[2]) + elseif not check then + extra_reason = ("\n§7§oYour Figura version (%s) is not valid!§r"):format(CLIENT_VERSION) + end + end + + error( + ( + "'%s' failed to load\z + \n§7INFO: %s v%s | %s§r%s\z + \ncaused by:\z + \n §4%s\z + \n §7stack traceback:\z + \n%s§r" + ):format( + ID, + ID, VER, CLIENT_VERSION, extra_reason, + e_msg:gsub("\n", "\n §4"), + table.concat(stack_lines, "\n") + ), + 2 + ) +end + +--|==================================================================================================================|-- +--|=====|| DOCUMENTATION ||==========================================================================================|-- +--||=:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:=:==:=:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:=||-- + +---@diagnostic disable: duplicate-set-field, duplicate-doc-field, duplicate-doc-alias +---@diagnostic disable: missing-return, unused-local, lowercase-global, unreachable-code + +---@class Lib.GS.AnimBlend.AnimData +---The blending-in time of this animation in ticks. +---@field blendTimeIn number +---The blending-out time of this animation in ticks. +---@field blendTimeOut number +---The faked blend weight value of this animation. +---@field blend number +---The preferred blend weight that blending will use. +---@field blendSane number +---Where in the timeline the stop instruction is placed. +---If this is `false`, there is no stop instruction due to length limits. +---@field length number|false +---The id for this animation's blend trigger +---@field triggerId integer +---The original instruction keyframe at the start of the animation. +---@field startFunc? function +---The original instruction keyframe at the end of the animation. +---@field endFunc? function +---The original string source of the instruction keyframe at the start of the animation. +---@field startSource? string +---The original string source of the instruction keyframe at the end of the animation. +---@field endSource? string +---The callback function this animation will call every frame while it is blending and one final +---time when blending finishes. +---@field callback? Lib.GS.AnimBlend.blendCallback +---The curve that the blending progress is modified with. +---@field curve? Lib.GS.AnimBlend.blendCurve +---The active blend state. +---@field state? Lib.GS.AnimBlend.BlendState + +---@class Lib.GS.AnimBlend.BlendState +---The amount of time this blend has been running for in ticks. +---@field time number +---The maximum time this blend will run in ticks. +---@field max number|false +---The starting blend weight. +---@field from number|false +---The ending blend weight. +---@field to number|false +---The callback to call each blending frame. +---@field callback Lib.GS.AnimBlend.blendCallback +---The curve that the blending progress is modified with. +---@field curve? Lib.GS.AnimBlend.blendCurve +---The state proxy used in the blend callback function. +---@field callbackState Lib.GS.AnimBlend.CallbackState +---Determines if this blend is paused. +---@field paused boolean +---Determines if this blend is starting or ending an animation. +---@field starting boolean +---Determines how long a delay waits before playing. +---@field delay number + +---@class Lib.GS.AnimBlend.CallbackState +---The animation this callback is acting on. +---@field anim Animation +---The amount of time this blend has been running for in ticks. +---@field time number +---The maximum time this blend will run in ticks. +---@field max number +---The progress as a percentage modified by the current curve. +---This can be above 1 or below 0 if the curve results in it. +---@field progress number +---The progress as a percentage without any curve modifications. +---@field rawProgress number +---The starting blend weight. +---@field from number +---The ending blend weight. +---@field to number +---Determines if this blend is starting or ending an animation. +---@field starting boolean +---Determines if this blend is finishing up. +---@field done boolean + +---@class Lib.GS.AnimBlend.BezierOptions +---How many time to use the Newton-Raphson method to approximate. +---Higher numbers create more accurate approximations at the cost of instructions. +--- +---The default value is `4`. +---@field newton_iters? integer +---The minimum slope required to attempt to use the Newton-Raphson method. +---Lower numbers cause smaller slopes to be approximated at the cost of instructions. +--- +---The default value is `0.001`. +---@field newton_minslope? number +---The most precision that subdivision will allow before stopping early. +---Lower numbers cause subdivision to allow more precision at the cost of instructions. +--- +---The default value is `0.0000001`. +---@field subdiv_prec? number +---The maximum amount of times that subdivision will be performed. +---Higher numbers cause more subdivision to happen at the cost of instructions. +--- +---The default value is `10`. +---@field subdiv_iters? integer +---The amount of samples to gather from the bezier curve. +---Higher numbers gather more samples at the cost of more instructions when creating the curve. +---Lower numbers gather less samples at the cost of more instructions when blending with the curve. +--- +---The default value is `11`. +---@field sample_size? integer + +---@class Lib.GS.AnimBlend.Bezier: function +---@overload fun(progress: number): number +---The X1 value. +---@field [1] number +---The Y1 value. +---@field [2] number +---The X2 value. +---@field [3] number +---The Y2 value. +---@field [4] number +---The options used to make this bezier. +---@field options Lib.GS.AnimBlend.BezierOptions +---The samples gathered from this bezier. +---@field samples {step: number, [integer]: number} + +---@class Lib.GS.AnimBlend.tlKeyframe +---The progress this keyframe starts at in the range [0, 1). +--- +---If the first keyframe does not start at `0`, an error will be thrown. +---A keyframe at or after time `1` will never run as completing the blend will be preferred. +---@field time number +---The starting adjusted-progress of this keyframe. +---Despite the name of this option, it does not need to be smaller than `max`. +--- +---All keyframes get an adjusted-progress which starts when the keyframe starts and ends when the next keyframe (or the +---end of the timeline) is hit. +--- +---The default value is `0`. +---@field min? number +---The ending adjusted-progress of this keyframe. +---Despite the name of this option, it does not need to be bigger than `min`. +--- +---All keyframes get an adjusted-progress which starts when the keyframe starts and ends when the next keyframe (or the +---end of the timeline) is hit. +--- +---The default value is `1`. +---@field max? number +---The blending callback to use for this entire keyframe. +---The adjusted-progress is given to this callback as it runs. +--- +---If `nil` is given, the default callback is used. +--- +---Note: Blending callbacks called by this function will **never** call cleanup code. Care should be taken to make sure +---this does not break anything. +---@field callback? Lib.GS.AnimBlend.blendCallback +---The easing curve to use for this entire keyframe. +---The adjusted-progress is given to this callback as it runs. +--- +---If a string is given instead of a callback, it is treated as the name of a curve found in +---`.callbackCurve`. +---If `nil` is given, the default curve is used. +---@field curve? Lib.GS.AnimBlend.blendCurve | Lib.GS.AnimBlend.curve + +---@alias Lib.GS.AnimBlend.blendCallback +---| fun(state: Lib.GS.AnimBlend.CallbackState, data: Lib.GS.AnimBlend.AnimData) + +---@alias Lib.GS.AnimBlend.blendCurve fun(progress: number): number + +---@alias Lib.GS.AnimBlend.bezierCurve Lib.GS.AnimBlend.Bezier | Lib.GS.AnimBlend.blendCurve + +---@alias Lib.GS.AnimBlend.timeline Lib.GS.AnimBlend.tlKeyframe[] + +---@alias Lib.GS.AnimBlend.curve +---| "linear" # The default blending curve. Goes from 0 to 1 without any fancy stuff. +---| "smoothStep" # A more performant but less accurate version of easeInOutSine. +---| "easeInSine" # [Learn More...](https://easings.net/#easeInSine) +---| "easeOutSine" # [Learn More...](https://easings.net/#easeOutSine) +---| "easeInOutSine" # [Learn More...](https://easings.net/#easeInOutSine) +---| "easeInQuad" # [Learn More...](https://easings.net/#easeInQuad) +---| "easeOutQuad" # [Learn More...](https://easings.net/#easeOutQuad) +---| "easeInOutQuad" # [Learn More...](https://easings.net/#easeInOutQuad) +---| "easeInCubic" # [Learn More...](https://easings.net/#easeInCubic) +---| "easeOutCubic" # [Learn More...](https://easings.net/#easeOutCubic) +---| "easeInOutCubic" # [Learn More...](https://easings.net/#easeInOutCubic) +---| "easeInQuart" # [Learn More...](https://easings.net/#easeInQuart) +---| "easeOutQuart" # [Learn More...](https://easings.net/#easeOutQuart) +---| "easeInOutQuart" # [Learn More...](https://easings.net/#easeInOutQuart) +---| "easeInQuint" # [Learn More...](https://easings.net/#easeInQuint) +---| "easeOutQuint" # [Learn More...](https://easings.net/#easeOutQuint) +---| "easeInOutQuint" # [Learn More...](https://easings.net/#easeInOutQuint) +---| "easeInExpo" # [Learn More...](https://easings.net/#easeInExpo) +---| "easeOutExpo" # [Learn More...](https://easings.net/#easeOutExpo) +---| "easeInOutExpo" # [Learn More...](https://easings.net/#easeInOutExpo) +---| "easeInCirc" # [Learn More...](https://easings.net/#easeInCirc) +---| "easeOutCirc" # [Learn More...](https://easings.net/#easeOutCirc) +---| "easeInOutCirc" # [Learn More...](https://easings.net/#easeInOutCirc) +---| "easeInBack" # [Learn More...](https://easings.net/#easeInBack) +---| "easeOutBack" # [Learn More...](https://easings.net/#easeOutBack) +---| "easeInOutBack" # [Learn More...](https://easings.net/#easeInOutBack) +---| "easeInElastic" # [Learn More...](https://easings.net/#easeInElastic) +---| "easeOutElastic" # [Learn More...](https://easings.net/#easeOutElastic) +---| "easeInOutElastic" # [Learn More...](https://easings.net/#easeInOutElastic) +---| "easeInBounce" # [Learn More...](https://easings.net/#easeInBounce) +---| "easeOutBounce" # [Learn More...](https://easings.net/#easeOutBounce) +---| "easeInOutBounce" # [Learn More...](https://easings.net/#easeInOutBounce) + + +---@class Animation +---#### [GS AnimBlend Library] +---The callback that should be called every frame while the animation is blending. +--- +---This allows adding custom behavior to the blending feature. +--- +---If this is `nil`, it will default to the library's basic callback. +---@field blendCallback? Lib.GS.AnimBlend.blendCallback +local Animation + + +---===== METHODS =====--- + +---#### [GS AnimBlend Library] +---Starts or resumes this animation. Does nothing if the animation is already playing. +---If `instant` is set, no blending will occur. +--- +---If `instant` is `nil`, it will default to `false`. +---@generic self +---@param self self +---@param instant? boolean +---@return self +function Animation:play(instant) end + +---#### [GS AnimBlend Library] +---Starts this animation from the beginning, even if it is currently paused or playing. +--- +---If `blend` is set, it will also restart with a blend. +---@generic self +---@param self self +---@param blend? boolean +---@return self +function Animation:restart(blend) end + +---#### [GS AnimBlend Library] +---Stops this animation. +---If `instant` is set, no blending will occur. +--- +---If `instant` is `nil`, it will default to `false`. +---@generic self +---@param self self +---@param instant? boolean +---@return self +function Animation:stop(instant) end + + +---===== GETTERS =====--- + +---#### [GS AnimBlend Library] +---Gets the blending times of this animation in ticks. +---@return number, number +function Animation:getBlendTime() end + +---#### [GS AnimBlend Library] +---Gets if this animation is currently blending. +---@return boolean +function Animation:isBlending() end + + +---===== SETTERS =====--- + +---#### [GS AnimBlend Library] +---Sets the blending time of this animation in ticks. +---@generic self +---@param self self +---@param time? number +---@return self +function Animation:setBlendTime(time) end + +---#### [GS AnimBlend Library] +---Sets the blending-in and blending-out times of this animation in ticks. +---@generic self +---@param self self +---@param time_in? number +---@param time_out? number +---@return self +function Animation:setBlendTime(time_in, time_out) end + +---#### [GS AnimBlend Library] +---Sets the blending callback of this animation. +---@generic self +---@param self self +---@param func? Lib.GS.AnimBlend.blendCallback +---@return self +function Animation:setOnBlend(func) end + +---#### [GS AnimBlend Library] +---Sets the easing curve of this animation. +---@generic self +---@param self self +---@param curve? Lib.GS.AnimBlend.blendCurve | Lib.GS.AnimBlend.curve +---@return self +function Animation:setBlendCurve(curve) end + +---#### [GS AnimBlend Library] +---Sets if this animation is currently playing. +---If `instant` is set, no blending will occur. +--- +---If `state` or `instant` are `nil`, they will default to `false`. +---@generic self +---@param self self +---@param state? boolean +---@param instant? boolean +---@return self +function Animation:setPlaying(state, instant) end + + +---===== CHAINED =====--- + +---#### [GS AnimBlend Library] +---Sets the blending time of this animation in ticks. +---@generic self +---@param self self +---@param time? number +---@return self +function Animation:blendTime(time) end + +---#### [GS AnimBlend Library] +---Sets the blending-in and blending-out times of this animation in ticks. +---@generic self +---@param self self +---@param time_in? number +---@param time_out? number +---@return self +function Animation:blendTime(time_in, time_out) end + +---#### [GS AnimBlend Library] +---Sets the blending callback of this animation. +---@generic self +---@param self self +---@param func? Lib.GS.AnimBlend.blendCallback +---@return self +function Animation:onBlend(func) end + +---#### [GS AnimBlend Library] +---Sets the easing curve of this animation. +---@generic self +---@param self self +---@param curve? Lib.GS.AnimBlend.blendCurve | Lib.GS.AnimBlend.curve +---@return self +---@diagnostic disable-next-line: assign-type-mismatch +function Animation:blendCurve(curve) end + +---#### [GS AnimBlend Library] +---Sets if this animation is currently playing. +---If `instant` is set, no blending will occur. +--- +---If `state` or `instant` are `nil`, they will default to `false`. +---@generic self +---@param self self +---@param state? boolean +---@param instant? boolean +---@return self +function Animation:playing(state, instant) end + + +---@class AnimationAPI +local AnimationAPI + + +---===== GETTERS =====--- + +---#### [GS AnimBlend Library] (0.1.4-) +---Gets an array of every playing animation. +--- +---Set `ignore_blending` to ignore animations that are currently blending. +---@param ignore_blending? boolean +---@return Animation[] +function AnimationAPI:getPlaying(ignore_blending) end + +---#### [GS AnimBlend Library] (0.1.5+) +---Gets an array of every playing animation. +---If `hold` is set, HOLDING animations are included. +--- +---Set `ignore_blending` to ignore animations that are currently blending. +---@param hold? boolean +---@param ignore_blending? boolean +---@return Animation[] +function AnimationAPI:getPlaying(hold, ignore_blending) end diff --git a/3d_models/akira/model 4.13/actionwheel.lua b/3d_models/akira/model 4.13/actionwheel.lua new file mode 100644 index 0000000..a73951b --- /dev/null +++ b/3d_models/akira/model 4.13/actionwheel.lua @@ -0,0 +1,58 @@ +--EMOTES-- + +local mainPage = action_wheel:newPage() +action_wheel:setPage(mainPage) + +function pings.Follow() + animations.akira_olivia_pink.followMe:play() +end +--- +function pings.Wave() + animations.akira_olivia_pink.wave:play() +end +--- +function pings.Clap() + animations.akira_olivia_pink.clap:play() +end +--- +-- function pings.Gun(state) +-- animations.akira_olivia_pink.ready_gun:setPlaying(state) +-- end +--- +function pings.Sitting(state) + animations.akira_olivia_pink.sit_emote:setPlaying(state) +end +--- +-------------------------------------------------------------------- + +mainPage:newAction() + :title("Wave") + :item("minecraft:lantern") + :hoverColor(1,1,0) + :onLeftClick(pings.Wave) + + +mainPage:newAction() + :title("Follow Me") + :item("minecraft:compass") + :hoverColor(1,1,0) + :onLeftClick(pings.Follow) + +mainPage:newAction() + :title("Clap") + :item("minecraft:rabbit_foot") + :hoverColor(1,1,0) + :onLeftClick(pings.Clap) + +mainPage:newAction() + :title("Sit") + :item("minecraft:purpur_stairs") + :hoverColor(1,1,0) + :onToggle(pings.Sitting) + +-- mainPage:newAction() +-- :title("Gun") +-- :item("minecraft:crossbow") +-- :hoverColor(1,1,0) +-- :onToggle(pings.Gun) + diff --git a/3d_models/akira/model 4.13/akira_eiko_olivia_pink.bbmodel b/3d_models/akira/model 4.13/akira_eiko_olivia_pink.bbmodel new file mode 100644 index 0000000..82ac038 --- /dev/null +++ b/3d_models/akira/model 4.13/akira_eiko_olivia_pink.bbmodel @@ -0,0 +1,19824 @@ +{ + "meta": { + "format_version": "4.10", + "model_format": "free", + "box_uv": false + }, + "name": "akira_olivia_pink", + "model_identifier": "akirapink", + "visible_box": [1, 1, 0], + "variable_placeholders": "", + "variable_placeholder_buttons": [], + "timeline_setups": [], + "unhandled_root_fields": {}, + "resolution": { + "width": 96, + "height": 64 + }, + "elements": [ + { + "name": "cube", + "color": 8, + "origin": [-1.01519, 0, -0.17365], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "BtHE": [4.2, 2, 2], + "p9SG": [4.2, 2, -0.85714], + "dP2U": [4.2, 0, 2], + "eok7": [5, 0, -0.85714], + "ocfu": [1.8, 2, 2], + "vUhB": [1.8, 2, -0.85714], + "EUsg": [1.8, 0, 2], + "oqGO": [1, 0, -0.85714], + "LuHl": [1.8, 2, -3], + "xXtl": [4.2, 2, -3], + "EDaA": [1.8, 0, -4], + "X2US": [4.2, 0, -4] + }, + "faces": { + "rLMf7opp": { + "uv": { + "dP2U": [0, 24], + "eok7": [0, 22], + "BtHE": [4, 24], + "p9SG": [4, 22] + }, + "vertices": ["p9SG", "BtHE", "eok7", "dP2U"], + "texture": 0 + }, + "lK1uZ4ZU": { + "uv": { + "oqGO": [0, 24], + "EUsg": [0, 22], + "vUhB": [4, 24], + "ocfu": [4, 22] + }, + "vertices": ["ocfu", "vUhB", "EUsg", "oqGO"], + "texture": 0 + }, + "IOcJK5rY": { + "uv": { + "ocfu": [0, 26], + "BtHE": [0, 22], + "vUhB": [3, 26], + "p9SG": [3, 22] + }, + "vertices": ["p9SG", "vUhB", "BtHE", "ocfu"], + "texture": 0 + }, + "TZD9oDhP": { + "uv": { + "oqGO": [0, 26], + "eok7": [0, 22], + "EUsg": [3, 26], + "dP2U": [3, 22] + }, + "vertices": ["dP2U", "EUsg", "eok7", "oqGO"], + "texture": 0 + }, + "h8ImDcMA": { + "uv": { + "EUsg": [0, 24], + "dP2U": [0, 22], + "ocfu": [3, 24], + "BtHE": [3, 22] + }, + "vertices": ["BtHE", "ocfu", "dP2U", "EUsg"], + "texture": 0 + }, + "4tbVDhEo": { + "uv": { + "X2US": [0, 24], + "EDaA": [0, 22], + "xXtl": [3, 24], + "LuHl": [3, 22] + }, + "vertices": ["LuHl", "xXtl", "EDaA", "X2US"], + "texture": 0 + }, + "EtmLgTse": { + "uv": { + "vUhB": [3, 22], + "oqGO": [0, 22], + "EDaA": [0, 24], + "LuHl": [3, 24] + }, + "vertices": ["LuHl", "EDaA", "oqGO", "vUhB"], + "texture": 0 + }, + "iRHEFw0e": { + "uv": { + "p9SG": [3, 25], + "vUhB": [3, 22], + "LuHl": [0, 22], + "xXtl": [0, 25] + }, + "vertices": ["xXtl", "LuHl", "vUhB", "p9SG"], + "texture": 0 + }, + "5H56KX26": { + "uv": { + "eok7": [0, 24], + "p9SG": [3, 24], + "xXtl": [3, 22], + "X2US": [0, 22] + }, + "vertices": ["X2US", "xXtl", "p9SG", "eok7"], + "texture": 0 + }, + "YPxuRqB2": { + "uv": { + "oqGO": [0, 22], + "eok7": [0, 25], + "X2US": [3, 25], + "EDaA": [3, 22] + }, + "vertices": ["EDaA", "X2US", "eok7", "oqGO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "841507ff-09dc-0d69-b367-522f44abd3cd" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 24, -1], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "ppnZ": [0, 1, 0.09104], + "TV9o": [1.26853, 2.27778, 1.44414], + "n3UK": [1.44975, 7.22222, 2.22207], + "xI8D": [3.0625, 2.27778, 0.52988], + "If9H": [3.5, 7.22222, 1.1772], + "NlFz": [3.0625, 2.07778, -1.03676], + "lH3O": [3.0625, 7.22222, -1.40063], + "BlXc": [1.26853, 1.46601, -2.6473], + "j3zU": [1.44975, 7.22222, -3.23447], + "8Vaz": [1.44975, 3.54008, -3.72523], + "2fMz": [1.44975, 4.37037, -3.22343], + "DFnu": [3.0625, 3.76296, -1.40063], + "ZKz3": [3.0625, 4.37037, -1.40063], + "9wlZ": [3.5, 3.46296, 1.1772], + "HeA6": [3.5, 5.14815, 1.1772], + "ETfb": [1.44975, 3.46296, 3], + "EqZH": [1.44975, 5.92593, 3], + "yF3x": [-1.26853, 2.27778, 1.44414], + "lXqu": [-1.44975, 7.22222, 2.22207], + "C6cU": [-3.0625, 2.27778, 0.52988], + "qc0L": [-3.5, 7.22222, 1.1772], + "HCVy": [-3.0625, 2.07778, -1.03676], + "dgCx": [-3.0625, 7.22222, -1.40063], + "a6Ti": [-1.26853, 1.46601, -2.6473], + "2NA1": [-1.44975, 7.22222, -3.23447], + "5WyA": [-1.44975, 3.54008, -3.72523], + "FBal": [-1.44975, 4.37037, -3.22343], + "XPZQ": [-3.0625, 3.76296, -1.40063], + "tTFb": [-3.0625, 4.37037, -1.40063], + "A49p": [-3.5, 3.46296, 1.1772], + "uuLd": [-3.5, 5.14815, 1.1772], + "Jfz9": [-1.44975, 3.46296, 3], + "ZHiN": [-1.44975, 5.92593, 3], + "y7s6": [1.11674, 9.19127, -2.46667], + "r4hz": [-1.11674, 9.19127, -2.46667], + "eD5k": [0, 9.99995, -0.16665], + "AfLN": [-2.37529, 9.19553, -1.07183], + "yYAy": [-2.67934, 9.20056, 0.71943], + "TwUw": [-1.10102, 9.18004, 1.50264], + "jqYQ": [1.10102, 9.18004, 1.50264], + "cR8P": [2.67934, 9.20056, 0.71943], + "Wmhk": [2.37529, 9.19553, -1.07183], + "aBmc": [0, 9.19127, -2.46667], + "fLpt": [0, 7.22222, -3.23447], + "7lzt": [0, 4.37037, -3.22343], + "TQ4O": [0, 3.54008, -3.72523], + "5haT": [0, 1.46601, -2.6473] + }, + "faces": { + "SGOtJOVi": { + "uv": { + "ppnZ": [0, 5], + "TV9o": [6, 2], + "xI8D": [8, 5] + }, + "vertices": ["xI8D", "TV9o", "ppnZ"], + "texture": 0 + }, + "qybQHbiM": { + "uv": { + "If9H": [6, 2], + "EqZH": [0, 5], + "HeA6": [6, 5], + "n3UK": [0, 2] + }, + "vertices": ["n3UK", "HeA6", "EqZH", "If9H"], + "texture": 0 + }, + "OTX97j14": { + "uv": { + "eD5k": [0, 3], + "cR8P": [6, 6], + "jqYQ": [0, 8] + }, + "vertices": ["jqYQ", "cR8P", "eD5k"], + "texture": 0 + }, + "NeEi2vFZ": { + "uv": { + "ppnZ": [0, 4], + "xI8D": [7, 2], + "NlFz": [7, 6] + }, + "vertices": ["NlFz", "xI8D", "ppnZ"], + "texture": 0 + }, + "WedP020P": { + "uv": { + "lH3O": [6, 2], + "HeA6": [0, 5], + "ZKz3": [6, 5], + "If9H": [0, 2] + }, + "vertices": ["If9H", "ZKz3", "HeA6", "lH3O"], + "texture": 0 + }, + "BYsI7aC0": { + "uv": { + "eD5k": [0, 5], + "Wmhk": [7, 3], + "cR8P": [7, 7] + }, + "vertices": ["cR8P", "Wmhk", "eD5k"], + "texture": 0 + }, + "WWTxBVtP": { + "uv": { + "ppnZ": [0, 2], + "NlFz": [6, 5], + "BlXc": [0, 7] + }, + "vertices": ["BlXc", "NlFz", "ppnZ"], + "texture": 0 + }, + "m9E4bexa": { + "uv": { + "j3zU": [14, 5], + "ZKz3": [8, 0], + "2fMz": [14, 0], + "lH3O": [8, 5] + }, + "vertices": ["lH3O", "2fMz", "ZKz3", "j3zU"], + "texture": 0 + }, + "1K3IilLx": { + "uv": { + "eD5k": [0, 6], + "y7s6": [6, 3], + "Wmhk": [8, 6] + }, + "vertices": ["Wmhk", "y7s6", "eD5k"], + "texture": 0 + }, + "gkvqNXSk": { + "uv": { + "BlXc": [6, 6], + "5haT": [3, 6], + "ppnZ": [3, 2] + }, + "vertices": ["ppnZ", "5haT", "BlXc"], + "texture": 0 + }, + "WZA3BCX4": { + "uv": { + "j3zU": [13, 4.3], + "7lzt": [16.45, 0], + "fLpt": [16.45, 4.3], + "2fMz": [13, 0] + }, + "vertices": ["2fMz", "fLpt", "7lzt", "j3zU"], + "texture": 0 + }, + "UfluJ6be": { + "uv": { + "r4hz": [0, 3], + "aBmc": [3, 3], + "eD5k": [3, 7] + }, + "vertices": ["eD5k", "aBmc", "r4hz"], + "texture": 0 + }, + "mCNrpYIj": { + "uv": { + "ppnZ": [3, 6], + "yF3x": [0, 2], + "TV9o": [6, 2] + }, + "vertices": ["TV9o", "yF3x", "ppnZ"], + "texture": 0 + }, + "taIZthpZ": { + "uv": { + "n3UK": [6, 2], + "ZHiN": [0, 5], + "EqZH": [6, 5], + "lXqu": [0, 2] + }, + "vertices": ["lXqu", "EqZH", "ZHiN", "n3UK"], + "texture": 0 + }, + "eHr3thlr": { + "uv": { + "eD5k": [3, 3], + "jqYQ": [6, 7], + "TwUw": [0, 7] + }, + "vertices": ["TwUw", "jqYQ", "eD5k"], + "texture": 0 + }, + "mOGzqJIk": { + "uv": { + "8Vaz": [9, 2], + "5haT": [12.5, 8], + "TQ4O": [12.5, 2], + "BlXc": [9, 8] + }, + "vertices": ["BlXc", "TQ4O", "5haT", "8Vaz"], + "texture": 0 + }, + "IspizuX0": { + "uv": { + "2fMz": [0, 5], + "TQ4O": [3, 8], + "7lzt": [3, 5], + "8Vaz": [0, 8] + }, + "vertices": ["8Vaz", "7lzt", "TQ4O", "2fMz"], + "texture": 0 + }, + "4elRqR2m": { + "uv": { + "NlFz": [5, 8], + "DFnu": [5, 2], + "8Vaz": [10, 2], + "BlXc": [10, 8] + }, + "vertices": ["BlXc", "8Vaz", "DFnu", "NlFz"], + "texture": 0 + }, + "Pro0QCF0": { + "uv": { + "DFnu": [0, 8], + "ZKz3": [0, 5], + "2fMz": [6, 5], + "8Vaz": [6, 8] + }, + "vertices": ["8Vaz", "2fMz", "ZKz3", "DFnu"], + "texture": 0 + }, + "0wLusB14": { + "uv": { + "xI8D": [0, 5], + "9wlZ": [0, 2], + "DFnu": [6, 2], + "NlFz": [6, 5] + }, + "vertices": ["NlFz", "DFnu", "9wlZ", "xI8D"], + "texture": 0 + }, + "wGe6CeFl": { + "uv": { + "9wlZ": [0, 8], + "HeA6": [0, 5], + "ZKz3": [6, 5], + "DFnu": [6, 8] + }, + "vertices": ["DFnu", "ZKz3", "HeA6", "9wlZ"], + "texture": 0 + }, + "ZCt7nfD8": { + "uv": { + "TV9o": [0, 5], + "ETfb": [0, 2], + "9wlZ": [6, 2], + "xI8D": [6, 5] + }, + "vertices": ["xI8D", "9wlZ", "ETfb", "TV9o"], + "texture": 0 + }, + "yq9buZK2": { + "uv": { + "ETfb": [0, 8], + "EqZH": [0, 5], + "HeA6": [6, 5], + "9wlZ": [6, 8] + }, + "vertices": ["9wlZ", "HeA6", "EqZH", "ETfb"], + "texture": 0 + }, + "3RmOj4jX": { + "uv": { + "yF3x": [0, 5], + "Jfz9": [0, 2], + "ETfb": [6, 2], + "TV9o": [6, 5] + }, + "vertices": ["TV9o", "ETfb", "Jfz9", "yF3x"], + "texture": 0 + }, + "5QqsYfQ8": { + "uv": { + "Jfz9": [0, 8], + "ZHiN": [0, 5], + "EqZH": [6, 5], + "ETfb": [6, 8] + }, + "vertices": ["ETfb", "EqZH", "ZHiN", "Jfz9"], + "texture": 0 + }, + "Fg9vJv4N": { + "uv": { + "ppnZ": [0, 5], + "C6cU": [8, 5], + "yF3x": [6, 2] + }, + "vertices": ["yF3x", "C6cU", "ppnZ"], + "texture": 0 + }, + "wfInJ26T": { + "uv": { + "qc0L": [6, 2], + "ZHiN": [0, 5], + "lXqu": [0, 2], + "uuLd": [6, 5] + }, + "vertices": ["uuLd", "lXqu", "ZHiN", "qc0L"], + "texture": 0 + }, + "eiK1svyY": { + "uv": { + "eD5k": [0, 3], + "TwUw": [0, 8], + "yYAy": [6, 6] + }, + "vertices": ["yYAy", "TwUw", "eD5k"], + "texture": 0 + }, + "ZFEG13AU": { + "uv": { + "ppnZ": [0, 4], + "HCVy": [7, 6], + "C6cU": [7, 2] + }, + "vertices": ["C6cU", "HCVy", "ppnZ"], + "texture": 0 + }, + "BcBa4KR3": { + "uv": { + "dgCx": [6, 2], + "uuLd": [0, 5], + "qc0L": [0, 2], + "tTFb": [6, 5] + }, + "vertices": ["tTFb", "qc0L", "uuLd", "dgCx"], + "texture": 0 + }, + "ixMgOYvh": { + "uv": { + "eD5k": [0, 5], + "yYAy": [7, 7], + "AfLN": [7, 3] + }, + "vertices": ["AfLN", "yYAy", "eD5k"], + "texture": 0 + }, + "RBqNM3aV": { + "uv": { + "ppnZ": [0, 2], + "a6Ti": [0, 7], + "HCVy": [6, 5] + }, + "vertices": ["HCVy", "a6Ti", "ppnZ"], + "texture": 0 + }, + "PbRsxzNF": { + "uv": { + "2NA1": [14, 5], + "tTFb": [8, 0], + "dgCx": [8, 5], + "FBal": [14, 0] + }, + "vertices": ["FBal", "dgCx", "tTFb", "2NA1"], + "texture": 0 + }, + "YLxZHzXa": { + "uv": { + "eD5k": [0, 6], + "AfLN": [8, 6], + "r4hz": [6, 3] + }, + "vertices": ["r4hz", "AfLN", "eD5k"], + "texture": 0 + }, + "j7kPMev4": { + "uv": { + "HCVy": [5, 2], + "XPZQ": [5, 8], + "a6Ti": [10, 2], + "5WyA": [10, 8] + }, + "vertices": ["5WyA", "a6Ti", "XPZQ", "HCVy"], + "texture": 0 + }, + "oYEZeJop": { + "uv": { + "XPZQ": [0, 8], + "tTFb": [0, 5], + "5WyA": [6, 8], + "FBal": [6, 5] + }, + "vertices": ["FBal", "5WyA", "tTFb", "XPZQ"], + "texture": 0 + }, + "JN2qxV70": { + "uv": { + "C6cU": [0, 5], + "A49p": [0, 2], + "HCVy": [6, 5], + "XPZQ": [6, 2] + }, + "vertices": ["XPZQ", "HCVy", "A49p", "C6cU"], + "texture": 0 + }, + "s7idVvdI": { + "uv": { + "A49p": [0, 8], + "uuLd": [0, 5], + "XPZQ": [6, 8], + "tTFb": [6, 5] + }, + "vertices": ["tTFb", "XPZQ", "uuLd", "A49p"], + "texture": 0 + }, + "3YxMl6ID": { + "uv": { + "yF3x": [0, 5], + "Jfz9": [0, 2], + "C6cU": [6, 5], + "A49p": [6, 2] + }, + "vertices": ["A49p", "C6cU", "Jfz9", "yF3x"], + "texture": 0 + }, + "W7j54Eei": { + "uv": { + "Jfz9": [0, 8], + "ZHiN": [0, 5], + "A49p": [6, 8], + "uuLd": [6, 5] + }, + "vertices": ["uuLd", "A49p", "ZHiN", "Jfz9"], + "texture": 0 + }, + "M8wNGDX4": { + "uv": { + "y7s6": [12, 8], + "fLpt": [8, 5.5], + "aBmc": [8, 8], + "j3zU": [12, 5.5] + }, + "vertices": ["j3zU", "aBmc", "fLpt", "y7s6"], + "texture": 0 + }, + "yDqHbo9h": { + "uv": { + "dgCx": [16, 5.5], + "2NA1": [12, 5.5], + "r4hz": [12, 8], + "AfLN": [16, 8] + }, + "vertices": ["AfLN", "r4hz", "2NA1", "dgCx"], + "texture": 0 + }, + "MoW8TQLr": { + "uv": { + "qc0L": [5, 5], + "dgCx": [2, 5], + "AfLN": [2, 4], + "yYAy": [5, 4] + }, + "vertices": ["yYAy", "AfLN", "dgCx", "qc0L"], + "texture": 0 + }, + "0jS0Uy5k": { + "uv": { + "lXqu": [1, 6], + "qc0L": [1, 4], + "yYAy": [2, 4], + "TwUw": [2, 6] + }, + "vertices": ["TwUw", "yYAy", "qc0L", "lXqu"], + "texture": 0 + }, + "LWutpvwP": { + "uv": { + "n3UK": [3, 6], + "lXqu": [0, 6], + "TwUw": [0, 5], + "jqYQ": [3, 5] + }, + "vertices": ["jqYQ", "TwUw", "lXqu", "n3UK"], + "texture": 0 + }, + "jpZwlyIV": { + "uv": { + "If9H": [2, 6], + "n3UK": [0, 6], + "jqYQ": [0, 5], + "cR8P": [2, 5] + }, + "vertices": ["cR8P", "jqYQ", "n3UK", "If9H"], + "texture": 0 + }, + "KFDI8HrX": { + "uv": { + "lH3O": [4, 6], + "If9H": [4, 3], + "cR8P": [5, 3], + "Wmhk": [5, 6] + }, + "vertices": ["Wmhk", "cR8P", "If9H", "lH3O"], + "texture": 0 + }, + "9U6WwQ2l": { + "uv": { + "j3zU": [13, 5.5], + "lH3O": [9, 5.5], + "Wmhk": [9, 8], + "y7s6": [13, 8] + }, + "vertices": ["y7s6", "Wmhk", "lH3O", "j3zU"], + "texture": 0 + }, + "v1ehew7P": { + "uv": { + "2NA1": [12, 5.5], + "fLpt": [8, 5.5], + "aBmc": [8, 8], + "r4hz": [12, 8] + }, + "vertices": ["r4hz", "aBmc", "fLpt", "2NA1"], + "texture": 0 + }, + "CR7AFEZW": { + "uv": { + "FBal": [13, 4.3], + "7lzt": [16.45, 4.3], + "fLpt": [16.45, 0], + "2NA1": [13, 0] + }, + "vertices": ["2NA1", "fLpt", "7lzt", "FBal"], + "texture": 0 + }, + "Mm2kvP11": { + "uv": { + "5WyA": [6, 8], + "TQ4O": [3, 8], + "7lzt": [3, 5], + "FBal": [6, 5] + }, + "vertices": ["FBal", "7lzt", "TQ4O", "5WyA"], + "texture": 0 + }, + "4W0EnR3i": { + "uv": { + "a6Ti": [16, 8], + "5haT": [12.5, 8], + "TQ4O": [12.5, 2], + "5WyA": [16, 2] + }, + "vertices": ["5WyA", "TQ4O", "5haT", "a6Ti"], + "texture": 0 + }, + "dnGjh5q7": { + "uv": { + "ppnZ": [3, 2], + "5haT": [3, 6], + "a6Ti": [0, 6] + }, + "vertices": ["a6Ti", "5haT", "ppnZ"], + "texture": 0 + }, + "kKJrjpb6": { + "uv": { + "eD5k": [3, 7], + "aBmc": [3, 3], + "y7s6": [6, 3] + }, + "vertices": ["y7s6", "aBmc", "eD5k"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "7564b320-32ad-f191-5c63-fdfa5abfafd5" + }, + { + "name": "sphere", + "color": 8, + "origin": [0, 30, -0.5], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "jKok": [-5.55366, 1.58372, 2.74528], + "FXfo": [-4.85264, -5.22242, 4.08067], + "75IQ": [-5.55366, 1.44297, -2.59182], + "jDJU": [-5.29571, 2.44453, -1.50586], + "vple": [-5.29571, 2.44453, 2.40941], + "HSIv": [-6.22132, -1.49312, -0.52533], + "nHut": [-6.22132, -1.49312, 2.97183], + "LbBY": [-5.42468, -0.47365, -2.46597], + "5AXE": [-4.05521, 0.96031, -2.94095], + "4Aek": [-5.42468, -0.01394, 2.57734], + "nGlq": [-0.94479, -0.12302, -2.3928], + "lIQ3": [-4.85264, -6.30576, 2.98437], + "GFNw": [-4.85264, -6.30576, -1.16998], + "owwU": [3.92703, 4.38908, 2.07352], + "yJdM": [5.55366, 1.58372, 2.74528], + "Vz8M": [4.85264, -5.22242, 4.08067], + "jbYw": [5.55366, 1.44297, -2.59182], + "LInl": [2.46538, 2.1157, -4.19925], + "CEed": [5.29571, 2.44453, -1.50586], + "aAun": [5.29571, 2.44453, 2.40941], + "b8kf": [6.22132, -1.49312, -0.52533], + "kpeJ": [6.22132, -1.49312, 2.97183], + "BHgp": [5.42468, -0.47365, -2.46597], + "NL1s": [4.05521, 0.96031, -2.94095], + "UilW": [5.42468, -0.01394, 2.57734], + "HRTL": [1.2628, 2.65353, -3.27599], + "ytho": [0.94479, -0.12302, -2.3928], + "PCb6": [-3.92703, 4.38908, 2.07352], + "cefY": [-3.92703, 4.38908, -1.16998], + "1Acn": [-2.46538, 2.1157, -4.19925], + "PG6A": [-4.04477, -3.18019, -1.1826], + "YKrh": [-2.3004, 1.58372, 5.98879], + "9Vbx": [-2.74281, -6.30576, 6.37417], + "AETh": [-2.19356, 2.44453, 5.17791], + "B9LH": [-2.88912, -1.49312, 7.18505], + "T24w": [-2.13196, -0.01394, 6.49418], + "0y1E": [0, -7, 1.54808], + "7NKt": [0, 5.5, 0.45178], + "9osI": [-1.62663, 4.38908, 4.36703], + "NXb9": [-1.62663, 4.38908, -3.46349], + "wOfP": [-1.62663, -5.22242, -0.15238], + "grtz": [1.62663, 4.38908, 4.36703], + "QrYn": [1.62663, 4.38908, -3.46349], + "AAGn": [1.62663, -5.22242, -0.15238], + "MGSN": [2.3004, 1.58372, 5.98879], + "cVzJ": [2.74281, -6.30576, 6.37417], + "pSuD": [2.19356, 2.44453, 5.17791], + "fvDz": [2.88912, -1.49312, 7.18505], + "EApG": [2.13196, -0.01394, 6.49418], + "TmnP": [4.85264, -6.30576, 2.98437], + "z83N": [3.92703, 4.38908, -1.16998], + "zWCT": [4.85264, -6.30576, -1.16998], + "zBbf": [-1.2628, 2.2202, -3.57599], + "mjln": [4.04477, -3.18019, -1.1826] + }, + "faces": { + "CfZlFLu3": { + "uv": { + "7NKt": [15.35365, 20.3], + "9osI": [18.30731, 24.94521], + "PCb6": [12.4, 24.94521] + }, + "vertices": ["PCb6", "9osI", "7NKt"], + "texture": 0 + }, + "YMU6twbg": { + "uv": { + "YKrh": [12.4, 24.4614], + "vple": [22.42197, 20.88072], + "jKok": [23.2138, 24.4614], + "AETh": [13.19183, 20.88072] + }, + "vertices": ["AETh", "jKok", "vple", "YKrh"], + "texture": 0 + }, + "599E21cC": { + "uv": { + "9Vbx": [13.98366, 31.4614], + "nHut": [22.42197, 25.8807], + "FXfo": [21.63014, 31.4614], + "B9LH": [13.19183, 25.8807] + }, + "vertices": ["B9LH", "FXfo", "nHut", "9Vbx"], + "texture": 0 + }, + "e3aOm5Hl": { + "uv": { + "0y1E": [16.22324, 31.4614], + "FXfo": [20.04648, 20.3], + "9Vbx": [12.4, 20.3] + }, + "vertices": ["9Vbx", "FXfo", "0y1E"], + "texture": 0 + }, + "R9EdmOeg": { + "uv": { + "7NKt": [15.35365, 20.3], + "PCb6": [18.30731, 24.94521], + "cefY": [12.4, 24.94521] + }, + "vertices": ["cefY", "PCb6", "7NKt"], + "texture": 0 + }, + "GjEjz7Ro": { + "uv": { + "jKok": [12.4, 24.4614], + "jDJU": [22.42197, 20.88072], + "75IQ": [23.2138, 24.4614], + "vple": [13.19183, 20.88072] + }, + "vertices": ["vple", "75IQ", "jDJU", "jKok"], + "texture": 0 + }, + "J6qum8Ns": { + "uv": { + "FXfo": [13.98366, 31.4614], + "HSIv": [22.42197, 25.8807], + "GFNw": [21.63014, 31.4614], + "nHut": [13.19183, 25.8807] + }, + "vertices": ["nHut", "GFNw", "HSIv", "FXfo"], + "texture": 0 + }, + "p7QAgnbw": { + "uv": { + "0y1E": [16.22324, 31.4614], + "GFNw": [20.04648, 20.3], + "FXfo": [12.4, 20.3] + }, + "vertices": ["FXfo", "GFNw", "0y1E"], + "texture": 0 + }, + "VqJzQYeL": { + "uv": { + "75IQ": [12.4, 24.4614], + "1Acn": [22.81789, 22.67106], + "jDJU": [13.19183, 20.88072] + }, + "vertices": ["jDJU", "1Acn", "75IQ"], + "texture": 0 + }, + "rjwxyevX": { + "uv": { + "GFNw": [13.98366, 31.4614], + "wOfP": [21.63014, 31.4614], + "HSIv": [13.19183, 25.8807] + }, + "vertices": ["HSIv", "wOfP", "GFNw"], + "texture": 0 + }, + "FpGG2OsV": { + "uv": { + "NXb9": [19.11966, 20.3], + "1Acn": [13.74808, 20.3], + "cefY": [19.67591, 23.1274], + "jDJU": [13.19183, 23.1274] + }, + "vertices": ["jDJU", "cefY", "1Acn", "NXb9"], + "texture": 0 + }, + "WVywrfkh": { + "uv": { + "PCb6": [19.11966, 20.3], + "vple": [13.74808, 20.3], + "9osI": [19.67591, 23.1274], + "AETh": [13.19183, 23.1274] + }, + "vertices": ["AETh", "9osI", "vple", "PCb6"], + "texture": 0 + }, + "wjPrqXqq": { + "uv": { + "cefY": [19.11966, 20.3], + "jDJU": [13.74808, 20.3], + "PCb6": [19.67591, 23.1274], + "vple": [13.19183, 23.1274] + }, + "vertices": ["vple", "PCb6", "jDJU", "cefY"], + "texture": 0 + }, + "U2CwdCcf": { + "uv": { + "HSIv": [13.19183, 25.8807], + "5AXE": [22.81788, 23.09035], + "PG6A": [22.42197, 25.8807], + "LbBY": [12.79592, 23.09035] + }, + "vertices": ["LbBY", "PG6A", "5AXE", "HSIv"], + "texture": 0 + }, + "oPupHgRI": { + "uv": { + "B9LH": [13.19183, 25.8807], + "4Aek": [22.81788, 23.09035], + "nHut": [22.42197, 25.8807], + "T24w": [12.79592, 23.09035] + }, + "vertices": ["T24w", "nHut", "4Aek", "B9LH"], + "texture": 0 + }, + "JZ21qe1j": { + "uv": { + "nHut": [13.19183, 25.8807], + "LbBY": [22.81788, 23.09035], + "HSIv": [22.42197, 25.8807], + "4Aek": [12.79592, 23.09035] + }, + "vertices": ["4Aek", "HSIv", "LbBY", "nHut"], + "texture": 0 + }, + "cGzqpGPN": { + "uv": { + "5AXE": [22.81788, 23.09035], + "75IQ": [12.4, 20.3], + "LbBY": [12.79592, 23.09035] + }, + "vertices": ["LbBY", "75IQ", "5AXE"], + "texture": 0 + }, + "n4JqRr2O": { + "uv": { + "jKok": [23.2138, 20.3], + "4Aek": [22.81788, 23.09035], + "YKrh": [12.4, 20.3], + "T24w": [12.79592, 23.09035] + }, + "vertices": ["T24w", "YKrh", "4Aek", "jKok"], + "texture": 0 + }, + "5TE5NA9Q": { + "uv": { + "75IQ": [23.2138, 20.3], + "LbBY": [22.81788, 23.09035], + "jKok": [12.4, 20.3], + "4Aek": [12.79592, 23.09035] + }, + "vertices": ["4Aek", "jKok", "LbBY", "75IQ"], + "texture": 0 + }, + "qpAUxEXX": { + "uv": { + "GFNw": [13.98366, 31.4614], + "PG6A": [22.42197, 25.8807], + "HSIv": [13.19183, 25.8807] + }, + "vertices": ["HSIv", "PG6A", "GFNw"], + "texture": 0 + }, + "v2wDlkRg": { + "uv": { + "wOfP": [17.44698, 30.62797], + "GFNw": [20.63818, 30.62797], + "PG6A": [19.79468, 28.55995] + }, + "vertices": ["PG6A", "GFNw", "wOfP"], + "texture": 0 + }, + "3OIMqIi2": { + "uv": { + "1Acn": [23.2138, 25.3], + "5AXE": [22.81788, 28.09035], + "nGlq": [12.79592, 28.09035], + "zBbf": [12.4, 25.3] + }, + "vertices": ["zBbf", "nGlq", "5AXE", "1Acn"], + "texture": 0 + }, + "O5x06ylH": { + "uv": { + "7NKt": [15.35365, 20.3], + "owwU": [12.4, 24.94521], + "grtz": [18.30731, 24.94521] + }, + "vertices": ["grtz", "owwU", "7NKt"], + "texture": 0 + }, + "tIZmB4lc": { + "uv": { + "7NKt": [15.35365, 20.3], + "z83N": [12.4, 24.94521], + "owwU": [18.30731, 24.94521] + }, + "vertices": ["owwU", "z83N", "7NKt"], + "texture": 0 + }, + "wxE5wvrO": { + "uv": { + "7NKt": [18.09971, 21.21777], + "QrYn": [15.14606, 25.86299], + "z83N": [21.05337, 25.86299] + }, + "vertices": ["z83N", "QrYn", "7NKt"], + "texture": 0 + }, + "ubicc3vF": { + "uv": { + "7NKt": [18.09971, 22.13555], + "grtz": [15.14606, 26.78076], + "9osI": [21.05337, 26.78076] + }, + "vertices": ["9osI", "grtz", "7NKt"], + "texture": 0 + }, + "16KVhNq8": { + "uv": { + "7NKt": [19.93042, 25.86299], + "NXb9": [16.97677, 21.21777], + "QrYn": [22.88407, 21.21777] + }, + "vertices": ["QrYn", "NXb9", "7NKt"], + "texture": 0 + }, + "Tuh4qWWV": { + "uv": { + "wOfP": [13.98366, 31.4614], + "mjln": [22.42197, 25.8807], + "AAGn": [21.63014, 31.4614], + "PG6A": [13.19183, 25.8807] + }, + "vertices": ["PG6A", "AAGn", "mjln", "wOfP"], + "texture": 0 + }, + "rBoCNANZ": { + "uv": { + "0y1E": [16.22324, 31.4614], + "AAGn": [20.04648, 20.3], + "wOfP": [12.4, 20.3] + }, + "vertices": ["wOfP", "AAGn", "0y1E"], + "texture": 0 + }, + "NvWxXDXs": { + "uv": { + "cVzJ": [13.98366, 31.4614], + "B9LH": [22.42197, 25.8807], + "9Vbx": [21.63014, 31.4614], + "fvDz": [13.19183, 25.8807] + }, + "vertices": ["fvDz", "9Vbx", "B9LH", "cVzJ"], + "texture": 0 + }, + "rewAC0ru": { + "uv": { + "0y1E": [16.22324, 31.4614], + "9Vbx": [20.04648, 20.3], + "cVzJ": [12.4, 20.3] + }, + "vertices": ["cVzJ", "9Vbx", "0y1E"], + "texture": 0 + }, + "TCkvc3xB": { + "uv": { + "0y1E": [16.22324, 31.4614], + "lIQ3": [20.04648, 20.3], + "9Vbx": [12.4, 20.3] + }, + "vertices": ["9Vbx", "lIQ3", "0y1E"], + "texture": 0 + }, + "7TpoJPYf": { + "uv": { + "0y1E": [16.22324, 31.4614], + "GFNw": [20.04648, 20.3], + "lIQ3": [12.4, 20.3] + }, + "vertices": ["lIQ3", "GFNw", "0y1E"], + "texture": 0 + }, + "AbcasAJX": { + "uv": { + "7NKt": [15.35365, 24.94521], + "cefY": [12.4, 20.3], + "NXb9": [18.30731, 20.3] + }, + "vertices": ["NXb9", "cefY", "7NKt"], + "texture": 0 + }, + "Y4GP8LGk": { + "uv": { + "0y1E": [16.22324, 31.4614], + "wOfP": [20.04648, 20.3], + "GFNw": [12.4, 20.3] + }, + "vertices": ["GFNw", "wOfP", "0y1E"], + "texture": 0 + }, + "ybqKUDwY": { + "uv": { + "7NKt": [15.35365, 20.3], + "owwU": [12.4, 24.94521], + "grtz": [18.30731, 24.94521] + }, + "vertices": ["grtz", "owwU", "7NKt"], + "texture": 0 + }, + "YCAiOAhK": { + "uv": { + "MGSN": [12.4, 24.4614], + "aAun": [22.42197, 20.88072], + "pSuD": [13.19183, 20.88072], + "yJdM": [23.2138, 24.4614] + }, + "vertices": ["yJdM", "pSuD", "aAun", "MGSN"], + "texture": 0 + }, + "2lrSoywG": { + "uv": { + "cVzJ": [13.98366, 31.4614], + "kpeJ": [22.42197, 25.8807], + "fvDz": [13.19183, 25.8807], + "Vz8M": [21.63014, 31.4614] + }, + "vertices": ["Vz8M", "fvDz", "kpeJ", "cVzJ"], + "texture": 0 + }, + "T0O1Qklz": { + "uv": { + "0y1E": [16.22324, 31.4614], + "cVzJ": [12.4, 20.3], + "Vz8M": [20.04648, 20.3] + }, + "vertices": ["Vz8M", "cVzJ", "0y1E"], + "texture": 0 + }, + "fxmhnWuI": { + "uv": { + "7NKt": [15.35365, 20.3], + "z83N": [12.4, 24.94521], + "owwU": [18.30731, 24.94521] + }, + "vertices": ["owwU", "z83N", "7NKt"], + "texture": 0 + }, + "e9g1ZM2R": { + "uv": { + "yJdM": [12.4, 24.4614], + "CEed": [22.42197, 20.88072], + "aAun": [13.19183, 20.88072], + "jbYw": [23.2138, 24.4614] + }, + "vertices": ["jbYw", "aAun", "CEed", "yJdM"], + "texture": 0 + }, + "hvzCyS3N": { + "uv": { + "Vz8M": [13.98366, 31.4614], + "b8kf": [22.42197, 25.8807], + "kpeJ": [13.19183, 25.8807], + "zWCT": [21.63014, 31.4614] + }, + "vertices": ["zWCT", "kpeJ", "b8kf", "Vz8M"], + "texture": 0 + }, + "M7w0Y8jw": { + "uv": { + "0y1E": [16.22324, 31.4614], + "Vz8M": [12.4, 20.3], + "zWCT": [20.04648, 20.3] + }, + "vertices": ["zWCT", "Vz8M", "0y1E"], + "texture": 0 + }, + "QWd7RZLx": { + "uv": { + "jbYw": [12.4, 24.4614], + "CEed": [13.19183, 20.88072], + "LInl": [22.81789, 22.67106] + }, + "vertices": ["LInl", "CEed", "jbYw"], + "texture": 0 + }, + "TauxAtoF": { + "uv": { + "zWCT": [13.98366, 31.4614], + "b8kf": [13.19183, 25.8807], + "AAGn": [21.63014, 31.4614] + }, + "vertices": ["AAGn", "b8kf", "zWCT"], + "texture": 0 + }, + "ZDHBz7cG": { + "uv": { + "QrYn": [19.11966, 20.3], + "LInl": [13.74808, 20.3], + "CEed": [13.19183, 23.1274], + "z83N": [19.67591, 23.1274] + }, + "vertices": ["z83N", "CEed", "LInl", "QrYn"], + "texture": 0 + }, + "Ywlp2A5z": { + "uv": { + "owwU": [19.11966, 20.3], + "aAun": [13.74808, 20.3], + "pSuD": [13.19183, 23.1274], + "grtz": [19.67591, 23.1274] + }, + "vertices": ["grtz", "pSuD", "aAun", "owwU"], + "texture": 0 + }, + "qQ6VpRZe": { + "uv": { + "z83N": [19.11966, 20.3], + "CEed": [13.74808, 20.3], + "aAun": [13.19183, 23.1274], + "owwU": [19.67591, 23.1274] + }, + "vertices": ["owwU", "aAun", "CEed", "z83N"], + "texture": 0 + }, + "9Xmbk06f": { + "uv": { + "b8kf": [13.19183, 25.8807], + "NL1s": [22.81788, 23.09035], + "BHgp": [12.79592, 23.09035], + "mjln": [22.42197, 25.8807] + }, + "vertices": ["mjln", "BHgp", "NL1s", "b8kf"], + "texture": 0 + }, + "90U61sQs": { + "uv": { + "fvDz": [13.19183, 25.8807], + "UilW": [22.81788, 23.09035], + "EApG": [12.79592, 23.09035], + "kpeJ": [22.42197, 25.8807] + }, + "vertices": ["kpeJ", "EApG", "UilW", "fvDz"], + "texture": 0 + }, + "3nAPr5Vb": { + "uv": { + "kpeJ": [13.19183, 25.8807], + "BHgp": [22.81788, 23.09035], + "UilW": [12.79592, 23.09035], + "b8kf": [22.42197, 25.8807] + }, + "vertices": ["b8kf", "UilW", "BHgp", "kpeJ"], + "texture": 0 + }, + "N7gZZzuE": { + "uv": { + "NL1s": [22.81788, 23.09035], + "BHgp": [12.79592, 23.09035], + "jbYw": [12.4, 20.3] + }, + "vertices": ["jbYw", "BHgp", "NL1s"], + "texture": 0 + }, + "oCsF34PS": { + "uv": { + "yJdM": [23.2138, 20.3], + "UilW": [22.81788, 23.09035], + "EApG": [12.79592, 23.09035], + "MGSN": [12.4, 20.3] + }, + "vertices": ["MGSN", "EApG", "UilW", "yJdM"], + "texture": 0 + }, + "7OtzI9CF": { + "uv": { + "jbYw": [23.2138, 20.3], + "BHgp": [22.81788, 23.09035], + "UilW": [12.79592, 23.09035], + "yJdM": [12.4, 20.3] + }, + "vertices": ["yJdM", "UilW", "BHgp", "jbYw"], + "texture": 0 + }, + "MHxYSMHA": { + "uv": { + "zWCT": [13.98366, 31.4614], + "b8kf": [13.19183, 25.8807], + "mjln": [22.42197, 25.8807] + }, + "vertices": ["mjln", "b8kf", "zWCT"], + "texture": 0 + }, + "e1EGiE0x": { + "uv": { + "AAGn": [17.44698, 30.62797], + "mjln": [19.79468, 28.55995], + "zWCT": [20.63818, 30.62797] + }, + "vertices": ["zWCT", "mjln", "AAGn"], + "texture": 0 + }, + "EnOjasRk": { + "uv": { + "LInl": [23.2138, 25.3], + "NL1s": [22.81788, 28.09035], + "HRTL": [12.4, 25.3], + "ytho": [12.79592, 28.09035] + }, + "vertices": ["ytho", "HRTL", "NL1s", "LInl"], + "texture": 0 + }, + "BnVyjGEr": { + "uv": { + "7NKt": [15.35365, 20.3], + "9osI": [18.30731, 24.94521], + "PCb6": [12.4, 24.94521] + }, + "vertices": ["PCb6", "9osI", "7NKt"], + "texture": 0 + }, + "1GP5oMXt": { + "uv": { + "7NKt": [15.35365, 20.3], + "PCb6": [18.30731, 24.94521], + "cefY": [12.4, 24.94521] + }, + "vertices": ["cefY", "PCb6", "7NKt"], + "texture": 0 + }, + "HbmqV6wX": { + "uv": { + "7NKt": [18.09971, 21.21777], + "cefY": [21.05337, 25.86299], + "NXb9": [15.14606, 25.86299] + }, + "vertices": ["NXb9", "cefY", "7NKt"], + "texture": 0 + }, + "TZISD7Ta": { + "uv": { + "7NKt": [18.09971, 22.13555], + "grtz": [21.05337, 26.78076], + "9osI": [15.14606, 26.78076] + }, + "vertices": ["9osI", "grtz", "7NKt"], + "texture": 0 + }, + "jLIOfIVV": { + "uv": { + "grtz": [19.11966, 20.3], + "pSuD": [19.67591, 23.1274], + "AETh": [13.19183, 23.1274], + "9osI": [13.74808, 20.3] + }, + "vertices": ["9osI", "AETh", "pSuD", "grtz"], + "texture": 0 + }, + "EEI5QteS": { + "uv": { + "7NKt": [19.93042, 25.86299], + "NXb9": [22.88407, 21.21777], + "QrYn": [16.97677, 21.21777] + }, + "vertices": ["QrYn", "NXb9", "7NKt"], + "texture": 0 + }, + "DDwjMZN5": { + "uv": { + "NXb9": [16.29123, 23.3], + "1Acn": [16.67591, 27.1274], + "LInl": [12.19183, 27.1274], + "QrYn": [12.57651, 23.3] + }, + "vertices": ["QrYn", "LInl", "1Acn", "NXb9"], + "texture": 0 + }, + "ujSOPSMx": { + "uv": { + "AAGn": [13.98366, 31.4614], + "PG6A": [22.42197, 25.8807], + "mjln": [13.19183, 25.8807], + "wOfP": [21.63014, 31.4614] + }, + "vertices": ["wOfP", "mjln", "PG6A", "AAGn"], + "texture": 0 + }, + "J8OhjxTG": { + "uv": { + "0y1E": [16.22324, 31.4614], + "AAGn": [12.4, 20.3], + "wOfP": [20.04648, 20.3] + }, + "vertices": ["wOfP", "AAGn", "0y1E"], + "texture": 0 + }, + "oKAkzerh": { + "uv": { + "YKrh": [12.4, 24.4614], + "pSuD": [22.42197, 20.88072], + "AETh": [13.19183, 20.88072], + "MGSN": [23.2138, 24.4614] + }, + "vertices": ["MGSN", "AETh", "pSuD", "YKrh"], + "texture": 0 + }, + "74vyrQL4": { + "uv": { + "0y1E": [16.22324, 31.4614], + "9Vbx": [12.4, 20.3], + "cVzJ": [20.04648, 20.3] + }, + "vertices": ["cVzJ", "9Vbx", "0y1E"], + "texture": 0 + }, + "QwElfzPz": { + "uv": { + "B9LH": [13.19183, 25.8807], + "EApG": [22.81788, 23.09035], + "T24w": [12.79592, 23.09035], + "fvDz": [22.42197, 25.8807] + }, + "vertices": ["fvDz", "T24w", "EApG", "B9LH"], + "texture": 0 + }, + "UAW1iLNx": { + "uv": { + "MGSN": [23.2138, 20.3], + "EApG": [22.81788, 23.09035], + "T24w": [12.79592, 23.09035], + "YKrh": [12.4, 20.3] + }, + "vertices": ["YKrh", "T24w", "EApG", "MGSN"], + "texture": 0 + }, + "PqO49L9U": { + "uv": { + "0y1E": [16.22324, 31.4614], + "cVzJ": [12.4, 20.3], + "TmnP": [20.04648, 20.3] + }, + "vertices": ["TmnP", "cVzJ", "0y1E"], + "texture": 0 + }, + "LktzJ856": { + "uv": { + "0y1E": [16.22324, 31.4614], + "TmnP": [12.4, 20.3], + "zWCT": [20.04648, 20.3] + }, + "vertices": ["zWCT", "TmnP", "0y1E"], + "texture": 0 + }, + "biSz2U4t": { + "uv": { + "7NKt": [15.35365, 24.94521], + "QrYn": [18.30731, 20.3], + "z83N": [12.4, 20.3] + }, + "vertices": ["z83N", "QrYn", "7NKt"], + "texture": 0 + }, + "gFu0yaKG": { + "uv": { + "0y1E": [16.22324, 31.4614], + "zWCT": [12.4, 20.3], + "AAGn": [20.04648, 20.3] + }, + "vertices": ["AAGn", "zWCT", "0y1E"], + "texture": 0 + }, + "LxyrzKoA": { + "uv": { + "1Acn": [23.2138, 20.3], + "75IQ": [12.4, 20.3], + "5AXE": [22.81788, 23.09035] + }, + "vertices": ["5AXE", "75IQ", "1Acn"], + "texture": 0 + }, + "mtdFIh3D": { + "uv": { + "LInl": [23.2138, 20.3], + "NL1s": [22.81788, 23.09035], + "jbYw": [12.4, 20.3] + }, + "vertices": ["jbYw", "NL1s", "LInl"], + "texture": 0 + }, + "YVCc997S": { + "uv": { + "1Acn": [12, 25.83987], + "zBbf": [13.3481, 24.24568], + "HRTL": [16.29357, 23], + "LInl": [17.69612, 25.83987] + }, + "vertices": ["LInl", "HRTL", "zBbf", "1Acn"], + "texture": 0 + }, + "7JMKLqjo": { + "uv": { + "zBbf": [16.07105, 28.95379], + "HRTL": [16.04119, 26], + "nGlq": [13.29124, 28.95379], + "ytho": [13, 26.77981] + }, + "vertices": ["ytho", "nGlq", "HRTL", "zBbf"], + "texture": 0 + }, + "s6PlbZph": { + "uv": { + "mjln": [13, 25.79322], + "NL1s": [13, 21], + "ytho": [16.60807, 22.29549] + }, + "vertices": ["ytho", "NL1s", "mjln"], + "texture": 0 + }, + "CxGUwfqa": { + "uv": { + "5AXE": [16.8336, 21], + "PG6A": [15.21383, 25.51124], + "nGlq": [13, 21] + }, + "vertices": ["nGlq", "PG6A", "5AXE"], + "texture": 0 + }, + "o31175XQ": { + "uv": { + "PG6A": [22.3898, 24.5077], + "nGlq": [18.7916, 21], + "mjln": [13, 24.5077], + "ytho": [16.5982, 21] + }, + "vertices": ["ytho", "mjln", "nGlq", "PG6A"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "6ee6c485-55e3-677f-8a8a-6437317da917" + }, + { + "name": "cylinder", + "color": 8, + "origin": [4, 29.7, -1.9], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8bfM": [-0.55, -0.44721, 0], + "Kvjd": [-0.55, -0.44721, -1], + "USVQ": [-1.17629, -1.5, 0], + "HXhU": [-1.17629, -1.5, -1], + "UZWq": [-1.56336, -0.04508, 0], + "axTi": [-1.56336, -0.04508, -1], + "tgyO": [-0.55, 0.8541, 0], + "Ib2Y": [-0.55, 0.8541, -1], + "FTwV": [0.46336, -0.04508, 0], + "O5S9": [0.46336, -0.04508, -1], + "5xC8": [0.07629, -1.5, 0], + "tls7": [0.07629, -1.5, -1] + }, + "faces": { + "91nAa0xC": { + "uv": { + "8bfM": [0, 6.08977], + "USVQ": [1.50002, 5], + "UZWq": [1.50002, 7.1796] + }, + "vertices": ["UZWq", "USVQ", "8bfM"], + "texture": 0 + }, + "9ZKH0lG6": { + "uv": { + "HXhU": [0, 5], + "axTi": [2.1796, 5], + "UZWq": [2.1796, 7], + "USVQ": [0, 7] + }, + "vertices": ["USVQ", "UZWq", "axTi", "HXhU"], + "texture": 0 + }, + "RGmcX1UG": { + "uv": { + "Kvjd": [4.50306, 0], + "axTi": [5.06639, 1.76648], + "HXhU": [2.16591, 1.76648] + }, + "vertices": ["HXhU", "axTi", "Kvjd"], + "texture": 0 + }, + "hURkvpYa": { + "uv": { + "8bfM": [0, 2.7634], + "UZWq": [0.8729, 0], + "tgyO": [1.8541, 2.7634] + }, + "vertices": ["tgyO", "UZWq", "8bfM"], + "texture": 0 + }, + "WyrjtDC7": { + "uv": { + "axTi": [0, 5], + "Ib2Y": [2.1796, 5], + "tgyO": [2.1796, 7], + "UZWq": [0, 7] + }, + "vertices": ["UZWq", "tgyO", "Ib2Y", "axTi"], + "texture": 0 + }, + "acbFBVuv": { + "uv": { + "Kvjd": [4.50306, 0], + "Ib2Y": [5.06639, 1.76648], + "axTi": [2.16591, 1.76648] + }, + "vertices": ["axTi", "Ib2Y", "Kvjd"], + "texture": 0 + }, + "lyFWiRhd": { + "uv": { + "8bfM": [0, 2.7634], + "tgyO": [0.8729, 0], + "FTwV": [1.8541, 2.7634] + }, + "vertices": ["FTwV", "tgyO", "8bfM"], + "texture": 0 + }, + "wjezwsCE": { + "uv": { + "Ib2Y": [0, 5], + "O5S9": [2.1796, 5], + "FTwV": [2.1796, 7], + "tgyO": [0, 7] + }, + "vertices": ["tgyO", "FTwV", "O5S9", "Ib2Y"], + "texture": 0 + }, + "j57EBA6J": { + "uv": { + "Kvjd": [4.50306, 0], + "O5S9": [5.06639, 1.76648], + "Ib2Y": [2.16591, 1.76648] + }, + "vertices": ["Ib2Y", "O5S9", "Kvjd"], + "texture": 0 + }, + "vcbsA7yR": { + "uv": { + "8bfM": [1.85413, 6.76333], + "FTwV": [0, 6.76333], + "5xC8": [1.28114, 5] + }, + "vertices": ["5xC8", "FTwV", "8bfM"], + "texture": 0 + }, + "lYJAyjcC": { + "uv": { + "O5S9": [0, 5], + "tls7": [2.1796, 5], + "5xC8": [2.1796, 7], + "FTwV": [0, 7] + }, + "vertices": ["FTwV", "5xC8", "tls7", "O5S9"], + "texture": 0 + }, + "dswA4ncI": { + "uv": { + "Kvjd": [4.50306, 0], + "tls7": [5.06639, 1.76648], + "O5S9": [2.16591, 1.76648] + }, + "vertices": ["O5S9", "tls7", "Kvjd"], + "texture": 0 + }, + "x4e93Rac": { + "uv": { + "8bfM": [1.0898, 6.5], + "5xC8": [0, 5], + "USVQ": [2.1796, 5] + }, + "vertices": ["USVQ", "5xC8", "8bfM"], + "texture": 0 + }, + "TtnpSvW1": { + "uv": { + "tls7": [0, 5], + "HXhU": [2.1796, 5], + "USVQ": [2.1796, 7], + "5xC8": [0, 7] + }, + "vertices": ["5xC8", "USVQ", "HXhU", "tls7"], + "texture": 0 + }, + "royATjFd": { + "uv": { + "Kvjd": [4.50306, 0], + "HXhU": [5.06639, 1.76648], + "tls7": [2.16591, 1.76648] + }, + "vertices": ["tls7", "HXhU", "Kvjd"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "9875d2c2-108c-3b84-099f-32f17d751b35" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 11, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "VNps": [-1.45252, 10.45434, -2.73169], + "4ezv": [-1.45252, 7.90867, -2.00765], + "EbdB": [-1.45252, 5.41081, -2.75746], + "qevP": [-1.26188, 1.67856, -1.67158], + "00Kd": [1.26169, 1.67856, -1.67158], + "hnZd": [1.45233, 10.45434, -2.73169], + "La2n": [1.45233, 7.90867, -2.00765], + "6ehA": [1.45233, 5.41081, -2.75746], + "GwxS": [2.52347, 1.67856, -1.67158], + "Hvq1": [-1.20235, 9.92329, -3.50745], + "Rnso": [-1.20235, 7.77834, -2.78337], + "4mSB": [-1.20235, 5.66144, -3.5332], + "7R9u": [-1.04454, 1.71437, -2.08047], + "Kim6": [1.04453, 2.14921, -2.38956], + "ww1k": [2.32491, 1.78329, -2.12627], + "OU6q": [2.67344, 12.84999, -2.37678], + "JesZ": [0, 1.01081, 0.05073], + "zeVr": [0, 13, 2.16447], + "qbIt": [2.34733, 1.16658, 2.37028], + "Bzop": [2.68542, 12.76009, 2.81067], + "qNY4": [4.22537, 1.14514, 0.10839], + "Atxb": [4.83534, 12.82515, 0.19899], + "iHjd": [-2.33106, 1.78967, -2.13135], + "VDIH": [-2.67167, 12.85166, -2.37508], + "6Fz4": [-4.24038, 1.15416, 0.10729], + "c1T2": [-4.79951, 12.84815, 0.19479], + "sCtj": [-2.35014, 1.16958, 2.37321], + "jkti": [-2.66867, 12.78808, 2.78679], + "8tqY": [-2.89057, 5.63899, -3.43534], + "2Cy7": [2.88669, 5.64095, -3.43704], + "qtJM": [-2.89549, 7.76753, -2.68355], + "XnvV": [2.89378, 7.77849, -2.68425], + "uyLC": [5.80845, 5.27039, 0.17572], + "D5z6": [5.25071, 7.77197, 0.193], + "Uxw5": [2.86725, 5.2709, 3.38567], + "8HKl": [2.84793, 7.81287, 3.03103], + "Mwes": [-2.86878, 5.25699, 3.38442], + "YbTn": [-2.85004, 7.83897, 3.02872], + "4Qxs": [-5.80755, 5.25363, 0.17535], + "KUq1": [-5.25039, 7.78979, 0.19472], + "Sx25": [-2.89609, 9.92731, -3.40732], + "8U5W": [-5.80483, 9.9796, 0.22144], + "Dpuc": [-2.81993, 9.96875, 3.04127], + "FVmL": [2.81993, 9.87784, 3.04127], + "tsu4": [5.80483, 9.86699, 0.22144], + "AYR2": [2.89609, 9.91927, -3.40732], + "zojw": [1.20235, 9.92329, -3.50745], + "BQWs": [1.20235, 7.77834, -2.78337], + "OaX5": [1.20235, 5.66144, -3.5332], + "40cf": [1.20235, 12.93647, -2.29048], + "GS48": [0.00055, 13.7, 2.1672], + "GU5z": [2.7323, 13.54825, -1.37379], + "l1mk": [1.26121, 13.63473, -2.28749], + "rN5K": [-1.26012, 13.6348, -2.28802], + "V5o8": [-2.72944, 13.54999, -1.37262], + "VN3R": [-1.45252, 12.85, -2.00765], + "wTU7": [1.45233, 12.85, -2.00765], + "sRfy": [-1.20235, 12.93647, -2.29048], + "xJW8": [-1.45252, 13.30724, 0.28166], + "qRdi": [1.45233, 13.30724, 0.28166] + }, + "faces": { + "n9OF4vTz": { + "uv": { + "qevP": [1.73205, 22.1], + "EbdB": [1.73205, 18.1], + "00Kd": [0.57735, 22.1], + "6ehA": [0.57735, 18.1] + }, + "vertices": ["6ehA", "00Kd", "EbdB", "qevP"], + "texture": 0 + }, + "qQ6Tj1tt": { + "uv": { + "4ezv": [1.73205, 12.1], + "VNps": [1.73205, 10.1], + "La2n": [0.57735, 12.1], + "hnZd": [0.57735, 10.1] + }, + "vertices": ["hnZd", "La2n", "VNps", "4ezv"], + "texture": 0 + }, + "UNfAJBLi": { + "uv": { + "EbdB": [1.73205, 16], + "4ezv": [1.73205, 12], + "6ehA": [0.57735, 16], + "La2n": [0.57735, 12] + }, + "vertices": ["La2n", "6ehA", "4ezv", "EbdB"], + "texture": 0 + }, + "kIrkkaTD": { + "uv": { + "GS48": [1.5, 24], + "rN5K": [0, 24], + "V5o8": [0, 20] + }, + "vertices": ["GS48", "rN5K", "V5o8"], + "texture": 0 + }, + "PZTHi2NP": { + "uv": { + "JesZ": [2.3094, 20.1], + "iHjd": [1.1547, 22.1], + "6Fz4": [0, 20.1] + }, + "vertices": ["6Fz4", "iHjd", "JesZ"], + "texture": 0 + }, + "o6vR960m": { + "uv": { + "qtJM": [0, 24.1], + "8U5W": [2.3094, 22.1], + "Sx25": [0, 22.1], + "KUq1": [2.3094, 24.1] + }, + "vertices": ["KUq1", "Sx25", "8U5W", "qtJM"], + "texture": 0 + }, + "CpruPvlY": { + "uv": { + "zeVr": [2.3094, 22.1], + "c1T2": [0, 22.1], + "VDIH": [1.1547, 20.1] + }, + "vertices": ["VDIH", "c1T2", "zeVr"], + "texture": 0 + }, + "Xs4ZXoVL": { + "uv": { + "JesZ": [2.3094, 22.1], + "6Fz4": [0, 22.1], + "sCtj": [1.1547, 20.1] + }, + "vertices": ["sCtj", "6Fz4", "JesZ"], + "texture": 0 + }, + "RsnMytIp": { + "uv": { + "KUq1": [0, 24.1], + "Dpuc": [2.3094, 22.1], + "8U5W": [0, 22.1], + "YbTn": [2.3094, 24.1] + }, + "vertices": ["YbTn", "8U5W", "Dpuc", "KUq1"], + "texture": 0 + }, + "jiTOBof6": { + "uv": { + "zeVr": [2.3094, 20.1], + "jkti": [1.1547, 22.1], + "c1T2": [0, 20.1] + }, + "vertices": ["c1T2", "jkti", "zeVr"], + "texture": 0 + }, + "X1EBn6ci": { + "uv": { + "6Fz4": [0, 32.1], + "4Qxs": [0, 28.1], + "Mwes": [2.3094, 28.1], + "sCtj": [2.3094, 32.1] + }, + "vertices": ["sCtj", "Mwes", "4Qxs", "6Fz4"], + "texture": 0 + }, + "beE5w2Ye": { + "uv": { + "4Qxs": [0, 28], + "KUq1": [0, 24], + "YbTn": [2.3094, 24], + "Mwes": [2.3094, 28] + }, + "vertices": ["Mwes", "YbTn", "KUq1", "4Qxs"], + "texture": 0 + }, + "ciRZpVSK": { + "uv": { + "iHjd": [0, 32.1], + "8tqY": [0, 28.1], + "4Qxs": [2.3094, 28.1], + "6Fz4": [2.3094, 32.1] + }, + "vertices": ["6Fz4", "4Qxs", "8tqY", "iHjd"], + "texture": 0 + }, + "TI08wsJr": { + "uv": { + "8tqY": [0, 28], + "qtJM": [0, 24], + "KUq1": [2.3094, 24], + "4Qxs": [2.3094, 28] + }, + "vertices": ["4Qxs", "KUq1", "qtJM", "8tqY"], + "texture": 0 + }, + "OvuFuXq5": { + "uv": { + "c1T2": [2.3094, 20.1], + "8U5W": [2.3094, 22.1], + "Sx25": [0, 22.1], + "VDIH": [0, 20.1] + }, + "vertices": ["VDIH", "Sx25", "8U5W", "c1T2"], + "texture": 0 + }, + "RDhhyXov": { + "uv": { + "jkti": [2.3094, 20.1], + "Dpuc": [2.3094, 22.1], + "8U5W": [0, 22.1], + "c1T2": [0, 20.1] + }, + "vertices": ["c1T2", "8U5W", "Dpuc", "jkti"], + "texture": 0 + }, + "VSHmfbTe": { + "uv": { + "qtJM": [26.25, 24], + "Rnso": [24.75, 24], + "Hvq1": [24.75, 20], + "Sx25": [26.25, 20] + }, + "vertices": ["Sx25", "Hvq1", "Rnso", "qtJM"], + "texture": 0 + }, + "JvlKDALY": { + "uv": { + "8tqY": [26.25, 24], + "4mSB": [24.75, 24], + "Rnso": [24.75, 20], + "qtJM": [26.25, 20] + }, + "vertices": ["qtJM", "Rnso", "4mSB", "8tqY"], + "texture": 0 + }, + "0XD78FeQ": { + "uv": { + "iHjd": [26.25, 20], + "7R9u": [24.75, 20], + "4mSB": [24.75, 24], + "8tqY": [26.25, 24] + }, + "vertices": ["8tqY", "4mSB", "7R9u", "iHjd"], + "texture": 0 + }, + "rHp11s5v": { + "uv": { + "JesZ": [26.25, 24], + "7R9u": [24.75, 20], + "iHjd": [24.75, 24] + }, + "vertices": ["iHjd", "7R9u", "JesZ"], + "texture": 0 + }, + "BSrc4Csr": { + "uv": { + "Sx25": [26.25, 24], + "Hvq1": [24.75, 24], + "VDIH": [26.25, 20], + "sRfy": [24.75, 20] + }, + "vertices": ["VDIH", "sRfy", "Hvq1", "Sx25"], + "texture": 0 + }, + "SFkdM7Po": { + "uv": { + "ww1k": [2.3094, 22.1], + "7R9u": [0.57735, 22.1], + "JesZ": [1.1547, 20.1] + }, + "vertices": ["JesZ", "7R9u", "ww1k"], + "texture": 0 + }, + "SQsqbOoz": { + "uv": { + "AYR2": [26.25, 24], + "BQWs": [24.75, 20], + "zojw": [24.75, 24], + "XnvV": [26.25, 20] + }, + "vertices": ["XnvV", "zojw", "BQWs", "AYR2"], + "texture": 0 + }, + "EKfPkOay": { + "uv": { + "JesZ": [1.1547, 22.1], + "sCtj": [0, 20.1], + "qbIt": [2.3094, 20.1] + }, + "vertices": ["qbIt", "sCtj", "JesZ"], + "texture": 0 + }, + "6EztQi7p": { + "uv": { + "YbTn": [0, 24.1], + "FVmL": [2.3094, 22.1], + "Dpuc": [0, 22.1], + "8HKl": [2.3094, 24.1] + }, + "vertices": ["8HKl", "Dpuc", "FVmL", "YbTn"], + "texture": 0 + }, + "YE7fMQzU": { + "uv": { + "zeVr": [1.1547, 20.1], + "Bzop": [2.3094, 22.1], + "jkti": [0, 22.1] + }, + "vertices": ["jkti", "Bzop", "zeVr"], + "texture": 0 + }, + "UTGzqFGo": { + "uv": { + "2Cy7": [26.25, 20], + "Kim6": [24.75, 24], + "OaX5": [24.75, 20], + "ww1k": [26.25, 24] + }, + "vertices": ["ww1k", "OaX5", "Kim6", "2Cy7"], + "texture": 0 + }, + "93TZ8dyd": { + "uv": { + "XnvV": [26.25, 24], + "OaX5": [24.75, 20], + "BQWs": [24.75, 24], + "2Cy7": [26.25, 20] + }, + "vertices": ["2Cy7", "BQWs", "OaX5", "XnvV"], + "texture": 0 + }, + "iTD3Q4X2": { + "uv": { + "sCtj": [0, 32.1], + "Mwes": [0, 28.1], + "Uxw5": [2.3094, 28.1], + "qbIt": [2.3094, 32.1] + }, + "vertices": ["qbIt", "Uxw5", "Mwes", "sCtj"], + "texture": 0 + }, + "hApOPGS9": { + "uv": { + "Mwes": [0, 28], + "YbTn": [0, 24], + "8HKl": [2.3094, 24], + "Uxw5": [2.3094, 28] + }, + "vertices": ["Uxw5", "8HKl", "YbTn", "Mwes"], + "texture": 0 + }, + "VNKyi5TO": { + "uv": { + "Bzop": [2.3094, 20.1], + "FVmL": [2.3094, 22.1], + "Dpuc": [0, 22.1], + "jkti": [0, 20.1] + }, + "vertices": ["jkti", "Dpuc", "FVmL", "Bzop"], + "texture": 0 + }, + "vK6wJUrn": { + "uv": { + "OU6q": [26.25, 24], + "zojw": [24.75, 20], + "40cf": [24.75, 24], + "AYR2": [26.25, 20] + }, + "vertices": ["AYR2", "40cf", "zojw", "OU6q"], + "texture": 0 + }, + "OGLt4pyG": { + "uv": { + "JesZ": [0, 22.1], + "qbIt": [1.1547, 20.1], + "qNY4": [2.3094, 22.1] + }, + "vertices": ["qNY4", "qbIt", "JesZ"], + "texture": 0 + }, + "PSHAvkQA": { + "uv": { + "JesZ": [0, 20.1], + "qNY4": [2.3094, 20.1], + "ww1k": [1.1547, 22.1] + }, + "vertices": ["ww1k", "qNY4", "JesZ"], + "texture": 0 + }, + "NU9LV3TF": { + "uv": { + "qNY4": [0, 32.1], + "uyLC": [0, 28.1], + "2Cy7": [2.3094, 28.1], + "ww1k": [2.3094, 32.1] + }, + "vertices": ["ww1k", "2Cy7", "uyLC", "qNY4"], + "texture": 0 + }, + "eWNLaUh1": { + "uv": { + "qbIt": [0, 32.1], + "Uxw5": [0, 28.1], + "uyLC": [2.3094, 28.1], + "qNY4": [2.3094, 32.1] + }, + "vertices": ["qNY4", "uyLC", "Uxw5", "qbIt"], + "texture": 0 + }, + "7OpZlenr": { + "uv": { + "8HKl": [0, 24.1], + "tsu4": [2.3094, 22.1], + "FVmL": [0, 22.1], + "D5z6": [2.3094, 24.1] + }, + "vertices": ["D5z6", "FVmL", "tsu4", "8HKl"], + "texture": 0 + }, + "ke1TOIdV": { + "uv": { + "zeVr": [0, 20.1], + "Atxb": [2.3094, 20.1], + "Bzop": [1.1547, 22.1] + }, + "vertices": ["Bzop", "Atxb", "zeVr"], + "texture": 0 + }, + "LMEp0vkq": { + "uv": { + "D5z6": [0, 24.1], + "AYR2": [2.3094, 22.1], + "tsu4": [0, 22.1], + "XnvV": [2.3094, 24.1] + }, + "vertices": ["XnvV", "tsu4", "AYR2", "D5z6"], + "texture": 0 + }, + "h7HRi3uq": { + "uv": { + "zeVr": [0, 22.1], + "OU6q": [1.1547, 20.1], + "Atxb": [2.3094, 22.1] + }, + "vertices": ["Atxb", "OU6q", "zeVr"], + "texture": 0 + }, + "IZhPvWFw": { + "uv": { + "uyLC": [0, 28], + "D5z6": [0, 24], + "XnvV": [2.3094, 24], + "2Cy7": [2.3094, 28] + }, + "vertices": ["2Cy7", "XnvV", "D5z6", "uyLC"], + "texture": 0 + }, + "SbOPjyT9": { + "uv": { + "Uxw5": [0, 28], + "8HKl": [0, 24], + "D5z6": [2.3094, 24], + "uyLC": [2.3094, 28] + }, + "vertices": ["uyLC", "D5z6", "8HKl", "Uxw5"], + "texture": 0 + }, + "JzyyncTS": { + "uv": { + "Atxb": [2.3094, 20.1], + "tsu4": [2.3094, 22.1], + "FVmL": [0, 22.1], + "Bzop": [0, 20.1] + }, + "vertices": ["Bzop", "FVmL", "tsu4", "Atxb"], + "texture": 0 + }, + "mKnmlKRy": { + "uv": { + "OU6q": [2.3094, 20.1], + "AYR2": [2.3094, 22.1], + "tsu4": [0, 22.1], + "Atxb": [0, 20.1] + }, + "vertices": ["Atxb", "tsu4", "AYR2", "OU6q"], + "texture": 0 + }, + "B0vQUqAb": { + "uv": { + "GS48": [1.5, 24], + "GU5z": [0, 24], + "l1mk": [0, 20] + }, + "vertices": ["GS48", "GU5z", "l1mk"], + "texture": 0 + }, + "cMtrfwQb": { + "uv": { + "4ezv": [24, 24], + "VNps": [24, 20], + "Hvq1": [25, 20], + "Rnso": [25, 24] + }, + "vertices": ["Rnso", "Hvq1", "VNps", "4ezv"], + "texture": 0 + }, + "Y33rUMC7": { + "uv": { + "EbdB": [24, 24], + "4ezv": [24, 20], + "Rnso": [25, 20], + "4mSB": [25, 24] + }, + "vertices": ["4mSB", "Rnso", "4ezv", "EbdB"], + "texture": 0 + }, + "ZzNAHZec": { + "uv": { + "qevP": [25, 20], + "EbdB": [25, 24], + "4mSB": [24, 24], + "7R9u": [24, 20] + }, + "vertices": ["7R9u", "4mSB", "EbdB", "qevP"], + "texture": 0 + }, + "09dBiOBM": { + "uv": { + "VNps": [24, 24], + "Hvq1": [25, 24], + "VN3R": [24, 20], + "sRfy": [25, 20] + }, + "vertices": ["Hvq1", "sRfy", "VN3R", "VNps"], + "texture": 0 + }, + "cRoD6z5f": { + "uv": { + "GwxS": [25, 20], + "qevP": [25, 24], + "7R9u": [24, 24], + "ww1k": [24, 20] + }, + "vertices": ["ww1k", "7R9u", "qevP", "GwxS"], + "texture": 0 + }, + "JI8OZCGa": { + "uv": { + "hnZd": [24, 24], + "La2n": [24, 20], + "BQWs": [25, 20], + "zojw": [25, 24] + }, + "vertices": ["zojw", "BQWs", "La2n", "hnZd"], + "texture": 0 + }, + "JwbEywX4": { + "uv": { + "00Kd": [26.25, 20], + "GwxS": [24.75, 20], + "ww1k": [24.75, 24], + "Kim6": [26.25, 24] + }, + "vertices": ["Kim6", "ww1k", "GwxS", "00Kd"], + "texture": 0 + }, + "K8KxJUkc": { + "uv": { + "6ehA": [25, 20], + "00Kd": [25, 24], + "Kim6": [24, 24], + "OaX5": [24, 20] + }, + "vertices": ["OaX5", "Kim6", "00Kd", "6ehA"], + "texture": 0 + }, + "hYkNu1Mz": { + "uv": { + "La2n": [24, 24], + "6ehA": [24, 20], + "OaX5": [25, 20], + "BQWs": [25, 24] + }, + "vertices": ["BQWs", "OaX5", "6ehA", "La2n"], + "texture": 0 + }, + "lkuqRz64": { + "uv": { + "hnZd": [24, 20], + "zojw": [25, 20], + "40cf": [25, 24], + "wTU7": [24, 24] + }, + "vertices": ["40cf", "zojw", "hnZd", "wTU7"], + "texture": 0 + }, + "mlsGAVtJ": { + "uv": { + "OU6q": [0, 23.73348], + "zeVr": [0.00013, 20.04213], + "GS48": [0.99925, 20], + "GU5z": [0.99925, 23.73398] + }, + "vertices": ["GU5z", "GS48", "zeVr", "OU6q"], + "texture": 0 + }, + "3DcfQm2f": { + "uv": { + "l1mk": [1.5, 24], + "GU5z": [0, 24], + "40cf": [1.5, 20], + "OU6q": [0, 20] + }, + "vertices": ["l1mk", "GU5z", "OU6q", "40cf"], + "texture": 0 + }, + "SVnlKzlW": { + "uv": { + "l1mk": [0, 21], + "GS48": [2.76027, 21], + "zeVr": [2.73445, 21.99827], + "40cf": [0.00064, 22] + }, + "vertices": ["GS48", "l1mk", "40cf", "zeVr"], + "texture": 0 + }, + "rgfKtVor": { + "uv": { + "rN5K": [0.99956, 26.76077], + "GS48": [0.99956, 24], + "zeVr": [0, 24.02628], + "sRfy": [0.00087, 26.76012] + }, + "vertices": ["rN5K", "GS48", "zeVr", "sRfy"], + "texture": 0 + }, + "NC4hIjdH": { + "uv": { + "V5o8": [1.5, 24], + "rN5K": [0, 24], + "VDIH": [1.5, 20], + "sRfy": [0, 20] + }, + "vertices": ["V5o8", "rN5K", "sRfy", "VDIH"], + "texture": 0 + }, + "98ngj9KD": { + "uv": { + "V5o8": [0, 24], + "GS48": [3.73172, 24], + "zeVr": [3.68921, 24.9983], + "VDIH": [0.00035, 24.99992] + }, + "vertices": ["GS48", "V5o8", "VDIH", "zeVr"], + "texture": 0 + }, + "0wc8SlE7": { + "uv": { + "VNps": [1.73205, 10.1], + "VN3R": [1.73205, 8.1], + "hnZd": [0.57735, 10.1], + "wTU7": [0.57735, 8.1] + }, + "vertices": ["wTU7", "hnZd", "VN3R", "VNps"], + "texture": 0 + }, + "7TVX7b7N": { + "uv": { + "VN3R": [2.9048, 4], + "wTU7": [0, 4], + "qRdi": [0, 3], + "xJW8": [2.9048, 3] + }, + "vertices": ["xJW8", "qRdi", "VN3R", "wTU7"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "9b7ace10-f4a4-74b2-a33d-8dc435a7d04c" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 4, -2], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "0klA": [0, 20, 2], + "TYCj": [0, 22, 2], + "uqWQ": [0.72654, 20, 3], + "VUnI": [0.72654, 22, 3], + "3pM6": [1.17557, 20, 1.61803], + "k4Z0": [1.17557, 22, 1.61803], + "liE0": [0, 20, 0.76393], + "4MRC": [0, 22, 0.76393], + "BpW6": [-1.17557, 20, 1.61803], + "0kUY": [-1.17557, 22, 1.61803], + "rDCl": [-0.72654, 20, 3], + "uFpQ": [-0.72654, 22, 3] + }, + "faces": { + "neQxZgj7": { + "uv": { + "0klA": [0, 0.72652], + "uqWQ": [0.99999, 0], + "3pM6": [0.99999, 1.45314] + }, + "vertices": ["3pM6", "uqWQ", "0klA"], + "texture": 0 + }, + "Pmm72AqV": { + "uv": { + "VUnI": [0, 0], + "k4Z0": [1.453, 0], + "3pM6": [1.453, 2], + "uqWQ": [0, 2] + }, + "vertices": ["uqWQ", "3pM6", "k4Z0", "VUnI"], + "texture": 0 + }, + "zF43FN77": { + "uv": { + "TYCj": [0, 0], + "k4Z0": [1.23611, 0], + "VUnI": [0.3819, 1.17556] + }, + "vertices": ["VUnI", "k4Z0", "TYCj"], + "texture": 0 + }, + "3Z2mxhsi": { + "uv": { + "0klA": [0, 0], + "3pM6": [1.1756, 0.382], + "liE0": [0, 1.2361] + }, + "vertices": ["liE0", "3pM6", "0klA"], + "texture": 0 + }, + "Ge7vXuNy": { + "uv": { + "k4Z0": [0, 0], + "4MRC": [1.453, 0], + "liE0": [1.453, 2], + "3pM6": [0, 2] + }, + "vertices": ["3pM6", "liE0", "4MRC", "k4Z0"], + "texture": 0 + }, + "6csrFhyY": { + "uv": { + "TYCj": [0, 1.2361], + "4MRC": [0, 0], + "k4Z0": [1.1756, 0.8541] + }, + "vertices": ["k4Z0", "4MRC", "TYCj"], + "texture": 0 + }, + "PzDbGLZI": { + "uv": { + "0klA": [1.1756, 0], + "liE0": [1.1756, 1.2361], + "BpW6": [0, 0.382] + }, + "vertices": ["BpW6", "liE0", "0klA"], + "texture": 0 + }, + "Jnti7pZB": { + "uv": { + "4MRC": [0, 0], + "0kUY": [1.453, 0], + "BpW6": [1.453, 2], + "liE0": [0, 2] + }, + "vertices": ["liE0", "BpW6", "0kUY", "4MRC"], + "texture": 0 + }, + "ggZw5JIi": { + "uv": { + "TYCj": [1.1756, 1.2361], + "0kUY": [0, 0.8541], + "4MRC": [1.1756, 0] + }, + "vertices": ["4MRC", "0kUY", "TYCj"], + "texture": 0 + }, + "3aqe5f3y": { + "uv": { + "0klA": [1.23611, 1.17556], + "BpW6": [0, 1.17556], + "rDCl": [0.8542, 0] + }, + "vertices": ["rDCl", "BpW6", "0klA"], + "texture": 0 + }, + "z1Wsx2z6": { + "uv": { + "0kUY": [0, 0], + "uFpQ": [1.453, 0], + "rDCl": [1.453, 2], + "BpW6": [0, 2] + }, + "vertices": ["BpW6", "rDCl", "uFpQ", "0kUY"], + "texture": 0 + }, + "WnJUw8Za": { + "uv": { + "TYCj": [1.99999, 0.72662], + "uFpQ": [1, 1.45314], + "0kUY": [1, 0] + }, + "vertices": ["0kUY", "uFpQ", "TYCj"], + "texture": 0 + }, + "bGf5q9nr": { + "uv": { + "0klA": [0.7265, 1], + "rDCl": [0, 0], + "uqWQ": [1.453, 0] + }, + "vertices": ["uqWQ", "rDCl", "0klA"], + "texture": 0 + }, + "cfYYgyy7": { + "uv": { + "uFpQ": [0, 0], + "VUnI": [1.453, 0], + "uqWQ": [1.453, 2], + "rDCl": [0, 2] + }, + "vertices": ["rDCl", "uqWQ", "VUnI", "uFpQ"], + "texture": 0 + }, + "grmykaTZ": { + "uv": { + "TYCj": [0.7265, 0], + "VUnI": [1.453, 1], + "uFpQ": [0, 1] + }, + "vertices": ["uFpQ", "VUnI", "TYCj"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "29b97531-9807-676f-958b-5c8c1506ade0" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.48481, 9.64286, -0.17365], + "rotation": [1.72795, 0.14886, -0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [0.0026, -4.6424, 0.53015], + "769S": [0, 5.35714, 0.5], + "Ngnq": [1.44338, -3.64286, 2.9], + "86iU": [1.23028, 3.42858, 3.5], + "Orqk": [2.88675, -3.64286, 0.5], + "2WPs": [2.46057, 3.42858, 0.5], + "sf20": [1.44338, -3.64286, -1.9], + "JpAB": [1.23028, 3.42858, -2.5], + "uSt3": [-1.44338, -3.64286, -1.9], + "LEG0": [-1.23028, 3.42858, -2.5], + "H1ru": [-2.88675, -3.64286, 0.5], + "GPdT": [-2.46057, 3.42858, 0.5], + "HLm2": [-1.44338, -3.64286, 2.9], + "Ba1X": [-1.23028, 3.42858, 3.5] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 50.4], + "Ngnq": [3.37555, 48], + "Orqk": [5.3696, 50.4] + }, + "vertices": ["Orqk", "Ngnq", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 44.0163], + "2WPs": [5.80906, 44], + "Orqk": [6.11257, 55.006], + "Ngnq": [2.24355, 55.006] + }, + "vertices": ["Ngnq", "Orqk", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 45], + "2WPs": [4.47951, 48.766], + "86iU": [0, 48.766] + }, + "vertices": ["86iU", "2WPs", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 47], + "Orqk": [5.3696, 47], + "sf20": [3.37555, 49.4] + }, + "vertices": ["sf20", "Orqk", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 44.0057], + "JpAB": [6.11257, 44], + "sf20": [5.25052, 55.0008], + "Orqk": [1.3815, 55.0008] + }, + "vertices": ["Orqk", "sf20", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 48], + "JpAB": [5.86086, 51.766], + "2WPs": [1.3815, 51.766] + }, + "vertices": ["2WPs", "JpAB", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 49], + "sf20": [5.3696, 51.4], + "uSt3": [1.3815, 51.4] + }, + "vertices": ["uSt3", "sf20", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 44], + "LEG0": [5.07521, 44], + "uSt3": [5.3696, 55.0163], + "sf20": [1.3815, 55.0163] + }, + "vertices": ["sf20", "uSt3", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 45], + "LEG0": [4.78081, 49.2426], + "JpAB": [1.3815, 49.2426] + }, + "vertices": ["JpAB", "LEG0", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 47], + "uSt3": [3.37541, 49.4], + "H1ru": [1.3815, 47] + }, + "vertices": ["H1ru", "uSt3", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 44.0163], + "GPdT": [4.42756, 44], + "H1ru": [4.73108, 55.006], + "uSt3": [0.86205, 55.006] + }, + "vertices": ["uSt3", "H1ru", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 48], + "GPdT": [4.47937, 51.766], + "LEG0": [0, 51.766] + }, + "vertices": ["LEG0", "GPdT", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 50.4], + "H1ru": [1.3815, 50.4], + "HLm2": [3.37541, 48] + }, + "vertices": ["HLm2", "H1ru", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 44.0057], + "Ba1X": [6.11257, 44], + "HLm2": [5.25052, 55.0007], + "H1ru": [1.3815, 55.0007] + }, + "vertices": ["H1ru", "HLm2", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 45], + "Ba1X": [7.2425, 48.766], + "GPdT": [2.76299, 48.766] + }, + "vertices": ["GPdT", "Ba1X", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 49.4], + "HLm2": [1.3815, 47], + "Ngnq": [5.3696, 47] + }, + "vertices": ["Ngnq", "HLm2", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 44], + "86iU": [5.07521, 44], + "Ngnq": [5.3696, 55.0164], + "HLm2": [1.3815, 55.0164] + }, + "vertices": ["HLm2", "Ngnq", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 48], + "86iU": [4.78081, 52.2426], + "Ba1X": [1.3815, 52.2426] + }, + "vertices": ["Ba1X", "86iU", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "952d1c26-5c46-044f-47a3-1bbb6da6bc21" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.48481, 9.64286, -0.17365], + "rotation": [1.72795, -0.14886, 0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [-0.0026, -4.6424, 0.53015], + "769S": [0, 5.35714, 0.5], + "Ngnq": [-1.44338, -3.64286, 2.9], + "86iU": [-1.23028, 3.42857, 3.5], + "Orqk": [-2.88675, -3.64286, 0.5], + "2WPs": [-2.46057, 3.42857, 0.5], + "sf20": [-1.44338, -3.64286, -1.9], + "JpAB": [-1.23028, 3.42857, -2.5], + "uSt3": [1.44338, -3.64286, -1.9], + "LEG0": [1.23028, 3.42857, -2.5], + "H1ru": [2.88675, -3.64286, 0.5], + "GPdT": [2.46057, 3.42857, 0.5], + "HLm2": [1.44338, -3.64286, 2.9], + "Ba1X": [1.23028, 3.42857, 3.5] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [5.3815, 51.4], + "Orqk": [7.37555, 49], + "Ngnq": [9.3696, 51.4] + }, + "vertices": ["Ngnq", "Orqk", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [9.80906, 45], + "2WPs": [5.3815, 45.0163], + "Ngnq": [10.11257, 56.006], + "Orqk": [6.24355, 56.006] + }, + "vertices": ["Orqk", "Ngnq", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [7.18974, 46], + "86iU": [8.47951, 49.766], + "2WPs": [4, 49.766] + }, + "vertices": ["2WPs", "86iU", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [5.3815, 48], + "sf20": [9.3696, 48], + "Orqk": [7.37555, 50.4] + }, + "vertices": ["Orqk", "sf20", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [10.11257, 45], + "JpAB": [5.68501, 45.0057], + "Orqk": [9.25052, 56.0008], + "sf20": [5.3815, 56.0008] + }, + "vertices": ["sf20", "Orqk", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [6.67126, 49], + "2WPs": [9.86086, 52.766], + "JpAB": [5.3815, 52.766] + }, + "vertices": ["JpAB", "2WPs", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [7.37555, 50], + "uSt3": [9.3696, 52.4], + "sf20": [5.3815, 52.4] + }, + "vertices": ["sf20", "uSt3", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [9.07521, 45], + "LEG0": [5.67589, 45], + "sf20": [9.3696, 56.0163], + "uSt3": [5.3815, 56.0163] + }, + "vertices": ["uSt3", "sf20", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [7.08115, 46], + "JpAB": [8.78081, 50.2426], + "LEG0": [5.3815, 50.2426] + }, + "vertices": ["LEG0", "JpAB", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [9.36947, 48], + "H1ru": [7.37541, 50.4], + "uSt3": [5.3815, 48] + }, + "vertices": ["uSt3", "H1ru", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [8.42756, 45], + "GPdT": [4, 45.0163], + "uSt3": [8.73108, 56.006], + "H1ru": [4.86205, 56.006] + }, + "vertices": ["H1ru", "uSt3", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [7.1896, 49], + "LEG0": [8.47937, 52.766], + "GPdT": [4, 52.766] + }, + "vertices": ["GPdT", "LEG0", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [9.36947, 51.4], + "HLm2": [5.3815, 51.4], + "H1ru": [7.37541, 49] + }, + "vertices": ["H1ru", "HLm2", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [10.11257, 45], + "Ba1X": [5.68501, 45.0057], + "H1ru": [9.25052, 56.0007], + "HLm2": [5.3815, 56.0007] + }, + "vertices": ["HLm2", "H1ru", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [8.05276, 46], + "GPdT": [11.2425, 49.766], + "Ba1X": [6.76299, 49.766] + }, + "vertices": ["Ba1X", "GPdT", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [7.37555, 50.4], + "Ngnq": [5.3815, 48], + "HLm2": [9.3696, 48] + }, + "vertices": ["HLm2", "Ngnq", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [9.07521, 45], + "86iU": [5.67589, 45], + "HLm2": [9.3696, 56.0164], + "Ngnq": [5.3815, 56.0164] + }, + "vertices": ["Ngnq", "HLm2", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [7.08115, 49], + "Ba1X": [8.78081, 53.2426], + "86iU": [5.3815, 53.2426] + }, + "vertices": ["86iU", "Ba1X", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "bfdad83a-2e41-be24-903c-5ebd81b969b3" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.98481, 6, -0.17365], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "hKiQ": [0.75, -5.5, 0.5], + "P9yc": [0.75, 3, 0.5], + "1O7X": [1.39012, -4.17391, 2.2], + "AuqO": [1.55815, 3, 2.2], + "3QLG": [2.03023, -4.17391, 0.5], + "SQtr": [2.8547, 3, 0.5], + "zALn": [1.39012, -4.17391, -1.2], + "XwTk": [1.80235, 3, -1.2], + "XrMY": [0.10988, -4.17391, -1.2], + "SxBA": [-0.30235, 3, -1.2], + "9bCg": [-0.53023, -4.17391, 0.5], + "xfU2": [-1.3547, 3, 0.5], + "YkcP": [0.10988, -4.17391, 2.2], + "5O4d": [-0.05815, 3, 2.2], + "H3Hz": [-0.30235, -0.587, -1.2], + "uVfc": [1.80235, -0.587, -1.2], + "D3Zi": [2.8547, -0.587, 0.5], + "S34R": [1.55815, -0.587, 2.2], + "gPMU": [-0.05815, -0.587, 2.2], + "JTfr": [-1.3547, -0.587, 0.5] + }, + "faces": { + "YiBnE33q": { + "uv": { + "hKiQ": [7, 40], + "1O7X": [8.1547, 40], + "3QLG": [7.5774, 39] + }, + "vertices": ["3QLG", "1O7X", "hKiQ"], + "texture": 0 + }, + "amXAQ62A": { + "uv": { + "SQtr": [3.1548, 33], + "S34R": [0, 34.50002], + "D3Zi": [3.1548, 34.50002], + "AuqO": [0, 33] + }, + "vertices": ["AuqO", "D3Zi", "S34R", "SQtr"], + "texture": 0 + }, + "pmtHFukt": { + "uv": { + "P9yc": [5.1547, 32], + "SQtr": [4, 32], + "AuqO": [4.5773, 33] + }, + "vertices": ["AuqO", "SQtr", "P9yc"], + "texture": 0 + }, + "dbwNvdVu": { + "uv": { + "hKiQ": [7, 39], + "3QLG": [7.5774, 40], + "zALn": [8.1547, 39] + }, + "vertices": ["zALn", "3QLG", "hKiQ"], + "texture": 0 + }, + "KLi0aNFD": { + "uv": { + "XwTk": [3.1548, 33], + "D3Zi": [0, 34.50002], + "uVfc": [3.1548, 34.50002], + "SQtr": [0, 33] + }, + "vertices": ["SQtr", "uVfc", "D3Zi", "XwTk"], + "texture": 0 + }, + "1nnlJSX0": { + "uv": { + "P9yc": [5.1547, 32], + "XwTk": [4, 32], + "SQtr": [4.5773, 33] + }, + "vertices": ["SQtr", "XwTk", "P9yc"], + "texture": 0 + }, + "xyppXCm4": { + "uv": { + "hKiQ": [7.5774, 39], + "zALn": [7, 40], + "XrMY": [8.1548, 40] + }, + "vertices": ["XrMY", "zALn", "hKiQ"], + "texture": 0 + }, + "TlijztB8": { + "uv": { + "SxBA": [3.1548, 33], + "uVfc": [0, 34.50002], + "H3Hz": [3.1548, 34.50002], + "XwTk": [0, 33] + }, + "vertices": ["XwTk", "H3Hz", "uVfc", "SxBA"], + "texture": 0 + }, + "iSo9y4Ks": { + "uv": { + "P9yc": [5.1547, 32], + "SxBA": [4, 32], + "XwTk": [4.5773, 33] + }, + "vertices": ["XwTk", "SxBA", "P9yc"], + "texture": 0 + }, + "802o7kue": { + "uv": { + "hKiQ": [8.1547, 39], + "XrMY": [7, 39], + "9bCg": [7.5773, 40] + }, + "vertices": ["9bCg", "XrMY", "hKiQ"], + "texture": 0 + }, + "TZySRbzl": { + "uv": { + "xfU2": [3.1548, 33], + "H3Hz": [0, 34.50002], + "JTfr": [3.1548, 34.50002], + "SxBA": [0, 33] + }, + "vertices": ["SxBA", "JTfr", "H3Hz", "xfU2"], + "texture": 0 + }, + "VqxZUv3r": { + "uv": { + "P9yc": [5.1547, 32], + "xfU2": [4, 32], + "SxBA": [4.5773, 33] + }, + "vertices": ["SxBA", "xfU2", "P9yc"], + "texture": 0 + }, + "VZ0J1wkW": { + "uv": { + "hKiQ": [8.1547, 40], + "9bCg": [7.5773, 39], + "YkcP": [7, 40] + }, + "vertices": ["YkcP", "9bCg", "hKiQ"], + "texture": 0 + }, + "5JhxGbwK": { + "uv": { + "5O4d": [3.1548, 33], + "JTfr": [0, 34.50002], + "gPMU": [3.1548, 34.50002], + "xfU2": [0, 33] + }, + "vertices": ["xfU2", "gPMU", "JTfr", "5O4d"], + "texture": 0 + }, + "fjNguha9": { + "uv": { + "P9yc": [5.1547, 32], + "5O4d": [4, 32], + "xfU2": [4.5773, 33] + }, + "vertices": ["xfU2", "5O4d", "P9yc"], + "texture": 0 + }, + "gmvsrhwQ": { + "uv": { + "hKiQ": [7.5774, 40], + "YkcP": [8.1548, 39], + "1O7X": [7, 39] + }, + "vertices": ["1O7X", "YkcP", "hKiQ"], + "texture": 0 + }, + "vDOAOCtP": { + "uv": { + "AuqO": [3.1548, 33], + "gPMU": [0, 34.50002], + "S34R": [3.1548, 34.50002], + "5O4d": [0, 33] + }, + "vertices": ["5O4d", "S34R", "gPMU", "AuqO"], + "texture": 0 + }, + "dnWXIx0A": { + "uv": { + "P9yc": [5.1547, 32], + "AuqO": [4, 32], + "5O4d": [4.5773, 33] + }, + "vertices": ["5O4d", "AuqO", "P9yc"], + "texture": 0 + }, + "hpoEQbnj": { + "uv": { + "zALn": [8, 39.59998], + "uVfc": [8, 38], + "H3Hz": [7, 38], + "XrMY": [7, 39.59998] + }, + "vertices": ["XrMY", "H3Hz", "uVfc", "zALn"], + "texture": 0 + }, + "KGaXeg2R": { + "uv": { + "3QLG": [8, 39.59998], + "D3Zi": [8, 38], + "uVfc": [7, 38], + "zALn": [7, 39.59998] + }, + "vertices": ["zALn", "uVfc", "D3Zi", "3QLG"], + "texture": 0 + }, + "PZum2TUC": { + "uv": { + "1O7X": [8, 39.59998], + "S34R": [8, 38], + "D3Zi": [7, 38], + "3QLG": [7, 39.59998] + }, + "vertices": ["3QLG", "D3Zi", "S34R", "1O7X"], + "texture": 0 + }, + "Hm45mM5A": { + "uv": { + "YkcP": [8, 39.59998], + "gPMU": [8, 38], + "S34R": [7, 38], + "1O7X": [7, 39.59998] + }, + "vertices": ["1O7X", "S34R", "gPMU", "YkcP"], + "texture": 0 + }, + "gGfMirYG": { + "uv": { + "9bCg": [8, 39.59998], + "JTfr": [8, 38], + "gPMU": [7, 38], + "YkcP": [7, 39.59998] + }, + "vertices": ["YkcP", "gPMU", "JTfr", "9bCg"], + "texture": 0 + }, + "RPPTuXb3": { + "uv": { + "XrMY": [8, 39.59998], + "H3Hz": [8, 38], + "JTfr": [7, 38], + "9bCg": [7, 39.59998] + }, + "vertices": ["9bCg", "JTfr", "H3Hz", "XrMY"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "fa408760-0e21-5c7c-f5f2-34ce3493f337" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.98481, 6, -0.17365], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "hKiQ": [-0.75, -5.5, 0.5], + "P9yc": [-0.75, 3, 0.5], + "1O7X": [-1.39012, -4.17391, 2.3], + "AuqO": [-1.55815, 3, 2.3], + "3QLG": [-2.03023, -4.17391, 0.5], + "SQtr": [-2.8547, 3, 0.5], + "zALn": [-1.39012, -4.17391, -1.3], + "XwTk": [-1.80235, 3, -1.3], + "XrMY": [-0.10988, -4.17391, -1.3], + "SxBA": [0.30235, 3, -1.3], + "9bCg": [0.53023, -4.17391, 0.5], + "xfU2": [1.3547, 3, 0.5], + "YkcP": [-0.10988, -4.17391, 2.3], + "5O4d": [0.05815, 3, 2.3], + "H3Hz": [0.30235, -0.587, -1.3], + "uVfc": [-1.80235, -0.587, -1.3], + "D3Zi": [-2.8547, -0.587, 0.5], + "S34R": [-1.55815, -0.587, 2.3], + "gPMU": [0.05815, -0.587, 2.3], + "JTfr": [1.3547, -0.587, 0.5] + }, + "faces": { + "YiBnE33q": { + "uv": { + "hKiQ": [7, 40], + "3QLG": [8.1547, 40], + "1O7X": [7.5774, 39] + }, + "vertices": ["1O7X", "3QLG", "hKiQ"], + "texture": 0 + }, + "amXAQ62A": { + "uv": { + "SQtr": [3.1548, 33], + "S34R": [0, 34.50002], + "AuqO": [0, 33], + "D3Zi": [3.1548, 34.50002] + }, + "vertices": ["D3Zi", "AuqO", "S34R", "SQtr"], + "texture": 0 + }, + "pmtHFukt": { + "uv": { + "P9yc": [5.1547, 32], + "AuqO": [4, 32], + "SQtr": [4.5773, 33] + }, + "vertices": ["SQtr", "AuqO", "P9yc"], + "texture": 0 + }, + "dbwNvdVu": { + "uv": { + "hKiQ": [7, 39], + "zALn": [7.5774, 40], + "3QLG": [8.1547, 39] + }, + "vertices": ["3QLG", "zALn", "hKiQ"], + "texture": 0 + }, + "KLi0aNFD": { + "uv": { + "XwTk": [3.1548, 33], + "D3Zi": [0, 34.50002], + "SQtr": [0, 33], + "uVfc": [3.1548, 34.50002] + }, + "vertices": ["uVfc", "SQtr", "D3Zi", "XwTk"], + "texture": 0 + }, + "1nnlJSX0": { + "uv": { + "P9yc": [5.1547, 32], + "SQtr": [4, 32], + "XwTk": [4.5773, 33] + }, + "vertices": ["XwTk", "SQtr", "P9yc"], + "texture": 0 + }, + "xyppXCm4": { + "uv": { + "hKiQ": [7.5774, 39], + "XrMY": [7, 40], + "zALn": [8.1548, 40] + }, + "vertices": ["zALn", "XrMY", "hKiQ"], + "texture": 0 + }, + "TlijztB8": { + "uv": { + "SxBA": [3.1548, 33], + "uVfc": [0, 34.50002], + "XwTk": [0, 33], + "H3Hz": [3.1548, 34.50002] + }, + "vertices": ["H3Hz", "XwTk", "uVfc", "SxBA"], + "texture": 0 + }, + "iSo9y4Ks": { + "uv": { + "P9yc": [5.1547, 32], + "XwTk": [4, 32], + "SxBA": [4.5773, 33] + }, + "vertices": ["SxBA", "XwTk", "P9yc"], + "texture": 0 + }, + "802o7kue": { + "uv": { + "hKiQ": [8.1547, 39], + "9bCg": [7, 39], + "XrMY": [7.5773, 40] + }, + "vertices": ["XrMY", "9bCg", "hKiQ"], + "texture": 0 + }, + "TZySRbzl": { + "uv": { + "xfU2": [3.1548, 33], + "H3Hz": [0, 34.50002], + "SxBA": [0, 33], + "JTfr": [3.1548, 34.50002] + }, + "vertices": ["JTfr", "SxBA", "H3Hz", "xfU2"], + "texture": 0 + }, + "VqxZUv3r": { + "uv": { + "P9yc": [5.1547, 32], + "SxBA": [4, 32], + "xfU2": [4.5773, 33] + }, + "vertices": ["xfU2", "SxBA", "P9yc"], + "texture": 0 + }, + "VZ0J1wkW": { + "uv": { + "hKiQ": [8.1547, 40], + "YkcP": [7.5773, 39], + "9bCg": [7, 40] + }, + "vertices": ["9bCg", "YkcP", "hKiQ"], + "texture": 0 + }, + "5JhxGbwK": { + "uv": { + "5O4d": [3.1548, 33], + "JTfr": [0, 34.50002], + "xfU2": [0, 33], + "gPMU": [3.1548, 34.50002] + }, + "vertices": ["gPMU", "xfU2", "JTfr", "5O4d"], + "texture": 0 + }, + "fjNguha9": { + "uv": { + "P9yc": [5.1547, 32], + "xfU2": [4, 32], + "5O4d": [4.5773, 33] + }, + "vertices": ["5O4d", "xfU2", "P9yc"], + "texture": 0 + }, + "gmvsrhwQ": { + "uv": { + "hKiQ": [7.5774, 40], + "1O7X": [8.1548, 39], + "YkcP": [7, 39] + }, + "vertices": ["YkcP", "1O7X", "hKiQ"], + "texture": 0 + }, + "vDOAOCtP": { + "uv": { + "AuqO": [3.1548, 33], + "gPMU": [0, 34.50002], + "5O4d": [0, 33], + "S34R": [3.1548, 34.50002] + }, + "vertices": ["S34R", "5O4d", "gPMU", "AuqO"], + "texture": 0 + }, + "dnWXIx0A": { + "uv": { + "P9yc": [5.1547, 32], + "5O4d": [4, 32], + "AuqO": [4.5773, 33] + }, + "vertices": ["AuqO", "5O4d", "P9yc"], + "texture": 0 + }, + "hpoEQbnj": { + "uv": { + "zALn": [7, 39.59998], + "uVfc": [7, 38], + "XrMY": [8, 39.59998], + "H3Hz": [8, 38] + }, + "vertices": ["H3Hz", "XrMY", "uVfc", "zALn"], + "texture": 0 + }, + "KGaXeg2R": { + "uv": { + "3QLG": [7, 39.59998], + "D3Zi": [7, 38], + "zALn": [8, 39.59998], + "uVfc": [8, 38] + }, + "vertices": ["uVfc", "zALn", "D3Zi", "3QLG"], + "texture": 0 + }, + "PZum2TUC": { + "uv": { + "1O7X": [7, 39.59998], + "S34R": [7, 38], + "3QLG": [8, 39.59998], + "D3Zi": [8, 38] + }, + "vertices": ["D3Zi", "3QLG", "S34R", "1O7X"], + "texture": 0 + }, + "Hm45mM5A": { + "uv": { + "YkcP": [7, 39.59998], + "gPMU": [7, 38], + "1O7X": [8, 39.59998], + "S34R": [8, 38] + }, + "vertices": ["S34R", "1O7X", "gPMU", "YkcP"], + "texture": 0 + }, + "gGfMirYG": { + "uv": { + "9bCg": [7, 39.59998], + "JTfr": [7, 38], + "YkcP": [8, 39.59998], + "gPMU": [8, 38] + }, + "vertices": ["gPMU", "YkcP", "JTfr", "9bCg"], + "texture": 0 + }, + "RPPTuXb3": { + "uv": { + "XrMY": [7, 39.59998], + "H3Hz": [7, 38], + "9bCg": [8, 39.59998], + "JTfr": [8, 38] + }, + "vertices": ["JTfr", "9bCg", "H3Hz", "XrMY"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "03a7b0ca-adbc-e921-e466-02042f51f0fb" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-5.6, 14.3, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "uXX4": [-0.04894, -1.2, 0.15], + "oTYm": [-0.04894, 6.5, 0.15], + "xQ7R": [0.69917, -0.2375, 1.33333], + "KviP": [1.02311, 5.5375, 1.925], + "ZAwo": [0.7994, -0.2375, 0.15], + "jvUa": [2.09517, 5.5375, 0.15], + "ZlND": [0.69917, -0.2375, -1.03333], + "0viC": [1.02311, 5.5375, -1.625], + "0sOe": [-0.79706, -0.2375, -1.03333], + "bbcG": [-0.47311, 5.5375, -1.625], + "EHEa": [-1.54517, -0.2375, 0.15], + "Hf1h": [-1.54517, 5.5375, 0.15], + "qpo9": [-0.79706, -0.2375, 1.33333], + "AFOM": [-0.47311, 5.5375, 1.925] + }, + "faces": { + "lobLHojZ": { + "uv": { + "uXX4": [0, 3], + "xQ7R": [0.5774, 2], + "ZAwo": [1.1547, 3] + }, + "vertices": ["ZAwo", "xQ7R", "uXX4"], + "texture": 0 + }, + "2wrsF9PS": { + "uv": { + "KviP": [0, 0], + "jvUa": [1.1548, 0], + "ZAwo": [1.1548, 6], + "xQ7R": [0, 6] + }, + "vertices": ["xQ7R", "ZAwo", "jvUa", "KviP"], + "texture": 0 + }, + "MLElNaEL": { + "uv": { + "oTYm": [3, 0], + "jvUa": [4.1547, 0], + "KviP": [3.5774, 1] + }, + "vertices": ["KviP", "jvUa", "oTYm"], + "texture": 0 + }, + "NHGFWn7K": { + "uv": { + "uXX4": [0, 2], + "ZAwo": [1.1547, 2], + "ZlND": [0.5774, 3] + }, + "vertices": ["ZlND", "ZAwo", "uXX4"], + "texture": 0 + }, + "8cc6hOOR": { + "uv": { + "jvUa": [0, 0], + "0viC": [1.1548, 0], + "ZlND": [1.1548, 6], + "ZAwo": [0, 6] + }, + "vertices": ["ZAwo", "ZlND", "0viC", "jvUa"], + "texture": 0 + }, + "SrTdhUln": { + "uv": { + "oTYm": [3, 1], + "0viC": [3.5774, 0], + "jvUa": [4.1547, 1] + }, + "vertices": ["jvUa", "0viC", "oTYm"], + "texture": 0 + }, + "9UtXiLWH": { + "uv": { + "uXX4": [0.5774, 2], + "ZlND": [1.1548, 3], + "0sOe": [0, 3] + }, + "vertices": ["0sOe", "ZlND", "uXX4"], + "texture": 0 + }, + "qGP3hNLj": { + "uv": { + "0viC": [0, 0], + "bbcG": [1.1548, 0], + "0sOe": [1.1548, 6], + "ZlND": [0, 6] + }, + "vertices": ["ZlND", "0sOe", "bbcG", "0viC"], + "texture": 0 + }, + "1B3EpcYx": { + "uv": { + "oTYm": [3.5774, 1], + "bbcG": [3, 0], + "0viC": [4.1548, 0] + }, + "vertices": ["0viC", "bbcG", "oTYm"], + "texture": 0 + }, + "6tckQVaJ": { + "uv": { + "uXX4": [1.1547, 2], + "0sOe": [0.5773, 3], + "EHEa": [0, 2] + }, + "vertices": ["EHEa", "0sOe", "uXX4"], + "texture": 0 + }, + "2WWrRUBm": { + "uv": { + "bbcG": [0, 0], + "Hf1h": [1.1548, 0], + "EHEa": [1.1548, 6], + "0sOe": [0, 6] + }, + "vertices": ["0sOe", "EHEa", "Hf1h", "bbcG"], + "texture": 0 + }, + "gSUoLh4J": { + "uv": { + "oTYm": [3.5774, 1], + "Hf1h": [3, 0], + "bbcG": [4.1548, 0] + }, + "vertices": ["bbcG", "Hf1h", "oTYm"], + "texture": 0 + }, + "Gd1XafzL": { + "uv": { + "uXX4": [0.5774, 3], + "EHEa": [0, 2], + "qpo9": [1.1548, 2] + }, + "vertices": ["qpo9", "EHEa", "uXX4"], + "texture": 0 + }, + "4eJ8kTWL": { + "uv": { + "Hf1h": [0, 0], + "AFOM": [1.1548, 0], + "qpo9": [1.1548, 6], + "EHEa": [0, 6] + }, + "vertices": ["EHEa", "qpo9", "AFOM", "Hf1h"], + "texture": 0 + }, + "EiJgXwpU": { + "uv": { + "oTYm": [3.5774, 1], + "AFOM": [3, 0], + "Hf1h": [4.1548, 0] + }, + "vertices": ["Hf1h", "AFOM", "oTYm"], + "texture": 0 + }, + "U1EMdNou": { + "uv": { + "uXX4": [0.5774, 3], + "qpo9": [0, 2], + "xQ7R": [1.1548, 2] + }, + "vertices": ["xQ7R", "qpo9", "uXX4"], + "texture": 0 + }, + "JaWe1p8r": { + "uv": { + "AFOM": [0, 0], + "KviP": [1.1548, 0], + "xQ7R": [1.1548, 6], + "qpo9": [0, 6] + }, + "vertices": ["qpo9", "xQ7R", "KviP", "AFOM"], + "texture": 0 + }, + "1NM4KFOU": { + "uv": { + "oTYm": [3.5774, 1], + "KviP": [3, 0], + "AFOM": [4.1548, 0] + }, + "vertices": ["AFOM", "KviP", "oTYm"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "fcd91531-57f5-3dad-6808-1c446c0006ae" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-2.215, 12.12, 3.255], + "to": [1.215, 23.88, 3.745], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [3.175, 12.61, 3.745], + "faces": { + "north": { + "uv": [0.5, 0.5, 15.5, 15.5], + "rotation": 90 + }, + "east": { + "uv": [0, 0, 16, 0], + "rotation": 270 + }, + "south": { + "uv": [15.5, 0.5, 0.5, 15.5], + "rotation": 270 + }, + "west": { + "uv": [16, 1.5, 0, 2], + "rotation": 270 + }, + "up": { + "uv": [0, 0, 0.5, 16], + "rotation": 270 + }, + "down": { + "uv": [15, 1, 15.5, 16], + "rotation": 270 + } + }, + "type": "cube", + "uuid": "7d4c2b23-2316-988a-596c-3e0bb1650e3e" + }, + { + "name": "0", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-3, 11, 7], + "to": [3, 15, 8], + "autouv": 0, + "color": 0, + "visibility": false, + "inflate": 0.02, + "origin": [0, 0, 0], + "faces": { + "north": { + "uv": [59, 1, 65, 5], + "texture": 0 + }, + "east": { + "uv": [58, 1, 59, 5], + "texture": 0 + }, + "south": { + "uv": [66, 1, 72, 5], + "texture": 0 + }, + "west": { + "uv": [65, 1, 66, 5], + "texture": 0 + }, + "up": { + "uv": [65, 1, 59, 0], + "texture": 0 + }, + "down": { + "uv": [71, 0, 65, 1], + "texture": 0 + } + }, + "type": "cube", + "uuid": "b0af1020-bbea-a94e-5f6f-7c91b0f9600e" + }, + { + "name": "1", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-4, 11, 2], + "to": [4, 24, 7], + "autouv": 0, + "color": 0, + "visibility": false, + "inflate": 0.02, + "origin": [0, 0, 0], + "faces": { + "north": { + "uv": [37, 5, 45, 18], + "texture": 0 + }, + "east": { + "uv": [32, 5, 37, 18], + "texture": 0 + }, + "south": { + "uv": [50, 5, 58, 18], + "texture": 0 + }, + "west": { + "uv": [45, 5, 50, 18], + "texture": 0 + }, + "up": { + "uv": [45, 5, 37, 0], + "texture": 0 + }, + "down": { + "uv": [53, 0, 45, 5], + "texture": 0 + } + }, + "type": "cube", + "uuid": "c93153b0-e330-bbf0-0bbe-7fe6259e1dba" + }, + { + "name": "3", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [4, 11, 2], + "to": [5, 15, 7], + "autouv": 0, + "color": 0, + "visibility": false, + "inflate": 0.02, + "origin": [0, 0, 0], + "faces": { + "north": { + "uv": [62, 27, 63, 31], + "texture": 0 + }, + "east": { + "uv": [68, 27, 63, 31], + "texture": 0 + }, + "south": { + "uv": [68, 27, 69, 31], + "texture": 0 + }, + "west": { + "uv": [63, 27, 68, 31], + "texture": 0 + }, + "up": { + "uv": [63, 27, 62, 22], + "texture": 0 + }, + "down": { + "uv": [64, 22, 63, 27], + "texture": 0 + } + }, + "type": "cube", + "uuid": "5fb9f1e5-1b84-51b3-b51a-3c953dcd675a" + }, + { + "name": "4", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-5, 11, 2], + "to": [-4, 15, 7], + "autouv": 0, + "color": 0, + "visibility": false, + "inflate": 0.02, + "origin": [0, 0, 0], + "faces": { + "north": { + "uv": [62, 27, 63, 31], + "texture": 0 + }, + "east": { + "uv": [57, 27, 62, 31], + "texture": 0 + }, + "south": { + "uv": [68, 27, 69, 31], + "texture": 0 + }, + "west": { + "uv": [63, 27, 68, 31], + "texture": 0 + }, + "up": { + "uv": [63, 27, 62, 22], + "texture": 0 + }, + "down": { + "uv": [64, 22, 63, 27], + "texture": 0 + } + }, + "type": "cube", + "uuid": "2d5125c4-c284-9e0f-770f-ea0adb794b39" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-2.215, 12.12, 3.304], + "to": [1.215, 23.88, 3.696], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [3.175, 12.61, 3.745], + "faces": { + "north": { + "uv": [0.5, 0.5, 15.5, 15.5], + "rotation": 90 + }, + "east": { + "uv": [0, 0, 16, 0], + "rotation": 270 + }, + "south": { + "uv": [15.5, 0.5, 0.5, 15.5], + "rotation": 270 + }, + "west": { + "uv": [16, 1.5, 0, 2], + "rotation": 270 + }, + "up": { + "uv": [0, 0, 0.5, 16], + "rotation": 270 + }, + "down": { + "uv": [15, 1, 15.5, 16], + "rotation": 270 + } + }, + "type": "cube", + "uuid": "75bea1d5-87bd-fc64-240b-0c1cb80366a4" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-2.215, 12.12, 3.353], + "to": [1.215, 23.88, 3.647], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [3.175, 12.61, 3.745], + "faces": { + "north": { + "uv": [0.5, 0.5, 15.5, 15.5], + "rotation": 90 + }, + "east": { + "uv": [0, 0, 16, 0], + "rotation": 270 + }, + "south": { + "uv": [15.5, 0.5, 0.5, 15.5], + "rotation": 270 + }, + "west": { + "uv": [16, 1.5, 0, 2], + "rotation": 270 + }, + "up": { + "uv": [0, 0, 0.5, 16], + "rotation": 270 + }, + "down": { + "uv": [15, 1, 15.5, 16], + "rotation": 270 + } + }, + "type": "cube", + "uuid": "978245c3-4a24-892e-168f-731f704c1545" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-2.215, 12.12, 3.402], + "to": [1.215, 23.88, 3.598], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [3.175, 12.61, 3.745], + "faces": { + "north": { + "uv": [0.5, 0.5, 15.5, 15.5], + "rotation": 90 + }, + "east": { + "uv": [0, 0, 16, 0], + "rotation": 270 + }, + "south": { + "uv": [15.5, 0.5, 0.5, 15.5], + "rotation": 270 + }, + "west": { + "uv": [16, 1.5, 0, 2], + "rotation": 270 + }, + "up": { + "uv": [0, 0, 0.5, 16], + "rotation": 270 + }, + "down": { + "uv": [15, 1, 15.5, 16], + "rotation": 270 + } + }, + "type": "cube", + "uuid": "977bc890-568a-0428-0f50-2d6a172167f2" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-2.215, 12.12, 3.5], + "to": [1.215, 23.88, 3.5], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [3.175, 12.61, 3.745], + "faces": { + "north": { + "uv": [0.5, 0.5, 15.5, 15.5], + "rotation": 90 + }, + "east": { + "uv": [0, 0, 16, 0], + "rotation": 270 + }, + "south": { + "uv": [15.5, 0.5, 0.5, 15.5], + "rotation": 270 + }, + "west": { + "uv": [16, 1.5, 0, 2], + "rotation": 270 + }, + "up": { + "uv": [0, 0, 0.5, 16], + "rotation": 270 + }, + "down": { + "uv": [15, 1, 15.5, 16], + "rotation": 270 + } + }, + "type": "cube", + "uuid": "78b5f951-2049-2a7f-4da7-f45b345ba784" + }, + { + "name": "0", + "color": 8, + "origin": [0, 0, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "orQI": [3.52, 24.82, 2.02], + "2RX7": [4.02, 24.82, -1.42], + "8Q19": [3.52, 11.98, 2.02], + "Ct6r": [4.52, 11.98, -0.42], + "A1ZO": [-3.52, 24.82, 2.02], + "ytVb": [-4.02, 24.82, -1.42], + "rWZJ": [-3.52, 11.98, 2.02], + "HGBB": [-4.52, 11.98, -0.42], + "Bs2U": [-4.52, 16.26, -1.92], + "uJOc": [4.52, 16.26, -1.92], + "AUDe": [-4.52, 20.54, -2.92], + "99Mz": [4.52, 20.54, -2.92], + "ReiI": [3.52, 16.26, 2.02], + "Xheb": [3.52, 20.54, 2.02], + "I9sB": [-3.52, 16.26, 2.02], + "oaKG": [-3.52, 20.54, 2.02] + }, + "faces": { + "FbDLMiFR": { + "uv": { + "2RX7": [36, 22], + "Xheb": [32, 26], + "99Mz": [36, 26], + "orQI": [32, 22] + }, + "vertices": ["orQI", "99Mz", "Xheb", "2RX7"], + "texture": 0 + }, + "2cpNDE08": { + "uv": { + "A1ZO": [48, 22], + "AUDe": [44, 26], + "oaKG": [48, 26], + "ytVb": [44, 22] + }, + "vertices": ["ytVb", "oaKG", "AUDe", "A1ZO"], + "texture": 0 + }, + "mMaUjR9Q": { + "uv": { + "A1ZO": [44, 18], + "orQI": [36, 18], + "ytVb": [44, 22], + "2RX7": [36, 22] + }, + "vertices": ["2RX7", "ytVb", "orQI", "A1ZO"], + "texture": 0 + }, + "zGF8RV8b": { + "uv": { + "HGBB": [52, 22], + "Ct6r": [44, 22], + "rWZJ": [52, 18], + "8Q19": [44, 18] + }, + "vertices": ["8Q19", "rWZJ", "Ct6r", "HGBB"], + "texture": 0 + }, + "3xQEfTTR": { + "uv": { + "orQI": [56, 22], + "oaKG": [48, 26], + "Xheb": [56, 26], + "A1ZO": [48, 22] + }, + "vertices": ["A1ZO", "Xheb", "oaKG", "orQI"], + "texture": 0 + }, + "t8GMSNH4": { + "uv": { + "ytVb": [44, 22], + "99Mz": [36, 26], + "AUDe": [44, 26], + "2RX7": [36, 22] + }, + "vertices": ["2RX7", "AUDe", "99Mz", "ytVb"], + "texture": 0 + }, + "kLNqS5dG": { + "uv": { + "Ct6r": [36, 34], + "uJOc": [36, 30], + "Bs2U": [44, 30], + "HGBB": [44, 34] + }, + "vertices": ["HGBB", "Bs2U", "uJOc", "Ct6r"], + "texture": 0 + }, + "qi6PXF8G": { + "uv": { + "uJOc": [36, 30], + "99Mz": [36, 26], + "AUDe": [44, 26], + "Bs2U": [44, 30] + }, + "vertices": ["Bs2U", "AUDe", "99Mz", "uJOc"], + "texture": 0 + }, + "dtTrYxCa": { + "uv": { + "8Q19": [32, 34], + "ReiI": [32, 30], + "uJOc": [36, 30], + "Ct6r": [36, 34] + }, + "vertices": ["Ct6r", "uJOc", "ReiI", "8Q19"], + "texture": 0 + }, + "Wl6Yfycu": { + "uv": { + "ReiI": [32, 30], + "Xheb": [32, 26], + "99Mz": [36, 26], + "uJOc": [36, 30] + }, + "vertices": ["uJOc", "99Mz", "Xheb", "ReiI"], + "texture": 0 + }, + "uoMUbN6U": { + "uv": { + "rWZJ": [48, 34], + "I9sB": [48, 30], + "ReiI": [56, 30], + "8Q19": [56, 34] + }, + "vertices": ["8Q19", "ReiI", "I9sB", "rWZJ"], + "texture": 0 + }, + "aW3JUbfM": { + "uv": { + "I9sB": [48, 30], + "oaKG": [48, 26], + "Xheb": [56, 26], + "ReiI": [56, 30] + }, + "vertices": ["ReiI", "Xheb", "oaKG", "I9sB"], + "texture": 0 + }, + "58fjDxIN": { + "uv": { + "HGBB": [44, 34], + "Bs2U": [44, 30], + "I9sB": [48, 30], + "rWZJ": [48, 34] + }, + "vertices": ["rWZJ", "I9sB", "Bs2U", "HGBB"], + "texture": 0 + }, + "G0WfAWPN": { + "uv": { + "Bs2U": [44, 30], + "AUDe": [44, 26], + "oaKG": [48, 26], + "I9sB": [48, 30] + }, + "vertices": ["I9sB", "oaKG", "AUDe", "Bs2U"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "03eddfbb-4ae9-02f0-6b4d-5e1a27b8a9d9" + }, + { + "name": "happy", + "color": 8, + "origin": [0, 28.05, -1], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "zyRr": [3.44889, 2.4, -0.39411], + "ooTR": [3.44889, 0.3, -0.39411], + "73OG": [-3.39778, 2.4, -0.39411], + "HXoH": [-3.39778, 0.3, -0.39411], + "fJPg": [-0.06422, 0.3, -0.39411], + "ujQW": [-0.06422, 2.4, -0.39411] + }, + "faces": { + "ygbaDk3h": { + "uv": { + "HXoH": [13, 16], + "ujQW": [21, 10], + "fJPg": [21, 16], + "73OG": [13, 10] + }, + "vertices": ["73OG", "fJPg", "ujQW", "HXoH"], + "texture": 0 + }, + "QOPlDywE": { + "uv": { + "zyRr": [13, 10], + "ujQW": [21, 10], + "fJPg": [21, 16], + "ooTR": [13, 16] + }, + "vertices": ["ooTR", "fJPg", "ujQW", "zyRr"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "e04237d4-85ad-3a6b-4a89-a2115d5f67fc" + }, + { + "name": "concerned", + "color": 8, + "origin": [0, 28.05, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "zyRr": [3.44889, 2.4, -0.39411], + "ooTR": [3.44889, 0.3, -0.39411], + "73OG": [-3.39778, 2.4, -0.39411], + "HXoH": [-3.39778, 0.3, -0.39411], + "fJPg": [-0.06422, 0.3, -0.39411], + "ujQW": [-0.06422, 2.4, -0.39411] + }, + "faces": { + "ygbaDk3h": { + "uv": { + "HXoH": [21, 16], + "ujQW": [29, 10], + "fJPg": [29, 16], + "73OG": [21, 10] + }, + "vertices": ["73OG", "fJPg", "ujQW", "HXoH"], + "texture": 0 + }, + "QOPlDywE": { + "uv": { + "zyRr": [21, 10], + "ujQW": [29, 10], + "fJPg": [29, 16], + "ooTR": [21, 16] + }, + "vertices": ["ooTR", "fJPg", "ujQW", "zyRr"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "a52ffc8b-11fe-e05a-f2a3-53ad302c1496" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 24, 2], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "ppnZ": [0, 1, -0.20896], + "EAQP": [0, 8, -0.11171], + "TV9o": [1.26853, 1.77778, 1.44414], + "n3UK": [1.44975, 7.22222, 2.22207], + "xI8D": [3.0625, 1.77778, 0.52988], + "If9H": [3.5, 7.22222, 1.1772], + "NlFz": [3.0625, 1.77778, -1.33676], + "lH3O": [3.0625, 7.22222, -1.40063], + "BlXc": [1.26853, 1.06065, -3.22819], + "j3zU": [1.44975, 7.22222, -2.83447], + "8Vaz": [1.44975, 3.13473, -4.00612], + "2fMz": [1.44975, 4.37037, -3.22343], + "DFnu": [3.0625, 3.46296, -1.40063], + "ZKz3": [3.0625, 4.37037, -1.40063], + "9wlZ": [3.5, 3.46296, 1.1772], + "HeA6": [3.5, 5.14815, 1.1772], + "ETfb": [1.44975, 3.46296, 3], + "EqZH": [1.44975, 5.92593, 3], + "yF3x": [-1.26853, 1.77778, 1.44414], + "lXqu": [-1.44975, 7.22222, 2.22207], + "C6cU": [-3.0625, 1.77778, 0.52988], + "qc0L": [-3.5, 7.22222, 1.1772], + "HCVy": [-3.0625, 1.77778, -1.33676], + "dgCx": [-3.0625, 7.22222, -1.40063], + "a6Ti": [-1.26853, 1.06065, -3.22819], + "2NA1": [-1.44975, 7.22222, -2.83447], + "5WyA": [-1.44975, 3.13473, -4.00612], + "FBal": [-1.44975, 4.37037, -3.22343], + "XPZQ": [-3.0625, 3.46296, -1.40063], + "tTFb": [-3.0625, 4.37037, -1.40063], + "A49p": [-3.5, 3.46296, 1.1772], + "uuLd": [-3.5, 5.14815, 1.1772], + "Jfz9": [-1.44975, 3.46296, 3], + "ZHiN": [-1.44975, 5.92593, 3] + }, + "faces": { + "SGOtJOVi": { + "uv": { + "ppnZ": [0, 5.40583], + "TV9o": [5.60717, 2], + "xI8D": [7.92959, 5.40583] + }, + "vertices": ["xI8D", "TV9o", "ppnZ"], + "texture": 0 + }, + "qybQHbiM": { + "uv": { + "If9H": [6.06919, 2], + "EqZH": [0, 4.96667], + "HeA6": [6.06919, 4.96667], + "n3UK": [0, 2] + }, + "vertices": ["n3UK", "HeA6", "EqZH", "If9H"], + "texture": 0 + }, + "OTX97j14": { + "uv": { + "EAQP": [0, 2], + "If9H": [5.60695, 5.40596], + "n3UK": [0, 6.81666] + }, + "vertices": ["n3UK", "If9H", "EAQP"], + "texture": 0 + }, + "NeEi2vFZ": { + "uv": { + "ppnZ": [0, 3.8433], + "xI8D": [7.32595, 2], + "NlFz": [7.32595, 5.6866] + }, + "vertices": ["NlFz", "xI8D", "ppnZ"], + "texture": 0 + }, + "WedP020P": { + "uv": { + "lH3O": [6.06919, 2], + "HeA6": [0, 4.96667], + "ZKz3": [6.06919, 4.96667], + "If9H": [0, 2] + }, + "vertices": ["If9H", "ZKz3", "HeA6", "lH3O"], + "texture": 0 + }, + "BYsI7aC0": { + "uv": { + "EAQP": [0, 3.8433], + "lH3O": [7.32595, 2], + "If9H": [7.32595, 5.6866] + }, + "vertices": ["If9H", "lH3O", "EAQP"], + "texture": 0 + }, + "WWTxBVtP": { + "uv": { + "ppnZ": [0, 2], + "NlFz": [5.60695, 5.40596], + "BlXc": [0, 6.81666] + }, + "vertices": ["BlXc", "NlFz", "ppnZ"], + "texture": 0 + }, + "m9E4bexa": { + "uv": { + "j3zU": [6.06919, 2], + "ZKz3": [0, 4.96667], + "2fMz": [6.06919, 4.96667], + "lH3O": [0, 2] + }, + "vertices": ["lH3O", "2fMz", "ZKz3", "j3zU"], + "texture": 0 + }, + "1K3IilLx": { + "uv": { + "EAQP": [0, 5.40583], + "j3zU": [5.60717, 2], + "lH3O": [7.92959, 5.40583] + }, + "vertices": ["lH3O", "j3zU", "EAQP"], + "texture": 0 + }, + "gkvqNXSk": { + "uv": { + "ppnZ": [3.03459, 2], + "BlXc": [6.06919, 6.45], + "a6Ti": [0, 6.45] + }, + "vertices": ["a6Ti", "BlXc", "ppnZ"], + "texture": 0 + }, + "WZA3BCX4": { + "uv": { + "2NA1": [6.06919, 2], + "2fMz": [0, 4.96667], + "FBal": [6.06919, 4.96667], + "j3zU": [0, 2] + }, + "vertices": ["j3zU", "FBal", "2fMz", "2NA1"], + "texture": 0 + }, + "UfluJ6be": { + "uv": { + "EAQP": [3.03459, 6.45], + "2NA1": [0, 2], + "j3zU": [6.06919, 2] + }, + "vertices": ["j3zU", "2NA1", "EAQP"], + "texture": 0 + }, + "mCNrpYIj": { + "uv": { + "ppnZ": [3.03459, 6.45], + "yF3x": [0, 2], + "TV9o": [6.06919, 2] + }, + "vertices": ["TV9o", "yF3x", "ppnZ"], + "texture": 0 + }, + "taIZthpZ": { + "uv": { + "n3UK": [6.06919, 2], + "ZHiN": [0, 4.96667], + "EqZH": [6.06919, 4.96667], + "lXqu": [0, 2] + }, + "vertices": ["lXqu", "EqZH", "ZHiN", "n3UK"], + "texture": 0 + }, + "eHr3thlr": { + "uv": { + "EAQP": [3.03459, 2], + "n3UK": [6.06919, 6.45], + "lXqu": [0, 6.45] + }, + "vertices": ["lXqu", "n3UK", "EAQP"], + "texture": 0 + }, + "mOGzqJIk": { + "uv": { + "BlXc": [8, 8], + "8Vaz": [8, 4], + "5WyA": [13, 4], + "a6Ti": [13, 8] + }, + "vertices": ["a6Ti", "5WyA", "8Vaz", "BlXc"], + "texture": 0 + }, + "IspizuX0": { + "uv": { + "8Vaz": [0, 7.93333], + "2fMz": [0, 4.96667], + "FBal": [6.06919, 4.96667], + "5WyA": [6.06919, 7.93333] + }, + "vertices": ["5WyA", "FBal", "2fMz", "8Vaz"], + "texture": 0 + }, + "4elRqR2m": { + "uv": { + "NlFz": [0, 4.96667], + "DFnu": [0, 2], + "8Vaz": [6.06919, 2], + "BlXc": [6.06919, 4.96667] + }, + "vertices": ["BlXc", "8Vaz", "DFnu", "NlFz"], + "texture": 0 + }, + "Pro0QCF0": { + "uv": { + "DFnu": [0, 7.93333], + "ZKz3": [0, 4.96667], + "2fMz": [6.06919, 4.96667], + "8Vaz": [6.06919, 7.93333] + }, + "vertices": ["8Vaz", "2fMz", "ZKz3", "DFnu"], + "texture": 0 + }, + "0wLusB14": { + "uv": { + "xI8D": [0, 4.96667], + "9wlZ": [0, 2], + "DFnu": [6.06919, 2], + "NlFz": [6.06919, 4.96667] + }, + "vertices": ["NlFz", "DFnu", "9wlZ", "xI8D"], + "texture": 0 + }, + "wGe6CeFl": { + "uv": { + "9wlZ": [0, 7.93333], + "HeA6": [0, 4.96667], + "ZKz3": [6.06919, 4.96667], + "DFnu": [6.06919, 7.93333] + }, + "vertices": ["DFnu", "ZKz3", "HeA6", "9wlZ"], + "texture": 0 + }, + "ZCt7nfD8": { + "uv": { + "TV9o": [0, 4.96667], + "ETfb": [0, 2], + "9wlZ": [6.06919, 2], + "xI8D": [6.06919, 4.96667] + }, + "vertices": ["xI8D", "9wlZ", "ETfb", "TV9o"], + "texture": 0 + }, + "yq9buZK2": { + "uv": { + "ETfb": [0, 7.93333], + "EqZH": [0, 4.96667], + "HeA6": [6.06919, 4.96667], + "9wlZ": [6.06919, 7.93333] + }, + "vertices": ["9wlZ", "HeA6", "EqZH", "ETfb"], + "texture": 0 + }, + "3RmOj4jX": { + "uv": { + "yF3x": [0, 4.96667], + "Jfz9": [0, 2], + "ETfb": [6.06919, 2], + "TV9o": [6.06919, 4.96667] + }, + "vertices": ["TV9o", "ETfb", "Jfz9", "yF3x"], + "texture": 0 + }, + "5QqsYfQ8": { + "uv": { + "Jfz9": [0, 7.93333], + "ZHiN": [0, 4.96667], + "EqZH": [6.06919, 4.96667], + "ETfb": [6.06919, 7.93333] + }, + "vertices": ["ETfb", "EqZH", "ZHiN", "Jfz9"], + "texture": 0 + }, + "Fg9vJv4N": { + "uv": { + "ppnZ": [0, 5.40583], + "C6cU": [7.92959, 5.40583], + "yF3x": [5.60717, 2] + }, + "vertices": ["yF3x", "C6cU", "ppnZ"], + "texture": 0 + }, + "wfInJ26T": { + "uv": { + "qc0L": [6.06919, 2], + "ZHiN": [0, 4.96667], + "lXqu": [0, 2], + "uuLd": [6.06919, 4.96667] + }, + "vertices": ["uuLd", "lXqu", "ZHiN", "qc0L"], + "texture": 0 + }, + "eiK1svyY": { + "uv": { + "EAQP": [0, 2], + "lXqu": [0, 6.81666], + "qc0L": [5.60695, 5.40596] + }, + "vertices": ["qc0L", "lXqu", "EAQP"], + "texture": 0 + }, + "ZFEG13AU": { + "uv": { + "ppnZ": [0, 3.8433], + "HCVy": [7.32595, 5.6866], + "C6cU": [7.32595, 2] + }, + "vertices": ["C6cU", "HCVy", "ppnZ"], + "texture": 0 + }, + "BcBa4KR3": { + "uv": { + "dgCx": [6.06919, 2], + "uuLd": [0, 4.96667], + "qc0L": [0, 2], + "tTFb": [6.06919, 4.96667] + }, + "vertices": ["tTFb", "qc0L", "uuLd", "dgCx"], + "texture": 0 + }, + "ixMgOYvh": { + "uv": { + "EAQP": [0, 3.8433], + "qc0L": [7.32595, 5.6866], + "dgCx": [7.32595, 2] + }, + "vertices": ["dgCx", "qc0L", "EAQP"], + "texture": 0 + }, + "RBqNM3aV": { + "uv": { + "ppnZ": [0, 2], + "a6Ti": [0, 6.81666], + "HCVy": [5.60695, 5.40596] + }, + "vertices": ["HCVy", "a6Ti", "ppnZ"], + "texture": 0 + }, + "PbRsxzNF": { + "uv": { + "2NA1": [6.06919, 2], + "tTFb": [0, 4.96667], + "dgCx": [0, 2], + "FBal": [6.06919, 4.96667] + }, + "vertices": ["FBal", "dgCx", "tTFb", "2NA1"], + "texture": 0 + }, + "YLxZHzXa": { + "uv": { + "EAQP": [0, 5.40583], + "dgCx": [7.92959, 5.40583], + "2NA1": [5.60717, 2] + }, + "vertices": ["2NA1", "dgCx", "EAQP"], + "texture": 0 + }, + "j7kPMev4": { + "uv": { + "HCVy": [0, 4.96667], + "XPZQ": [0, 2], + "a6Ti": [6.06919, 4.96667], + "5WyA": [6.06919, 2] + }, + "vertices": ["5WyA", "a6Ti", "XPZQ", "HCVy"], + "texture": 0 + }, + "oYEZeJop": { + "uv": { + "XPZQ": [0, 7.93333], + "tTFb": [0, 4.96667], + "5WyA": [6.06919, 7.93333], + "FBal": [6.06919, 4.96667] + }, + "vertices": ["FBal", "5WyA", "tTFb", "XPZQ"], + "texture": 0 + }, + "JN2qxV70": { + "uv": { + "C6cU": [0, 4.96667], + "A49p": [0, 2], + "HCVy": [6.06919, 4.96667], + "XPZQ": [6.06919, 2] + }, + "vertices": ["XPZQ", "HCVy", "A49p", "C6cU"], + "texture": 0 + }, + "s7idVvdI": { + "uv": { + "A49p": [0, 7.93333], + "uuLd": [0, 4.96667], + "XPZQ": [6.06919, 7.93333], + "tTFb": [6.06919, 4.96667] + }, + "vertices": ["tTFb", "XPZQ", "uuLd", "A49p"], + "texture": 0 + }, + "3YxMl6ID": { + "uv": { + "yF3x": [0, 4.96667], + "Jfz9": [0, 2], + "C6cU": [6.06919, 4.96667], + "A49p": [6.06919, 2] + }, + "vertices": ["A49p", "C6cU", "Jfz9", "yF3x"], + "texture": 0 + }, + "W7j54Eei": { + "uv": { + "Jfz9": [0, 7.93333], + "ZHiN": [0, 4.96667], + "A49p": [6.06919, 7.93333], + "uuLd": [6.06919, 4.96667] + }, + "vertices": ["uuLd", "A49p", "ZHiN", "Jfz9"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "537ef66b-a5ff-b3ae-7587-873be2d53cc2" + }, + { + "name": "LeftElytra", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-5, 4, 6], + "to": [5, 24, 8], + "autouv": 0, + "color": 1, + "visibility": false, + "inflate": 1, + "origin": [-5, 24, 6], + "faces": { + "north": { + "uv": [24, 4, 34, 44], + "texture": 0 + }, + "east": { + "uv": [22, 4, 24, 44], + "texture": 0 + }, + "south": { + "uv": [36, 4, 46, 44], + "texture": 0 + }, + "west": { + "uv": [34, 4, 36, 44], + "texture": 0 + }, + "up": { + "uv": [34, 4, 24, 0], + "texture": 0 + }, + "down": { + "uv": [44, 0, 34, 4], + "texture": 0 + } + }, + "type": "cube", + "uuid": "f13098f5-2b9f-c55c-ac85-5679cc688966" + }, + { + "name": "RightElytra", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-5, 4, 6], + "to": [5, 24, 8], + "autouv": 0, + "color": 4, + "visibility": false, + "inflate": 1, + "origin": [5, 24, 6], + "faces": { + "north": { + "uv": [34, 4, 24, 44], + "texture": 0 + }, + "east": { + "uv": [36, 4, 34, 44], + "texture": 0 + }, + "south": { + "uv": [46, 4, 36, 44], + "texture": 0 + }, + "west": { + "uv": [24, 4, 22, 44], + "texture": 0 + }, + "up": { + "uv": [24, 4, 34, 0], + "texture": 0 + }, + "down": { + "uv": [34, 0, 44, 4], + "texture": 0 + } + }, + "type": "cube", + "uuid": "9dc0af0e-5f57-3947-ed18-4309680c6759" + }, + { + "name": "2", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-6, 21, 4], + "to": [6, 25, 8], + "autouv": 0, + "color": 0, + "visibility": false, + "inflate": 0.02, + "origin": [0, 0, 0], + "faces": { + "north": { + "uv": [58, 18, 70, 22], + "texture": 0 + }, + "east": { + "uv": [54, 18, 58, 22], + "texture": 0 + }, + "south": { + "uv": [74, 18, 86, 22], + "texture": 0 + }, + "west": { + "uv": [70, 18, 74, 22], + "texture": 0 + }, + "up": { + "uv": [70, 18, 58, 14], + "texture": 0 + }, + "down": { + "uv": [82, 14, 70, 18], + "texture": 0 + } + }, + "type": "cube", + "uuid": "34b661b6-2c9a-f161-468e-dbbbd1448992" + }, + { + "name": "Cape", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-5, 8, 8], + "to": [5, 24, 9], + "autouv": 0, + "color": 6, + "visibility": false, + "origin": [0, 24, 8], + "faces": { + "north": { + "uv": [1, 2, 11, 34], + "texture": 0 + }, + "east": { + "uv": [0, 2, 1, 34], + "texture": 0 + }, + "south": { + "uv": [12, 2, 22, 34], + "texture": 0 + }, + "west": { + "uv": [11, 2, 12, 34], + "texture": 0 + }, + "up": { + "uv": [11, 2, 1, 0], + "texture": 0 + }, + "down": { + "uv": [21, 0, 11, 2], + "texture": 0 + } + }, + "type": "cube", + "uuid": "9d4f5a09-3416-0623-7a0b-3bbcf0d919d8" + }, + { + "name": "cube", + "color": 8, + "origin": [1.01519, 0, -0.17365], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "BtHE": [-4.2, 2, 2], + "p9SG": [-4.2, 2, -0.85714], + "dP2U": [-4.2, 0, 2], + "eok7": [-5, 0, -0.85714], + "ocfu": [-1.8, 2, 2], + "vUhB": [-1.8, 2, -0.85714], + "EUsg": [-1.8, 0, 2], + "oqGO": [-1, 0, -0.85714], + "LuHl": [-1.8, 2, -3], + "xXtl": [-4.2, 2, -3], + "EDaA": [-1.8, 0, -4], + "X2US": [-4.2, 0, -4] + }, + "faces": { + "rLMf7opp": { + "uv": { + "dP2U": [0, 24], + "eok7": [0, 22], + "p9SG": [4, 22], + "BtHE": [4, 24] + }, + "vertices": ["BtHE", "p9SG", "eok7", "dP2U"], + "texture": 0 + }, + "lK1uZ4ZU": { + "uv": { + "oqGO": [0, 24], + "EUsg": [0, 22], + "ocfu": [4, 22], + "vUhB": [4, 24] + }, + "vertices": ["vUhB", "ocfu", "EUsg", "oqGO"], + "texture": 0 + }, + "IOcJK5rY": { + "uv": { + "ocfu": [0, 26], + "BtHE": [0, 22], + "p9SG": [3, 22], + "vUhB": [3, 26] + }, + "vertices": ["vUhB", "p9SG", "BtHE", "ocfu"], + "texture": 0 + }, + "TZD9oDhP": { + "uv": { + "oqGO": [0, 26], + "eok7": [0, 22], + "dP2U": [3, 22], + "EUsg": [3, 26] + }, + "vertices": ["EUsg", "dP2U", "eok7", "oqGO"], + "texture": 0 + }, + "h8ImDcMA": { + "uv": { + "EUsg": [0, 24], + "dP2U": [0, 22], + "BtHE": [3, 22], + "ocfu": [3, 24] + }, + "vertices": ["ocfu", "BtHE", "dP2U", "EUsg"], + "texture": 0 + }, + "4tbVDhEo": { + "uv": { + "X2US": [0, 24], + "EDaA": [0, 22], + "LuHl": [3, 22], + "xXtl": [3, 24] + }, + "vertices": ["xXtl", "LuHl", "EDaA", "X2US"], + "texture": 0 + }, + "EtmLgTse": { + "uv": { + "vUhB": [3, 22], + "oqGO": [0, 22], + "LuHl": [3, 24], + "EDaA": [0, 24] + }, + "vertices": ["EDaA", "LuHl", "oqGO", "vUhB"], + "texture": 0 + }, + "iRHEFw0e": { + "uv": { + "p9SG": [3, 25], + "vUhB": [3, 22], + "xXtl": [0, 25], + "LuHl": [0, 22] + }, + "vertices": ["LuHl", "xXtl", "vUhB", "p9SG"], + "texture": 0 + }, + "5H56KX26": { + "uv": { + "eok7": [0, 24], + "p9SG": [3, 24], + "X2US": [0, 22], + "xXtl": [3, 22] + }, + "vertices": ["xXtl", "X2US", "p9SG", "eok7"], + "texture": 0 + }, + "YPxuRqB2": { + "uv": { + "oqGO": [0, 22], + "eok7": [0, 25], + "EDaA": [3, 22], + "X2US": [3, 25] + }, + "vertices": ["X2US", "EDaA", "eok7", "oqGO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "88ccf0b1-c887-5a42-45aa-2a7eb359c98b" + }, + { + "name": "circle", + "color": 8, + "origin": [-1.4, 29.3, -4.2], + "rotation": [-80, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "QlBo": [-0.54435, -0.00243, 0.25043], + "FP9N": [-1.32807, -0.13252, 1.72337], + "lUGq": [-2.19315, -0.25464, 0.01943], + "ro66": [-1.40899, -0.13901, -1.1681], + "Usga": [0.23938, 0.12766, -1.22251], + "GyQD": [1.10402, 0.26425, 0.19602], + "sKKe": [0.32029, 0.13416, 1.66896], + "gp6k": [4.13013, -0.13338, 1.72352], + "vTgM": [4.21104, -0.13988, -1.16795], + "IXDG": [2.56266, 0.12679, -1.22236], + "82YR": [1.69802, 0.26338, 0.19617], + "p7xK": [2.48175, 0.13329, 1.66911], + "1CcK": [0.92358, 0.18131, 0.58363], + "zLaG": [1.87847, 0.18044, 0.5838], + "BVQ2": [-1.87797, -0.07795, 0.77392], + "hOxT": [-1.63483, -2.08748, 1.02764], + "DUmR": [-1.91752, -2.21305, 0.36658], + "ijmy": [4.43483, -2.08748, 1.02764], + "B9AS": [4.71752, -2.21305, 0.36658], + "mmJQ": [3.34639, -0.00329, 0.25058], + "49hN": [4.99499, -0.26274, 0.16228], + "qMSp": [4.62124, -0.14025, 0.89416] + }, + "faces": { + "MOKUwzxs": { + "uv": { + "QlBo": [26.1547, 3], + "lUGq": [25, 9], + "ro66": [27.3094, 9] + }, + "vertices": ["ro66", "lUGq", "QlBo"], + "texture": 0 + }, + "51YiqX10": { + "uv": { + "lUGq": [30.0855, 10.1107], + "BVQ2": [28.29597, 8], + "hOxT": [23, 8], + "DUmR": [24.78953, 10.1107] + }, + "vertices": ["DUmR", "hOxT", "BVQ2", "lUGq"], + "texture": 0 + }, + "2pIUB8ES": { + "uv": { + "QlBo": [26.1547, 3], + "ro66": [25, 9], + "Usga": [27.3094, 9] + }, + "vertices": ["Usga", "ro66", "QlBo"], + "texture": 0 + }, + "ZK7NKOeF": { + "uv": { + "QlBo": [26.1547, 3], + "Usga": [25, 9], + "GyQD": [27.3094, 9] + }, + "vertices": ["GyQD", "Usga", "QlBo"], + "texture": 0 + }, + "wR8umpUu": { + "uv": { + "QlBo": [26.1547, 3], + "sKKe": [25, 9], + "FP9N": [27.3094, 9] + }, + "vertices": ["FP9N", "sKKe", "QlBo"], + "texture": 0 + }, + "H6VP4Ksv": { + "uv": { + "mmJQ": [26.1547, 3], + "IXDG": [27.3094, 9], + "vTgM": [25, 9] + }, + "vertices": ["vTgM", "IXDG", "mmJQ"], + "texture": 0 + }, + "wJyfxrMY": { + "uv": { + "GyQD": [25, 9], + "QlBo": [26.1547, 3], + "1CcK": [25, 9], + "sKKe": [27.3094, 9] + }, + "vertices": ["sKKe", "1CcK", "QlBo", "GyQD"], + "texture": 0 + }, + "DIF8u6Nx": { + "uv": { + "p7xK": [25, 9], + "mmJQ": [26.1547, 3], + "zLaG": [26.1547, 9], + "82YR": [25, 9] + }, + "vertices": ["82YR", "zLaG", "mmJQ", "p7xK"], + "texture": 0 + }, + "Y3MIAtYU": { + "uv": { + "49hN": [30.0855, 10.1107], + "qMSp": [28.29597, 8], + "B9AS": [24.78953, 10.1107], + "ijmy": [23, 8] + }, + "vertices": ["ijmy", "B9AS", "qMSp", "49hN"], + "texture": 0 + }, + "m5Ei64ON": { + "uv": { + "lUGq": [27.3094, 9], + "QlBo": [26.1547, 3], + "FP9N": [25, 9], + "BVQ2": [27.3094, 9] + }, + "vertices": ["BVQ2", "FP9N", "QlBo", "lUGq"], + "texture": 0 + }, + "JXbA3fJc": { + "uv": { + "mmJQ": [26.1547, 3], + "82YR": [27.3094, 9], + "IXDG": [25, 9] + }, + "vertices": ["IXDG", "82YR", "mmJQ"], + "texture": 0 + }, + "tMb37bkc": { + "uv": { + "1CcK": [22, 8.3337], + "GyQD": [22.52825, 8], + "82YR": [23.03255, 8], + "zLaG": [23.5608, 8.3337] + }, + "vertices": ["zLaG", "82YR", "GyQD", "1CcK"], + "texture": 0 + }, + "6XGDzFgh": { + "uv": { + "mmJQ": [26.1547, 3], + "vTgM": [27.3094, 9], + "49hN": [25, 9] + }, + "vertices": ["49hN", "vTgM", "mmJQ"], + "texture": 0 + }, + "ZQX1Mu9J": { + "uv": { + "mmJQ": [26.1547, 3], + "gp6k": [25, 9], + "p7xK": [27.3094, 9] + }, + "vertices": ["p7xK", "gp6k", "mmJQ"], + "texture": 0 + }, + "57qo5ODz": { + "uv": { + "49hN": [25, 9], + "mmJQ": [26.1547, 3], + "qMSp": [25, 9], + "gp6k": [27.3094, 9] + }, + "vertices": ["gp6k", "qMSp", "mmJQ", "49hN"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "cddc15a2-e47f-cc9b-6543-a33edf4f6221" + }, + { + "name": "cube", + "color": 8, + "origin": [0, 26.9, -4.2], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "tkxK": [0.5, 3.80513, 0.57334], + "ECCY": [0.5, 1.25502, -1.03671], + "ZgvY": [0.7, 0.7, 1], + "iCyR": [0.7, 0.56166, -0.36696], + "cIz3": [-0.5, 3.80513, 0.57334], + "ZpVa": [-0.5, 1.25502, -1.03671], + "linI": [-0.7, 0.7, 1], + "zu4W": [-0.7, 0.56166, -0.36696] + }, + "faces": { + "dlJOkDpI": { + "uv": { + "ZgvY": [0, 1], + "iCyR": [2, 1], + "tkxK": [0, 3], + "ECCY": [2, 3] + }, + "vertices": ["ECCY", "tkxK", "iCyR", "ZgvY"], + "texture": 0 + }, + "XO0XBOJM": { + "uv": { + "zu4W": [0, 1], + "linI": [2, 1], + "ZpVa": [0, 3], + "cIz3": [2, 3] + }, + "vertices": ["cIz3", "ZpVa", "linI", "zu4W"], + "texture": 0 + }, + "z9C8lfjV": { + "uv": { + "cIz3": [0, 4], + "tkxK": [2, 4], + "ZpVa": [0, 2], + "ECCY": [2, 2] + }, + "vertices": ["ECCY", "ZpVa", "tkxK", "cIz3"], + "texture": 0 + }, + "Adj6L1Cx": { + "uv": { + "zu4W": [0, 0], + "iCyR": [2, 0], + "linI": [0, 2], + "ZgvY": [2, 2] + }, + "vertices": ["ZgvY", "linI", "iCyR", "zu4W"], + "texture": 0 + }, + "o9Tb4bFQ": { + "uv": { + "linI": [0, 4], + "ZgvY": [2, 4], + "cIz3": [0, 2], + "tkxK": [2, 2] + }, + "vertices": ["tkxK", "cIz3", "ZgvY", "linI"], + "texture": 0 + }, + "CqQfY0iI": { + "uv": { + "iCyR": [0, 1], + "zu4W": [2, 1], + "ECCY": [0, 3], + "ZpVa": [2, 3] + }, + "vertices": ["ZpVa", "ECCY", "zu4W", "iCyR"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "8cf37dda-a1f4-41c9-00ea-784d1ef19a8d" + }, + { + "name": "circle", + "color": 8, + "origin": [-1.4, 29.3, -4.2], + "rotation": [-80, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "QlBo": [-0.54435, -0.00243, 0.25043], + "FP9N": [-1.32807, -0.13252, 1.72337], + "lUGq": [-2.19315, -0.25464, 0.01943], + "ro66": [-1.40899, -0.13901, -1.1681], + "Usga": [0.23938, 0.12766, -1.22251], + "GyQD": [1.10402, 0.26425, 0.19602], + "sKKe": [0.32029, 0.13416, 1.66896], + "gp6k": [4.13013, -0.13338, 1.72352], + "vTgM": [4.21104, -0.13988, -1.16795], + "IXDG": [2.56266, 0.12679, -1.22236], + "82YR": [1.69802, 0.26338, 0.19617], + "p7xK": [2.48175, 0.13329, 1.66911], + "1CcK": [0.92358, 0.18131, 0.58363], + "zLaG": [1.87847, 0.18044, 0.5838], + "BVQ2": [-1.87797, -0.07795, 0.77392], + "hOxT": [-1.63483, -2.08748, 1.02764], + "DUmR": [-1.91752, -2.21305, 0.36658], + "ijmy": [4.43483, -2.08748, 1.02764], + "B9AS": [4.71752, -2.21305, 0.36658], + "mmJQ": [3.34639, -0.00329, 0.25058], + "49hN": [4.99499, -0.26274, 0.16228], + "qMSp": [4.62124, -0.14025, 0.89416] + }, + "faces": { + "MOKUwzxs": { + "uv": { + "QlBo": [26.1547, 3], + "lUGq": [25, 9], + "ro66": [27.3094, 9] + }, + "vertices": ["ro66", "lUGq", "QlBo"], + "texture": 0 + }, + "51YiqX10": { + "uv": { + "lUGq": [30.0855, 10.1107], + "BVQ2": [28.29597, 8], + "hOxT": [23, 8], + "DUmR": [24.78953, 10.1107] + }, + "vertices": ["DUmR", "hOxT", "BVQ2", "lUGq"], + "texture": 0 + }, + "2pIUB8ES": { + "uv": { + "QlBo": [26.1547, 3], + "ro66": [25, 9], + "Usga": [27.3094, 9] + }, + "vertices": ["Usga", "ro66", "QlBo"], + "texture": 0 + }, + "ZK7NKOeF": { + "uv": { + "QlBo": [26.1547, 3], + "Usga": [25, 9], + "GyQD": [27.3094, 9] + }, + "vertices": ["GyQD", "Usga", "QlBo"], + "texture": 0 + }, + "wR8umpUu": { + "uv": { + "QlBo": [26.5, 4], + "sKKe": [25, 0], + "FP9N": [27.5, 0] + }, + "vertices": ["FP9N", "sKKe", "QlBo"], + "texture": 0 + }, + "H6VP4Ksv": { + "uv": { + "mmJQ": [26.1547, 3], + "IXDG": [27.3094, 9], + "vTgM": [25, 9] + }, + "vertices": ["vTgM", "IXDG", "mmJQ"], + "texture": 0 + }, + "wJyfxrMY": { + "uv": { + "GyQD": [25, 0], + "QlBo": [26.5, 4], + "1CcK": [26, 0], + "sKKe": [27.5, 0] + }, + "vertices": ["sKKe", "1CcK", "QlBo", "GyQD"], + "texture": 0 + }, + "DIF8u6Nx": { + "uv": { + "p7xK": [25, 0], + "mmJQ": [26.5, 4], + "zLaG": [26, 0], + "82YR": [27.5, 0] + }, + "vertices": ["82YR", "zLaG", "mmJQ", "p7xK"], + "texture": 0 + }, + "Y3MIAtYU": { + "uv": { + "49hN": [30.0855, 10.1107], + "qMSp": [28.29597, 8], + "B9AS": [24.78953, 10.1107], + "ijmy": [23, 8] + }, + "vertices": ["ijmy", "B9AS", "qMSp", "49hN"], + "texture": 0 + }, + "m5Ei64ON": { + "uv": { + "lUGq": [27.5, 0], + "QlBo": [26.5, 4], + "FP9N": [25, 0], + "BVQ2": [26, 0] + }, + "vertices": ["BVQ2", "FP9N", "QlBo", "lUGq"], + "texture": 0 + }, + "JXbA3fJc": { + "uv": { + "mmJQ": [26.1547, 3], + "82YR": [27.3094, 9], + "IXDG": [25, 9] + }, + "vertices": ["IXDG", "82YR", "mmJQ"], + "texture": 0 + }, + "tMb37bkc": { + "uv": { + "1CcK": [22, 8.3337], + "GyQD": [22.52825, 8], + "82YR": [23.03255, 8], + "zLaG": [23.5608, 8.3337] + }, + "vertices": ["zLaG", "82YR", "GyQD", "1CcK"], + "texture": 0 + }, + "6XGDzFgh": { + "uv": { + "mmJQ": [26.1547, 3], + "vTgM": [27.3094, 9], + "49hN": [25, 9] + }, + "vertices": ["49hN", "vTgM", "mmJQ"], + "texture": 0 + }, + "ZQX1Mu9J": { + "uv": { + "mmJQ": [26.5, 4], + "gp6k": [25, 0], + "p7xK": [27.5, 0] + }, + "vertices": ["p7xK", "gp6k", "mmJQ"], + "texture": 0 + }, + "57qo5ODz": { + "uv": { + "49hN": [25, 0], + "mmJQ": [26.5, 4], + "qMSp": [26, 0], + "gp6k": [27.5, 0] + }, + "vertices": ["gp6k", "qMSp", "mmJQ", "49hN"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "330f0efc-1466-6509-2612-0e94630f723f" + }, + { + "name": "cube", + "color": 8, + "origin": [-6.15, 14.7, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "pd2g": [-0.99217, -0.3294, 1.1], + "mmL5": [-0.99217, -0.3294, -1.15], + "rrJj": [-1.30842, -3.15797, 1.1], + "s2jG": [-1.30842, -3.15797, -1.15], + "SQdA": [1.22158, 0.37774, 1.1], + "1I6t": [1.22158, 0.23632, -1.15], + "x97M": [1.22158, -3.15797, 1.1], + "6OCI": [1.22158, -3.15797, -1.15], + "1mAv": [-0.67592, -4.57226, 0.725], + "qLFu": [1.22158, -4.57226, 0.725], + "l2mI": [-0.67592, -4.57226, -0.775], + "0CGp": [1.22158, -4.57226, -0.775], + "Az5f": [1.22158, -1.74368, -1.9], + "cZ9p": [-0.67592, -1.74368, -1.9], + "zqiK": [1.22158, -3.15797, -1.9], + "iXLD": [-0.67592, -3.15797, -1.9], + "kFKb": [-0.99217, -0.3294, -0.5875], + "Jy9D": [-1.30842, -3.15797, -0.5875], + "NjLO": [-0.99217, -0.3294, -0.025], + "EamT": [-1.30842, -3.15797, -0.025], + "4Uw8": [-0.99217, -0.3294, 0.5375], + "E7H1": [-1.30842, -3.15797, 0.5375], + "zNmF": [-0.67592, -4.57226, -0.4], + "I94e": [-0.67592, -4.57226, -0.025], + "lmne": [-0.67592, -4.57226, 0.35], + "81Au": [1.22158, -4.57226, -0.4], + "bkdC": [1.22158, -4.57226, -0.025], + "GJFl": [1.22158, -4.57226, 0.35], + "iA4U": [1.22158, -3.15797, -0.5875], + "IVs2": [1.22158, -3.15797, -0.025], + "wqYW": [1.22158, -3.15797, 0.5375], + "UdID": [1.22158, 0.27167, -0.5875], + "09B4": [1.22158, 0.30703, -0.025], + "azok": [1.22158, 0.34239, 0.5375] + }, + "faces": { + "FKjq113j": { + "uv": { + "pd2g": [3, 5], + "E7H1": [0, 4.5], + "rrJj": [0, 5], + "4Uw8": [3, 4.5] + }, + "vertices": ["4Uw8", "rrJj", "E7H1", "pd2g"], + "texture": 0 + }, + "jZ871epm": { + "uv": { + "x97M": [0, 3], + "azok": [3, 3.5], + "SQdA": [3, 3], + "wqYW": [0, 3.5] + }, + "vertices": ["wqYW", "SQdA", "azok", "x97M"], + "texture": 0 + }, + "uGJH28Iv": { + "uv": { + "SQdA": [0, 5], + "4Uw8": [0.375, 2], + "pd2g": [0, 2], + "azok": [0.375, 5] + }, + "vertices": ["azok", "pd2g", "4Uw8", "SQdA"], + "texture": 0 + }, + "1nFJZMx2": { + "uv": { + "1mAv": [1.5, 2], + "GJFl": [1.125, 5], + "qLFu": [1.5, 5], + "lmne": [1.125, 2] + }, + "vertices": ["lmne", "qLFu", "GJFl", "1mAv"], + "texture": 0 + }, + "OQgR4dER": { + "uv": { + "x97M": [0, 5], + "rrJj": [0, 3], + "pd2g": [1.5, 3], + "SQdA": [1.5, 5] + }, + "vertices": ["SQdA", "pd2g", "rrJj", "x97M"], + "texture": 0 + }, + "UN1JDrWQ": { + "uv": { + "iXLD": [0, 5], + "zqiK": [0, 3], + "Az5f": [1.5, 3], + "cZ9p": [1.5, 5] + }, + "vertices": ["cZ9p", "Az5f", "zqiK", "iXLD"], + "texture": 0 + }, + "XyxwRClU": { + "uv": { + "rrJj": [0, 2], + "lmne": [3, 2.25], + "1mAv": [3, 2], + "E7H1": [0, 2.25] + }, + "vertices": ["E7H1", "1mAv", "lmne", "rrJj"], + "texture": 0 + }, + "Ilz3SEts": { + "uv": { + "x97M": [0, 2], + "rrJj": [0, 3], + "qLFu": [1.5, 2], + "1mAv": [1.5, 3] + }, + "vertices": ["1mAv", "qLFu", "rrJj", "x97M"], + "texture": 0 + }, + "Cchw1LL2": { + "uv": { + "qLFu": [3, 3], + "wqYW": [0, 2.75], + "x97M": [0, 3], + "GJFl": [3, 2.75] + }, + "vertices": ["GJFl", "x97M", "wqYW", "qLFu"], + "texture": 0 + }, + "n2rwk4ci": { + "uv": { + "s2jG": [0, 3], + "6OCI": [0, 4], + "l2mI": [1.5, 3], + "0CGp": [1.5, 4] + }, + "vertices": ["0CGp", "l2mI", "6OCI", "s2jG"], + "texture": 0 + }, + "O5Z8kx5g": { + "uv": { + "1I6t": [2, 3], + "6OCI": [1, 3], + "Az5f": [2, 5], + "zqiK": [1, 5] + }, + "vertices": ["zqiK", "Az5f", "6OCI", "1I6t"], + "texture": 0 + }, + "4RYNouH5": { + "uv": { + "mmL5": [1.5, 3], + "1I6t": [1.5, 2], + "cZ9p": [0, 3], + "Az5f": [0, 2] + }, + "vertices": ["Az5f", "cZ9p", "1I6t", "mmL5"], + "texture": 0 + }, + "TW0YxAz3": { + "uv": { + "s2jG": [0, 5], + "mmL5": [1, 5], + "iXLD": [0, 3], + "cZ9p": [1, 3] + }, + "vertices": ["cZ9p", "iXLD", "mmL5", "s2jG"], + "texture": 0 + }, + "2zYxvLvJ": { + "uv": { + "6OCI": [0, 2], + "s2jG": [0, 3], + "zqiK": [1.5, 2], + "iXLD": [1.5, 3] + }, + "vertices": ["iXLD", "zqiK", "s2jG", "6OCI"], + "texture": 0 + }, + "BKf5NSMf": { + "uv": { + "s2jG": [0, 1], + "Jy9D": [0, 2], + "mmL5": [3, 1], + "kFKb": [3, 2] + }, + "vertices": ["kFKb", "mmL5", "Jy9D", "s2jG"], + "texture": 0 + }, + "JpNiYA3G": { + "uv": { + "Jy9D": [0, 3.5], + "EamT": [0, 4], + "kFKb": [3, 3.5], + "NjLO": [3, 4] + }, + "vertices": ["NjLO", "kFKb", "EamT", "Jy9D"], + "texture": 0 + }, + "GdpzZg9a": { + "uv": { + "EamT": [0, 2.33333], + "E7H1": [0, 2.5], + "NjLO": [3, 2.33333], + "4Uw8": [3, 2.5] + }, + "vertices": ["4Uw8", "NjLO", "E7H1", "EamT"], + "texture": 0 + }, + "TlsMHfmZ": { + "uv": { + "l2mI": [3, 1.33333], + "zNmF": [3, 1.25], + "s2jG": [0, 1.33333], + "Jy9D": [0, 1.25] + }, + "vertices": ["Jy9D", "s2jG", "zNmF", "l2mI"], + "texture": 0 + }, + "aqKhnRXQ": { + "uv": { + "zNmF": [3, 2.75], + "I94e": [3, 2.5], + "Jy9D": [0, 2.75], + "EamT": [0, 2.5] + }, + "vertices": ["EamT", "Jy9D", "I94e", "zNmF"], + "texture": 0 + }, + "63v75zR5": { + "uv": { + "I94e": [3, 1.16667], + "lmne": [3, 1.08333], + "EamT": [0, 1.16667], + "E7H1": [0, 1.08333] + }, + "vertices": ["E7H1", "EamT", "lmne", "I94e"], + "texture": 0 + }, + "EMdhJPKA": { + "uv": { + "0CGp": [0, 2], + "81Au": [0.375, 2], + "l2mI": [0, 1], + "zNmF": [0.375, 1] + }, + "vertices": ["zNmF", "l2mI", "81Au", "0CGp"], + "texture": 0 + }, + "mbMoevDt": { + "uv": { + "81Au": [0.375, 5], + "bkdC": [0.75, 5], + "zNmF": [0.375, 2], + "I94e": [0.75, 2] + }, + "vertices": ["I94e", "zNmF", "bkdC", "81Au"], + "texture": 0 + }, + "x0VSEKNp": { + "uv": { + "bkdC": [0.75, 2], + "GJFl": [1.125, 2], + "I94e": [0.75, 1], + "lmne": [1.125, 1] + }, + "vertices": ["lmne", "I94e", "GJFl", "bkdC"], + "texture": 0 + }, + "JxgfCy0i": { + "uv": { + "6OCI": [0, 1], + "iA4U": [0, 1.08333], + "0CGp": [3, 1], + "81Au": [3, 1.08333] + }, + "vertices": ["81Au", "0CGp", "iA4U", "6OCI"], + "texture": 0 + }, + "QyoKJJph": { + "uv": { + "iA4U": [0, 2.25], + "IVs2": [0, 2.5], + "81Au": [3, 2.25], + "bkdC": [3, 2.5] + }, + "vertices": ["bkdC", "81Au", "IVs2", "iA4U"], + "texture": 0 + }, + "Lk3hmryg": { + "uv": { + "IVs2": [0, 1.16667], + "wqYW": [0, 1.25], + "bkdC": [3, 1.16667], + "GJFl": [3, 1.25] + }, + "vertices": ["GJFl", "bkdC", "wqYW", "IVs2"], + "texture": 0 + }, + "pJI3WqXz": { + "uv": { + "1I6t": [3, 2.66667], + "UdID": [3, 2.5], + "6OCI": [0, 2.66667], + "iA4U": [0, 2.5] + }, + "vertices": ["iA4U", "6OCI", "UdID", "1I6t"], + "texture": 0 + }, + "h7pymN6Y": { + "uv": { + "UdID": [3, 4.5], + "09B4": [3, 4], + "iA4U": [0, 4.5], + "IVs2": [0, 4] + }, + "vertices": ["IVs2", "iA4U", "09B4", "UdID"], + "texture": 0 + }, + "bDYNAwsd": { + "uv": { + "09B4": [3, 2.33333], + "azok": [3, 2.16667], + "IVs2": [0, 2.33333], + "wqYW": [0, 2.16667] + }, + "vertices": ["wqYW", "IVs2", "azok", "09B4"], + "texture": 0 + }, + "q4OUrDWP": { + "uv": { + "mmL5": [1.5, 1], + "kFKb": [1.125, 1], + "1I6t": [1.5, 2], + "UdID": [1.125, 2] + }, + "vertices": ["UdID", "1I6t", "kFKb", "mmL5"], + "texture": 0 + }, + "tdhfravm": { + "uv": { + "kFKb": [1.125, 2], + "NjLO": [0.75, 2], + "UdID": [1.125, 5], + "09B4": [0.75, 5] + }, + "vertices": ["09B4", "UdID", "NjLO", "kFKb"], + "texture": 0 + }, + "aBr6k8lJ": { + "uv": { + "NjLO": [0.75, 1], + "4Uw8": [0.375, 1], + "09B4": [0.75, 2], + "azok": [0.375, 2] + }, + "vertices": ["azok", "09B4", "4Uw8", "NjLO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "58a66c62-16cb-55b7-2195-1e1a1280b174" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-4, 29.7, -1.9], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8bfM": [0.55, -0.44721, 0], + "Kvjd": [0.55, -0.44721, -1], + "USVQ": [1.17629, -1.5, 0], + "HXhU": [1.17629, -1.5, -1], + "UZWq": [1.56336, -0.04508, 0], + "axTi": [1.56336, -0.04508, -1], + "tgyO": [0.55, 0.8541, 0], + "Ib2Y": [0.55, 0.8541, -1], + "FTwV": [-0.46336, -0.04508, 0], + "O5S9": [-0.46336, -0.04508, -1], + "5xC8": [-0.07629, -1.5, 0], + "tls7": [-0.07629, -1.5, -1] + }, + "faces": { + "91nAa0xC": { + "uv": { + "8bfM": [0, 6.08977], + "UZWq": [1.50002, 7.1796], + "USVQ": [1.50002, 5] + }, + "vertices": ["USVQ", "UZWq", "8bfM"], + "texture": 0 + }, + "9ZKH0lG6": { + "uv": { + "HXhU": [0, 5], + "axTi": [2.1796, 5], + "USVQ": [0, 7], + "UZWq": [2.1796, 7] + }, + "vertices": ["UZWq", "USVQ", "axTi", "HXhU"], + "texture": 0 + }, + "RGmcX1UG": { + "uv": { + "Kvjd": [4.50306, 0], + "HXhU": [2.16591, 1.76648], + "axTi": [5.06639, 1.76648] + }, + "vertices": ["axTi", "HXhU", "Kvjd"], + "texture": 0 + }, + "hURkvpYa": { + "uv": { + "8bfM": [0, 2.7634], + "tgyO": [1.8541, 2.7634], + "UZWq": [0.8729, 0] + }, + "vertices": ["UZWq", "tgyO", "8bfM"], + "texture": 0 + }, + "WyrjtDC7": { + "uv": { + "axTi": [0, 5], + "Ib2Y": [2.1796, 5], + "UZWq": [0, 7], + "tgyO": [2.1796, 7] + }, + "vertices": ["tgyO", "UZWq", "Ib2Y", "axTi"], + "texture": 0 + }, + "acbFBVuv": { + "uv": { + "Kvjd": [4.50306, 0], + "axTi": [2.16591, 1.76648], + "Ib2Y": [5.06639, 1.76648] + }, + "vertices": ["Ib2Y", "axTi", "Kvjd"], + "texture": 0 + }, + "lyFWiRhd": { + "uv": { + "8bfM": [0, 2.7634], + "FTwV": [1.8541, 2.7634], + "tgyO": [0.8729, 0] + }, + "vertices": ["tgyO", "FTwV", "8bfM"], + "texture": 0 + }, + "wjezwsCE": { + "uv": { + "Ib2Y": [0, 5], + "O5S9": [2.1796, 5], + "tgyO": [0, 7], + "FTwV": [2.1796, 7] + }, + "vertices": ["FTwV", "tgyO", "O5S9", "Ib2Y"], + "texture": 0 + }, + "j57EBA6J": { + "uv": { + "Kvjd": [4.50306, 0], + "Ib2Y": [2.16591, 1.76648], + "O5S9": [5.06639, 1.76648] + }, + "vertices": ["O5S9", "Ib2Y", "Kvjd"], + "texture": 0 + }, + "vcbsA7yR": { + "uv": { + "8bfM": [1.85413, 6.76333], + "5xC8": [1.28114, 5], + "FTwV": [0, 6.76333] + }, + "vertices": ["FTwV", "5xC8", "8bfM"], + "texture": 0 + }, + "lYJAyjcC": { + "uv": { + "O5S9": [0, 5], + "tls7": [2.1796, 5], + "FTwV": [0, 7], + "5xC8": [2.1796, 7] + }, + "vertices": ["5xC8", "FTwV", "tls7", "O5S9"], + "texture": 0 + }, + "dswA4ncI": { + "uv": { + "Kvjd": [4.50306, 0], + "O5S9": [2.16591, 1.76648], + "tls7": [5.06639, 1.76648] + }, + "vertices": ["tls7", "O5S9", "Kvjd"], + "texture": 0 + }, + "x4e93Rac": { + "uv": { + "8bfM": [1.0898, 6.5], + "USVQ": [2.1796, 5], + "5xC8": [0, 5] + }, + "vertices": ["5xC8", "USVQ", "8bfM"], + "texture": 0 + }, + "TtnpSvW1": { + "uv": { + "tls7": [0, 5], + "HXhU": [2.1796, 5], + "5xC8": [0, 7], + "USVQ": [2.1796, 7] + }, + "vertices": ["USVQ", "5xC8", "HXhU", "tls7"], + "texture": 0 + }, + "royATjFd": { + "uv": { + "Kvjd": [4.50306, 0], + "tls7": [2.16591, 1.76648], + "HXhU": [5.06639, 1.76648] + }, + "vertices": ["HXhU", "tls7", "Kvjd"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "13b888c6-ccc6-3eba-eac8-25aa02e3ae0a" + }, + { + "name": "cylinder", + "color": 8, + "origin": [5.6, 14.3, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "uXX4": [0.04894, -1.2, 0.15], + "oTYm": [0.04894, 6.5, 0.15], + "xQ7R": [-0.69917, -0.2375, 1.33333], + "KviP": [-1.02311, 5.5375, 1.925], + "ZAwo": [-0.7994, -0.2375, 0.15], + "jvUa": [-2.09517, 5.5375, 0.15], + "ZlND": [-0.69917, -0.2375, -1.03333], + "0viC": [-1.02311, 5.5375, -1.625], + "0sOe": [0.79706, -0.2375, -1.03333], + "bbcG": [0.47311, 5.5375, -1.625], + "EHEa": [1.54517, -0.2375, 0.15], + "Hf1h": [1.54517, 5.5375, 0.15], + "qpo9": [0.79706, -0.2375, 1.33333], + "AFOM": [0.47311, 5.5375, 1.925] + }, + "faces": { + "lobLHojZ": { + "uv": { + "uXX4": [0, 3], + "ZAwo": [1.1547, 3], + "xQ7R": [0.5774, 2] + }, + "vertices": ["xQ7R", "ZAwo", "uXX4"], + "texture": 0 + }, + "2wrsF9PS": { + "uv": { + "KviP": [0, 0], + "jvUa": [1.1548, 0], + "xQ7R": [0, 6], + "ZAwo": [1.1548, 6] + }, + "vertices": ["ZAwo", "xQ7R", "jvUa", "KviP"], + "texture": 0 + }, + "MLElNaEL": { + "uv": { + "oTYm": [3, 0], + "KviP": [3.5774, 1], + "jvUa": [4.1547, 0] + }, + "vertices": ["jvUa", "KviP", "oTYm"], + "texture": 0 + }, + "NHGFWn7K": { + "uv": { + "uXX4": [0, 2], + "ZlND": [0.5774, 3], + "ZAwo": [1.1547, 2] + }, + "vertices": ["ZAwo", "ZlND", "uXX4"], + "texture": 0 + }, + "8cc6hOOR": { + "uv": { + "jvUa": [0, 0], + "0viC": [1.1548, 0], + "ZAwo": [0, 6], + "ZlND": [1.1548, 6] + }, + "vertices": ["ZlND", "ZAwo", "0viC", "jvUa"], + "texture": 0 + }, + "SrTdhUln": { + "uv": { + "oTYm": [3, 1], + "jvUa": [4.1547, 1], + "0viC": [3.5774, 0] + }, + "vertices": ["0viC", "jvUa", "oTYm"], + "texture": 0 + }, + "9UtXiLWH": { + "uv": { + "uXX4": [0.5774, 2], + "0sOe": [0, 3], + "ZlND": [1.1548, 3] + }, + "vertices": ["ZlND", "0sOe", "uXX4"], + "texture": 0 + }, + "qGP3hNLj": { + "uv": { + "0viC": [0, 0], + "bbcG": [1.1548, 0], + "ZlND": [0, 6], + "0sOe": [1.1548, 6] + }, + "vertices": ["0sOe", "ZlND", "bbcG", "0viC"], + "texture": 0 + }, + "1B3EpcYx": { + "uv": { + "oTYm": [3.5774, 1], + "0viC": [4.1548, 0], + "bbcG": [3, 0] + }, + "vertices": ["bbcG", "0viC", "oTYm"], + "texture": 0 + }, + "6tckQVaJ": { + "uv": { + "uXX4": [1.1547, 2], + "EHEa": [0, 2], + "0sOe": [0.5773, 3] + }, + "vertices": ["0sOe", "EHEa", "uXX4"], + "texture": 0 + }, + "2WWrRUBm": { + "uv": { + "bbcG": [0, 0], + "Hf1h": [1.1548, 0], + "0sOe": [0, 6], + "EHEa": [1.1548, 6] + }, + "vertices": ["EHEa", "0sOe", "Hf1h", "bbcG"], + "texture": 0 + }, + "gSUoLh4J": { + "uv": { + "oTYm": [3.5774, 1], + "bbcG": [4.1548, 0], + "Hf1h": [3, 0] + }, + "vertices": ["Hf1h", "bbcG", "oTYm"], + "texture": 0 + }, + "Gd1XafzL": { + "uv": { + "uXX4": [0.5774, 3], + "qpo9": [1.1548, 2], + "EHEa": [0, 2] + }, + "vertices": ["EHEa", "qpo9", "uXX4"], + "texture": 0 + }, + "4eJ8kTWL": { + "uv": { + "Hf1h": [0, 0], + "AFOM": [1.1548, 0], + "EHEa": [0, 6], + "qpo9": [1.1548, 6] + }, + "vertices": ["qpo9", "EHEa", "AFOM", "Hf1h"], + "texture": 0 + }, + "EiJgXwpU": { + "uv": { + "oTYm": [3.5774, 1], + "Hf1h": [4.1548, 0], + "AFOM": [3, 0] + }, + "vertices": ["AFOM", "Hf1h", "oTYm"], + "texture": 0 + }, + "U1EMdNou": { + "uv": { + "uXX4": [0.5774, 3], + "xQ7R": [1.1548, 2], + "qpo9": [0, 2] + }, + "vertices": ["qpo9", "xQ7R", "uXX4"], + "texture": 0 + }, + "JaWe1p8r": { + "uv": { + "AFOM": [0, 0], + "KviP": [1.1548, 0], + "qpo9": [0, 6], + "xQ7R": [1.1548, 6] + }, + "vertices": ["xQ7R", "qpo9", "KviP", "AFOM"], + "texture": 0 + }, + "1NM4KFOU": { + "uv": { + "oTYm": [3.5774, 1], + "AFOM": [4.1548, 0], + "KviP": [3, 0] + }, + "vertices": ["KviP", "AFOM", "oTYm"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "c6ff2935-b98b-c9cc-3937-80110c67e83a" + }, + { + "name": "cube", + "color": 8, + "origin": [6.15, 14.7, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "pd2g": [0.99217, -0.3294, 1.1], + "mmL5": [0.99217, -0.3294, -1.15], + "rrJj": [1.30842, -3.15797, 1.1], + "s2jG": [1.30842, -3.15797, -1.15], + "SQdA": [-1.22158, 0.37774, 1.1], + "1I6t": [-1.22158, 0.23632, -1.15], + "x97M": [-1.22158, -3.15797, 1.1], + "6OCI": [-1.22158, -3.15797, -1.15], + "1mAv": [0.67592, -4.57226, 0.725], + "qLFu": [-1.22158, -4.57226, 0.725], + "l2mI": [0.67592, -4.57226, -0.775], + "0CGp": [-1.22158, -4.57226, -0.775], + "Az5f": [-1.22158, -1.74368, -1.9], + "cZ9p": [0.67592, -1.74368, -1.9], + "zqiK": [-1.22158, -3.15797, -1.9], + "iXLD": [0.67592, -3.15797, -1.9], + "kFKb": [0.99217, -0.3294, -0.5875], + "Jy9D": [1.30842, -3.15797, -0.5875], + "NjLO": [0.99217, -0.3294, -0.025], + "EamT": [1.30842, -3.15797, -0.025], + "4Uw8": [0.99217, -0.3294, 0.5375], + "E7H1": [1.30842, -3.15797, 0.5375], + "zNmF": [0.67592, -4.57226, -0.4], + "I94e": [0.67592, -4.57226, -0.025], + "lmne": [0.67592, -4.57226, 0.35], + "81Au": [-1.22158, -4.57226, -0.4], + "bkdC": [-1.22158, -4.57226, -0.025], + "GJFl": [-1.22158, -4.57226, 0.35], + "iA4U": [-1.22158, -3.15797, -0.5875], + "IVs2": [-1.22158, -3.15797, -0.025], + "wqYW": [-1.22158, -3.15797, 0.5375], + "UdID": [-1.22158, 0.27167, -0.5875], + "09B4": [-1.22158, 0.30703, -0.025], + "azok": [-1.22158, 0.34239, 0.5375] + }, + "faces": { + "FKjq113j": { + "uv": { + "pd2g": [3, 5], + "E7H1": [0, 4.5], + "4Uw8": [3, 4.5], + "rrJj": [0, 5] + }, + "vertices": ["rrJj", "4Uw8", "E7H1", "pd2g"], + "texture": 0 + }, + "jZ871epm": { + "uv": { + "x97M": [0, 3], + "azok": [3, 3.5], + "wqYW": [0, 3.5], + "SQdA": [3, 3] + }, + "vertices": ["SQdA", "wqYW", "azok", "x97M"], + "texture": 0 + }, + "uGJH28Iv": { + "uv": { + "SQdA": [0, 5], + "4Uw8": [0.375, 2], + "azok": [0.375, 5], + "pd2g": [0, 2] + }, + "vertices": ["pd2g", "azok", "4Uw8", "SQdA"], + "texture": 0 + }, + "1nFJZMx2": { + "uv": { + "1mAv": [1.5, 2], + "GJFl": [1.125, 5], + "lmne": [1.125, 2], + "qLFu": [1.5, 5] + }, + "vertices": ["qLFu", "lmne", "GJFl", "1mAv"], + "texture": 0 + }, + "OQgR4dER": { + "uv": { + "x97M": [0, 5], + "rrJj": [0, 3], + "SQdA": [1.5, 5], + "pd2g": [1.5, 3] + }, + "vertices": ["pd2g", "SQdA", "rrJj", "x97M"], + "texture": 0 + }, + "UN1JDrWQ": { + "uv": { + "iXLD": [0, 5], + "zqiK": [0, 3], + "cZ9p": [1.5, 5], + "Az5f": [1.5, 3] + }, + "vertices": ["Az5f", "cZ9p", "zqiK", "iXLD"], + "texture": 0 + }, + "XyxwRClU": { + "uv": { + "rrJj": [0, 2], + "lmne": [3, 2.25], + "E7H1": [0, 2.25], + "1mAv": [3, 2] + }, + "vertices": ["1mAv", "E7H1", "lmne", "rrJj"], + "texture": 0 + }, + "Ilz3SEts": { + "uv": { + "x97M": [0, 2], + "rrJj": [0, 3], + "1mAv": [1.5, 3], + "qLFu": [1.5, 2] + }, + "vertices": ["qLFu", "1mAv", "rrJj", "x97M"], + "texture": 0 + }, + "Cchw1LL2": { + "uv": { + "qLFu": [3, 3], + "wqYW": [0, 2.75], + "GJFl": [3, 2.75], + "x97M": [0, 3] + }, + "vertices": ["x97M", "GJFl", "wqYW", "qLFu"], + "texture": 0 + }, + "n2rwk4ci": { + "uv": { + "s2jG": [0, 3], + "6OCI": [0, 4], + "0CGp": [1.5, 4], + "l2mI": [1.5, 3] + }, + "vertices": ["l2mI", "0CGp", "6OCI", "s2jG"], + "texture": 0 + }, + "O5Z8kx5g": { + "uv": { + "1I6t": [2, 3], + "6OCI": [1, 3], + "zqiK": [1, 5], + "Az5f": [2, 5] + }, + "vertices": ["Az5f", "zqiK", "6OCI", "1I6t"], + "texture": 0 + }, + "4RYNouH5": { + "uv": { + "mmL5": [1.5, 3], + "1I6t": [1.5, 2], + "Az5f": [0, 2], + "cZ9p": [0, 3] + }, + "vertices": ["cZ9p", "Az5f", "1I6t", "mmL5"], + "texture": 0 + }, + "TW0YxAz3": { + "uv": { + "s2jG": [0, 5], + "mmL5": [1, 5], + "cZ9p": [1, 3], + "iXLD": [0, 3] + }, + "vertices": ["iXLD", "cZ9p", "mmL5", "s2jG"], + "texture": 0 + }, + "2zYxvLvJ": { + "uv": { + "6OCI": [0, 2], + "s2jG": [0, 3], + "iXLD": [1.5, 3], + "zqiK": [1.5, 2] + }, + "vertices": ["zqiK", "iXLD", "s2jG", "6OCI"], + "texture": 0 + }, + "BKf5NSMf": { + "uv": { + "s2jG": [0, 1], + "Jy9D": [0, 2], + "kFKb": [3, 2], + "mmL5": [3, 1] + }, + "vertices": ["mmL5", "kFKb", "Jy9D", "s2jG"], + "texture": 0 + }, + "JpNiYA3G": { + "uv": { + "Jy9D": [0, 3.5], + "EamT": [0, 4], + "NjLO": [3, 4], + "kFKb": [3, 3.5] + }, + "vertices": ["kFKb", "NjLO", "EamT", "Jy9D"], + "texture": 0 + }, + "GdpzZg9a": { + "uv": { + "EamT": [0, 2.33333], + "E7H1": [0, 2.5], + "4Uw8": [3, 2.5], + "NjLO": [3, 2.33333] + }, + "vertices": ["NjLO", "4Uw8", "E7H1", "EamT"], + "texture": 0 + }, + "TlsMHfmZ": { + "uv": { + "l2mI": [3, 1.33333], + "zNmF": [3, 1.25], + "Jy9D": [0, 1.25], + "s2jG": [0, 1.33333] + }, + "vertices": ["s2jG", "Jy9D", "zNmF", "l2mI"], + "texture": 0 + }, + "aqKhnRXQ": { + "uv": { + "zNmF": [3, 2.75], + "I94e": [3, 2.5], + "EamT": [0, 2.5], + "Jy9D": [0, 2.75] + }, + "vertices": ["Jy9D", "EamT", "I94e", "zNmF"], + "texture": 0 + }, + "63v75zR5": { + "uv": { + "I94e": [3, 1.16667], + "lmne": [3, 1.08333], + "E7H1": [0, 1.08333], + "EamT": [0, 1.16667] + }, + "vertices": ["EamT", "E7H1", "lmne", "I94e"], + "texture": 0 + }, + "EMdhJPKA": { + "uv": { + "0CGp": [0, 2], + "81Au": [0.375, 2], + "zNmF": [0.375, 1], + "l2mI": [0, 1] + }, + "vertices": ["l2mI", "zNmF", "81Au", "0CGp"], + "texture": 0 + }, + "mbMoevDt": { + "uv": { + "81Au": [0.375, 5], + "bkdC": [0.75, 5], + "I94e": [0.75, 2], + "zNmF": [0.375, 2] + }, + "vertices": ["zNmF", "I94e", "bkdC", "81Au"], + "texture": 0 + }, + "x0VSEKNp": { + "uv": { + "bkdC": [0.75, 2], + "GJFl": [1.125, 2], + "lmne": [1.125, 1], + "I94e": [0.75, 1] + }, + "vertices": ["I94e", "lmne", "GJFl", "bkdC"], + "texture": 0 + }, + "JxgfCy0i": { + "uv": { + "6OCI": [0, 1], + "iA4U": [0, 1.08333], + "81Au": [3, 1.08333], + "0CGp": [3, 1] + }, + "vertices": ["0CGp", "81Au", "iA4U", "6OCI"], + "texture": 0 + }, + "QyoKJJph": { + "uv": { + "iA4U": [0, 2.25], + "IVs2": [0, 2.5], + "bkdC": [3, 2.5], + "81Au": [3, 2.25] + }, + "vertices": ["81Au", "bkdC", "IVs2", "iA4U"], + "texture": 0 + }, + "Lk3hmryg": { + "uv": { + "IVs2": [0, 1.16667], + "wqYW": [0, 1.25], + "GJFl": [3, 1.25], + "bkdC": [3, 1.16667] + }, + "vertices": ["bkdC", "GJFl", "wqYW", "IVs2"], + "texture": 0 + }, + "pJI3WqXz": { + "uv": { + "1I6t": [3, 2.66667], + "UdID": [3, 2.5], + "iA4U": [0, 2.5], + "6OCI": [0, 2.66667] + }, + "vertices": ["6OCI", "iA4U", "UdID", "1I6t"], + "texture": 0 + }, + "h7pymN6Y": { + "uv": { + "UdID": [3, 4.5], + "09B4": [3, 4], + "IVs2": [0, 4], + "iA4U": [0, 4.5] + }, + "vertices": ["iA4U", "IVs2", "09B4", "UdID"], + "texture": 0 + }, + "bDYNAwsd": { + "uv": { + "09B4": [3, 2.33333], + "azok": [3, 2.16667], + "wqYW": [0, 2.16667], + "IVs2": [0, 2.33333] + }, + "vertices": ["IVs2", "wqYW", "azok", "09B4"], + "texture": 0 + }, + "q4OUrDWP": { + "uv": { + "mmL5": [1.5, 1], + "kFKb": [1.125, 1], + "UdID": [1.125, 2], + "1I6t": [1.5, 2] + }, + "vertices": ["1I6t", "UdID", "kFKb", "mmL5"], + "texture": 0 + }, + "tdhfravm": { + "uv": { + "kFKb": [1.125, 2], + "NjLO": [0.75, 2], + "09B4": [0.75, 5], + "UdID": [1.125, 5] + }, + "vertices": ["UdID", "09B4", "NjLO", "kFKb"], + "texture": 0 + }, + "aBr6k8lJ": { + "uv": { + "NjLO": [0.75, 1], + "4Uw8": [0.375, 1], + "azok": [0.375, 2], + "09B4": [0.75, 2] + }, + "vertices": ["09B4", "azok", "4Uw8", "NjLO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "11ea81eb-0e0f-83ea-387f-aaddcaea9ce1" + }, + { + "name": "cylinder", + "color": 2, + "origin": [0, 12, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "ITSp": [0, 3.5, 0.5], + "Nvu6": [3.3094, -2, 5], + "RrBX": [2.69066, 3.5, 3.7625], + "iPyJ": [6.6188, -2, 0.5], + "0Y79": [5.38131, 3.5, 0.5], + "eigQ": [3.3094, -2, -4], + "Xvb6": [2.69066, 3.5, -2.7625], + "5Dmg": [-3.3094, -2, -4], + "AtQi": [-2.69066, 3.5, -2.7625], + "eaBi": [-6.6188, -2, 0.5], + "2g3l": [-5.38131, 3.5, 0.5], + "ztoH": [-3.3094, -2, 5], + "sPHf": [-2.69066, 3.5, 3.7625], + "FbI5": [-2.48205, -2, -2.875], + "gG1t": [2.48205, -2, -2.875], + "cDOV": [4.9641, -2, 0.5], + "LmQd": [2.48205, -2, 3.875], + "vun5": [-2.48205, -2, 3.875], + "yR3f": [-4.9641, -2, 0.5], + "eaV1": [-2.48205, 1, -2.875], + "tN6F": [2.48205, 1, -2.875], + "klLY": [0, 1, 0.5], + "rCTa": [4.9641, 1, 0.5], + "pXeQ": [2.48205, 1, 3.875], + "8ZDb": [-2.48205, 1, 3.875], + "bcxb": [-4.9641, 1, 0.5] + }, + "faces": { + "bxrwCLzy": { + "uv": { + "klLY": [0, 54.00926], + "pXeQ": [5.8571, 47.48148], + "rCTa": [11.71399, 54.00926] + }, + "vertices": ["rCTa", "pXeQ", "klLY"], + "texture": 0 + }, + "V9FyZeSc": { + "uv": { + "RrBX": [1.52502, 31.98263], + "0Y79": [10.09378, 31.98263], + "iPyJ": [11.6188, 43.6246], + "Nvu6": [0, 43.6246] + }, + "vertices": ["Nvu6", "iPyJ", "0Y79", "RrBX"], + "texture": 0 + }, + "OQQuJfT4": { + "uv": { + "ITSp": [9.6188, 32], + "0Y79": [4.8094, 44], + "RrBX": [0, 32] + }, + "vertices": ["RrBX", "0Y79", "ITSp"], + "texture": 0 + }, + "SPlMr3Na": { + "uv": { + "klLY": [0, 44], + "rCTa": [11.71399, 44], + "tN6F": [5.8571, 50.52778] + }, + "vertices": ["tN6F", "rCTa", "klLY"], + "texture": 0 + }, + "0ruZX02Z": { + "uv": { + "0Y79": [1.52502, 31.98263], + "Xvb6": [10.09378, 31.98263], + "eigQ": [11.6188, 43.6246], + "iPyJ": [0, 43.6246] + }, + "vertices": ["iPyJ", "eigQ", "Xvb6", "0Y79"], + "texture": 0 + }, + "ulXhCvEk": { + "uv": { + "ITSp": [4.8094, 32], + "Xvb6": [9.6188, 44], + "0Y79": [0, 44] + }, + "vertices": ["0Y79", "Xvb6", "ITSp"], + "texture": 0 + }, + "DU8KihLn": { + "uv": { + "klLY": [5.8571, 49.22222], + "tN6F": [11.7142, 55.75], + "eaV1": [0, 55.75] + }, + "vertices": ["eaV1", "tN6F", "klLY"], + "texture": 0 + }, + "XWzjVFrf": { + "uv": { + "Xvb6": [1.52502, 31.98263], + "AtQi": [10.09378, 31.98263], + "5Dmg": [11.6188, 43.6246], + "eigQ": [0, 43.6246] + }, + "vertices": ["eigQ", "5Dmg", "AtQi", "Xvb6"], + "texture": 0 + }, + "w9jFffcg": { + "uv": { + "ITSp": [0, 32], + "AtQi": [9.6188, 32], + "Xvb6": [4.8094, 44] + }, + "vertices": ["Xvb6", "AtQi", "ITSp"], + "texture": 0 + }, + "K2cLYEBb": { + "uv": { + "klLY": [11.71399, 44], + "eaV1": [5.85689, 50.52778], + "bcxb": [0, 44] + }, + "vertices": ["bcxb", "eaV1", "klLY"], + "texture": 0 + }, + "kG34slMj": { + "uv": { + "AtQi": [1.52502, 31.98263], + "2g3l": [10.09378, 31.98263], + "eaBi": [11.6188, 43.6246], + "5Dmg": [0, 43.6246] + }, + "vertices": ["5Dmg", "eaBi", "2g3l", "AtQi"], + "texture": 0 + }, + "8ihFMEJy": { + "uv": { + "ITSp": [0, 44], + "2g3l": [4.8094, 32], + "AtQi": [9.6188, 44] + }, + "vertices": ["AtQi", "2g3l", "ITSp"], + "texture": 0 + }, + "UjD7vhy7": { + "uv": { + "klLY": [11.71399, 54.00926], + "bcxb": [0, 54.00926], + "8ZDb": [5.85689, 47.48148] + }, + "vertices": ["8ZDb", "bcxb", "klLY"], + "texture": 0 + }, + "SDLqZtLt": { + "uv": { + "2g3l": [1.52502, 31.98263], + "sPHf": [10.09378, 31.98263], + "ztoH": [11.6188, 43.6246], + "eaBi": [0, 43.6246] + }, + "vertices": ["eaBi", "ztoH", "sPHf", "2g3l"], + "texture": 0 + }, + "EdMUBDM6": { + "uv": { + "ITSp": [4.8094, 44], + "sPHf": [0, 32], + "2g3l": [9.6188, 32] + }, + "vertices": ["2g3l", "sPHf", "ITSp"], + "texture": 0 + }, + "cMbGsGyo": { + "uv": { + "klLY": [5.8571, 50.52778], + "8ZDb": [0, 44], + "pXeQ": [11.7142, 44] + }, + "vertices": ["pXeQ", "8ZDb", "klLY"], + "texture": 0 + }, + "jFTliP3X": { + "uv": { + "sPHf": [1.52502, 31.98263], + "RrBX": [10.09378, 31.98263], + "Nvu6": [11.6188, 43.6246], + "ztoH": [0, 43.6246] + }, + "vertices": ["ztoH", "Nvu6", "RrBX", "sPHf"], + "texture": 0 + }, + "bxf4msRu": { + "uv": { + "ITSp": [9.6188, 44], + "RrBX": [0, 44], + "sPHf": [4.8094, 32] + }, + "vertices": ["sPHf", "RrBX", "ITSp"], + "texture": 0 + }, + "sxvMJH49": { + "uv": { + "eigQ": [7.6188, 39.25], + "5Dmg": [0, 39.25], + "FbI5": [0.9523, 38], + "gG1t": [6.6665, 38] + }, + "vertices": ["gG1t", "FbI5", "5Dmg", "eigQ"], + "texture": 0 + }, + "eqZO2G0m": { + "uv": { + "iPyJ": [6.28582, 39.51509], + "eigQ": [0, 39.51503], + "gG1t": [0.41719, 38], + "cDOV": [5.13153, 38] + }, + "vertices": ["cDOV", "gG1t", "eigQ", "iPyJ"], + "texture": 0 + }, + "WzKqxyO5": { + "uv": { + "Nvu6": [6.51503, 41], + "iPyJ": [6.51509, 47.28582], + "cDOV": [5, 46.13153], + "LmQd": [5, 41.41719] + }, + "vertices": ["LmQd", "cDOV", "iPyJ", "Nvu6"], + "texture": 0 + }, + "dxcKcdd6": { + "uv": { + "ztoH": [3, 37], + "Nvu6": [10.6188, 37], + "LmQd": [9.6665, 38.25], + "vun5": [3.9523, 38.25] + }, + "vertices": ["vun5", "LmQd", "Nvu6", "ztoH"], + "texture": 0 + }, + "WVrgpPxW": { + "uv": { + "eaBi": [4, 37], + "ztoH": [10.28582, 37.00005], + "vun5": [9.86863, 38.51509], + "yR3f": [5.15429, 38.51509] + }, + "vertices": ["yR3f", "vun5", "ztoH", "eaBi"], + "texture": 0 + }, + "QseuJ9JX": { + "uv": { + "5Dmg": [4.00005, 34.28582], + "eaBi": [4, 28], + "yR3f": [5.51509, 29.15429], + "FbI5": [5.51509, 33.86863] + }, + "vertices": ["FbI5", "yR3f", "eaBi", "5Dmg"], + "texture": 0 + }, + "aqWuqrqN": { + "uv": { + "gG1t": [0, 53], + "FbI5": [11.7141, 53], + "eaV1": [11.7141, 56], + "tN6F": [0, 56] + }, + "vertices": ["tN6F", "eaV1", "FbI5", "gG1t"], + "texture": 0 + }, + "yTBPAKrY": { + "uv": { + "cDOV": [2.05, 47], + "gG1t": [11.7143, 47], + "tN6F": [11.7143, 50], + "rCTa": [2.05, 50] + }, + "vertices": ["rCTa", "tN6F", "gG1t", "cDOV"], + "texture": 0 + }, + "rer2pNQY": { + "uv": { + "LmQd": [2.05, 50], + "cDOV": [11.7143, 50], + "rCTa": [11.7143, 53], + "pXeQ": [2.05, 53] + }, + "vertices": ["pXeQ", "rCTa", "cDOV", "LmQd"], + "texture": 0 + }, + "Hl4STh0d": { + "uv": { + "vun5": [0, 44], + "LmQd": [11.7141, 44], + "pXeQ": [11.7141, 47], + "8ZDb": [0, 47] + }, + "vertices": ["8ZDb", "pXeQ", "LmQd", "vun5"], + "texture": 0 + }, + "K2K6NWmV": { + "uv": { + "yR3f": [0, 50], + "vun5": [9.6643, 50], + "8ZDb": [9.6643, 53], + "bcxb": [0, 53] + }, + "vertices": ["bcxb", "8ZDb", "vun5", "yR3f"], + "texture": 0 + }, + "AaGZZNOw": { + "uv": { + "FbI5": [0, 47], + "yR3f": [9.6643, 47], + "bcxb": [9.6643, 50], + "eaV1": [0, 50] + }, + "vertices": ["eaV1", "bcxb", "yR3f", "FbI5"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "46e46f49-fca6-eb7f-d115-7473d8719233" + }, + { + "name": "neutral", + "color": 8, + "origin": [0, 27.75, -4.1], + "rotation": [2.5, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "zyRr": [4.10492, 2.7, -0.0201], + "ooTR": [4.10492, 0.5, -0.0201], + "73OG": [-4.06506, 2.7, -0.02013], + "HXoH": [-4.06506, 0.5, -0.02013], + "fJPg": [-0.07242, 0.5, -0.76488], + "ujQW": [-0.07242, 2.7, -0.76488] + }, + "faces": { + "ygbaDk3h": { + "uv": { + "HXoH": [27.7, 18.1], + "ujQW": [13.7, 12.1], + "fJPg": [13.7, 18.1], + "73OG": [27.7, 12.1] + }, + "vertices": ["73OG", "fJPg", "ujQW", "HXoH"], + "texture": 0 + }, + "QOPlDywE": { + "uv": { + "zyRr": [27.7, 12.1], + "ujQW": [13.7, 12.1], + "fJPg": [13.7, 18.1], + "ooTR": [27.7, 18.1] + }, + "vertices": ["ooTR", "fJPg", "ujQW", "zyRr"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "8dee770f-2330-9d98-92fa-7c0c3210c4fd" + }, + { + "name": "circle", + "color": 8, + "origin": [-1.4, 29.3, -4.3], + "rotation": [-90, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "QlBo": [-0.54435, -0.00243, 0.25043], + "FP9N": [-1.32807, -0.13252, 1.72337], + "lUGq": [-2.19315, -0.19793, 0.18435], + "ro66": [-1.40899, -0.13901, -1.1681], + "Usga": [0.23938, 0.12766, -1.22251], + "GyQD": [1.10402, 0.26425, 0.19602], + "sKKe": [0.32029, 0.13416, 1.66896], + "gp6k": [4.13013, -0.13338, 1.72352], + "vTgM": [4.21104, -0.13988, -1.16795], + "IXDG": [2.56266, 0.12679, -1.22236], + "82YR": [1.69802, 0.26338, 0.19617], + "p7xK": [2.48175, 0.13329, 1.66911], + "1CcK": [0.92358, 0.18131, 0.58363], + "zLaG": [1.87847, 0.18044, 0.5838], + "BVQ2": [-1.87797, -0.13378, 0.95807], + "hOxT": [-1.63483, -3.15248, 0.85898], + "DUmR": [-1.91752, -3.16571, 0.18616], + "ijmy": [4.43483, -3.11461, 0.9051], + "B9AS": [4.71752, -3.17205, 0.2333], + "mmJQ": [3.34639, -0.00329, 0.25058], + "49hN": [4.99499, -0.22481, 0.28533], + "qMSp": [4.62124, -0.18585, 1.02693] + }, + "faces": { + "MOKUwzxs": { + "uv": { + "QlBo": [26.1547, 3], + "lUGq": [25, 9], + "ro66": [27.3094, 9] + }, + "vertices": ["ro66", "lUGq", "QlBo"], + "texture": 0 + }, + "51YiqX10": { + "uv": { + "lUGq": [30.0855, 10.1107], + "BVQ2": [28.29597, 8], + "hOxT": [23, 8], + "DUmR": [24.78953, 10.1107] + }, + "vertices": ["DUmR", "hOxT", "BVQ2", "lUGq"], + "texture": 0 + }, + "2pIUB8ES": { + "uv": { + "QlBo": [26.1547, 3], + "ro66": [25, 9], + "Usga": [27.3094, 9] + }, + "vertices": ["Usga", "ro66", "QlBo"], + "texture": 0 + }, + "ZK7NKOeF": { + "uv": { + "QlBo": [26.1547, 3], + "Usga": [25, 9], + "GyQD": [27.3094, 9] + }, + "vertices": ["GyQD", "Usga", "QlBo"], + "texture": 0 + }, + "wR8umpUu": { + "uv": { + "QlBo": [26.1547, 5.3], + "sKKe": [25, 0.3], + "FP9N": [27.3094, 0.3] + }, + "vertices": ["FP9N", "sKKe", "QlBo"], + "texture": 0 + }, + "H6VP4Ksv": { + "uv": { + "mmJQ": [26.1547, 3], + "IXDG": [27.3094, 9], + "vTgM": [25, 9] + }, + "vertices": ["vTgM", "IXDG", "mmJQ"], + "texture": 0 + }, + "wJyfxrMY": { + "uv": { + "GyQD": [25.1547, 0.3], + "QlBo": [27, 5.3], + "1CcK": [25, 0.3], + "sKKe": [27.3094, 0.3] + }, + "vertices": ["sKKe", "1CcK", "QlBo", "GyQD"], + "texture": 0 + }, + "DIF8u6Nx": { + "uv": { + "p7xK": [25, 0.3], + "mmJQ": [27.5, 5.3], + "zLaG": [25, 0.3], + "82YR": [27.5, 0.3] + }, + "vertices": ["82YR", "zLaG", "mmJQ", "p7xK"], + "texture": 0 + }, + "Y3MIAtYU": { + "uv": { + "49hN": [30.0855, 10.1107], + "qMSp": [28.29597, 8], + "B9AS": [24.78953, 10.1107], + "ijmy": [23, 8] + }, + "vertices": ["ijmy", "B9AS", "qMSp", "49hN"], + "texture": 0 + }, + "m5Ei64ON": { + "uv": { + "lUGq": [25, 0.3], + "QlBo": [27.5, 5.3], + "FP9N": [27.5, 0.3], + "BVQ2": [25, 0.3] + }, + "vertices": ["BVQ2", "FP9N", "QlBo", "lUGq"], + "texture": 0 + }, + "JXbA3fJc": { + "uv": { + "mmJQ": [26.1547, 3], + "82YR": [27.3094, 9], + "IXDG": [25, 9] + }, + "vertices": ["IXDG", "82YR", "mmJQ"], + "texture": 0 + }, + "tMb37bkc": { + "uv": { + "1CcK": [22, 8.3337], + "GyQD": [22.52825, 8], + "82YR": [23.03255, 8], + "zLaG": [23.5608, 8.3337] + }, + "vertices": ["zLaG", "82YR", "GyQD", "1CcK"], + "texture": 0 + }, + "6XGDzFgh": { + "uv": { + "mmJQ": [26.1547, 3], + "vTgM": [27.3094, 9], + "49hN": [25, 9] + }, + "vertices": ["49hN", "vTgM", "mmJQ"], + "texture": 0 + }, + "ZQX1Mu9J": { + "uv": { + "mmJQ": [27.5, 5.3], + "gp6k": [25, 0.3], + "p7xK": [27.5, 0.3] + }, + "vertices": ["p7xK", "gp6k", "mmJQ"], + "texture": 0 + }, + "57qo5ODz": { + "uv": { + "49hN": [25, 0.3], + "mmJQ": [27.5, 5.3], + "qMSp": [25, 0.3], + "gp6k": [27.5, 0.3] + }, + "vertices": ["gp6k", "qMSp", "mmJQ", "49hN"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "f2ee2225-6cf0-0d4a-cde5-856d38b66daa" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-5.55, 20.35, 0], + "rotation": [0, 0, -10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [0.52276, -6.4525, 0.15], + "hwjg": [-0.50335, -5.59397, 2.275], + "ZISf": [-0.85754, 2.40417, 1.74375], + "ryg1": [-1.52947, -5.59397, 0.15], + "Jq92": [-1.47021, 2.40417, 0.15], + "rilX": [-0.50335, -5.59397, -1.975], + "iCDk": [-0.85754, 2.40417, -1.44375], + "v1hz": [1.54888, -5.59397, -1.975], + "UN0m": [1.13543, 2.99147, -1.44375], + "92Ln": [2.575, -5.59397, 0.15], + "uZrh": [1.74811, 2.99147, 0.15], + "bftR": [1.54888, -5.59397, 2.275], + "ORyy": [1.13543, 2.99147, 1.74375], + "9zIy": [0.52276, 3.85, 0.15], + "zVQ5": [-0.08989, 3.85, 0.15], + "Lrul": [0.21642, 3.85, 0.9469], + "Sltx": [0.82911, 3.85, 0.9469], + "l955": [1.13546, 3.85, 0.15], + "ovht": [0.82911, 3.85, -0.6469], + "12zS": [0.21642, 3.85, -0.6469], + "jS6F": [0.11433, -6.4525, 1.21247], + "IKHl": [-0.29415, -6.4525, 0.15], + "srzj": [0.1143, -6.4525, -0.91253], + "TZsM": [0.93123, -6.4525, -0.91253], + "n74E": [1.33968, -6.4525, 0.15], + "AgKl": [0.93123, -6.4525, 1.21253] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [3.3516, 26.1565], + "IKHl": [1.4433, 27.4375], + "jS6F": [2.5815, 27.4375], + "ryg1": [1, 26] + }, + "vertices": ["ryg1", "jS6F", "IKHl", "hwjg"], + "texture": 0 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [8.00293, 25.70159], + "Jq92": [7.99834, 24], + "hwjg": [0.00761, 26.35979], + "ryg1": [0, 24] + }, + "vertices": ["ryg1", "hwjg", "Jq92", "ZISf"], + "texture": 0 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1, 24.9366], + "Lrul": [2.349, 23], + "zVQ5": [1.4953, 23], + "ZISf": [2.7075, 24.9366] + }, + "vertices": ["ZISf", "zVQ5", "Lrul", "Jq92"], + "texture": 0 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [2.3517, 24], + "srzj": [0.7701, 25.4317], + "IKHl": [1.9085, 25.4317], + "rilX": [0, 24.1455] + }, + "vertices": ["rilX", "IKHl", "srzj", "ryg1"], + "texture": 0 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.334, 22.0015], + "iCDk": [0.6324, 22], + "ryg1": [2.3597, 29.9986], + "rilX": [0, 29.9986] + }, + "vertices": ["rilX", "ryg1", "iCDk", "Jq92"], + "texture": 0 + }, + "telwhUl5": { + "uv": { + "iCDk": [1, 27.9366], + "zVQ5": [2.2123, 26], + "12zS": [1.3585, 26], + "Jq92": [2.7075, 27.9366] + }, + "vertices": ["Jq92", "12zS", "zVQ5", "iCDk"], + "texture": 0 + }, + "Y0oRikhE": { + "uv": { + "rilX": [2.0522, 28], + "TZsM": [0.6177, 29.366], + "srzj": [1.4346, 29.366], + "v1hz": [0, 28] + }, + "vertices": ["v1hz", "srzj", "TZsM", "rilX"], + "texture": 0 + }, + "M1vklvUl": { + "uv": { + "iCDk": [8.122, 27.01875], + "UN0m": [8.61183, 25], + "rilX": [0.09854, 27.04983], + "v1hz": [0, 25] + }, + "vertices": ["v1hz", "rilX", "UN0m", "iCDk"], + "texture": 0 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1, 23.1366], + "12zS": [1.919, 22], + "ovht": [1.3063, 22], + "iCDk": [2.9929, 23.6509] + }, + "vertices": ["iCDk", "ovht", "12zS", "UN0m"], + "texture": 0 + }, + "L0SUV83I": { + "uv": { + "v1hz": [2.3517, 23.1566], + "n74E": [0.4433, 24.4376], + "TZsM": [1.5816, 24.4376], + "92Ln": [0, 23] + }, + "vertices": ["92Ln", "TZsM", "n74E", "v1hz"], + "texture": 0 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.0612, 21.0122], + "uZrh": [0.3596, 21], + "v1hz": [2.3598, 29.6177], + "92Ln": [0, 29.6177] + }, + "vertices": ["92Ln", "v1hz", "uZrh", "UN0m"], + "texture": 0 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0, 27.0316], + "ovht": [1.0736, 26], + "l955": [0.2199, 26], + "UN0m": [1.7075, 27.0316] + }, + "vertices": ["UN0m", "l955", "ovht", "uZrh"], + "texture": 0 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [2.3516, 26], + "AgKl": [0.7701, 27.4316], + "n74E": [1.9084, 27.4316], + "bftR": [0, 26.1454] + }, + "vertices": ["bftR", "n74E", "AgKl", "92Ln"], + "texture": 0 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.0002, 21], + "ORyy": [0.2986, 21.0099], + "92Ln": [2.3597, 29.6165], + "bftR": [0, 29.6165] + }, + "vertices": ["bftR", "92Ln", "ORyy", "uZrh"], + "texture": 0 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0, 24.0316], + "l955": [1.4876, 23], + "Sltx": [0.6339, 23], + "uZrh": [1.7075, 24.0316] + }, + "vertices": ["uZrh", "Sltx", "l955", "ORyy"], + "texture": 0 + }, + "Ahdauex4": { + "uv": { + "bftR": [2.0522, 22.0001], + "jS6F": [0.6176, 23.3661], + "AgKl": [1.4345, 23.3661], + "hwjg": [0, 22] + }, + "vertices": ["hwjg", "AgKl", "jS6F", "bftR"], + "texture": 0 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.01682, 21], + "ZISf": [0, 21.49748], + "bftR": [2.0503, 29.61157], + "hwjg": [0, 29.52099] + }, + "vertices": ["hwjg", "bftR", "ZISf", "ORyy"], + "texture": 0 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [0, 29.6018], + "Sltx": [1.6866, 28], + "Lrul": [1.0739, 28], + "ORyy": [1.9929, 29.1714] + }, + "vertices": ["ORyy", "Lrul", "Sltx", "ZISf"], + "texture": 0 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 22.7969], + "zVQ5": [0, 22], + "9zIy": [0.6127, 22] + }, + "vertices": ["9zIy", "zVQ5", "Lrul"], + "texture": 0 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 23.7969], + "Lrul": [1, 23.7969], + "9zIy": [1.3064, 23] + }, + "vertices": ["9zIy", "Lrul", "Sltx"], + "texture": 0 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 22], + "Sltx": [2.3063, 22.7969], + "9zIy": [2, 22] + }, + "vertices": ["9zIy", "Sltx", "l955"], + "texture": 0 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 28], + "l955": [2.6127, 28.7969], + "9zIy": [2, 28.7969] + }, + "vertices": ["9zIy", "l955", "ovht"], + "texture": 0 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 27], + "ovht": [1.6127, 27], + "9zIy": [1.3064, 27.7969] + }, + "vertices": ["9zIy", "ovht", "12zS"], + "texture": 0 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 28.7969], + "12zS": [0.3063, 28], + "9zIy": [0.6127, 28.7969] + }, + "vertices": ["9zIy", "12zS", "zVQ5"], + "texture": 0 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 30.0625], + "jS6F": [1.4084, 29], + "4WRs": [1.8169, 30.0625] + }, + "vertices": ["4WRs", "jS6F", "IKHl"], + "texture": 0 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 23.0625], + "IKHl": [1, 22], + "4WRs": [1.8169, 22] + }, + "vertices": ["4WRs", "IKHl", "srzj"], + "texture": 0 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 24.0625], + "srzj": [1, 24.0625], + "4WRs": [1.4085, 23] + }, + "vertices": ["4WRs", "srzj", "TZsM"], + "texture": 0 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 22], + "TZsM": [2.4084, 23.0625], + "4WRs": [2, 22] + }, + "vertices": ["4WRs", "TZsM", "n74E"], + "texture": 0 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 29], + "n74E": [2.8169, 30.0625], + "4WRs": [2, 30.0625] + }, + "vertices": ["4WRs", "n74E", "AgKl"], + "texture": 0 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 27], + "AgKl": [1.8169, 27], + "4WRs": [1.4085, 28.0625] + }, + "vertices": ["4WRs", "AgKl", "jS6F"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "b4aa1095-c834-139c-8b5f-93abfd983a84" + }, + { + "name": "cylinder", + "color": 8, + "origin": [5.55, 20.35, 0], + "rotation": [0, 0, 10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [-0.52276, -6.4525, 0.15], + "hwjg": [0.50335, -5.59397, 2.275], + "ZISf": [0.85754, 2.40417, 1.74375], + "ryg1": [1.52947, -5.59397, 0.15], + "Jq92": [1.47021, 2.40417, 0.15], + "rilX": [0.50335, -5.59397, -1.975], + "iCDk": [0.85754, 2.40417, -1.44375], + "v1hz": [-1.54888, -5.59397, -1.975], + "UN0m": [-1.13543, 2.99147, -1.44375], + "92Ln": [-2.575, -5.59397, 0.15], + "uZrh": [-1.74811, 2.99147, 0.15], + "bftR": [-1.54888, -5.59397, 2.275], + "ORyy": [-1.13543, 2.99147, 1.74375], + "9zIy": [-0.52276, 3.85, 0.15], + "zVQ5": [0.08989, 3.85, 0.15], + "Lrul": [-0.21642, 3.85, 0.9469], + "Sltx": [-0.82911, 3.85, 0.9469], + "l955": [-1.13546, 3.85, 0.15], + "ovht": [-0.82911, 3.85, -0.6469], + "12zS": [-0.21642, 3.85, -0.6469], + "jS6F": [-0.11433, -6.4525, 1.21247], + "IKHl": [0.29415, -6.4525, 0.15], + "srzj": [-0.1143, -6.4525, -0.91253], + "TZsM": [-0.93123, -6.4525, -0.91253], + "n74E": [-1.33968, -6.4525, 0.15], + "AgKl": [-0.93123, -6.4525, 1.21253] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [2.5815, 27.4375], + "IKHl": [1, 26], + "ryg1": [1.4433, 27.4375], + "jS6F": [3.3516, 26.1565] + }, + "vertices": ["jS6F", "ryg1", "IKHl", "hwjg"], + "texture": 0 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [0.00761, 26.35979], + "Jq92": [0, 24], + "ryg1": [7.99834, 24], + "hwjg": [8.00293, 25.70159] + }, + "vertices": ["hwjg", "ryg1", "Jq92", "ZISf"], + "texture": 0 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1.4953, 23], + "Lrul": [2.7075, 24.9366], + "ZISf": [2.349, 23], + "zVQ5": [1, 24.9366] + }, + "vertices": ["zVQ5", "ZISf", "Lrul", "Jq92"], + "texture": 0 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [1.9085, 25.4317], + "srzj": [0, 24.1455], + "rilX": [0.7701, 25.4317], + "IKHl": [2.3517, 24] + }, + "vertices": ["IKHl", "rilX", "srzj", "ryg1"], + "texture": 0 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.3597, 29.9986], + "iCDk": [0, 29.9986], + "rilX": [0.6324, 22], + "ryg1": [2.334, 22.0015] + }, + "vertices": ["ryg1", "rilX", "iCDk", "Jq92"], + "texture": 0 + }, + "telwhUl5": { + "uv": { + "iCDk": [1.3585, 26], + "zVQ5": [2.7075, 27.9366], + "Jq92": [2.2123, 26], + "12zS": [1, 27.9366] + }, + "vertices": ["12zS", "Jq92", "zVQ5", "iCDk"], + "texture": 0 + }, + "Y0oRikhE": { + "uv": { + "rilX": [1.4346, 29.366], + "TZsM": [0, 28], + "v1hz": [0.6177, 29.366], + "srzj": [2.0522, 28] + }, + "vertices": ["srzj", "v1hz", "TZsM", "rilX"], + "texture": 0 + }, + "M1vklvUl": { + "uv": { + "iCDk": [0.09854, 27.04983], + "UN0m": [0, 25], + "v1hz": [8.61183, 25], + "rilX": [8.122, 27.01875] + }, + "vertices": ["rilX", "v1hz", "UN0m", "iCDk"], + "texture": 0 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1.3063, 22], + "12zS": [2.9929, 23.6509], + "iCDk": [1.919, 22], + "ovht": [1, 23.1366] + }, + "vertices": ["ovht", "iCDk", "12zS", "UN0m"], + "texture": 0 + }, + "L0SUV83I": { + "uv": { + "v1hz": [1.5816, 24.4376], + "n74E": [0, 23], + "92Ln": [0.4433, 24.4376], + "TZsM": [2.3517, 23.1566] + }, + "vertices": ["TZsM", "92Ln", "n74E", "v1hz"], + "texture": 0 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.3598, 29.6177], + "uZrh": [0, 29.6177], + "92Ln": [0.3596, 21], + "v1hz": [2.0612, 21.0122] + }, + "vertices": ["v1hz", "92Ln", "uZrh", "UN0m"], + "texture": 0 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0.2199, 26], + "ovht": [1.7075, 27.0316], + "UN0m": [1.0736, 26], + "l955": [0, 27.0316] + }, + "vertices": ["l955", "UN0m", "ovht", "uZrh"], + "texture": 0 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [1.9084, 27.4316], + "AgKl": [0, 26.1454], + "bftR": [0.7701, 27.4316], + "n74E": [2.3516, 26] + }, + "vertices": ["n74E", "bftR", "AgKl", "92Ln"], + "texture": 0 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.3597, 29.6165], + "ORyy": [0, 29.6165], + "bftR": [0.2986, 21.0099], + "92Ln": [2.0002, 21] + }, + "vertices": ["92Ln", "bftR", "ORyy", "uZrh"], + "texture": 0 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0.6339, 23], + "l955": [1.7075, 24.0316], + "uZrh": [1.4876, 23], + "Sltx": [0, 24.0316] + }, + "vertices": ["Sltx", "uZrh", "l955", "ORyy"], + "texture": 0 + }, + "Ahdauex4": { + "uv": { + "bftR": [1.4345, 23.3661], + "jS6F": [0, 22], + "hwjg": [0.6176, 23.3661], + "AgKl": [2.0522, 22.0001] + }, + "vertices": ["AgKl", "hwjg", "jS6F", "bftR"], + "texture": 0 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.0503, 29.61157], + "ZISf": [0, 29.52099], + "hwjg": [0, 21.49748], + "bftR": [2.01682, 21] + }, + "vertices": ["bftR", "hwjg", "ZISf", "ORyy"], + "texture": 0 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [1.0739, 28], + "Sltx": [1.9929, 29.1714], + "ORyy": [1.6866, 28], + "Lrul": [0, 29.6018] + }, + "vertices": ["Lrul", "ORyy", "Sltx", "ZISf"], + "texture": 0 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 22.7969], + "9zIy": [0, 22], + "zVQ5": [0.6127, 22] + }, + "vertices": ["zVQ5", "9zIy", "Lrul"], + "texture": 0 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 23.7969], + "9zIy": [1, 23.7969], + "Lrul": [1.3064, 23] + }, + "vertices": ["Lrul", "9zIy", "Sltx"], + "texture": 0 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 22], + "9zIy": [2.3063, 22.7969], + "Sltx": [2, 22] + }, + "vertices": ["Sltx", "9zIy", "l955"], + "texture": 0 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 28], + "9zIy": [2.6127, 28.7969], + "l955": [2, 28.7969] + }, + "vertices": ["l955", "9zIy", "ovht"], + "texture": 0 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 27], + "9zIy": [1.6127, 27], + "ovht": [1.3064, 27.7969] + }, + "vertices": ["ovht", "9zIy", "12zS"], + "texture": 0 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 28.7969], + "9zIy": [0.3063, 28], + "12zS": [0.6127, 28.7969] + }, + "vertices": ["12zS", "9zIy", "zVQ5"], + "texture": 0 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 30.0625], + "4WRs": [1.4084, 29], + "jS6F": [1.8169, 30.0625] + }, + "vertices": ["jS6F", "4WRs", "IKHl"], + "texture": 0 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 23.0625], + "4WRs": [1, 22], + "IKHl": [1.8169, 22] + }, + "vertices": ["IKHl", "4WRs", "srzj"], + "texture": 0 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 24.0625], + "4WRs": [1, 24.0625], + "srzj": [1.4085, 23] + }, + "vertices": ["srzj", "4WRs", "TZsM"], + "texture": 0 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 22], + "4WRs": [2.4084, 23.0625], + "TZsM": [2, 22] + }, + "vertices": ["TZsM", "4WRs", "n74E"], + "texture": 0 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 29], + "4WRs": [2.8169, 30.0625], + "n74E": [2, 30.0625] + }, + "vertices": ["n74E", "4WRs", "AgKl"], + "texture": 0 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 27], + "4WRs": [1.8169, 27], + "AgKl": [1.4085, 28.0625] + }, + "vertices": ["AgKl", "4WRs", "jS6F"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "5b436543-2419-e70e-86f7-2277ab9225f9" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.48481, 5.64286, -0.17365], + "rotation": [1.72795, 0.14886, -0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [0.00233, -4.6424, 0.53015], + "769S": [0, 5.35714, 0.5], + "Ngnq": [1.29338, -3.64286, 2.9], + "86iU": [1.10243, 3.42858, 3.5], + "Orqk": [2.58675, -3.64286, 0.5], + "2WPs": [2.20486, 3.42858, 0.5], + "sf20": [1.29338, -3.64286, -1.9], + "JpAB": [1.10243, 3.42858, -2.5], + "uSt3": [-1.29338, -3.64286, -1.9], + "LEG0": [-1.10243, 3.42858, -2.5], + "H1ru": [-2.58675, -3.64286, 0.5], + "GPdT": [-2.20486, 3.42858, 0.5], + "HLm2": [-1.29338, -3.64286, 2.9], + "Ba1X": [-1.10243, 3.42858, 3.5] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 50.4], + "Ngnq": [3.37555, 48], + "Orqk": [5.3696, 50.4] + }, + "vertices": ["Orqk", "Ngnq", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 44.0163], + "2WPs": [5.80906, 44], + "Orqk": [6.11257, 55.006], + "Ngnq": [2.24355, 55.006] + }, + "vertices": ["Ngnq", "Orqk", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 45], + "2WPs": [4.47951, 48.766], + "86iU": [0, 48.766] + }, + "vertices": ["86iU", "2WPs", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 47], + "Orqk": [5.3696, 47], + "sf20": [3.37555, 49.4] + }, + "vertices": ["sf20", "Orqk", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 44.0057], + "JpAB": [6.11257, 44], + "sf20": [5.25052, 55.0008], + "Orqk": [1.3815, 55.0008] + }, + "vertices": ["Orqk", "sf20", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 48], + "JpAB": [5.86086, 51.766], + "2WPs": [1.3815, 51.766] + }, + "vertices": ["2WPs", "JpAB", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 49], + "sf20": [5.3696, 51.4], + "uSt3": [1.3815, 51.4] + }, + "vertices": ["uSt3", "sf20", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 44], + "LEG0": [5.07521, 44], + "uSt3": [5.3696, 55.0163], + "sf20": [1.3815, 55.0163] + }, + "vertices": ["sf20", "uSt3", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 45], + "LEG0": [4.78081, 49.2426], + "JpAB": [1.3815, 49.2426] + }, + "vertices": ["JpAB", "LEG0", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 47], + "uSt3": [3.37541, 49.4], + "H1ru": [1.3815, 47] + }, + "vertices": ["H1ru", "uSt3", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 44.0163], + "GPdT": [4.42756, 44], + "H1ru": [4.73108, 55.006], + "uSt3": [0.86205, 55.006] + }, + "vertices": ["uSt3", "H1ru", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 48], + "GPdT": [4.47937, 51.766], + "LEG0": [0, 51.766] + }, + "vertices": ["LEG0", "GPdT", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 50.4], + "H1ru": [1.3815, 50.4], + "HLm2": [3.37541, 48] + }, + "vertices": ["HLm2", "H1ru", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 44.0057], + "Ba1X": [6.11257, 44], + "HLm2": [5.25052, 55.0007], + "H1ru": [1.3815, 55.0007] + }, + "vertices": ["H1ru", "HLm2", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 45], + "Ba1X": [7.2425, 48.766], + "GPdT": [2.76299, 48.766] + }, + "vertices": ["GPdT", "Ba1X", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 49.4], + "HLm2": [1.3815, 47], + "Ngnq": [5.3696, 47] + }, + "vertices": ["Ngnq", "HLm2", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 44], + "86iU": [5.07521, 44], + "Ngnq": [5.3696, 55.0164], + "HLm2": [1.3815, 55.0164] + }, + "vertices": ["HLm2", "Ngnq", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 48], + "86iU": [4.78081, 52.2426], + "Ba1X": [1.3815, 52.2426] + }, + "vertices": ["Ba1X", "86iU", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "02c1d309-dc14-6511-c2fa-60a9333aff71" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.48481, 5.64286, -0.17365], + "rotation": [1.72795, -0.14886, 0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [-0.00233, -4.6424, 0.53015], + "769S": [0, 5.35714, 0.5], + "Ngnq": [-1.29338, -3.64286, 2.9], + "86iU": [-1.10243, 3.42858, 3.5], + "Orqk": [-2.58675, -3.64286, 0.5], + "2WPs": [-2.20486, 3.42858, 0.5], + "sf20": [-1.29338, -3.64286, -1.9], + "JpAB": [-1.10243, 3.42858, -2.5], + "uSt3": [1.29338, -3.64286, -1.9], + "LEG0": [1.10243, 3.42858, -2.5], + "H1ru": [2.58675, -3.64286, 0.5], + "GPdT": [2.20486, 3.42858, 0.5], + "HLm2": [1.29338, -3.64286, 2.9], + "Ba1X": [1.10243, 3.42858, 3.5] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 50.4], + "Ngnq": [3.37555, 48], + "Orqk": [5.3696, 50.4] + }, + "vertices": ["Ngnq", "Orqk", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 44.0163], + "2WPs": [5.80906, 44], + "Orqk": [6.11257, 55.006], + "Ngnq": [2.24355, 55.006] + }, + "vertices": ["Orqk", "Ngnq", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 45], + "2WPs": [4.47951, 48.766], + "86iU": [0, 48.766] + }, + "vertices": ["2WPs", "86iU", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 47], + "Orqk": [5.3696, 47], + "sf20": [3.37555, 49.4] + }, + "vertices": ["Orqk", "sf20", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 44.0057], + "JpAB": [6.11257, 44], + "sf20": [5.25052, 55.0008], + "Orqk": [1.3815, 55.0008] + }, + "vertices": ["sf20", "Orqk", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 48], + "JpAB": [5.86086, 51.766], + "2WPs": [1.3815, 51.766] + }, + "vertices": ["JpAB", "2WPs", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 49], + "sf20": [5.3696, 51.4], + "uSt3": [1.3815, 51.4] + }, + "vertices": ["sf20", "uSt3", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 44], + "LEG0": [5.07521, 44], + "uSt3": [5.3696, 55.0163], + "sf20": [1.3815, 55.0163] + }, + "vertices": ["uSt3", "sf20", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 45], + "LEG0": [4.78081, 49.2426], + "JpAB": [1.3815, 49.2426] + }, + "vertices": ["LEG0", "JpAB", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 47], + "uSt3": [3.37541, 49.4], + "H1ru": [1.3815, 47] + }, + "vertices": ["uSt3", "H1ru", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 44.0163], + "GPdT": [4.42756, 44], + "H1ru": [4.73108, 55.006], + "uSt3": [0.86205, 55.006] + }, + "vertices": ["H1ru", "uSt3", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 48], + "GPdT": [4.47937, 51.766], + "LEG0": [0, 51.766] + }, + "vertices": ["GPdT", "LEG0", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 50.4], + "H1ru": [1.3815, 50.4], + "HLm2": [3.37541, 48] + }, + "vertices": ["H1ru", "HLm2", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 44.0057], + "Ba1X": [6.11257, 44], + "HLm2": [5.25052, 55.0007], + "H1ru": [1.3815, 55.0007] + }, + "vertices": ["HLm2", "H1ru", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 45], + "Ba1X": [7.2425, 48.766], + "GPdT": [2.76299, 48.766] + }, + "vertices": ["Ba1X", "GPdT", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 49.4], + "HLm2": [1.3815, 47], + "Ngnq": [5.3696, 47] + }, + "vertices": ["HLm2", "Ngnq", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 44], + "86iU": [5.07521, 44], + "Ngnq": [5.3696, 55.0164], + "HLm2": [1.3815, 55.0164] + }, + "vertices": ["Ngnq", "HLm2", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 48], + "86iU": [4.78081, 52.2426], + "Ba1X": [1.3815, 52.2426] + }, + "vertices": ["86iU", "Ba1X", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "ede354f1-5bc7-42b9-abdf-24d57d32ea0f" + } + ], + "outliner": [ + { + "name": "root", + "origin": [0, 0, 0], + "color": 0, + "uuid": "8ca6699e-74b1-10dc-5d18-29f7e8345ef5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + { + "name": "Head", + "origin": [0, 25, 0], + "color": 0, + "uuid": "9b1cdac1-623c-a07f-13cf-50b4cba2d280", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "cddc15a2-e47f-cc9b-6543-a33edf4f6221", + "330f0efc-1466-6509-2612-0e94630f723f", + "8cf37dda-a1f4-41c9-00ea-784d1ef19a8d", + "7564b320-32ad-f191-5c63-fdfa5abfafd5", + "f2ee2225-6cf0-0d4a-cde5-856d38b66daa", + "8dee770f-2330-9d98-92fa-7c0c3210c4fd", + "13b888c6-ccc6-3eba-eac8-25aa02e3ae0a", + { + "name": "facehappy", + "origin": [0, 29.05, -1], + "color": 0, + "uuid": "0392cfe5-09b7-4556-2496-3d4854818fe9", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "children": ["537ef66b-a5ff-b3ae-7587-873be2d53cc2", "e04237d4-85ad-3a6b-4a89-a2115d5f67fc"] + }, + { + "name": "facesad", + "origin": [0, 29.05, 0], + "color": 0, + "uuid": "d572f8c9-b753-09cb-9cde-257d33e8451d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": ["a52ffc8b-11fe-e05a-f2a3-53ad302c1496"] + }, + "6ee6c485-55e3-677f-8a8a-6437317da917", + "9875d2c2-108c-3b84-099f-32f17d751b35", + "29b97531-9807-676f-958b-5c8c1506ade0", + { + "name": "LeftSpyglassPivot", + "origin": [-2, 29, -4], + "color": 0, + "uuid": "652f5f01-1c60-78ed-cfd0-b0f7a02f265c", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + { + "name": "RightSpyglassPivot", + "origin": [2, 29, -4], + "color": 0, + "uuid": "37b6d76a-b922-bdc1-c509-f5907127af15", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + } + ] + }, + { + "name": "Body", + "origin": [0, 24, 0], + "color": 0, + "uuid": "3a163167-946a-9709-bfaa-60c63fb36d88", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "9b7ace10-f4a4-74b2-a33d-8dc435a7d04c", + "46e46f49-fca6-eb7f-d115-7473d8719233", + { + "name": "backpack", + "origin": [0, 0, 0], + "color": 0, + "uuid": "f4c8b71a-3936-52cc-056d-52c60b5364c0", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "children": [ + { + "name": "straps", + "origin": [0, 0, 0], + "color": 0, + "uuid": "89390fb2-4434-6aec-c5c1-3caa4244b698", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "children": ["03eddfbb-4ae9-02f0-6b4d-5e1a27b8a9d9"] + }, + "b0af1020-bbea-a94e-5f6f-7c91b0f9600e", + "c93153b0-e330-bbf0-0bbe-7fe6259e1dba", + "34b661b6-2c9a-f161-468e-dbbbd1448992", + "5fb9f1e5-1b84-51b3-b51a-3c953dcd675a", + "2d5125c4-c284-9e0f-770f-ea0adb794b39" + ] + }, + { + "name": "RightParrotPivot", + "origin": [6, 24, 0], + "color": 0, + "uuid": "631e98c5-9485-a328-a01e-92a96e0240ad", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + { + "name": "LeftParrotPivot", + "origin": [-6, 24, 0], + "color": 0, + "uuid": "3439f3f1-52a6-6cb0-fe3b-0ce070dc05dc", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + { + "name": "Elytra", + "origin": [0, 24, 6], + "color": 0, + "uuid": "d42de82c-5a38-eb25-42eb-87cb4a5c35a5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "children": [ + { + "name": "LeftElytra", + "origin": [-5, 24, 6], + "color": 0, + "uuid": "ceb41f70-a2e8-7b23-16a1-451cf9d74932", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "children": ["f13098f5-2b9f-c55c-ac85-5679cc688966"] + }, + { + "name": "RightElytra", + "origin": [5, 24, 6], + "color": 0, + "uuid": "8adf2983-7ffc-972c-a980-bb221a825385", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": false, + "autouv": 0, + "children": ["9dc0af0e-5f57-3947-ed18-4309680c6759"] + } + ] + }, + { + "name": "Cape", + "origin": [0, 24, 8], + "color": 0, + "uuid": "5b3c2fd0-e0f8-737b-05ee-6c57b784316e", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": ["9d4f5a09-3416-0623-7a0b-3bbcf0d919d8"] + } + ] + }, + { + "name": "LeftArm", + "origin": [-3.5, 22, 0], + "color": 0, + "uuid": "4532a408-8267-4ac1-f89b-9c02843401c5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "b4aa1095-c834-139c-8b5f-93abfd983a84", + { + "name": "LFA", + "origin": [-5.6, 18.6, 0], + "color": 0, + "uuid": "39b8f506-2d25-9ffc-4844-a483667159b6", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "fcd91531-57f5-3dad-6808-1c446c0006ae", + { + "name": "LH", + "origin": [-5.6, 14.2, 0], + "color": 0, + "uuid": "97179e6c-ca07-eedf-6655-10644ba0253b", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + { + "name": "LeftItemPivot", + "origin": [-4.5, 12, -1.1], + "color": 0, + "uuid": "9df644d4-b183-5aa8-8c3e-e33b2353ed95", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + "58a66c62-16cb-55b7-2195-1e1a1280b174" + ] + } + ] + } + ] + }, + { + "name": "RightArm", + "origin": [3.5, 22, 0], + "color": 0, + "uuid": "703b9bfd-bdc6-385a-89b3-b900d1de58f5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "5b436543-2419-e70e-86f7-2277ab9225f9", + { + "name": "RFA", + "origin": [5.6, 18.6, 0], + "color": 0, + "uuid": "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "c6ff2935-b98b-c9cc-3937-80110c67e83a", + { + "name": "RH", + "origin": [5.6, 14.2, 0], + "color": 0, + "uuid": "b8c08a9d-ce87-2959-a847-0534a1702c08", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + { + "name": "RightItemPivot", + "origin": [4.5, 12, -1.1], + "color": 0, + "uuid": "a541fa65-211d-661c-e9d5-6d5bf783dce6", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + "11ea81eb-0e0f-83ea-387f-aaddcaea9ce1" + ] + } + ] + } + ] + }, + { + "name": "RightArmPivot", + "origin": [4, 23, 0], + "color": 0, + "uuid": "c875d215-80f4-5cda-951f-10027c6965b5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + { + "name": "RightLeg", + "origin": [2, 12, 0], + "color": 0, + "uuid": "02123f94-db06-5dae-758f-a4b6191791e5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "952d1c26-5c46-044f-47a3-1bbb6da6bc21", + { + "name": "RightForeLeg", + "origin": [1.98481, 8, 0.8264], + "color": 0, + "uuid": "9d530b83-521c-52ff-34ec-05833bb4753c", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "02c1d309-dc14-6511-c2fa-60a9333aff71", + "03a7b0ca-adbc-e921-e466-02042f51f0fb", + { + "name": "RightShoe", + "origin": [1.98481, 0, 0.82635], + "rotation": [0, -10, 0], + "color": 0, + "uuid": "ee63e079-5cf9-5d1f-d8a3-5114116d8c24", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": ["841507ff-09dc-0d69-b367-522f44abd3cd"] + } + ] + } + ] + }, + { + "name": "LeftLeg", + "origin": [-2, 12, 0], + "color": 0, + "uuid": "4ef21934-9598-a1cc-d2cb-2a978ecab20f", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "bfdad83a-2e41-be24-903c-5ebd81b969b3", + { + "name": "LeftForeLeg", + "origin": [-1.98481, 8, 0.82635], + "color": 0, + "uuid": "80ca9439-0183-c534-a9eb-ada28e85b1ec", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "fa408760-0e21-5c7c-f5f2-34ce3493f337", + "ede354f1-5bc7-42b9-abdf-24d57d32ea0f", + { + "name": "LeftShoe", + "origin": [-1.9848, 0, 0.8264], + "rotation": [0, 10, 0], + "color": 0, + "uuid": "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": ["88ccf0b1-c887-5a42-45aa-2a7eb359c98b"] + } + ] + } + ] + } + ] + }, + { + "name": "shotgun", + "origin": [-0.5, 18, 3.5], + "rotation": [0, -90, 0], + "color": 0, + "uuid": "49bae41a-b792-d5b1-fe28-d6716295f6cc", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "children": [ + "7d4c2b23-2316-988a-596c-3e0bb1650e3e", + "75bea1d5-87bd-fc64-240b-0c1cb80366a4", + "978245c3-4a24-892e-168f-731f704c1545", + "977bc890-568a-0428-0f50-2d6a172167f2", + "78b5f951-2049-2a7f-4da7-f45b345ba784" + ] + } + ], + "textures": [ + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_v4.png", + "name": "akiracombined_v4.png", + "folder": "", + "namespace": "", + "id": "0", + "group": "", + "width": 96, + "height": 64, + "uv_width": 96, + "uv_height": 64, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "52081aa1-5867-5eef-7a66-414d06fb2d1a", + "relative_path": "akiracombined_v4.png" + } + ], + "animations": [ + { + "uuid": "dfe4e14e-e510-f422-0338-7a0576138b7a", + "name": "animation2", + "loop": "once", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-40", + "z": "0" + } + ], + "uuid": "4df13930-1a09-0cec-34ab-5c92d36cd608", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-30" + } + ], + "uuid": "3417a133-d05f-7ea3-d757-817ef87e7082", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "75" + } + ], + "uuid": "f4776505-8831-b7b0-d30c-e64276d61e17", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "d1172a47-17e3-21a6-b75e-3285e2e625ef", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-47.5" + } + ], + "uuid": "5fa3ffb5-1f63-b52f-ea84-38edffd1afc1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "25", + "z": "0" + } + ], + "uuid": "6f84f80e-cd15-7971-25ac-f2308b68ce01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "41f639b6-4636-a0f8-6b97-9bd17a22654c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "2a415bfe-b8e6-9601-ed92-a5cdf8d7ff08", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "49bae41a-b792-d5b1-fe28-d6716295f6cc": { + "name": "shotgun", + "type": "bone", + "keyframes": [ + { + "channel": "scale", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b2dd53-b28c-c9c0-07ab-63fa4c7af048", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-25", + "z": "0" + } + ], + "uuid": "bcaa3cb8-f177-e3cb-5301-18c8a84d1083", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "4c9337e0-66c6-a9ee-86f2-6c0f4edd4c86", + "name": "hold_gun", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d05a6080-6b2c-ff7f-07a9-23b3f3c10c30", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "e743110f-344c-fd88-d239-983b390e1903", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-74.90819992901243", + "y": "7.443374674822735", + "z": "73.73466757022197" + } + ], + "uuid": "9a71e1bf-e38e-5167-fb69-d75611c9b779", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.4787499714439036", + "y": "-6.6485093715123185", + "z": "27.702122918474288" + } + ], + "uuid": "0e90813a-961a-8208-20fa-ef4b5879660c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "49bae41a-b792-d5b1-fe28-d6716295f6cc": { + "name": "shotgun", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-355.1179402290336", + "y": "-88.91911086367008", + "z": "-462.4539205435858" + } + ], + "uuid": "1cb4421a-78de-ea61-f9b3-4eb2d125e2d6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "4", + "y": "3", + "z": "-8" + } + ], + "uuid": "19eb4f1e-37e9-8d90-2b7c-a51ad63b6052", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2", + "y": "2", + "z": "2" + } + ], + "uuid": "77173661-2dbd-72a5-19cd-4d579fdda2f4", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-28.005142910979885", + "y": "-3.308672396280599", + "z": "26.61599545962099" + } + ], + "uuid": "70d4acd5-19c6-ba91-1e34-81bb5f68da5b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-68.70324234768441", + "y": "-29.902821510986996", + "z": "-4.8074013741193085" + } + ], + "uuid": "ee8c180f-117b-9310-3b94-7553468c5def", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.086807439427048", + "y": "-3.211315815895432", + "z": "-52.15992931285973" + } + ], + "uuid": "74c79225-a238-40eb-1a1c-9b5b5c32a7e6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "9ecc7bde-c333-33b6-b489-2f0ad1ea6eab", + "name": "ready_gun", + "loop": "hold", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "470e54b0-899c-5cfc-5564-68ea810c5251", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-86.94901223960824", + "y": "34.96182456421275", + "z": "36.749419593732" + } + ], + "uuid": "0344c822-ee21-5d9c-a559-60cd5d79ba25", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "-3" + } + ], + "uuid": "29d62d25-8df3-4bd8-0c05-f7941e52a3c8", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "5" + } + ], + "uuid": "9dc2c6c0-50d5-1df5-265a-aa9838639f73", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "82d60343-5825-d275-7817-8e40bb1080e6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-50", + "z": "0" + } + ], + "uuid": "120a52e6-9850-eb63-2ecd-4004bceda34c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "efe0ad91-5e6a-0c08-0eac-0c031b5ecda0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "bdc0b96c-ff68-9b45-907c-98148b162e86", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "76fe876f-de24-4ac5-fecb-ac1b998689c0", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "57.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1d6e4f39-a891-4cff-d7e1-2bbcf47b3d7f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3c9550b6-a70c-a194-7943-dc71577c5f54", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-2" + } + ], + "uuid": "a26fda4d-b7f5-b101-9872-bbf3f415038c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "88ee97b1-48bd-79af-98e5-c254c1eb8dcf", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "79b65b90-6efb-3039-2993-dd50b0479591", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "49bae41a-b792-d5b1-fe28-d6716295f6cc": { + "name": "shotgun", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-92.49999999999363", + "z": "-90.03692596300289" + } + ], + "uuid": "52732c19-c6dd-1a33-bc13-bfdfc9297af5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-90.00000000003502", + "z": "-90.03692596306205" + } + ], + "uuid": "7c4aa6a9-b802-d750-bd16-e6389f120430", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-92.50000000003911", + "z": "-90.03692596306205" + } + ], + "uuid": "75c771a1-4a24-27fe-0f5a-4cb0c2fd5eb0", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "6.050000000000001", + "z": "-17.87" + } + ], + "uuid": "d07aebdd-20f9-a034-8021-86d031a656ea", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2", + "y": "2", + "z": "2" + } + ], + "uuid": "103fe8b4-ca02-43cf-2706-a51fc529cee8", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "89390fb2-4434-6aec-c5c1-3caa4244b698": { + "name": "straps", + "type": "bone", + "keyframes": [ + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "ce093c8c-3284-3ea0-b9b2-34c9019a6659", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.5", + "z": "0" + } + ], + "uuid": "b5fb5448-1af7-8fd5-bc93-a8e01d793b86", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad0f63e0-6f8f-8efc-5d7b-115dd60403de", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "28ed2d8f-8b8f-3031-398c-15c40944da0c", + "time": 0.25, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.96", + "z": "1.05" + } + ], + "uuid": "f81395a0-b103-ff2b-4827-a29c1d481f3d", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-31.07296082320181", + "y": "-6.862278331730522", + "z": "-6.726612476383707" + } + ], + "uuid": "b3e24b30-ed05-9f70-5b2e-21bca8be35ca", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "dc101984-c945-0fad-ff15-737c7f8669ae", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-88.7754402379603", + "y": "-19.09895761197182", + "z": "-24.47687105754012" + } + ], + "uuid": "67cc85c5-f16d-907d-028a-12fed0e6c0f5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "6.977354320100039", + "y": "-14.729901334653277", + "z": "17.104658416961612" + } + ], + "uuid": "9bba9062-fa9a-d225-cafc-543dd2d83358", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "47e21b4e-026e-ef62-4622-0f7934bb2d24", + "name": "walking_un", + "loop": "loop", + "override": true, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6bb137e5-c326-85ea-0852-2f8b99ecdb3d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "c755c55a-3a92-b28b-563a-874730bf3f4f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "628b8198-fffb-2f7f-7368-fdf47d5c7aa9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "4fae9932-bad9-cf68-9971-72d26308ac2a", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "372a08ff-f23a-20bd-bafb-b1ef4f2bf94b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "3375dbc8-24dc-27d4-f061-e008bd9835bc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5717fe2b-6bb4-86e5-daea-ba0845e2e53d", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "08228c7a-4dce-5911-305f-f8e2961290ea", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "71e11e12-8913-8071-3783-e18ab9ffc129", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "cc9b0825-f5c1-c4d3-36f7-d5d22bc87209", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "dec6a01b-8225-c331-d365-bb5933b68213", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c73383b-fd4e-dcd8-f095-ef4efd52a3f7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a4d7abf4-7577-df51-7390-05d9ad7502f0", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5414a5e5-7e6e-b538-51f0-f731df81a97d", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a0f34ebc-9b99-5370-e6ce-25847fceff0f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "59dbacab-42ef-14e8-7897-c117881f9182", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71314692-8827-878f-449c-b94ea0222155", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c9ecd96d-522b-1157-66fe-bd98b610bb63", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0782d3a1-605f-3c57-c98c-2284141dffd0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "05253eca-4880-4ca1-d18c-117b923a179f", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7ec5e551-ff87-554b-096f-e7104363f7d0", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f96154fc-75ea-8796-9f8b-0e917bc11c6a", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "55da1b6c-85f1-b4ba-62c3-da2c023862ae", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "a95673a2-04f3-8a65-a8d4-08a1e4eb9fc0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "a9fb05f2-21cb-9bc0-952a-dd1c304b1faf", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bbd0f890-7a9c-fe21-3e78-393e68f82584", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "c95741d7-4e3a-89ee-2c1e-4d4e4eb0fea1", + "name": "sprinting_un", + "loop": "loop", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "markers": [ + { + "color": 0, + "time": 0.75 + } + ], + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5ad4b02d-adab-5aa4-3e7f-579327b646f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "7018513a-94cc-4abe-9378-e15d33b9391c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "ade18367-6bd7-fd0d-3bdd-f4fd47296dd7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "2ea88e7f-a48b-d737-cb84-89c071fcfe05", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c5b2c5d9-148b-08bc-d190-c76ba90dc96f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "12.5" + } + ], + "uuid": "1566a452-3604-1937-9f85-181e69473d04", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "12.5" + } + ], + "uuid": "80b7c133-f9b6-1b66-1880-9e96f78f9e6f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "0b0d4ac1-5bb3-b9e0-9826-50726cb6482f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60", + "y": "0", + "z": "12.5" + } + ], + "uuid": "698b468d-bea0-834f-29b7-dac5070fc10d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60", + "y": "0", + "z": "12.5" + } + ], + "uuid": "15428192-6bdb-b36f-1a7d-9d72c24882a2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "c6c6ba99-8621-204b-eed5-7ca34c9335c9", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "10bb9ccd-3d42-6029-4a9e-b41a94ed000f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "f02420e5-9975-31d2-b0c9-fb3a7ac03eaf", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "53a0b4fb-2094-54f8-8e58-3b054257ec5a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "1fc4d470-4fa0-150b-9cf7-735333d46ac2", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "cbc1a7cb-2376-30e7-0f3d-8daa2ca39804", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "38615f94-ed54-acfd-0092-d3355ed400e2", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "b097f599-9634-da25-2a0b-cc8ea6301ea7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "5fb1b451-651a-475c-f308-c7db4eed1dda", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "829e21d7-be40-b7b6-90af-a578292c2cd5", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "265c3ca5-e561-3e07-af2f-3caa6b339978", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "9ddc607d-2529-38c4-e179-589f31d15a96", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "138d035e-7915-8e29-7b9c-3b832a84672c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "9719a8b0-391a-0e9e-774f-42b616b5d111", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "10", + "y": "0", + "z": "0" + } + ], + "uuid": "23815ee1-c736-d5d3-1d1f-fd884841d66b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "111674c6-f4c5-eb59-654e-83725ceebc85", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0e638bfb-11c8-bc83-a40e-842f47fabf6b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-12.5" + } + ], + "uuid": "dbce26c8-4f58-75f2-e924-9cb92b58e28a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "e9652221-9854-1e2b-964d-f9585186e51c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-12.5" + } + ], + "uuid": "d981fb0c-9367-86e0-c9d0-69df7700d116", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "00ddadf9-52ca-8ea9-84c2-5f066f1846d1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "57529a98-2fa6-3d9e-0d4a-906e82c0e931", + "name": "sprint_older", + "loop": "loop", + "override": true, + "length": 0.79167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "markers": [ + { + "color": 0, + "time": 0.75 + } + ], + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5ad4b02d-adab-5aa4-3e7f-579327b646f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.58333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "7018513a-94cc-4abe-9378-e15d33b9391c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "ade18367-6bd7-fd0d-3bdd-f4fd47296dd7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "2ea88e7f-a48b-d737-cb84-89c071fcfe05", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "79bd6a5e-7c72-3634-c04d-1a5504482dff", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-87.5" + } + ], + "uuid": "0c25b4d5-093b-1b64-0cb7-36a5c44bd079", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "b6724395-2832-b072-e4f7-58cd774f86e3", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2.5" + } + ], + "uuid": "c299a195-4337-8eba-a578-ff4d1d9dd276", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8e4917db-c17f-c350-d4f9-7df6b5485525", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "13390083-32bb-13fb-0642-3bde4b064c49", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "c6c6ba99-8621-204b-eed5-7ca34c9335c9", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "10bb9ccd-3d42-6029-4a9e-b41a94ed000f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "f02420e5-9975-31d2-b0c9-fb3a7ac03eaf", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "53a0b4fb-2094-54f8-8e58-3b054257ec5a", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "1fc4d470-4fa0-150b-9cf7-735333d46ac2", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "cbc1a7cb-2376-30e7-0f3d-8daa2ca39804", + "time": 0.58333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "38615f94-ed54-acfd-0092-d3355ed400e2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "b097f599-9634-da25-2a0b-cc8ea6301ea7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "5fb1b451-651a-475c-f308-c7db4eed1dda", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "829e21d7-be40-b7b6-90af-a578292c2cd5", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "265c3ca5-e561-3e07-af2f-3caa6b339978", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "9ddc607d-2529-38c4-e179-589f31d15a96", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "138d035e-7915-8e29-7b9c-3b832a84672c", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-15" + } + ], + "uuid": "456a10c7-91bc-d007-d954-1b1b18d06ba5", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-35" + } + ], + "uuid": "045f4f5d-e490-af8d-cba9-51b7f4724cb5", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "4c533678-4796-34d0-1550-f8c817f2cbf8", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "84a56d9e-03be-2a3c-5f8c-72260d7c6f06", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "fb594db7-55ef-ff08-f9c1-4809831b7972", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "80" + } + ], + "uuid": "450dcaae-ffb8-a414-3906-bc927aa2246c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "87.5" + } + ], + "uuid": "7ccb1c34-892d-e4de-03ef-87b4c642c420", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "80" + } + ], + "uuid": "846820d6-8e8b-d638-1e88-00472d784eff", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5" + } + ], + "uuid": "f415c654-77b6-82c1-7628-76f4b2b4c4c6", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ef5d0f67-d1ea-efca-a879-67e2ef3663e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f96d91f6-4f0b-3f8e-ff1c-2e8111620d29", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "683be467-9706-a507-a54f-3bdd417df5b8", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "35" + } + ], + "uuid": "40e59133-4998-9fa6-5da1-cc8be589470d", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "40" + } + ], + "uuid": "6bd1616f-2528-c952-c278-63cc18307143", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "40" + } + ], + "uuid": "38f17f67-f2fc-0a68-1de2-459ee84d0c3b", + "time": 0.58333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "40" + } + ], + "uuid": "3e451a41-6dad-c487-1713-ef9f1f0dedfc", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "3c072359-f9ba-f341-d4ed-c926bec0c1f7", + "name": "sit", + "loop": "loop", + "override": true, + "length": 2, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "45b60604-826c-127d-6b64-3e56dc19068c", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c049f0f3-aeb5-9dd3-9419-5ce02ecf8e21", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a82826d2-326f-3049-4711-5565e8e7fe56", + "time": 2, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "-2" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-160.27126444785472", + "y": "68.69403741183623", + "z": "-71.446979487112" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-135", + "y": "0", + "z": "0" + } + ], + "uuid": "8de9690b-63d0-e56f-4a69-72e0162c29ad", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-3" + } + ], + "uuid": "fd826736-1b28-fb58-f1d5-9a409a09b780", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3411dcc8-c5f0-b933-3cb5-c02d3e903446", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "6a371a42-64c4-2c76-0106-17f76271eed4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-135", + "y": "0", + "z": "0" + } + ], + "uuid": "e83d9aed-8c8e-93c9-a5bc-fdd162a5c6a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-3" + } + ], + "uuid": "6739ba2b-9750-6ebc-6601-1a980b4e5003", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d1a64128-1062-a381-6c51-365ca96cb95f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3000000000000003" + } + ], + "uuid": "f06382c5-821a-5c99-95d7-d8473c8e7166", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "-2" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-180", + "y": "-70", + "z": "92.5" + } + ], + "uuid": "d09adcb9-bab5-8c18-9b26-f972dfc98653", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "f95e7de6-0331-4c7f-88de-901a3d3aafb7", + "name": "sit_emote", + "loop": "loop", + "override": false, + "length": 4, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "45b60604-826c-127d-6b64-3e56dc19068c", + "time": 2.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c049f0f3-aeb5-9dd3-9419-5ce02ecf8e21", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a82826d2-326f-3049-4711-5565e8e7fe56", + "time": 4.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-11", + "z": "0" + } + ], + "uuid": "3949d09a-29e1-3053-98f0-06208647ebd1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "682ffc0f-a5e7-482a-b8c5-8f569d918f5f", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-96.60139441617054", + "y": "5.426770158390573", + "z": "-7.540367186791209" + } + ], + "uuid": "47a9dc69-b9f3-a7d0-4f7a-8a25192a6762", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "2", + "z": "-1" + } + ], + "uuid": "0c21aa35-fa40-1768-fd7d-d047cee061c9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "27.673889233549673", + "y": "21.915455570267696", + "z": "-96.60562441079342" + } + ], + "uuid": "704122b0-7f7b-4f57-5a89-fe668927f094", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "b78a9441-1f2a-8e92-13e7-b572c4a98585", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-86.10943275837872", + "y": "-33.854937900673576", + "z": "5.682570018300794" + } + ], + "uuid": "ab6d4c05-8eb9-55c0-6f59-6910e2f76f50", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-2" + } + ], + "uuid": "9c000610-3b2c-faf8-3fe3-5da8a7127f1d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "143.68712264787146", + "y": "-14.087419469977103", + "z": "-51.94712911146026" + } + ], + "uuid": "1e4dcef5-46be-8431-c57a-367e5baff27a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3" + } + ], + "uuid": "e5515ae6-7ccf-7129-65a7-01a2f6ece4d6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "00665345-46b1-7d26-38a6-1c6b61db0c93", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "49bae41a-b792-d5b1-fe28-d6716295f6cc": { + "name": "shotgun", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-12", + "z": "1" + } + ], + "uuid": "9e1fc28a-337a-bb48-f884-4629af520267", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "60", + "z": "0" + } + ], + "uuid": "09c4f59c-9073-320f-e8f0-ad5c0b081934", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "180.00000000000227", + "y": "82.5", + "z": "90.00000000000364" + } + ], + "uuid": "d7fb0cf1-df61-462a-5a82-a6659bf8557c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d09adcb9-bab5-8c18-9b26-f972dfc98653", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "32.5" + } + ], + "uuid": "ac38a3f9-8926-f8a2-a538-6fafd960eee7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f3c6ff59-57f3-486b-d4e3-796f773b3d5d", + "name": "sit_emote2", + "loop": "hold", + "override": false, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-7", + "z": "0" + } + ], + "uuid": "3949d09a-29e1-3053-98f0-06208647ebd1", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-12", + "z": "0" + } + ], + "uuid": "18cdebb9-8aaf-29b5-922f-4fbd801b17c9", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-9", + "z": "0" + } + ], + "uuid": "4bf7e122-0910-b4b6-5a75-fc84149bd36c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "da59f1ad-b9ac-a18e-7a7c-fc23338e5f6f", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "2b6edfcb-ea3c-3049-216c-12e4c32886f8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-17", + "z": "0" + } + ], + "uuid": "5e4fc510-9501-05e9-335c-95ce608b72e7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.6000000000000003", + "y": "0.7", + "z": "1" + } + ], + "uuid": "ba29ca86-2c69-1839-a973-07ff3136036e", + "time": 0.08333, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.25", + "z": "1" + } + ], + "uuid": "f29c01c3-eade-2f64-fcbe-987bf1b8b641", + "time": 0.16667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.3000000000000003", + "y": "0.9", + "z": "1" + } + ], + "uuid": "fdbbf9aa-d4ba-0a44-684b-cc769ba626aa", + "time": 0.25, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1\n", + "z": "1" + } + ], + "uuid": "1c784972-3f64-c2d9-4db8-b0967c07891b", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.1", + "z": "1" + } + ], + "uuid": "5c4a563e-f048-7c75-428f-5be11251a7ac", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.5500000000000003", + "z": "1" + } + ], + "uuid": "46227ed3-05bc-c304-bf87-e6161b08ec69", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-96.60139441617054", + "y": "5.426770158390573", + "z": "-7.540367186791209" + } + ], + "uuid": "47a9dc69-b9f3-a7d0-4f7a-8a25192a6762", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "2", + "z": "-1" + } + ], + "uuid": "0c21aa35-fa40-1768-fd7d-d047cee061c9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "27.673889233549673", + "y": "21.915455570267696", + "z": "-96.60562441079342" + } + ], + "uuid": "704122b0-7f7b-4f57-5a89-fe668927f094", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "b78a9441-1f2a-8e92-13e7-b572c4a98585", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-86.10943275837872", + "y": "-33.854937900673576", + "z": "5.682570018300794" + } + ], + "uuid": "ab6d4c05-8eb9-55c0-6f59-6910e2f76f50", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-2" + } + ], + "uuid": "9c000610-3b2c-faf8-3fe3-5da8a7127f1d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "143.68712264787146", + "y": "-14.087419469977103", + "z": "-51.94712911146026" + } + ], + "uuid": "1e4dcef5-46be-8431-c57a-367e5baff27a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3" + } + ], + "uuid": "e5515ae6-7ccf-7129-65a7-01a2f6ece4d6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "00665345-46b1-7d26-38a6-1c6b61db0c93", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "49bae41a-b792-d5b1-fe28-d6716295f6cc": { + "name": "shotgun", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-12", + "z": "1" + } + ], + "uuid": "9e1fc28a-337a-bb48-f884-4629af520267", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "60", + "z": "0" + } + ], + "uuid": "09c4f59c-9073-320f-e8f0-ad5c0b081934", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "180.00000000000227", + "y": "82.5", + "z": "90.00000000000364" + } + ], + "uuid": "d7fb0cf1-df61-462a-5a82-a6659bf8557c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d09adcb9-bab5-8c18-9b26-f972dfc98653", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "32.5" + } + ], + "uuid": "ac38a3f9-8926-f8a2-a538-6fafd960eee7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f99872e7-f2bd-e73b-4f83-082c1623d28b", + "name": "followMe", + "loop": "once", + "override": false, + "length": 1.375, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22517dff-4ad8-8b8f-8623-14c5ef40504b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9887f18d-8d35-6cf1-7e2f-004a182ed804", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0.7340404134620258", + "y": "24.874691603068186", + "z": "0.46394336388129886" + } + ], + "uuid": "a301e9b0-bd77-f7aa-69aa-12b45109bb2e", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0.7340404134620258", + "y": "24.874691603068186", + "z": "0.46394336388129886" + } + ], + "uuid": "86494bd4-7bf3-dd74-e4de-fbe10b2f4ccc", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "edb9127a-1a8c-d741-e2da-7e21f595fdb8", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7e177ca-90a1-003a-26ac-3c9045a57cc5", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fd11d9d5-1bf1-e60a-4653-5723e7b64e60", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12d5d418-e4ae-a422-f62a-e40539931954", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "c9639672-905c-99d3-1a7c-77f2c45ba3b3", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "c04b8863-b977-afdb-b3fe-6359ecc5c567", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "82360ee6-bd9c-a3a2-7bcb-b38adf942506", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7e74412c-c6a0-968d-4185-f48aead2da70", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "3602a1be-1956-0578-3e2a-f4295a97a960", + "time": 0.375, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73537b14-ba1a-8945-763c-1b1acc5c70c6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.139296625613042", + "y": "40.79237202269042", + "z": "1.366426829135773" + } + ], + "uuid": "3c01d642-23de-db77-55b0-6f7b9acde257", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6f5c7d09-2d66-86b2-ae96-bb7835673357", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "b6c0469a-dd61-9462-c83f-a4e98b5b0a9e", + "time": 0.83333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.070845175358954", + "y": "20.245553693528116", + "z": "-0.21019016151115277" + } + ], + "uuid": "86420be3-cb9f-b837-dbda-ff8166be5b29", + "time": 0.58333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5d72c177-a7db-d56d-a96f-88d01cb4b5de", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "c5560157-4076-0c2f-521f-b9abdae3f38e", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b3bb1bfa-40a9-8bd9-a35a-8aa4b5ea8969", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "1.5" + } + ], + "uuid": "03750fe2-3cb7-acd5-8172-bc16f0dfbdc7", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b94d417e-1e40-5063-695a-8c2b7900f837", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0.5" + } + ], + "uuid": "2fefd0fd-8f00-3c1f-9d80-324dbbb4baa0", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "1.5" + } + ], + "uuid": "78493484-4e17-5159-33c8-8aa9d4740f87", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0.5" + } + ], + "uuid": "7eda4b76-a9fc-4ce6-1b40-b79af69432a9", + "time": 0.58333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "031ec465-a678-6aa3-a9d7-74ca0b4d6b36", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0.5" + } + ], + "uuid": "1c254bed-2250-6edf-8d71-3e86e32e9216", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "348ee9c0-cc61-f6c6-510d-6a76ebf3598e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f72330bc-8125-b922-1fe1-c8d2c4d799f9", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "394f8bfd-ad27-5c9a-3e9d-f767aecaf941", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "8ef5b0e8-2c51-ed8c-e1e3-a427d6d88f7c", + "time": 0.79167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-120.70533623040757", + "y": "33.15221974766706", + "z": "20.488613927605456" + } + ], + "uuid": "a1be318f-e8cc-95c8-aa31-ad94345c26e2", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "7a23199d-ba66-827e-9140-2a86faae3c52", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-214.08915231876986", + "y": "72.05925312606412", + "z": "-134.5891257222278" + } + ], + "uuid": "f80b279e-5624-07c4-8aa9-d023e4a59224", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-74.56834248387258", + "y": "-9.935578431269278", + "z": "-5.267040957668087" + } + ], + "uuid": "87bb9ffc-84f7-8f3b-4850-0eafd866272c", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-74.56834248387258", + "y": "-9.935578431269278", + "z": "-5.267040957668087" + } + ], + "uuid": "5bf5c788-e523-f564-fa4b-55a2e11785fc", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "886b6b44-033b-74de-3529-66edc7cc7272", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "23444864-78a8-958a-6067-77cce11ed1cd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4b900c7f-97c2-5d28-4e90-7ca809243ce4", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-3" + } + ], + "uuid": "4c1dabd6-f7fb-6518-83e4-faaea18c9b8e", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-3" + } + ], + "uuid": "dbc8565e-837c-5e99-5aa8-cc25eb6ae0f8", + "time": 0.79167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "1", + "z": "-3" + } + ], + "uuid": "cd9cb512-72a4-6c3d-b26a-a731727c42b4", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-3" + } + ], + "uuid": "ed0ea3bd-52ec-7ed5-334b-5934920cc468", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "019b9018-b03f-328d-aeba-b34849091478", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "27.5" + } + ], + "uuid": "ae4ab0bc-e5d5-82fc-cb4e-49c4171eb127", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c6b981f9-34ff-efcb-56b5-035a8a27895f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "27.5" + } + ], + "uuid": "276e3817-fce1-f03d-c446-c0848a02fc30", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "27.5" + } + ], + "uuid": "78a71f22-ae84-277b-9783-eac06a91c845", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "27.5" + } + ], + "uuid": "eddb6f0c-4617-085e-e706-de951368d386", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "27.5" + } + ], + "uuid": "9a1d21a9-a7b6-9520-e723-7d26afbda307", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "21.761514824064307", + "y": "10.474174376960491", + "z": "-3.2857771429571585" + } + ], + "uuid": "d390e3f1-2b0e-a3ed-cb8e-5c0aacd02739", + "time": 0.25, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "395986d6-2c66-e222-2f62-5f04154fe542", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dbda7c26-906d-1959-db9d-5b02c1f9ea9a", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "21.761514824064307", + "y": "10.474174376960491", + "z": "-3.2857771429571585" + } + ], + "uuid": "b95a2377-5da3-42d5-755f-bef480120ba7", + "time": 1.16667, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-5", + "z": "0" + } + ], + "uuid": "46546742-be92-bffb-3a97-b6d067ed66ce", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec62f10d-4f32-ac12-8f59-04e59031cc0e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4dad5c7d-7819-dd4c-5e44-a73bc7f41f7f", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-5", + "z": "0" + } + ], + "uuid": "a8c50d56-c2fb-1689-3284-a0525c74e4ed", + "time": 1.16667, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "74138584-550c-acf3-7418-f44444a13e97", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "c6d7784c-15bd-6596-c27c-4b7c80804ab4", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "23c920ce-e9f2-3ad7-5769-4d5ddea625f7", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "77a62a19-88cd-1843-5e53-40545e247b79", + "time": 0.83333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "83a7c14b-e28e-d108-bd14-eeca060ca57d", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "9bdb6c46-1df5-0a81-5788-d5d33f2e9e8c", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.001975664013571", + "y": "51.05934394980068", + "z": "-2.1762636138515745" + } + ], + "uuid": "b3644f7a-5de1-79ff-4e3b-b8e718eaf680", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41020bdb-9ffa-222f-1fec-5768a68bad7c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-2.5" + } + ], + "uuid": "ac978271-fa68-2077-7ef7-e237148a253a", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-2.5" + } + ], + "uuid": "6d3d5627-f8d3-a155-a8b3-d94743d40e0b", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "02f405d5-4085-ef63-9628-3a364458fe0a", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "5.5" + } + ], + "uuid": "1b7ae221-c820-b462-a759-4dda1d4f4ed3", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "5.5" + } + ], + "uuid": "b853c2f1-9021-4616-3536-a827bbdeec7e", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "2f08abdb-8345-b201-0dc4-4d954c194f5e", + "name": "clap", + "loop": "once", + "override": false, + "length": 2.5, + "snapping": 60, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f78104f5-827f-1cfc-5dc3-6d529cf6282b", + "time": 0.15, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "695eeaec-4ea3-219b-f55a-7fc02a8e6149", + "time": 0.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1900d0a4-26a6-f3f5-5e5c-4e5c04468ecb", + "time": 2.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "41aa99a2-f6a6-7ce7-2144-be90427d898f", + "time": 0.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "b3bd1e0e-33d6-6ef6-da85-d6389d0312ce", + "time": 0.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "9db7af38-551d-b81c-c23e-25f9750c79a7", + "time": 0.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "0dd46afb-b028-c740-7213-ff04a4152d39", + "time": 0.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "5ada14d6-fc43-8733-067c-88c5739b6a17", + "time": 0.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "db2e0314-4bd1-abca-35b6-adab26afac3e", + "time": 1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "7649cf21-636b-a5f0-7d77-7e3b5946976d", + "time": 1.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "fe72dec6-d02f-9ba7-5c7e-59f564cb47aa", + "time": 1.2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "acacc018-4067-2c5b-43a4-af00708e308e", + "time": 1.3, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "8f1b16cd-62c7-313c-afe7-743ce0b6f405", + "time": 1.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "cca3b185-3dde-5049-4a67-386a4c4e4f08", + "time": 1.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "e3595c95-49da-86e6-e2e6-579fd9545469", + "time": 1.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "62023697-b62e-d6ba-d33f-5c30a44cbfba", + "time": 1.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "c87242f8-87dd-4c1a-5896-8e6ef7474b5d", + "time": 1.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "3e2c5396-1174-1ac5-de3f-ad49583d6514", + "time": 1.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "ae52c019-305b-48f7-67cf-bd7b917b6a8b", + "time": 2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "11359dbb-4d6b-35da-004d-ac4f78cb873c", + "time": 2.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "986a00af-33bf-c7f9-3a2c-c72bfca5d16e", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e54fab22-bbd7-f84e-02c3-091bba0c607d", + "time": 0.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "42a9cfcc-35e3-84da-14d0-c871f5a7fbc1", + "time": 0.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5a0ad8d0-ac33-a5d1-cda9-7cdd9efc679a", + "time": 0.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "c394ae70-623d-60dd-bc40-0c4cabc8e693", + "time": 0.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1728225a-c76d-0578-00eb-25066f4c9ee6", + "time": 0.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "42e38152-aeb7-66be-942c-81b261c69182", + "time": 0.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f9bb99aa-79d8-026b-8ffc-69a464b5d6b5", + "time": 1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "34260934-5fdf-8a19-ec05-5b07527fb43a", + "time": 1.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "df98b001-7b92-f831-3d92-be4507b7e26a", + "time": 1.2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "ff17d778-bbd9-11f6-d11d-24ac8a360b2d", + "time": 1.3, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22500e70-b7dd-2c8a-9589-9180c0ab366b", + "time": 1.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "8939f5d0-fcb9-d8b1-3423-3ed1e92d792c", + "time": 1.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bf95953d-b36d-91bf-3f6b-8820033ff065", + "time": 1.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "3c62c475-95b5-042c-0cf9-c8fbb06cd3c9", + "time": 1.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f5e7652b-37d3-6113-0c91-175e6f69dca5", + "time": 1.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "5684fbe7-bebf-643c-981a-a2a5ecc1fc67", + "time": 1.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0619d8de-15a1-3284-d542-9bddff9db47f", + "time": 2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "6d662385-dda9-7d87-5309-cf2871f87b3d", + "time": 2.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "77d488d1-9458-58c6-e241-75599906ba19", + "time": 0.15, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "82bbdf59-bb08-0e30-adb3-7b60cda04bdd", + "time": 0.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8aeb6d8b-7275-cc98-8b08-40f2afbc4a41", + "time": 2.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "0efbf3a5-1b2b-c125-17f5-451f9f4e82e7", + "time": 0.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "8cdeb588-8a6a-9c22-bb3b-bc622658bb53", + "time": 0.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "d53a61fe-18bf-e174-81b7-c5e9f7824211", + "time": 0.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "d360cf51-fff2-c80a-7bd0-897fc4fa36d9", + "time": 0.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "ad7554b0-4884-82bf-ebda-91b35e920075", + "time": 0.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "7393f14f-adf1-5ea6-cabc-b432212699c4", + "time": 1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "b4bc66c8-30c6-f3b6-3221-67ab1aff47b5", + "time": 1.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "0174391b-5142-927b-c2bd-1d62656b73c4", + "time": 1.2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "cc1b42bd-de4c-687d-42f0-69102d60fdc7", + "time": 1.3, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "0d43ae72-7b98-9431-50e1-5f420928454b", + "time": 1.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "c394a69f-c958-aa64-f642-07710bb89b8c", + "time": 1.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "0fcf716e-aee1-73d0-f93c-957cde63188b", + "time": 1.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "5a0db9ac-7169-f545-6bcc-df7bcc234cee", + "time": 1.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "e5585907-f80f-9bd1-5ebe-a6cabfe27988", + "time": 1.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "3453b437-dd81-3de6-5f52-fe9e1710be81", + "time": 1.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "f503e8c9-06a0-d249-7d58-2d79bbfc0507", + "time": 2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "4bc69ec9-0a53-a37e-edde-4beb500bcad0", + "time": 2.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ba056cda-b225-2c29-4301-81a4ecdc907a", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3eb12c22-3350-ea40-82f8-591b7bdac147", + "time": 0.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "ba4ed43a-5bf0-664c-4931-536e75b03c7c", + "time": 0.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0d88a6bf-3412-4531-6cd4-11738a55699d", + "time": 0.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "488d6ce2-e0b5-24b3-08b0-9b3bf2996c4c", + "time": 0.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fd5351df-736c-0900-c37e-0baa3d807699", + "time": 0.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "64762d80-bcc8-a452-6481-f2ba50224161", + "time": 0.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25ab2be7-b89a-2ab5-4fc5-2aba9f02a025", + "time": 1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "ddbaabb1-e79f-7040-b56b-998370be527b", + "time": 1.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a43d3ce-e77e-ba8c-d9e8-5eae00a6cd04", + "time": 1.2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "65491092-cca2-774b-0e8c-c7e0dd61d0d7", + "time": 1.3, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56c8c5c6-7ec2-4e2f-c300-95ff358e95b0", + "time": 1.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "ed4be47a-f9f7-ac74-d158-1117cbed5536", + "time": 1.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "422b63e0-7339-251d-6b44-298391be90b6", + "time": 1.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "671516d0-4974-d731-8172-6b5cdfc7c6b9", + "time": 1.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cbd3889d-c0d1-0403-1cba-1ae2c5bc0a16", + "time": 1.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "9d6e8bb0-dbc5-3688-b437-063046fb8ce5", + "time": 1.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9aa24d7b-d139-3184-ca95-f5ea809f4b07", + "time": 2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "6d1c2153-058f-bb53-0bfd-3bf73af63c1c", + "time": 2.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + } + } + }, + { + "uuid": "a744e70f-1914-3caf-f9f2-2a837bbbeda4", + "name": "wave", + "loop": "once", + "override": false, + "length": 1.79167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "fbf9bb0c-ca98-b7c4-dd2d-62b2508f2d65", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c49791f-30aa-3980-ae97-7c674489c16b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8dba4889-5451-0f9a-14aa-c19b994f9798", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "72178732-c646-78cd-77f2-d160f8ecaf36", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "0" + } + ], + "uuid": "4dcd1858-4b7e-195a-6ce8-2c0287bb39f5", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "95ee3234-13ad-bed7-51c5-362c09f52d68", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1ed3963-107d-6b31-ae28-45618a3bba09", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "0" + } + ], + "uuid": "1ea437d7-7f58-c3a3-e13e-554c9a493ef8", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "146e5194-74ad-5691-25e5-3f66e9648927", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "00ba43c2-0c33-8511-ee34-2c5c843bbb36", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bb6db12c-33a1-03b7-5c78-5e2c00609e08", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "4fc9fcfa-b266-94c9-cd3d-0853c4d2b817", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "ea91c4db-3a89-20ec-89d8-52c5ad1a5423", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "26bc77fc-9318-359e-5b09-72fa3946804c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9af0934a-8a39-5295-6f9a-3c38af15ff44", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "d7cdea44-6104-431e-a07f-b1a3afdbb035", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "f81dc3c7-77dc-3a00-af08-10607e7bc843", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115" + } + ], + "uuid": "fb0cf5f8-8850-120f-9208-a28d121b0716", + "time": 0.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d8102de7-586c-2345-680d-784b2f4363ed", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "382fc072-1206-bcd1-5cab-a0cd6543432a", + "time": 0.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "d4fda29f-d347-ebf7-90a5-edc78ca36e8e", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "c89e9b58-2084-cdca-c606-9dcffe382396", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "26bcf4f9-9583-f211-a21f-af500968f238", + "time": 0.54167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9254c77c-28ee-0efc-d0cf-42985284d7b2", + "time": 1.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "bb261ab3-cbd9-bcef-1f72-3b8b81d5ed00", + "time": 0.91667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "35292b51-de25-61a9-41a1-06cf2e0da61f", + "time": 1.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "30adc32b-0bcd-df2f-d072-0bb16f14197d", + "time": 1.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "79c2edb9-386e-de4d-2529-b96e2c08f056", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "7d713123-a19e-78c0-b868-a58dc9a2a0e6", + "time": 1.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "65cbf914-8b60-b758-9096-bade2c1ffc14", + "time": 1.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "f26813fd-4d51-2b38-9362-7dd6a90c5c8e", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4a14476e-3a87-9399-7433-71ba342c3fa7", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa041bd6-eedd-cedc-1e15-af3032cff0cb", + "time": 1.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "530164e4-7f6f-e1a8-5c89-8add456c773b", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa33bd55-e6c1-875a-6ef7-72d08dbe3c4e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "954ac53c-1b5e-1b20-bffa-962dd8cc6492", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n\n", + "z": "0" + } + ], + "uuid": "31cfdbc1-3975-c4ee-820d-5c3f5fc1873f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0\n", + "y": "0", + "z": "0" + } + ], + "uuid": "5fcfc295-d3ca-ddbd-b055-9a6b65ea5661", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0\n", + "y": "0", + "z": "0" + } + ], + "uuid": "e41a5bc7-f55d-53a3-7ebd-bcb31c34d26d", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n", + "z": "0" + } + ], + "uuid": "083ebb2c-b339-196c-7609-c8576d39927a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n", + "z": "0" + } + ], + "uuid": "85f601b8-b74a-25a0-24b7-9d93f15f26f5", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "544a47ef-3151-3c19-8551-8f54c38f902f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "95a03ee5-c52b-9f66-30c3-734f37d0ba46", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5\n" + } + ], + "uuid": "90d33293-fe43-3edc-623e-f46f3d0df698", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5\n" + } + ], + "uuid": "45cf7d7f-255f-a390-368d-23ff6c6ede98", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3178b6d3-2042-0802-c607-1befb5d9e09f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cffd18b1-0e36-85a4-32c0-ffa2bc97c75a", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "0" + } + ], + "uuid": "30053a7c-e691-5849-ba43-8add2c8b0153", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "0" + } + ], + "uuid": "e4bda781-7786-0b9c-b962-5c94d0861efc", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c70d65ff-0518-8da8-ff84-1179c183d4ef", + "name": "elytra", + "loop": "loop", + "override": true, + "length": 0.54167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "676f73ba-7120-ba5f-b1f6-96da235316ac": { + "name": "RightArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1089e166-f458-a8d7-0105-15b904d2e0a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "a298f9b0-f55b-ae1f-e6f8-bef92266c6c7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b1602645-bd60-af43-75f0-36b41c96b6d6", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "e8ef99f2-5e21-5df8-9105-c9cda71e371a", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "707ed181-3b32-0882-b413-e80fac5a29cb", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "08b1889c-f605-17bb-c427-cb3c97b0d7d6": { + "name": "LeftArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "651021d1-4a85-0501-ef67-55d9b5f737d4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "1.7081840554196788", + "z": "4.699856911810457" + } + ], + "uuid": "785fabc9-c478-7d42-df89-eaab9dea98c8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1daa91fc-19ff-9589-1c8d-1c692ad9e4bd", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "cd3741de-807a-6f11-4a74-33b8e1942f99", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "c15b36c1-20bf-940d-62b2-cff67b5329ef": { + "name": "LLL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3d103cc1-d42d-017e-5b13-819322a05ab1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "157615d3-1412-db1c-85ef-cd259943d5f6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-85", + "z": "-20" + } + ], + "uuid": "f03646c9-8407-830d-63e3-cbbfee0fb77e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-90", + "z": "-110" + } + ], + "uuid": "f986bb28-1972-9d37-c5c9-9b831a885235", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-85", + "z": "-20" + } + ], + "uuid": "01dfa058-2e65-faca-0b62-c2fddb50b903", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "a2b728c3-1cf6-437a-c1f5-f46ca575e725", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "37eda337-5d97-3288-1fef-dcfb75e37d80", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4fe77a49-9c15-6919-0c98-a58d65ea3765", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "9236a4e0-cfcd-0901-bf6d-22da353e2452", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "6d01fbb0-015a-3585-818d-5307e80dfb70", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9c3dfefb-c145-0726-6f2f-05a5a04f9f0c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "d6cddb9b-7427-cf0f-9782-4875d0845d0e", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10.78", + "y": "0", + "z": "0" + } + ], + "uuid": "7bfb4fe9-0013-defb-76c0-0f9de15e47fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10.78", + "y": "0", + "z": "0" + } + ], + "uuid": "c4f0a7a4-b5ef-3ac7-8b4d-376dbb742d95", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "0" + } + ], + "uuid": "b7606192-0d27-974c-360f-577b83d4f9d1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-2.5", + "z": "0" + } + ], + "uuid": "52a7ff92-652f-3ee5-aad1-343451ef51d6", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "0" + } + ], + "uuid": "bfed4ebd-3eae-3d71-9953-3d8cc4db994c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "85", + "z": "20" + } + ], + "uuid": "9135accd-0077-6738-9c33-0c14c061e288", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "90", + "z": "110" + } + ], + "uuid": "23ee2180-b567-a958-1f26-75b235510122", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "85", + "z": "20" + } + ], + "uuid": "1c792fdb-b66a-0d8d-cc01-2417dfaa6ad1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "3a11a8e8-3f94-5a20-6a68-52137a18af0a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "ca5d1fd6-c676-6f79-9532-a0ca36899738", + "name": "elytradown", + "loop": "loop", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "676f73ba-7120-ba5f-b1f6-96da235316ac": { + "name": "RightArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1089e166-f458-a8d7-0105-15b904d2e0a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "a298f9b0-f55b-ae1f-e6f8-bef92266c6c7", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b1602645-bd60-af43-75f0-36b41c96b6d6", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "707ed181-3b32-0882-b413-e80fac5a29cb", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "08b1889c-f605-17bb-c427-cb3c97b0d7d6": { + "name": "LeftArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "651021d1-4a85-0501-ef67-55d9b5f737d4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "1.7081840554196788", + "z": "4.699856911810457" + } + ], + "uuid": "785fabc9-c478-7d42-df89-eaab9dea98c8", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1daa91fc-19ff-9589-1c8d-1c692ad9e4bd", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "cd3741de-807a-6f11-4a74-33b8e1942f99", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "5cba2b77-6bed-3ec1-60a1-9f361cd7c418": { + "name": "RRL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9213920a-c6e9-c3dc-823d-8dcbe146ee63", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "d9b5b5fe-d976-6ac4-8428-fb30a50b61ef", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "c15b36c1-20bf-940d-62b2-cff67b5329ef": { + "name": "LLL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3d103cc1-d42d-017e-5b13-819322a05ab1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "157615d3-1412-db1c-85ef-cd259943d5f6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "1.7139436140287216", + "y": "4.697763659989505", + "z": "0.07030897931554136" + } + ], + "uuid": "f03646c9-8407-830d-63e3-cbbfee0fb77e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.7139436140287216", + "y": "4.697763659989505", + "z": "0.07030897931554136" + } + ], + "uuid": "194c2fe2-8ad5-cad6-5bd7-a0a4e4b9c91b", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.5070097180978337", + "y": "4.768035963348666", + "z": "-2.4372550646980926" + } + ], + "uuid": "32185d45-95e8-7b04-61c8-bba21e604cd1", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "4.171539289556604", + "y": "4.7121636670044245", + "z": "-0.44353414376741057" + } + ], + "uuid": "27c752e9-a7ec-73d6-6af8-a968aad5b4c5", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "a2b728c3-1cf6-437a-c1f5-f46ca575e725", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "16\n", + "y": "0", + "z": "0" + } + ], + "uuid": "37eda337-5d97-3288-1fef-dcfb75e37d80", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "14", + "y": "0", + "z": "0" + } + ], + "uuid": "5ffdef7b-2332-058c-6784-5fa7878eef7e", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16", + "y": "0", + "z": "0" + } + ], + "uuid": "e2157d09-afa5-cd37-edfe-4845c585bbc1", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "16\n", + "y": "0", + "z": "0" + } + ], + "uuid": "a7c1e886-6dc5-2e6d-ccad-d648d146d41b", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "14", + "y": "0", + "z": "0" + } + ], + "uuid": "d9ca9c36-bb36-d2d4-10dd-d548579d845e", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16", + "y": "0", + "z": "0" + } + ], + "uuid": "ae10e99f-1acb-c0a5-1a72-edd087025ee6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "b7606192-0d27-974c-360f-577b83d4f9d1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "52a7ff92-652f-3ee5-aad1-343451ef51d6", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "bfed4ebd-3eae-3d71-9953-3d8cc4db994c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.0824266447744", + "y": "-4.618537953409941", + "z": "-362.57733562522526" + } + ], + "uuid": "9135accd-0077-6738-9c33-0c14c061e288", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.0824266447744", + "y": "-4.618537953409941", + "z": "-362.57733562522526" + } + ], + "uuid": "81f95a84-2fdd-edcb-31f0-0878782368ac", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.2860559702208", + "y": "-4.697764794083923", + "z": "-360.07030901336475" + } + ], + "uuid": "eb2d9cad-23ff-78ee-2626-bb1ea08e1e28", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-360.62415380575715", + "y": "-4.6347728995687065", + "z": "-362.06360263126004" + } + ], + "uuid": "fd33e3fd-a00b-7771-5b63-31e7d5ce9822", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "3a11a8e8-3f94-5a20-6a68-52137a18af0a", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c6c2015d-505f-d365-9f1a-e94902b0e556", + "name": "fallen_down", + "loop": "once", + "override": false, + "length": 2, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-7", + "z": "0" + } + ], + "uuid": "7a14759e-4c73-cb54-c74f-6e0b70f5e9ff", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "572999ea-aab2-fa92-9cc2-c455d6c30174", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ccd2320f-600d-fa6a-12e1-fba8f23d9bd8", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "0", + "z": "0" + } + ], + "uuid": "aef16164-104a-ba87-5af8-73a72a0e4ab9", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "8828461f-856f-526f-afd6-da0380ead13d", + "time": 1.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-4", + "z": "-5" + } + ], + "uuid": "f919fc7a-17fc-b589-c784-942bf33fcabe", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-5" + } + ], + "uuid": "7a75b663-bd4b-9737-6a30-6b21bb9ef728", + "time": 1.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b0160c0f-1e58-e5e5-c4af-8b90fe0d46f8", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "3220dd24-4cd5-de75-018e-19c5b7d02747", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "2" + } + ], + "uuid": "1e8183fa-a9dd-05fb-1c21-ed151d60331b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "7a54a105-94d1-ead4-f81f-85ff3dc5bf4f", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "1" + } + ], + "uuid": "2b925276-781c-b970-19d4-aa8ad85ac942", + "time": 1.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "89390fb2-4434-6aec-c5c1-3caa4244b698": { + "name": "straps", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "06237f68-a6d8-7f1f-e245-eb3931c0f757", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "2" + } + ], + "uuid": "826e2ef2-81d5-27dd-e600-4d6a8a4b0f00", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "624e4404-117d-a6c5-d3ec-db6f93c5e9d2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e737ea-707b-cd01-4567-e7d4bb88c1d8", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-13.740886471626254", + "y": "6.027243974087924", + "z": "2.587610929675975" + } + ], + "uuid": "578e53a6-c9cc-f6a9-3635-228d8ad9db34", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-7", + "z": "-6" + } + ], + "uuid": "72497733-6beb-c607-1a15-dbd943ec0ac3", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-3.5", + "z": "-5" + } + ], + "uuid": "4181f120-0c33-58d6-0a82-e693653b5b5f", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-3.5", + "z": "-5" + } + ], + "uuid": "f6c32a4d-461c-783a-5c4e-a8e4e750676b", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1.5", + "z": "-5" + } + ], + "uuid": "32722476-1154-1a22-3781-5bd07e32e082", + "time": 1.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-8.913101754094896", + "y": "19.52579073928291", + "z": "90.39479412399987" + } + ], + "uuid": "34415b63-90c2-b62f-6985-d70c490f7e2c", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c375de02-964c-d44b-0289-1a8145a4dbc4", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5000077136649814", + "y": "21.251700627884276", + "z": "122.40052170686671" + } + ], + "uuid": "66663582-91d6-81bc-cd14-eb4a4afabb6c", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "c694b782-6e87-5ea2-ab88-23a52f22622a", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "383dbffe-c418-9276-d9fb-fb13dbeafe09", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-75" + } + ], + "uuid": "f5af7152-869f-4932-d9f8-85eea9bae7e2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8af6f8d0-c7e7-7e64-b7df-19f57ec12274", + "time": 0.375, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-4.336100370535405", + "y": "-11.735074752301443", + "z": "20.445820099525918" + } + ], + "uuid": "433a815d-2eb3-587b-ba22-3bb8115dd6e1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-35.00000000000031", + "y": "-12.499999999999764", + "z": "-2.7355895326763857e-13" + } + ], + "uuid": "c3efc945-4c1c-6f96-4942-fc109866d39e", + "time": 0.29167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-65.00000000000045", + "y": "-12.499999999999545", + "z": "-4.547473508864641e-13" + } + ], + "uuid": "272f3287-2902-6964-4156-c672873bddca", + "time": 0.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-120.00000000000045", + "y": "-12.499999999999545", + "z": "-4.547473508864641e-13" + } + ], + "uuid": "a5d28206-e1cf-d13b-d8ea-8a24295be696", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-1" + } + ], + "uuid": "a88681ab-c3fd-96f0-d408-399b7fb4c64b", + "time": 0.29167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "223fcc76-f900-f69c-3c91-9479465c4644", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "a193cc67-3965-2fbb-548b-9edf05f14e7b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "110", + "y": "0", + "z": "0" + } + ], + "uuid": "206242f9-09fe-9ddc-0719-50f0338aa5a6", + "time": 0.29167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "130", + "y": "0", + "z": "0" + } + ], + "uuid": "7a2a2eb6-4662-f760-7e4e-2b0d0cb17ba2", + "time": 0.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "135", + "y": "0", + "z": "0" + } + ], + "uuid": "803547bf-ab00-3496-1d04-48f5a63c379a", + "time": 1.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "3" + } + ], + "uuid": "26705eff-cd98-fa90-61a9-02d95a81973e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-2", + "z": "2" + } + ], + "uuid": "3cd408c9-4dc0-e83c-791c-f8b8a653d5ec", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.69", + "y": "-1.38", + "z": "0.31000000000000005" + } + ], + "uuid": "1c1ec8a0-e11a-52ee-338e-9bd84b153714", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.5", + "y": "-1.4999999999999996", + "z": "2" + } + ], + "uuid": "ab8f2d63-ee2d-b9a2-3f59-543839f4c6d5", + "time": 1.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "100", + "y": "0", + "z": "0" + } + ], + "uuid": "93755341-14c8-96c4-a1b1-1ca812c42d1b", + "time": 0.29167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "694b2ae4-56b3-faae-6d01-2a08b2530e27", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "87.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1f090497-c35c-0172-e3ab-dbe179c642f9", + "time": 0.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a24df147-348d-b021-15f0-5bbe6ed1beb4", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "87.5", + "y": "0", + "z": "0" + } + ], + "uuid": "69c66712-9530-9dea-a7cb-43c74964a967", + "time": 0.83333, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-10" + } + ], + "uuid": "749aafc1-c2f9-3b25-c0c5-48abe44c98db", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "-10" + } + ], + "uuid": "841c3d22-bde0-c181-1d4a-5baa3842c533", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "adb58a38-1c6a-82d3-0be3-4dbfab49c2b9", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "157.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7f2b74a1-8672-4413-20ec-fd2215b24bcd", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "2" + } + ], + "uuid": "dc4b9b9c-f907-9384-f0e9-0e1360c82b9e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-20", + "z": "0" + } + ], + "uuid": "f408e20d-35f7-2d62-818e-343df0ce9a0c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-7", + "z": "-5" + } + ], + "uuid": "0ad58c8f-cb60-fa0d-2123-9fac2ab0793a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "-4" + } + ], + "uuid": "cd444394-5c24-d40b-83e1-c25c5113df25", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "88c665ef-f579-e04c-01a8-d1f6fe3c7a9b", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "65" + } + ], + "uuid": "f4b240ad-9749-6d5f-3560-b92c667d8fd2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f8c453b0-4f0a-de6b-f6bb-982e30243fc9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "e6e30e03-879e-b600-df0a-80f85cc8ac1c", + "name": "jumpingup_un", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "-10.547935953487286", + "z": "-14.04397327585233" + } + ], + "uuid": "2ce88a47-e760-d023-f435-fee15a942e01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "-21.469023519779256", + "z": "13.124268122792381" + } + ], + "uuid": "57bd311c-c651-cb95-d7e8-00b3ddc080f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7b14a130-b86f-c7b6-acaf-391e3615e38c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "c4bee500-dfc3-288e-e5be-f1abcb841f50", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6d2f6d31-a7a4-97b4-9a64-3f0daf236c3b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "331a6bfb-9c77-3901-1736-91a8522d3e70", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "79d43228-ea3b-a486-b935-03a3b8b95e5c", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "10.547935953487286", + "z": "14.04397327585233" + } + ], + "uuid": "99e5ad07-48b6-b8ac-9153-2dfc358f5f46", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "21.469023519779256", + "z": "-13.124268122792381" + } + ], + "uuid": "d300bf2c-7f4c-5b80-7be9-b0f4df223e1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "9dcf4fa5-5f02-bf18-4da5-baf3e1853a15", + "name": "jumpingdown_un", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "24.66569435017618", + "y": "-4.208542519128969", + "z": "-23.420532526717125" + } + ], + "uuid": "b40dc0a0-efb9-9f8c-fd76-8538f1d6151e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.50141512903565", + "y": "21.469023519779057", + "z": "13.124268122792273" + } + ], + "uuid": "ebade1bc-8d9b-7452-656f-c651843ad881", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1080d370-979f-afd0-1990-df7136997d28", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "2afc1367-c16d-0bc7-c13c-41b0556b534e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "9a87c967-985b-57c4-92d9-8ffe83c78122", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a728401b-c01f-1b6d-1de3-bf6ff7a33eaf", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "70", + "y": "0", + "z": "0" + } + ], + "uuid": "7b335476-00b3-7443-15a4-076d16f1a5fe", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.721658181035764", + "y": "-0.9658317366702249", + "z": "13.738468230615126" + } + ], + "uuid": "8075c8e1-0ef5-49d4-e14c-baf6cde73d84", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "ffda97cd-4f5d-df11-e7ab-14464d7a742f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "77066a60-fda8-8b84-a0e9-5a4f71ca5138", + "name": "sprintjumpup_un", + "loop": "hold", + "override": true, + "length": 0.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "24.66569435017618", + "y": "-4.208542519128969", + "z": "-23.420532526717125" + } + ], + "uuid": "8cc15b94-f5fb-11c8-2021-1aa81459686b", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "-10.547935953487286", + "z": "-14.04397327585233" + } + ], + "uuid": "2ce88a47-e760-d023-f435-fee15a942e01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.50141512903565", + "y": "21.469023519779057", + "z": "13.124268122792273" + } + ], + "uuid": "33cbf45a-a330-0e48-08bb-5fc52f9cf3e4", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "-21.469023519779256", + "z": "13.124268122792381" + } + ], + "uuid": "57bd311c-c651-cb95-d7e8-00b3ddc080f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ab9a172f-64ce-599a-2323-b583f1ec1ab7", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7b14a130-b86f-c7b6-acaf-391e3615e38c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "7ceb5601-93ac-b15c-8d3f-1b89244e71a5", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "c4bee500-dfc3-288e-e5be-f1abcb841f50", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "40e6845f-0f1b-fbd2-14f9-def847e3bf2d", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6d2f6d31-a7a4-97b4-9a64-3f0daf236c3b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "33a14844-1e2d-f8b8-60a4-07b859b55d3f", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "331a6bfb-9c77-3901-1736-91a8522d3e70", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "70", + "y": "0", + "z": "0" + } + ], + "uuid": "92750794-713d-7646-aca2-67ac972f8b5a", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "79d43228-ea3b-a486-b935-03a3b8b95e5c", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.721658181035764", + "y": "-0.9658317366702249", + "z": "13.738468230615126" + } + ], + "uuid": "9b2c2034-98fa-42c8-f7bd-e7cd6adbf5af", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "10.547935953487286", + "z": "14.04397327585233" + } + ], + "uuid": "99e5ad07-48b6-b8ac-9153-2dfc358f5f46", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "28740c2c-e4a2-bfd8-4058-0ac4c1213372", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "21.469023519779256", + "z": "-13.124268122792381" + } + ], + "uuid": "d300bf2c-7f4c-5b80-7be9-b0f4df223e1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "93e93f98-3606-59fe-6804-809edd0ba99d", + "name": "sprintjumpdown_un", + "loop": "hold", + "override": true, + "length": 0.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "33.04", + "y": "-7.66", + "z": "-106.78" + } + ], + "uuid": "9b2a3d76-e697-ac99-6138-647c4423af39", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-28.75", + "y": "0", + "z": "13.75" + } + ], + "uuid": "729197d1-4aa9-3e64-4d81-1ab685ff4a04", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-54.53", + "y": "-4.27", + "z": "-6.19" + } + ], + "uuid": "bbb61508-3a9c-c319-eaf4-634a726db49f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "6ecb351a-4131-44ff-5aad-cf1d40550d10", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "40e6845f-0f1b-fbd2-14f9-def847e3bf2d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-29.53", + "y": "4.27", + "z": "6.19" + } + ], + "uuid": "b5bb7c64-4ad7-b2d3-cf3e-98355b795405", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "475d3f28-89d3-aac3-fa64-f7bb61f3a94e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "33.04", + "y": "7.66", + "z": "106.78" + } + ], + "uuid": "c42b9ee2-0927-dd7b-b6f1-c91947adb3e4", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-28.75", + "y": "0", + "z": "-13.75" + } + ], + "uuid": "8d73697d-9369-3831-e6bb-e325ebb14849", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "1c9fffc8-3a44-a8fc-7673-9e5faf0323ac", + "name": "crouching", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": true, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "-3" + } + ], + "uuid": "4b569acd-c608-df6f-3da2-c4b862fe959d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "1c3f7051-7cc7-623f-2941-1eabe1167044", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": -1, + "z": -2 + } + ], + "uuid": "0e1e279a-b0e6-73d2-715a-7b7dad4dea51", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "e1f281e2-be01-69a5-d61a-1e0ca773e590", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "20cb3517-cb5f-13f6-3824-2f4d84ada274", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "2336055b-9af8-8092-a33c-1efbc7e4ae22", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "5aafa2a5-f030-6650-9770-0f0dbff165b7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "acae99d5-af76-d05f-e411-3637afb3c46b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "86f279b7-9445-ecb8-45ef-e0c82f00b202", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "85efa497-707f-7cf5-537c-59e0e81c49a1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "a519eb49-f6b7-32ba-98ad-dcb9e3d553ce", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "36392c4d-571a-9eb6-3572-d9b7fe8314a7", + "name": "crouch2", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-4", + "z": "-5" + } + ], + "uuid": "4b569acd-c608-df6f-3da2-c4b862fe959d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "1c3f7051-7cc7-623f-2941-1eabe1167044", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "4" + } + ], + "uuid": "aef4ded1-340e-2b3d-405e-8c6a726b3bb0", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "e1f281e2-be01-69a5-d61a-1e0ca773e590", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "20cb3517-cb5f-13f6-3824-2f4d84ada274", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "2336055b-9af8-8092-a33c-1efbc7e4ae22", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "5aafa2a5-f030-6650-9770-0f0dbff165b7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "acae99d5-af76-d05f-e411-3637afb3c46b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "86f279b7-9445-ecb8-45ef-e0c82f00b202", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "85efa497-707f-7cf5-537c-59e0e81c49a1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "a519eb49-f6b7-32ba-98ad-dcb9e3d553ce", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + } + ] +} \ No newline at end of file diff --git a/3d_models/akira/model 4.13/akira_eiko_olivia_pink.gif b/3d_models/akira/model 4.13/akira_eiko_olivia_pink.gif new file mode 100644 index 0000000..d7ba049 Binary files /dev/null and b/3d_models/akira/model 4.13/akira_eiko_olivia_pink.gif differ diff --git a/3d_models/akira/model 4.13/akira_olivia_pink.bbmodel b/3d_models/akira/model 4.13/akira_olivia_pink.bbmodel new file mode 100644 index 0000000..4e672a0 --- /dev/null +++ b/3d_models/akira/model 4.13/akira_olivia_pink.bbmodel @@ -0,0 +1,19344 @@ +{ + "meta": { + "format_version": "4.10", + "model_format": "free", + "box_uv": false + }, + "name": "akira_olivia_pink", + "model_identifier": "akirapink", + "visible_box": [1, 1, 0], + "variable_placeholders": "", + "variable_placeholder_buttons": [], + "timeline_setups": [], + "unhandled_root_fields": {}, + "resolution": { + "width": 96, + "height": 64 + }, + "elements": [ + { + "name": "cube", + "color": 8, + "origin": [-1.01519, 0, -0.17365], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "BtHE": [4.2, 2, 2], + "p9SG": [4.2, 2, -0.85714], + "dP2U": [4.2, 0, 2], + "eok7": [5, 0, -0.85714], + "ocfu": [1.8, 2, 2], + "vUhB": [1.8, 2, -0.85714], + "EUsg": [1.8, 0, 2], + "oqGO": [1, 0, -0.85714], + "LuHl": [1.8, 2, -3], + "xXtl": [4.2, 2, -3], + "EDaA": [1.8, 0, -4], + "X2US": [4.2, 0, -4] + }, + "faces": { + "rLMf7opp": { + "uv": { + "dP2U": [0, 24], + "eok7": [0, 22], + "BtHE": [4, 24], + "p9SG": [4, 22] + }, + "vertices": ["p9SG", "BtHE", "eok7", "dP2U"], + "texture": 0 + }, + "lK1uZ4ZU": { + "uv": { + "oqGO": [0, 24], + "EUsg": [0, 22], + "vUhB": [4, 24], + "ocfu": [4, 22] + }, + "vertices": ["ocfu", "vUhB", "EUsg", "oqGO"], + "texture": 0 + }, + "IOcJK5rY": { + "uv": { + "ocfu": [0, 26], + "BtHE": [0, 22], + "vUhB": [3, 26], + "p9SG": [3, 22] + }, + "vertices": ["p9SG", "vUhB", "BtHE", "ocfu"], + "texture": 0 + }, + "TZD9oDhP": { + "uv": { + "oqGO": [0, 26], + "eok7": [0, 22], + "EUsg": [3, 26], + "dP2U": [3, 22] + }, + "vertices": ["dP2U", "EUsg", "eok7", "oqGO"], + "texture": 0 + }, + "h8ImDcMA": { + "uv": { + "EUsg": [0, 24], + "dP2U": [0, 22], + "ocfu": [3, 24], + "BtHE": [3, 22] + }, + "vertices": ["BtHE", "ocfu", "dP2U", "EUsg"], + "texture": 0 + }, + "4tbVDhEo": { + "uv": { + "X2US": [0, 24], + "EDaA": [0, 22], + "xXtl": [3, 24], + "LuHl": [3, 22] + }, + "vertices": ["LuHl", "xXtl", "EDaA", "X2US"], + "texture": 0 + }, + "EtmLgTse": { + "uv": { + "vUhB": [3, 22], + "oqGO": [0, 22], + "EDaA": [0, 24], + "LuHl": [3, 24] + }, + "vertices": ["LuHl", "EDaA", "oqGO", "vUhB"], + "texture": 0 + }, + "iRHEFw0e": { + "uv": { + "p9SG": [3, 25], + "vUhB": [3, 22], + "LuHl": [0, 22], + "xXtl": [0, 25] + }, + "vertices": ["xXtl", "LuHl", "vUhB", "p9SG"], + "texture": 0 + }, + "5H56KX26": { + "uv": { + "eok7": [0, 24], + "p9SG": [3, 24], + "xXtl": [3, 22], + "X2US": [0, 22] + }, + "vertices": ["X2US", "xXtl", "p9SG", "eok7"], + "texture": 0 + }, + "YPxuRqB2": { + "uv": { + "oqGO": [0, 22], + "eok7": [0, 25], + "X2US": [3, 25], + "EDaA": [3, 22] + }, + "vertices": ["EDaA", "X2US", "eok7", "oqGO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "841507ff-09dc-0d69-b367-522f44abd3cd" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 24, -1], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "ppnZ": [0, 1, 0.09104], + "TV9o": [1.26853, 2.27778, 1.44414], + "n3UK": [1.44975, 7.22222, 2.22207], + "xI8D": [3.0625, 2.27778, 0.52988], + "If9H": [3.5, 7.22222, 1.1772], + "NlFz": [3.0625, 2.07778, -1.03676], + "lH3O": [3.0625, 7.22222, -1.40063], + "BlXc": [1.26853, 1.46601, -2.6473], + "j3zU": [1.44975, 7.22222, -3.23447], + "8Vaz": [1.44975, 3.54008, -3.72523], + "2fMz": [1.44975, 4.37037, -3.22343], + "DFnu": [3.0625, 3.76296, -1.40063], + "ZKz3": [3.0625, 4.37037, -1.40063], + "9wlZ": [3.5, 3.46296, 1.1772], + "HeA6": [3.5, 5.14815, 1.1772], + "ETfb": [1.44975, 3.46296, 3], + "EqZH": [1.44975, 5.92593, 3], + "yF3x": [-1.26853, 2.27778, 1.44414], + "lXqu": [-1.44975, 7.22222, 2.22207], + "C6cU": [-3.0625, 2.27778, 0.52988], + "qc0L": [-3.5, 7.22222, 1.1772], + "HCVy": [-3.0625, 2.07778, -1.03676], + "dgCx": [-3.0625, 7.22222, -1.40063], + "a6Ti": [-1.26853, 1.46601, -2.6473], + "2NA1": [-1.44975, 7.22222, -3.23447], + "5WyA": [-1.44975, 3.54008, -3.72523], + "FBal": [-1.44975, 4.37037, -3.22343], + "XPZQ": [-3.0625, 3.76296, -1.40063], + "tTFb": [-3.0625, 4.37037, -1.40063], + "A49p": [-3.5, 3.46296, 1.1772], + "uuLd": [-3.5, 5.14815, 1.1772], + "Jfz9": [-1.44975, 3.46296, 3], + "ZHiN": [-1.44975, 5.92593, 3], + "y7s6": [1.11674, 9.19127, -2.46667], + "r4hz": [-1.11674, 9.19127, -2.46667], + "eD5k": [0, 9.99995, -0.16665], + "AfLN": [-2.37529, 9.19553, -1.07183], + "yYAy": [-2.67934, 9.20056, 0.71943], + "TwUw": [-1.10102, 9.18004, 1.50264], + "jqYQ": [1.10102, 9.18004, 1.50264], + "cR8P": [2.67934, 9.20056, 0.71943], + "Wmhk": [2.37529, 9.19553, -1.07183], + "aBmc": [0, 9.19127, -2.46667], + "fLpt": [0, 7.22222, -3.23447], + "7lzt": [0, 4.37037, -3.22343], + "TQ4O": [0, 3.54008, -3.72523], + "5haT": [0, 1.46601, -2.6473] + }, + "faces": { + "SGOtJOVi": { + "uv": { + "ppnZ": [0, 5], + "TV9o": [6, 2], + "xI8D": [8, 5] + }, + "vertices": ["xI8D", "TV9o", "ppnZ"], + "texture": 0 + }, + "qybQHbiM": { + "uv": { + "If9H": [6, 2], + "EqZH": [0, 5], + "HeA6": [6, 5], + "n3UK": [0, 2] + }, + "vertices": ["n3UK", "HeA6", "EqZH", "If9H"], + "texture": 0 + }, + "OTX97j14": { + "uv": { + "eD5k": [0, 3], + "cR8P": [6, 6], + "jqYQ": [0, 8] + }, + "vertices": ["jqYQ", "cR8P", "eD5k"], + "texture": 0 + }, + "NeEi2vFZ": { + "uv": { + "ppnZ": [0, 4], + "xI8D": [7, 2], + "NlFz": [7, 6] + }, + "vertices": ["NlFz", "xI8D", "ppnZ"], + "texture": 0 + }, + "WedP020P": { + "uv": { + "lH3O": [6, 2], + "HeA6": [0, 5], + "ZKz3": [6, 5], + "If9H": [0, 2] + }, + "vertices": ["If9H", "ZKz3", "HeA6", "lH3O"], + "texture": 0 + }, + "BYsI7aC0": { + "uv": { + "eD5k": [0, 5], + "Wmhk": [7, 3], + "cR8P": [7, 7] + }, + "vertices": ["cR8P", "Wmhk", "eD5k"], + "texture": 0 + }, + "WWTxBVtP": { + "uv": { + "ppnZ": [0, 2], + "NlFz": [6, 5], + "BlXc": [0, 7] + }, + "vertices": ["BlXc", "NlFz", "ppnZ"], + "texture": 0 + }, + "m9E4bexa": { + "uv": { + "j3zU": [14, 5], + "ZKz3": [8, 0], + "2fMz": [14, 0], + "lH3O": [8, 5] + }, + "vertices": ["lH3O", "2fMz", "ZKz3", "j3zU"], + "texture": 0 + }, + "1K3IilLx": { + "uv": { + "eD5k": [0, 6], + "y7s6": [6, 3], + "Wmhk": [8, 6] + }, + "vertices": ["Wmhk", "y7s6", "eD5k"], + "texture": 0 + }, + "gkvqNXSk": { + "uv": { + "BlXc": [6, 6], + "5haT": [3, 6], + "ppnZ": [3, 2] + }, + "vertices": ["ppnZ", "5haT", "BlXc"], + "texture": 0 + }, + "WZA3BCX4": { + "uv": { + "j3zU": [13, 4.3], + "7lzt": [16.45, 0], + "fLpt": [16.45, 4.3], + "2fMz": [13, 0] + }, + "vertices": ["2fMz", "fLpt", "7lzt", "j3zU"], + "texture": 0 + }, + "UfluJ6be": { + "uv": { + "r4hz": [0, 3], + "aBmc": [3, 3], + "eD5k": [3, 7] + }, + "vertices": ["eD5k", "aBmc", "r4hz"], + "texture": 0 + }, + "mCNrpYIj": { + "uv": { + "ppnZ": [3, 6], + "yF3x": [0, 2], + "TV9o": [6, 2] + }, + "vertices": ["TV9o", "yF3x", "ppnZ"], + "texture": 0 + }, + "taIZthpZ": { + "uv": { + "n3UK": [6, 2], + "ZHiN": [0, 5], + "EqZH": [6, 5], + "lXqu": [0, 2] + }, + "vertices": ["lXqu", "EqZH", "ZHiN", "n3UK"], + "texture": 0 + }, + "eHr3thlr": { + "uv": { + "eD5k": [3, 3], + "jqYQ": [6, 7], + "TwUw": [0, 7] + }, + "vertices": ["TwUw", "jqYQ", "eD5k"], + "texture": 0 + }, + "mOGzqJIk": { + "uv": { + "8Vaz": [9, 2], + "5haT": [12.5, 8], + "TQ4O": [12.5, 2], + "BlXc": [9, 8] + }, + "vertices": ["BlXc", "TQ4O", "5haT", "8Vaz"], + "texture": 0 + }, + "IspizuX0": { + "uv": { + "2fMz": [0, 5], + "TQ4O": [3, 8], + "7lzt": [3, 5], + "8Vaz": [0, 8] + }, + "vertices": ["8Vaz", "7lzt", "TQ4O", "2fMz"], + "texture": 0 + }, + "4elRqR2m": { + "uv": { + "NlFz": [5, 8], + "DFnu": [5, 2], + "8Vaz": [10, 2], + "BlXc": [10, 8] + }, + "vertices": ["BlXc", "8Vaz", "DFnu", "NlFz"], + "texture": 0 + }, + "Pro0QCF0": { + "uv": { + "DFnu": [0, 8], + "ZKz3": [0, 5], + "2fMz": [6, 5], + "8Vaz": [6, 8] + }, + "vertices": ["8Vaz", "2fMz", "ZKz3", "DFnu"], + "texture": 0 + }, + "0wLusB14": { + "uv": { + "xI8D": [0, 5], + "9wlZ": [0, 2], + "DFnu": [6, 2], + "NlFz": [6, 5] + }, + "vertices": ["NlFz", "DFnu", "9wlZ", "xI8D"], + "texture": 0 + }, + "wGe6CeFl": { + "uv": { + "9wlZ": [0, 8], + "HeA6": [0, 5], + "ZKz3": [6, 5], + "DFnu": [6, 8] + }, + "vertices": ["DFnu", "ZKz3", "HeA6", "9wlZ"], + "texture": 0 + }, + "ZCt7nfD8": { + "uv": { + "TV9o": [0, 5], + "ETfb": [0, 2], + "9wlZ": [6, 2], + "xI8D": [6, 5] + }, + "vertices": ["xI8D", "9wlZ", "ETfb", "TV9o"], + "texture": 0 + }, + "yq9buZK2": { + "uv": { + "ETfb": [0, 8], + "EqZH": [0, 5], + "HeA6": [6, 5], + "9wlZ": [6, 8] + }, + "vertices": ["9wlZ", "HeA6", "EqZH", "ETfb"], + "texture": 0 + }, + "3RmOj4jX": { + "uv": { + "yF3x": [0, 5], + "Jfz9": [0, 2], + "ETfb": [6, 2], + "TV9o": [6, 5] + }, + "vertices": ["TV9o", "ETfb", "Jfz9", "yF3x"], + "texture": 0 + }, + "5QqsYfQ8": { + "uv": { + "Jfz9": [0, 8], + "ZHiN": [0, 5], + "EqZH": [6, 5], + "ETfb": [6, 8] + }, + "vertices": ["ETfb", "EqZH", "ZHiN", "Jfz9"], + "texture": 0 + }, + "Fg9vJv4N": { + "uv": { + "ppnZ": [0, 5], + "C6cU": [8, 5], + "yF3x": [6, 2] + }, + "vertices": ["yF3x", "C6cU", "ppnZ"], + "texture": 0 + }, + "wfInJ26T": { + "uv": { + "qc0L": [6, 2], + "ZHiN": [0, 5], + "lXqu": [0, 2], + "uuLd": [6, 5] + }, + "vertices": ["uuLd", "lXqu", "ZHiN", "qc0L"], + "texture": 0 + }, + "eiK1svyY": { + "uv": { + "eD5k": [0, 3], + "TwUw": [0, 8], + "yYAy": [6, 6] + }, + "vertices": ["yYAy", "TwUw", "eD5k"], + "texture": 0 + }, + "ZFEG13AU": { + "uv": { + "ppnZ": [0, 4], + "HCVy": [7, 6], + "C6cU": [7, 2] + }, + "vertices": ["C6cU", "HCVy", "ppnZ"], + "texture": 0 + }, + "BcBa4KR3": { + "uv": { + "dgCx": [6, 2], + "uuLd": [0, 5], + "qc0L": [0, 2], + "tTFb": [6, 5] + }, + "vertices": ["tTFb", "qc0L", "uuLd", "dgCx"], + "texture": 0 + }, + "ixMgOYvh": { + "uv": { + "eD5k": [0, 5], + "yYAy": [7, 7], + "AfLN": [7, 3] + }, + "vertices": ["AfLN", "yYAy", "eD5k"], + "texture": 0 + }, + "RBqNM3aV": { + "uv": { + "ppnZ": [0, 2], + "a6Ti": [0, 7], + "HCVy": [6, 5] + }, + "vertices": ["HCVy", "a6Ti", "ppnZ"], + "texture": 0 + }, + "PbRsxzNF": { + "uv": { + "2NA1": [14, 5], + "tTFb": [8, 0], + "dgCx": [8, 5], + "FBal": [14, 0] + }, + "vertices": ["FBal", "dgCx", "tTFb", "2NA1"], + "texture": 0 + }, + "YLxZHzXa": { + "uv": { + "eD5k": [0, 6], + "AfLN": [8, 6], + "r4hz": [6, 3] + }, + "vertices": ["r4hz", "AfLN", "eD5k"], + "texture": 0 + }, + "j7kPMev4": { + "uv": { + "HCVy": [5, 2], + "XPZQ": [5, 8], + "a6Ti": [10, 2], + "5WyA": [10, 8] + }, + "vertices": ["5WyA", "a6Ti", "XPZQ", "HCVy"], + "texture": 0 + }, + "oYEZeJop": { + "uv": { + "XPZQ": [0, 8], + "tTFb": [0, 5], + "5WyA": [6, 8], + "FBal": [6, 5] + }, + "vertices": ["FBal", "5WyA", "tTFb", "XPZQ"], + "texture": 0 + }, + "JN2qxV70": { + "uv": { + "C6cU": [0, 5], + "A49p": [0, 2], + "HCVy": [6, 5], + "XPZQ": [6, 2] + }, + "vertices": ["XPZQ", "HCVy", "A49p", "C6cU"], + "texture": 0 + }, + "s7idVvdI": { + "uv": { + "A49p": [0, 8], + "uuLd": [0, 5], + "XPZQ": [6, 8], + "tTFb": [6, 5] + }, + "vertices": ["tTFb", "XPZQ", "uuLd", "A49p"], + "texture": 0 + }, + "3YxMl6ID": { + "uv": { + "yF3x": [0, 5], + "Jfz9": [0, 2], + "C6cU": [6, 5], + "A49p": [6, 2] + }, + "vertices": ["A49p", "C6cU", "Jfz9", "yF3x"], + "texture": 0 + }, + "W7j54Eei": { + "uv": { + "Jfz9": [0, 8], + "ZHiN": [0, 5], + "A49p": [6, 8], + "uuLd": [6, 5] + }, + "vertices": ["uuLd", "A49p", "ZHiN", "Jfz9"], + "texture": 0 + }, + "M8wNGDX4": { + "uv": { + "y7s6": [12, 8], + "fLpt": [8, 5.5], + "aBmc": [8, 8], + "j3zU": [12, 5.5] + }, + "vertices": ["j3zU", "aBmc", "fLpt", "y7s6"], + "texture": 0 + }, + "yDqHbo9h": { + "uv": { + "dgCx": [16, 5.5], + "2NA1": [12, 5.5], + "r4hz": [12, 8], + "AfLN": [16, 8] + }, + "vertices": ["AfLN", "r4hz", "2NA1", "dgCx"], + "texture": 0 + }, + "MoW8TQLr": { + "uv": { + "qc0L": [5, 5], + "dgCx": [2, 5], + "AfLN": [2, 4], + "yYAy": [5, 4] + }, + "vertices": ["yYAy", "AfLN", "dgCx", "qc0L"], + "texture": 0 + }, + "0jS0Uy5k": { + "uv": { + "lXqu": [1, 6], + "qc0L": [1, 4], + "yYAy": [2, 4], + "TwUw": [2, 6] + }, + "vertices": ["TwUw", "yYAy", "qc0L", "lXqu"], + "texture": 0 + }, + "LWutpvwP": { + "uv": { + "n3UK": [3, 6], + "lXqu": [0, 6], + "TwUw": [0, 5], + "jqYQ": [3, 5] + }, + "vertices": ["jqYQ", "TwUw", "lXqu", "n3UK"], + "texture": 0 + }, + "jpZwlyIV": { + "uv": { + "If9H": [2, 6], + "n3UK": [0, 6], + "jqYQ": [0, 5], + "cR8P": [2, 5] + }, + "vertices": ["cR8P", "jqYQ", "n3UK", "If9H"], + "texture": 0 + }, + "KFDI8HrX": { + "uv": { + "lH3O": [4, 6], + "If9H": [4, 3], + "cR8P": [5, 3], + "Wmhk": [5, 6] + }, + "vertices": ["Wmhk", "cR8P", "If9H", "lH3O"], + "texture": 0 + }, + "9U6WwQ2l": { + "uv": { + "j3zU": [13, 5.5], + "lH3O": [9, 5.5], + "Wmhk": [9, 8], + "y7s6": [13, 8] + }, + "vertices": ["y7s6", "Wmhk", "lH3O", "j3zU"], + "texture": 0 + }, + "v1ehew7P": { + "uv": { + "2NA1": [12, 5.5], + "fLpt": [8, 5.5], + "aBmc": [8, 8], + "r4hz": [12, 8] + }, + "vertices": ["r4hz", "aBmc", "fLpt", "2NA1"], + "texture": 0 + }, + "CR7AFEZW": { + "uv": { + "FBal": [13, 4.3], + "7lzt": [16.45, 4.3], + "fLpt": [16.45, 0], + "2NA1": [13, 0] + }, + "vertices": ["2NA1", "fLpt", "7lzt", "FBal"], + "texture": 0 + }, + "Mm2kvP11": { + "uv": { + "5WyA": [6, 8], + "TQ4O": [3, 8], + "7lzt": [3, 5], + "FBal": [6, 5] + }, + "vertices": ["FBal", "7lzt", "TQ4O", "5WyA"], + "texture": 0 + }, + "4W0EnR3i": { + "uv": { + "a6Ti": [16, 8], + "5haT": [12.5, 8], + "TQ4O": [12.5, 2], + "5WyA": [16, 2] + }, + "vertices": ["5WyA", "TQ4O", "5haT", "a6Ti"], + "texture": 0 + }, + "dnGjh5q7": { + "uv": { + "ppnZ": [3, 2], + "5haT": [3, 6], + "a6Ti": [0, 6] + }, + "vertices": ["a6Ti", "5haT", "ppnZ"], + "texture": 0 + }, + "kKJrjpb6": { + "uv": { + "eD5k": [3, 7], + "aBmc": [3, 3], + "y7s6": [6, 3] + }, + "vertices": ["y7s6", "aBmc", "eD5k"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "7564b320-32ad-f191-5c63-fdfa5abfafd5" + }, + { + "name": "sphere", + "color": 8, + "origin": [0, 30, -0.5], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "jKok": [-5.55366, 1.58372, 2.74528], + "FXfo": [-4.85264, -5.22242, 4.08067], + "75IQ": [-5.55366, 1.44297, -2.59182], + "jDJU": [-5.29571, 2.44453, -1.50586], + "vple": [-5.29571, 2.44453, 2.40941], + "HSIv": [-6.22132, -1.49312, -0.52533], + "nHut": [-6.22132, -1.49312, 2.97183], + "LbBY": [-5.42468, -0.47365, -2.46597], + "5AXE": [-4.05521, 0.96031, -2.94095], + "4Aek": [-5.42468, -0.01394, 2.57734], + "nGlq": [-0.94479, -0.12302, -2.3928], + "lIQ3": [-4.85264, -6.30576, 2.98437], + "GFNw": [-4.85264, -6.30576, -1.16998], + "owwU": [3.92703, 4.38908, 2.07352], + "yJdM": [5.55366, 1.58372, 2.74528], + "Vz8M": [4.85264, -5.22242, 4.08067], + "jbYw": [5.55366, 1.44297, -2.59182], + "LInl": [2.46538, 2.1157, -4.19925], + "CEed": [5.29571, 2.44453, -1.50586], + "aAun": [5.29571, 2.44453, 2.40941], + "b8kf": [6.22132, -1.49312, -0.52533], + "kpeJ": [6.22132, -1.49312, 2.97183], + "BHgp": [5.42468, -0.47365, -2.46597], + "NL1s": [4.05521, 0.96031, -2.94095], + "UilW": [5.42468, -0.01394, 2.57734], + "HRTL": [1.2628, 2.65353, -3.27599], + "ytho": [0.94479, -0.12302, -2.3928], + "PCb6": [-3.92703, 4.38908, 2.07352], + "cefY": [-3.92703, 4.38908, -1.16998], + "1Acn": [-2.46538, 2.1157, -4.19925], + "PG6A": [-4.04477, -3.18019, -1.1826], + "YKrh": [-2.3004, 1.58372, 5.98879], + "9Vbx": [-2.74281, -6.30576, 6.37417], + "AETh": [-2.19356, 2.44453, 5.17791], + "B9LH": [-2.88912, -1.49312, 7.18505], + "T24w": [-2.13196, -0.01394, 6.49418], + "0y1E": [0, -7, 1.54808], + "7NKt": [0, 5.5, 0.45178], + "9osI": [-1.62663, 4.38908, 4.36703], + "NXb9": [-1.62663, 4.38908, -3.46349], + "wOfP": [-1.62663, -5.22242, -0.15238], + "grtz": [1.62663, 4.38908, 4.36703], + "QrYn": [1.62663, 4.38908, -3.46349], + "AAGn": [1.62663, -5.22242, -0.15238], + "MGSN": [2.3004, 1.58372, 5.98879], + "cVzJ": [2.74281, -6.30576, 6.37417], + "pSuD": [2.19356, 2.44453, 5.17791], + "fvDz": [2.88912, -1.49312, 7.18505], + "EApG": [2.13196, -0.01394, 6.49418], + "TmnP": [4.85264, -6.30576, 2.98437], + "z83N": [3.92703, 4.38908, -1.16998], + "zWCT": [4.85264, -6.30576, -1.16998], + "zBbf": [-1.2628, 2.2202, -3.57599], + "mjln": [4.04477, -3.18019, -1.1826] + }, + "faces": { + "CfZlFLu3": { + "uv": { + "7NKt": [15.35365, 20.3], + "9osI": [18.30731, 24.94521], + "PCb6": [12.4, 24.94521] + }, + "vertices": ["PCb6", "9osI", "7NKt"], + "texture": 0 + }, + "YMU6twbg": { + "uv": { + "YKrh": [12.4, 24.4614], + "vple": [22.42197, 20.88072], + "jKok": [23.2138, 24.4614], + "AETh": [13.19183, 20.88072] + }, + "vertices": ["AETh", "jKok", "vple", "YKrh"], + "texture": 0 + }, + "599E21cC": { + "uv": { + "9Vbx": [13.98366, 31.4614], + "nHut": [22.42197, 25.8807], + "FXfo": [21.63014, 31.4614], + "B9LH": [13.19183, 25.8807] + }, + "vertices": ["B9LH", "FXfo", "nHut", "9Vbx"], + "texture": 0 + }, + "e3aOm5Hl": { + "uv": { + "0y1E": [16.22324, 31.4614], + "FXfo": [20.04648, 20.3], + "9Vbx": [12.4, 20.3] + }, + "vertices": ["9Vbx", "FXfo", "0y1E"], + "texture": 0 + }, + "R9EdmOeg": { + "uv": { + "7NKt": [15.35365, 20.3], + "PCb6": [18.30731, 24.94521], + "cefY": [12.4, 24.94521] + }, + "vertices": ["cefY", "PCb6", "7NKt"], + "texture": 0 + }, + "GjEjz7Ro": { + "uv": { + "jKok": [12.4, 24.4614], + "jDJU": [22.42197, 20.88072], + "75IQ": [23.2138, 24.4614], + "vple": [13.19183, 20.88072] + }, + "vertices": ["vple", "75IQ", "jDJU", "jKok"], + "texture": 0 + }, + "J6qum8Ns": { + "uv": { + "FXfo": [13.98366, 31.4614], + "HSIv": [22.42197, 25.8807], + "GFNw": [21.63014, 31.4614], + "nHut": [13.19183, 25.8807] + }, + "vertices": ["nHut", "GFNw", "HSIv", "FXfo"], + "texture": 0 + }, + "p7QAgnbw": { + "uv": { + "0y1E": [16.22324, 31.4614], + "GFNw": [20.04648, 20.3], + "FXfo": [12.4, 20.3] + }, + "vertices": ["FXfo", "GFNw", "0y1E"], + "texture": 0 + }, + "VqJzQYeL": { + "uv": { + "75IQ": [12.4, 24.4614], + "1Acn": [22.81789, 22.67106], + "jDJU": [13.19183, 20.88072] + }, + "vertices": ["jDJU", "1Acn", "75IQ"], + "texture": 0 + }, + "rjwxyevX": { + "uv": { + "GFNw": [13.98366, 31.4614], + "wOfP": [21.63014, 31.4614], + "HSIv": [13.19183, 25.8807] + }, + "vertices": ["HSIv", "wOfP", "GFNw"], + "texture": 0 + }, + "FpGG2OsV": { + "uv": { + "NXb9": [19.11966, 20.3], + "1Acn": [13.74808, 20.3], + "cefY": [19.67591, 23.1274], + "jDJU": [13.19183, 23.1274] + }, + "vertices": ["jDJU", "cefY", "1Acn", "NXb9"], + "texture": 0 + }, + "WVywrfkh": { + "uv": { + "PCb6": [19.11966, 20.3], + "vple": [13.74808, 20.3], + "9osI": [19.67591, 23.1274], + "AETh": [13.19183, 23.1274] + }, + "vertices": ["AETh", "9osI", "vple", "PCb6"], + "texture": 0 + }, + "wjPrqXqq": { + "uv": { + "cefY": [19.11966, 20.3], + "jDJU": [13.74808, 20.3], + "PCb6": [19.67591, 23.1274], + "vple": [13.19183, 23.1274] + }, + "vertices": ["vple", "PCb6", "jDJU", "cefY"], + "texture": 0 + }, + "U2CwdCcf": { + "uv": { + "HSIv": [13.19183, 25.8807], + "5AXE": [22.81788, 23.09035], + "PG6A": [22.42197, 25.8807], + "LbBY": [12.79592, 23.09035] + }, + "vertices": ["LbBY", "PG6A", "5AXE", "HSIv"], + "texture": 0 + }, + "oPupHgRI": { + "uv": { + "B9LH": [13.19183, 25.8807], + "4Aek": [22.81788, 23.09035], + "nHut": [22.42197, 25.8807], + "T24w": [12.79592, 23.09035] + }, + "vertices": ["T24w", "nHut", "4Aek", "B9LH"], + "texture": 0 + }, + "JZ21qe1j": { + "uv": { + "nHut": [13.19183, 25.8807], + "LbBY": [22.81788, 23.09035], + "HSIv": [22.42197, 25.8807], + "4Aek": [12.79592, 23.09035] + }, + "vertices": ["4Aek", "HSIv", "LbBY", "nHut"], + "texture": 0 + }, + "cGzqpGPN": { + "uv": { + "5AXE": [22.81788, 23.09035], + "75IQ": [12.4, 20.3], + "LbBY": [12.79592, 23.09035] + }, + "vertices": ["LbBY", "75IQ", "5AXE"], + "texture": 0 + }, + "n4JqRr2O": { + "uv": { + "jKok": [23.2138, 20.3], + "4Aek": [22.81788, 23.09035], + "YKrh": [12.4, 20.3], + "T24w": [12.79592, 23.09035] + }, + "vertices": ["T24w", "YKrh", "4Aek", "jKok"], + "texture": 0 + }, + "5TE5NA9Q": { + "uv": { + "75IQ": [23.2138, 20.3], + "LbBY": [22.81788, 23.09035], + "jKok": [12.4, 20.3], + "4Aek": [12.79592, 23.09035] + }, + "vertices": ["4Aek", "jKok", "LbBY", "75IQ"], + "texture": 0 + }, + "qpAUxEXX": { + "uv": { + "GFNw": [13.98366, 31.4614], + "PG6A": [22.42197, 25.8807], + "HSIv": [13.19183, 25.8807] + }, + "vertices": ["HSIv", "PG6A", "GFNw"], + "texture": 0 + }, + "v2wDlkRg": { + "uv": { + "wOfP": [17.44698, 30.62797], + "GFNw": [20.63818, 30.62797], + "PG6A": [19.79468, 28.55995] + }, + "vertices": ["PG6A", "GFNw", "wOfP"], + "texture": 0 + }, + "3OIMqIi2": { + "uv": { + "1Acn": [23.2138, 25.3], + "5AXE": [22.81788, 28.09035], + "nGlq": [12.79592, 28.09035], + "zBbf": [12.4, 25.3] + }, + "vertices": ["zBbf", "nGlq", "5AXE", "1Acn"], + "texture": 0 + }, + "O5x06ylH": { + "uv": { + "7NKt": [15.35365, 20.3], + "owwU": [12.4, 24.94521], + "grtz": [18.30731, 24.94521] + }, + "vertices": ["grtz", "owwU", "7NKt"], + "texture": 0 + }, + "tIZmB4lc": { + "uv": { + "7NKt": [15.35365, 20.3], + "z83N": [12.4, 24.94521], + "owwU": [18.30731, 24.94521] + }, + "vertices": ["owwU", "z83N", "7NKt"], + "texture": 0 + }, + "wxE5wvrO": { + "uv": { + "7NKt": [18.09971, 21.21777], + "QrYn": [15.14606, 25.86299], + "z83N": [21.05337, 25.86299] + }, + "vertices": ["z83N", "QrYn", "7NKt"], + "texture": 0 + }, + "ubicc3vF": { + "uv": { + "7NKt": [18.09971, 22.13555], + "grtz": [15.14606, 26.78076], + "9osI": [21.05337, 26.78076] + }, + "vertices": ["9osI", "grtz", "7NKt"], + "texture": 0 + }, + "16KVhNq8": { + "uv": { + "7NKt": [19.93042, 25.86299], + "NXb9": [16.97677, 21.21777], + "QrYn": [22.88407, 21.21777] + }, + "vertices": ["QrYn", "NXb9", "7NKt"], + "texture": 0 + }, + "Tuh4qWWV": { + "uv": { + "wOfP": [13.98366, 31.4614], + "mjln": [22.42197, 25.8807], + "AAGn": [21.63014, 31.4614], + "PG6A": [13.19183, 25.8807] + }, + "vertices": ["PG6A", "AAGn", "mjln", "wOfP"], + "texture": 0 + }, + "rBoCNANZ": { + "uv": { + "0y1E": [16.22324, 31.4614], + "AAGn": [20.04648, 20.3], + "wOfP": [12.4, 20.3] + }, + "vertices": ["wOfP", "AAGn", "0y1E"], + "texture": 0 + }, + "NvWxXDXs": { + "uv": { + "cVzJ": [13.98366, 31.4614], + "B9LH": [22.42197, 25.8807], + "9Vbx": [21.63014, 31.4614], + "fvDz": [13.19183, 25.8807] + }, + "vertices": ["fvDz", "9Vbx", "B9LH", "cVzJ"], + "texture": 0 + }, + "rewAC0ru": { + "uv": { + "0y1E": [16.22324, 31.4614], + "9Vbx": [20.04648, 20.3], + "cVzJ": [12.4, 20.3] + }, + "vertices": ["cVzJ", "9Vbx", "0y1E"], + "texture": 0 + }, + "TCkvc3xB": { + "uv": { + "0y1E": [16.22324, 31.4614], + "lIQ3": [20.04648, 20.3], + "9Vbx": [12.4, 20.3] + }, + "vertices": ["9Vbx", "lIQ3", "0y1E"], + "texture": 0 + }, + "7TpoJPYf": { + "uv": { + "0y1E": [16.22324, 31.4614], + "GFNw": [20.04648, 20.3], + "lIQ3": [12.4, 20.3] + }, + "vertices": ["lIQ3", "GFNw", "0y1E"], + "texture": 0 + }, + "AbcasAJX": { + "uv": { + "7NKt": [15.35365, 24.94521], + "cefY": [12.4, 20.3], + "NXb9": [18.30731, 20.3] + }, + "vertices": ["NXb9", "cefY", "7NKt"], + "texture": 0 + }, + "Y4GP8LGk": { + "uv": { + "0y1E": [16.22324, 31.4614], + "wOfP": [20.04648, 20.3], + "GFNw": [12.4, 20.3] + }, + "vertices": ["GFNw", "wOfP", "0y1E"], + "texture": 0 + }, + "ybqKUDwY": { + "uv": { + "7NKt": [15.35365, 20.3], + "owwU": [12.4, 24.94521], + "grtz": [18.30731, 24.94521] + }, + "vertices": ["grtz", "owwU", "7NKt"], + "texture": 0 + }, + "YCAiOAhK": { + "uv": { + "MGSN": [12.4, 24.4614], + "aAun": [22.42197, 20.88072], + "pSuD": [13.19183, 20.88072], + "yJdM": [23.2138, 24.4614] + }, + "vertices": ["yJdM", "pSuD", "aAun", "MGSN"], + "texture": 0 + }, + "2lrSoywG": { + "uv": { + "cVzJ": [13.98366, 31.4614], + "kpeJ": [22.42197, 25.8807], + "fvDz": [13.19183, 25.8807], + "Vz8M": [21.63014, 31.4614] + }, + "vertices": ["Vz8M", "fvDz", "kpeJ", "cVzJ"], + "texture": 0 + }, + "T0O1Qklz": { + "uv": { + "0y1E": [16.22324, 31.4614], + "cVzJ": [12.4, 20.3], + "Vz8M": [20.04648, 20.3] + }, + "vertices": ["Vz8M", "cVzJ", "0y1E"], + "texture": 0 + }, + "fxmhnWuI": { + "uv": { + "7NKt": [15.35365, 20.3], + "z83N": [12.4, 24.94521], + "owwU": [18.30731, 24.94521] + }, + "vertices": ["owwU", "z83N", "7NKt"], + "texture": 0 + }, + "e9g1ZM2R": { + "uv": { + "yJdM": [12.4, 24.4614], + "CEed": [22.42197, 20.88072], + "aAun": [13.19183, 20.88072], + "jbYw": [23.2138, 24.4614] + }, + "vertices": ["jbYw", "aAun", "CEed", "yJdM"], + "texture": 0 + }, + "hvzCyS3N": { + "uv": { + "Vz8M": [13.98366, 31.4614], + "b8kf": [22.42197, 25.8807], + "kpeJ": [13.19183, 25.8807], + "zWCT": [21.63014, 31.4614] + }, + "vertices": ["zWCT", "kpeJ", "b8kf", "Vz8M"], + "texture": 0 + }, + "M7w0Y8jw": { + "uv": { + "0y1E": [16.22324, 31.4614], + "Vz8M": [12.4, 20.3], + "zWCT": [20.04648, 20.3] + }, + "vertices": ["zWCT", "Vz8M", "0y1E"], + "texture": 0 + }, + "QWd7RZLx": { + "uv": { + "jbYw": [12.4, 24.4614], + "CEed": [13.19183, 20.88072], + "LInl": [22.81789, 22.67106] + }, + "vertices": ["LInl", "CEed", "jbYw"], + "texture": 0 + }, + "TauxAtoF": { + "uv": { + "zWCT": [13.98366, 31.4614], + "b8kf": [13.19183, 25.8807], + "AAGn": [21.63014, 31.4614] + }, + "vertices": ["AAGn", "b8kf", "zWCT"], + "texture": 0 + }, + "ZDHBz7cG": { + "uv": { + "QrYn": [19.11966, 20.3], + "LInl": [13.74808, 20.3], + "CEed": [13.19183, 23.1274], + "z83N": [19.67591, 23.1274] + }, + "vertices": ["z83N", "CEed", "LInl", "QrYn"], + "texture": 0 + }, + "Ywlp2A5z": { + "uv": { + "owwU": [19.11966, 20.3], + "aAun": [13.74808, 20.3], + "pSuD": [13.19183, 23.1274], + "grtz": [19.67591, 23.1274] + }, + "vertices": ["grtz", "pSuD", "aAun", "owwU"], + "texture": 0 + }, + "qQ6VpRZe": { + "uv": { + "z83N": [19.11966, 20.3], + "CEed": [13.74808, 20.3], + "aAun": [13.19183, 23.1274], + "owwU": [19.67591, 23.1274] + }, + "vertices": ["owwU", "aAun", "CEed", "z83N"], + "texture": 0 + }, + "9Xmbk06f": { + "uv": { + "b8kf": [13.19183, 25.8807], + "NL1s": [22.81788, 23.09035], + "BHgp": [12.79592, 23.09035], + "mjln": [22.42197, 25.8807] + }, + "vertices": ["mjln", "BHgp", "NL1s", "b8kf"], + "texture": 0 + }, + "90U61sQs": { + "uv": { + "fvDz": [13.19183, 25.8807], + "UilW": [22.81788, 23.09035], + "EApG": [12.79592, 23.09035], + "kpeJ": [22.42197, 25.8807] + }, + "vertices": ["kpeJ", "EApG", "UilW", "fvDz"], + "texture": 0 + }, + "3nAPr5Vb": { + "uv": { + "kpeJ": [13.19183, 25.8807], + "BHgp": [22.81788, 23.09035], + "UilW": [12.79592, 23.09035], + "b8kf": [22.42197, 25.8807] + }, + "vertices": ["b8kf", "UilW", "BHgp", "kpeJ"], + "texture": 0 + }, + "N7gZZzuE": { + "uv": { + "NL1s": [22.81788, 23.09035], + "BHgp": [12.79592, 23.09035], + "jbYw": [12.4, 20.3] + }, + "vertices": ["jbYw", "BHgp", "NL1s"], + "texture": 0 + }, + "oCsF34PS": { + "uv": { + "yJdM": [23.2138, 20.3], + "UilW": [22.81788, 23.09035], + "EApG": [12.79592, 23.09035], + "MGSN": [12.4, 20.3] + }, + "vertices": ["MGSN", "EApG", "UilW", "yJdM"], + "texture": 0 + }, + "7OtzI9CF": { + "uv": { + "jbYw": [23.2138, 20.3], + "BHgp": [22.81788, 23.09035], + "UilW": [12.79592, 23.09035], + "yJdM": [12.4, 20.3] + }, + "vertices": ["yJdM", "UilW", "BHgp", "jbYw"], + "texture": 0 + }, + "MHxYSMHA": { + "uv": { + "zWCT": [13.98366, 31.4614], + "b8kf": [13.19183, 25.8807], + "mjln": [22.42197, 25.8807] + }, + "vertices": ["mjln", "b8kf", "zWCT"], + "texture": 0 + }, + "e1EGiE0x": { + "uv": { + "AAGn": [17.44698, 30.62797], + "mjln": [19.79468, 28.55995], + "zWCT": [20.63818, 30.62797] + }, + "vertices": ["zWCT", "mjln", "AAGn"], + "texture": 0 + }, + "EnOjasRk": { + "uv": { + "LInl": [23.2138, 25.3], + "NL1s": [22.81788, 28.09035], + "HRTL": [12.4, 25.3], + "ytho": [12.79592, 28.09035] + }, + "vertices": ["ytho", "HRTL", "NL1s", "LInl"], + "texture": 0 + }, + "BnVyjGEr": { + "uv": { + "7NKt": [15.35365, 20.3], + "9osI": [18.30731, 24.94521], + "PCb6": [12.4, 24.94521] + }, + "vertices": ["PCb6", "9osI", "7NKt"], + "texture": 0 + }, + "1GP5oMXt": { + "uv": { + "7NKt": [15.35365, 20.3], + "PCb6": [18.30731, 24.94521], + "cefY": [12.4, 24.94521] + }, + "vertices": ["cefY", "PCb6", "7NKt"], + "texture": 0 + }, + "HbmqV6wX": { + "uv": { + "7NKt": [18.09971, 21.21777], + "cefY": [21.05337, 25.86299], + "NXb9": [15.14606, 25.86299] + }, + "vertices": ["NXb9", "cefY", "7NKt"], + "texture": 0 + }, + "TZISD7Ta": { + "uv": { + "7NKt": [18.09971, 22.13555], + "grtz": [21.05337, 26.78076], + "9osI": [15.14606, 26.78076] + }, + "vertices": ["9osI", "grtz", "7NKt"], + "texture": 0 + }, + "jLIOfIVV": { + "uv": { + "grtz": [19.11966, 20.3], + "pSuD": [19.67591, 23.1274], + "AETh": [13.19183, 23.1274], + "9osI": [13.74808, 20.3] + }, + "vertices": ["9osI", "AETh", "pSuD", "grtz"], + "texture": 0 + }, + "EEI5QteS": { + "uv": { + "7NKt": [19.93042, 25.86299], + "NXb9": [22.88407, 21.21777], + "QrYn": [16.97677, 21.21777] + }, + "vertices": ["QrYn", "NXb9", "7NKt"], + "texture": 0 + }, + "DDwjMZN5": { + "uv": { + "NXb9": [16.29123, 23.3], + "1Acn": [16.67591, 27.1274], + "LInl": [12.19183, 27.1274], + "QrYn": [12.57651, 23.3] + }, + "vertices": ["QrYn", "LInl", "1Acn", "NXb9"], + "texture": 0 + }, + "ujSOPSMx": { + "uv": { + "AAGn": [13.98366, 31.4614], + "PG6A": [22.42197, 25.8807], + "mjln": [13.19183, 25.8807], + "wOfP": [21.63014, 31.4614] + }, + "vertices": ["wOfP", "mjln", "PG6A", "AAGn"], + "texture": 0 + }, + "J8OhjxTG": { + "uv": { + "0y1E": [16.22324, 31.4614], + "AAGn": [12.4, 20.3], + "wOfP": [20.04648, 20.3] + }, + "vertices": ["wOfP", "AAGn", "0y1E"], + "texture": 0 + }, + "oKAkzerh": { + "uv": { + "YKrh": [12.4, 24.4614], + "pSuD": [22.42197, 20.88072], + "AETh": [13.19183, 20.88072], + "MGSN": [23.2138, 24.4614] + }, + "vertices": ["MGSN", "AETh", "pSuD", "YKrh"], + "texture": 0 + }, + "74vyrQL4": { + "uv": { + "0y1E": [16.22324, 31.4614], + "9Vbx": [12.4, 20.3], + "cVzJ": [20.04648, 20.3] + }, + "vertices": ["cVzJ", "9Vbx", "0y1E"], + "texture": 0 + }, + "QwElfzPz": { + "uv": { + "B9LH": [13.19183, 25.8807], + "EApG": [22.81788, 23.09035], + "T24w": [12.79592, 23.09035], + "fvDz": [22.42197, 25.8807] + }, + "vertices": ["fvDz", "T24w", "EApG", "B9LH"], + "texture": 0 + }, + "UAW1iLNx": { + "uv": { + "MGSN": [23.2138, 20.3], + "EApG": [22.81788, 23.09035], + "T24w": [12.79592, 23.09035], + "YKrh": [12.4, 20.3] + }, + "vertices": ["YKrh", "T24w", "EApG", "MGSN"], + "texture": 0 + }, + "PqO49L9U": { + "uv": { + "0y1E": [16.22324, 31.4614], + "cVzJ": [12.4, 20.3], + "TmnP": [20.04648, 20.3] + }, + "vertices": ["TmnP", "cVzJ", "0y1E"], + "texture": 0 + }, + "LktzJ856": { + "uv": { + "0y1E": [16.22324, 31.4614], + "TmnP": [12.4, 20.3], + "zWCT": [20.04648, 20.3] + }, + "vertices": ["zWCT", "TmnP", "0y1E"], + "texture": 0 + }, + "biSz2U4t": { + "uv": { + "7NKt": [15.35365, 24.94521], + "QrYn": [18.30731, 20.3], + "z83N": [12.4, 20.3] + }, + "vertices": ["z83N", "QrYn", "7NKt"], + "texture": 0 + }, + "gFu0yaKG": { + "uv": { + "0y1E": [16.22324, 31.4614], + "zWCT": [12.4, 20.3], + "AAGn": [20.04648, 20.3] + }, + "vertices": ["AAGn", "zWCT", "0y1E"], + "texture": 0 + }, + "LxyrzKoA": { + "uv": { + "1Acn": [23.2138, 20.3], + "75IQ": [12.4, 20.3], + "5AXE": [22.81788, 23.09035] + }, + "vertices": ["5AXE", "75IQ", "1Acn"], + "texture": 0 + }, + "mtdFIh3D": { + "uv": { + "LInl": [23.2138, 20.3], + "NL1s": [22.81788, 23.09035], + "jbYw": [12.4, 20.3] + }, + "vertices": ["jbYw", "NL1s", "LInl"], + "texture": 0 + }, + "YVCc997S": { + "uv": { + "1Acn": [12, 25.83987], + "zBbf": [13.3481, 24.24568], + "HRTL": [16.29357, 23], + "LInl": [17.69612, 25.83987] + }, + "vertices": ["LInl", "HRTL", "zBbf", "1Acn"], + "texture": 0 + }, + "7JMKLqjo": { + "uv": { + "zBbf": [16.07105, 28.95379], + "HRTL": [16.04119, 26], + "nGlq": [13.29124, 28.95379], + "ytho": [13, 26.77981] + }, + "vertices": ["ytho", "nGlq", "HRTL", "zBbf"], + "texture": 0 + }, + "s6PlbZph": { + "uv": { + "mjln": [13, 25.79322], + "NL1s": [13, 21], + "ytho": [16.60807, 22.29549] + }, + "vertices": ["ytho", "NL1s", "mjln"], + "texture": 0 + }, + "CxGUwfqa": { + "uv": { + "5AXE": [16.8336, 21], + "PG6A": [15.21383, 25.51124], + "nGlq": [13, 21] + }, + "vertices": ["nGlq", "PG6A", "5AXE"], + "texture": 0 + }, + "o31175XQ": { + "uv": { + "PG6A": [22.3898, 24.5077], + "nGlq": [18.7916, 21], + "mjln": [13, 24.5077], + "ytho": [16.5982, 21] + }, + "vertices": ["ytho", "mjln", "nGlq", "PG6A"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "6ee6c485-55e3-677f-8a8a-6437317da917" + }, + { + "name": "cylinder", + "color": 8, + "origin": [4, 29.7, -1.9], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8bfM": [-0.55, -0.44721, 0], + "Kvjd": [-0.55, -0.44721, -1], + "USVQ": [-1.17629, -1.5, 0], + "HXhU": [-1.17629, -1.5, -1], + "UZWq": [-1.56336, -0.04508, 0], + "axTi": [-1.56336, -0.04508, -1], + "tgyO": [-0.55, 0.8541, 0], + "Ib2Y": [-0.55, 0.8541, -1], + "FTwV": [0.46336, -0.04508, 0], + "O5S9": [0.46336, -0.04508, -1], + "5xC8": [0.07629, -1.5, 0], + "tls7": [0.07629, -1.5, -1] + }, + "faces": { + "91nAa0xC": { + "uv": { + "8bfM": [0, 6.08977], + "USVQ": [1.50002, 5], + "UZWq": [1.50002, 7.1796] + }, + "vertices": ["UZWq", "USVQ", "8bfM"], + "texture": 0 + }, + "9ZKH0lG6": { + "uv": { + "HXhU": [0, 5], + "axTi": [2.1796, 5], + "UZWq": [2.1796, 7], + "USVQ": [0, 7] + }, + "vertices": ["USVQ", "UZWq", "axTi", "HXhU"], + "texture": 0 + }, + "RGmcX1UG": { + "uv": { + "Kvjd": [4.50306, 0], + "axTi": [5.06639, 1.76648], + "HXhU": [2.16591, 1.76648] + }, + "vertices": ["HXhU", "axTi", "Kvjd"], + "texture": 0 + }, + "hURkvpYa": { + "uv": { + "8bfM": [0, 2.7634], + "UZWq": [0.8729, 0], + "tgyO": [1.8541, 2.7634] + }, + "vertices": ["tgyO", "UZWq", "8bfM"], + "texture": 0 + }, + "WyrjtDC7": { + "uv": { + "axTi": [0, 5], + "Ib2Y": [2.1796, 5], + "tgyO": [2.1796, 7], + "UZWq": [0, 7] + }, + "vertices": ["UZWq", "tgyO", "Ib2Y", "axTi"], + "texture": 0 + }, + "acbFBVuv": { + "uv": { + "Kvjd": [4.50306, 0], + "Ib2Y": [5.06639, 1.76648], + "axTi": [2.16591, 1.76648] + }, + "vertices": ["axTi", "Ib2Y", "Kvjd"], + "texture": 0 + }, + "lyFWiRhd": { + "uv": { + "8bfM": [0, 2.7634], + "tgyO": [0.8729, 0], + "FTwV": [1.8541, 2.7634] + }, + "vertices": ["FTwV", "tgyO", "8bfM"], + "texture": 0 + }, + "wjezwsCE": { + "uv": { + "Ib2Y": [0, 5], + "O5S9": [2.1796, 5], + "FTwV": [2.1796, 7], + "tgyO": [0, 7] + }, + "vertices": ["tgyO", "FTwV", "O5S9", "Ib2Y"], + "texture": 0 + }, + "j57EBA6J": { + "uv": { + "Kvjd": [4.50306, 0], + "O5S9": [5.06639, 1.76648], + "Ib2Y": [2.16591, 1.76648] + }, + "vertices": ["Ib2Y", "O5S9", "Kvjd"], + "texture": 0 + }, + "vcbsA7yR": { + "uv": { + "8bfM": [1.85413, 6.76333], + "FTwV": [0, 6.76333], + "5xC8": [1.28114, 5] + }, + "vertices": ["5xC8", "FTwV", "8bfM"], + "texture": 0 + }, + "lYJAyjcC": { + "uv": { + "O5S9": [0, 5], + "tls7": [2.1796, 5], + "5xC8": [2.1796, 7], + "FTwV": [0, 7] + }, + "vertices": ["FTwV", "5xC8", "tls7", "O5S9"], + "texture": 0 + }, + "dswA4ncI": { + "uv": { + "Kvjd": [4.50306, 0], + "tls7": [5.06639, 1.76648], + "O5S9": [2.16591, 1.76648] + }, + "vertices": ["O5S9", "tls7", "Kvjd"], + "texture": 0 + }, + "x4e93Rac": { + "uv": { + "8bfM": [1.0898, 6.5], + "5xC8": [0, 5], + "USVQ": [2.1796, 5] + }, + "vertices": ["USVQ", "5xC8", "8bfM"], + "texture": 0 + }, + "TtnpSvW1": { + "uv": { + "tls7": [0, 5], + "HXhU": [2.1796, 5], + "USVQ": [2.1796, 7], + "5xC8": [0, 7] + }, + "vertices": ["5xC8", "USVQ", "HXhU", "tls7"], + "texture": 0 + }, + "royATjFd": { + "uv": { + "Kvjd": [4.50306, 0], + "HXhU": [5.06639, 1.76648], + "tls7": [2.16591, 1.76648] + }, + "vertices": ["tls7", "HXhU", "Kvjd"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "9875d2c2-108c-3b84-099f-32f17d751b35" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 11, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "VNps": [-1.45252, 10.45434, -2.73169], + "4ezv": [-1.45252, 7.90867, -2.00765], + "EbdB": [-1.45252, 5.41081, -2.75746], + "qevP": [-1.26188, 1.67856, -1.67158], + "00Kd": [1.26169, 1.67856, -1.67158], + "hnZd": [1.45233, 10.45434, -2.73169], + "La2n": [1.45233, 7.90867, -2.00765], + "6ehA": [1.45233, 5.41081, -2.75746], + "GwxS": [2.52347, 1.67856, -1.67158], + "Hvq1": [-1.20235, 9.92329, -3.50745], + "Rnso": [-1.20235, 7.77834, -2.78337], + "4mSB": [-1.20235, 5.66144, -3.5332], + "7R9u": [-1.04454, 1.71437, -2.08047], + "Kim6": [1.04453, 2.14921, -2.38956], + "ww1k": [2.32491, 1.78329, -2.12627], + "OU6q": [2.67344, 12.84999, -2.37678], + "JesZ": [0, 1.01081, 0.05073], + "zeVr": [0, 13, 2.16447], + "qbIt": [2.34733, 1.16658, 2.37028], + "Bzop": [2.68542, 12.76009, 2.81067], + "qNY4": [4.22537, 1.14514, 0.10839], + "Atxb": [4.83534, 12.82515, 0.19899], + "iHjd": [-2.33106, 1.78967, -2.13135], + "VDIH": [-2.67167, 12.85166, -2.37508], + "6Fz4": [-4.24038, 1.15416, 0.10729], + "c1T2": [-4.79951, 12.84815, 0.19479], + "sCtj": [-2.35014, 1.16958, 2.37321], + "jkti": [-2.66867, 12.78808, 2.78679], + "8tqY": [-2.89057, 5.63899, -3.43534], + "2Cy7": [2.88669, 5.64095, -3.43704], + "qtJM": [-2.89549, 7.76753, -2.68355], + "XnvV": [2.89378, 7.77849, -2.68425], + "uyLC": [5.80845, 5.27039, 0.17572], + "D5z6": [5.25071, 7.77197, 0.193], + "Uxw5": [2.86725, 5.2709, 3.38567], + "8HKl": [2.84793, 7.81287, 3.03103], + "Mwes": [-2.86878, 5.25699, 3.38442], + "YbTn": [-2.85004, 7.83897, 3.02872], + "4Qxs": [-5.80755, 5.25363, 0.17535], + "KUq1": [-5.25039, 7.78979, 0.19472], + "Sx25": [-2.89609, 9.92731, -3.40732], + "8U5W": [-5.80483, 9.9796, 0.22144], + "Dpuc": [-2.81993, 9.96875, 3.04127], + "FVmL": [2.81993, 9.87784, 3.04127], + "tsu4": [5.80483, 9.86699, 0.22144], + "AYR2": [2.89609, 9.91927, -3.40732], + "zojw": [1.20235, 9.92329, -3.50745], + "BQWs": [1.20235, 7.77834, -2.78337], + "OaX5": [1.20235, 5.66144, -3.5332], + "40cf": [1.20235, 12.93647, -2.29048], + "GS48": [0.00055, 13.7, 2.1672], + "GU5z": [2.7323, 13.54825, -1.37379], + "l1mk": [1.26121, 13.63473, -2.28749], + "rN5K": [-1.26012, 13.6348, -2.28802], + "V5o8": [-2.72944, 13.54999, -1.37262], + "VN3R": [-1.45252, 12.85, -2.00765], + "wTU7": [1.45233, 12.85, -2.00765], + "sRfy": [-1.20235, 12.93647, -2.29048], + "xJW8": [-1.45252, 13.30724, 0.28166], + "qRdi": [1.45233, 13.30724, 0.28166] + }, + "faces": { + "n9OF4vTz": { + "uv": { + "qevP": [1.73205, 22.1], + "EbdB": [1.73205, 18.1], + "00Kd": [0.57735, 22.1], + "6ehA": [0.57735, 18.1] + }, + "vertices": ["6ehA", "00Kd", "EbdB", "qevP"], + "texture": 0 + }, + "qQ6Tj1tt": { + "uv": { + "4ezv": [1.73205, 12.1], + "VNps": [1.73205, 10.1], + "La2n": [0.57735, 12.1], + "hnZd": [0.57735, 10.1] + }, + "vertices": ["hnZd", "La2n", "VNps", "4ezv"], + "texture": 0 + }, + "UNfAJBLi": { + "uv": { + "EbdB": [1.73205, 16], + "4ezv": [1.73205, 12], + "6ehA": [0.57735, 16], + "La2n": [0.57735, 12] + }, + "vertices": ["La2n", "6ehA", "4ezv", "EbdB"], + "texture": 0 + }, + "kIrkkaTD": { + "uv": { + "V5o8": [0, 20], + "rN5K": [0, 24], + "GS48": [1.5, 24] + }, + "vertices": ["GS48", "rN5K", "V5o8"], + "texture": 0 + }, + "PZTHi2NP": { + "uv": { + "JesZ": [2.3094, 20.1], + "iHjd": [1.1547, 22.1], + "6Fz4": [0, 20.1] + }, + "vertices": ["6Fz4", "iHjd", "JesZ"], + "texture": 0 + }, + "o6vR960m": { + "uv": { + "qtJM": [0, 24.1], + "8U5W": [2.3094, 22.1], + "Sx25": [0, 22.1], + "KUq1": [2.3094, 24.1] + }, + "vertices": ["KUq1", "Sx25", "8U5W", "qtJM"], + "texture": 0 + }, + "CpruPvlY": { + "uv": { + "zeVr": [2.3094, 22.1], + "c1T2": [0, 22.1], + "VDIH": [1.1547, 20.1] + }, + "vertices": ["VDIH", "c1T2", "zeVr"], + "texture": 0 + }, + "Xs4ZXoVL": { + "uv": { + "JesZ": [2.3094, 22.1], + "6Fz4": [0, 22.1], + "sCtj": [1.1547, 20.1] + }, + "vertices": ["sCtj", "6Fz4", "JesZ"], + "texture": 0 + }, + "RsnMytIp": { + "uv": { + "KUq1": [0, 24.1], + "Dpuc": [2.3094, 22.1], + "8U5W": [0, 22.1], + "YbTn": [2.3094, 24.1] + }, + "vertices": ["YbTn", "8U5W", "Dpuc", "KUq1"], + "texture": 0 + }, + "jiTOBof6": { + "uv": { + "zeVr": [2.3094, 20.1], + "jkti": [1.1547, 22.1], + "c1T2": [0, 20.1] + }, + "vertices": ["c1T2", "jkti", "zeVr"], + "texture": 0 + }, + "X1EBn6ci": { + "uv": { + "6Fz4": [0, 32.1], + "4Qxs": [0, 28.1], + "Mwes": [2.3094, 28.1], + "sCtj": [2.3094, 32.1] + }, + "vertices": ["sCtj", "Mwes", "4Qxs", "6Fz4"], + "texture": 0 + }, + "beE5w2Ye": { + "uv": { + "4Qxs": [0, 28], + "KUq1": [0, 24], + "YbTn": [2.3094, 24], + "Mwes": [2.3094, 28] + }, + "vertices": ["Mwes", "YbTn", "KUq1", "4Qxs"], + "texture": 0 + }, + "ciRZpVSK": { + "uv": { + "iHjd": [0, 32.1], + "8tqY": [0, 28.1], + "4Qxs": [2.3094, 28.1], + "6Fz4": [2.3094, 32.1] + }, + "vertices": ["6Fz4", "4Qxs", "8tqY", "iHjd"], + "texture": 0 + }, + "TI08wsJr": { + "uv": { + "8tqY": [0, 28], + "qtJM": [0, 24], + "KUq1": [2.3094, 24], + "4Qxs": [2.3094, 28] + }, + "vertices": ["4Qxs", "KUq1", "qtJM", "8tqY"], + "texture": 0 + }, + "OvuFuXq5": { + "uv": { + "c1T2": [2.3094, 20.1], + "8U5W": [2.3094, 22.1], + "Sx25": [0, 22.1], + "VDIH": [0, 20.1] + }, + "vertices": ["VDIH", "Sx25", "8U5W", "c1T2"], + "texture": 0 + }, + "RDhhyXov": { + "uv": { + "jkti": [2.3094, 20.1], + "Dpuc": [2.3094, 22.1], + "8U5W": [0, 22.1], + "c1T2": [0, 20.1] + }, + "vertices": ["c1T2", "8U5W", "Dpuc", "jkti"], + "texture": 0 + }, + "VSHmfbTe": { + "uv": { + "qtJM": [26.25, 24], + "Rnso": [24.75, 24], + "Hvq1": [24.75, 20], + "Sx25": [26.25, 20] + }, + "vertices": ["Sx25", "Hvq1", "Rnso", "qtJM"], + "texture": 0 + }, + "JvlKDALY": { + "uv": { + "8tqY": [26.25, 24], + "4mSB": [24.75, 24], + "Rnso": [24.75, 20], + "qtJM": [26.25, 20] + }, + "vertices": ["qtJM", "Rnso", "4mSB", "8tqY"], + "texture": 0 + }, + "0XD78FeQ": { + "uv": { + "iHjd": [26.25, 20], + "7R9u": [24.75, 20], + "4mSB": [24.75, 24], + "8tqY": [26.25, 24] + }, + "vertices": ["8tqY", "4mSB", "7R9u", "iHjd"], + "texture": 0 + }, + "rHp11s5v": { + "uv": { + "JesZ": [26.25, 24], + "7R9u": [24.75, 20], + "iHjd": [24.75, 24] + }, + "vertices": ["iHjd", "7R9u", "JesZ"], + "texture": 0 + }, + "BSrc4Csr": { + "uv": { + "Sx25": [26.25, 24], + "Hvq1": [24.75, 24], + "sRfy": [24.75, 20], + "VDIH": [26.25, 20] + }, + "vertices": ["VDIH", "sRfy", "Hvq1", "Sx25"], + "texture": 0 + }, + "SFkdM7Po": { + "uv": { + "ww1k": [2.3094, 22.1], + "7R9u": [0.57735, 22.1], + "JesZ": [1.1547, 20.1] + }, + "vertices": ["JesZ", "7R9u", "ww1k"], + "texture": 0 + }, + "SQsqbOoz": { + "uv": { + "AYR2": [26.25, 24], + "BQWs": [24.75, 20], + "zojw": [24.75, 24], + "XnvV": [26.25, 20] + }, + "vertices": ["XnvV", "zojw", "BQWs", "AYR2"], + "texture": 0 + }, + "EKfPkOay": { + "uv": { + "JesZ": [1.1547, 22.1], + "sCtj": [0, 20.1], + "qbIt": [2.3094, 20.1] + }, + "vertices": ["qbIt", "sCtj", "JesZ"], + "texture": 0 + }, + "6EztQi7p": { + "uv": { + "YbTn": [0, 24.1], + "FVmL": [2.3094, 22.1], + "Dpuc": [0, 22.1], + "8HKl": [2.3094, 24.1] + }, + "vertices": ["8HKl", "Dpuc", "FVmL", "YbTn"], + "texture": 0 + }, + "YE7fMQzU": { + "uv": { + "zeVr": [1.1547, 20.1], + "Bzop": [2.3094, 22.1], + "jkti": [0, 22.1] + }, + "vertices": ["jkti", "Bzop", "zeVr"], + "texture": 0 + }, + "UTGzqFGo": { + "uv": { + "2Cy7": [26.25, 20], + "Kim6": [24.75, 24], + "OaX5": [24.75, 20], + "ww1k": [26.25, 24] + }, + "vertices": ["ww1k", "OaX5", "Kim6", "2Cy7"], + "texture": 0 + }, + "93TZ8dyd": { + "uv": { + "XnvV": [26.25, 24], + "OaX5": [24.75, 20], + "BQWs": [24.75, 24], + "2Cy7": [26.25, 20] + }, + "vertices": ["2Cy7", "BQWs", "OaX5", "XnvV"], + "texture": 0 + }, + "iTD3Q4X2": { + "uv": { + "sCtj": [0, 32.1], + "Mwes": [0, 28.1], + "Uxw5": [2.3094, 28.1], + "qbIt": [2.3094, 32.1] + }, + "vertices": ["qbIt", "Uxw5", "Mwes", "sCtj"], + "texture": 0 + }, + "hApOPGS9": { + "uv": { + "Mwes": [0, 28], + "YbTn": [0, 24], + "8HKl": [2.3094, 24], + "Uxw5": [2.3094, 28] + }, + "vertices": ["Uxw5", "8HKl", "YbTn", "Mwes"], + "texture": 0 + }, + "VNKyi5TO": { + "uv": { + "Bzop": [2.3094, 20.1], + "FVmL": [2.3094, 22.1], + "Dpuc": [0, 22.1], + "jkti": [0, 20.1] + }, + "vertices": ["jkti", "Dpuc", "FVmL", "Bzop"], + "texture": 0 + }, + "vK6wJUrn": { + "uv": { + "OU6q": [26.25, 24], + "zojw": [24.75, 20], + "40cf": [24.75, 24], + "AYR2": [26.25, 20] + }, + "vertices": ["AYR2", "40cf", "zojw", "OU6q"], + "texture": 0 + }, + "OGLt4pyG": { + "uv": { + "JesZ": [0, 22.1], + "qbIt": [1.1547, 20.1], + "qNY4": [2.3094, 22.1] + }, + "vertices": ["qNY4", "qbIt", "JesZ"], + "texture": 0 + }, + "PSHAvkQA": { + "uv": { + "JesZ": [0, 20.1], + "qNY4": [2.3094, 20.1], + "ww1k": [1.1547, 22.1] + }, + "vertices": ["ww1k", "qNY4", "JesZ"], + "texture": 0 + }, + "NU9LV3TF": { + "uv": { + "qNY4": [0, 32.1], + "uyLC": [0, 28.1], + "2Cy7": [2.3094, 28.1], + "ww1k": [2.3094, 32.1] + }, + "vertices": ["ww1k", "2Cy7", "uyLC", "qNY4"], + "texture": 0 + }, + "eWNLaUh1": { + "uv": { + "qbIt": [0, 32.1], + "Uxw5": [0, 28.1], + "uyLC": [2.3094, 28.1], + "qNY4": [2.3094, 32.1] + }, + "vertices": ["qNY4", "uyLC", "Uxw5", "qbIt"], + "texture": 0 + }, + "7OpZlenr": { + "uv": { + "8HKl": [0, 24.1], + "tsu4": [2.3094, 22.1], + "FVmL": [0, 22.1], + "D5z6": [2.3094, 24.1] + }, + "vertices": ["D5z6", "FVmL", "tsu4", "8HKl"], + "texture": 0 + }, + "ke1TOIdV": { + "uv": { + "zeVr": [0, 20.1], + "Atxb": [2.3094, 20.1], + "Bzop": [1.1547, 22.1] + }, + "vertices": ["Bzop", "Atxb", "zeVr"], + "texture": 0 + }, + "LMEp0vkq": { + "uv": { + "D5z6": [0, 24.1], + "AYR2": [2.3094, 22.1], + "tsu4": [0, 22.1], + "XnvV": [2.3094, 24.1] + }, + "vertices": ["XnvV", "tsu4", "AYR2", "D5z6"], + "texture": 0 + }, + "h7HRi3uq": { + "uv": { + "zeVr": [0, 22.1], + "OU6q": [1.1547, 20.1], + "Atxb": [2.3094, 22.1] + }, + "vertices": ["Atxb", "OU6q", "zeVr"], + "texture": 0 + }, + "IZhPvWFw": { + "uv": { + "uyLC": [0, 28], + "D5z6": [0, 24], + "XnvV": [2.3094, 24], + "2Cy7": [2.3094, 28] + }, + "vertices": ["2Cy7", "XnvV", "D5z6", "uyLC"], + "texture": 0 + }, + "SbOPjyT9": { + "uv": { + "Uxw5": [0, 28], + "8HKl": [0, 24], + "D5z6": [2.3094, 24], + "uyLC": [2.3094, 28] + }, + "vertices": ["uyLC", "D5z6", "8HKl", "Uxw5"], + "texture": 0 + }, + "JzyyncTS": { + "uv": { + "Atxb": [2.3094, 20.1], + "tsu4": [2.3094, 22.1], + "FVmL": [0, 22.1], + "Bzop": [0, 20.1] + }, + "vertices": ["Bzop", "FVmL", "tsu4", "Atxb"], + "texture": 0 + }, + "mKnmlKRy": { + "uv": { + "OU6q": [2.3094, 20.1], + "AYR2": [2.3094, 22.1], + "tsu4": [0, 22.1], + "Atxb": [0, 20.1] + }, + "vertices": ["Atxb", "tsu4", "AYR2", "OU6q"], + "texture": 0 + }, + "B0vQUqAb": { + "uv": { + "l1mk": [0, 20], + "GU5z": [0, 24], + "GS48": [1.5, 24] + }, + "vertices": ["GS48", "GU5z", "l1mk"], + "texture": 0 + }, + "cMtrfwQb": { + "uv": { + "4ezv": [24, 24], + "VNps": [24, 20], + "Hvq1": [25, 20], + "Rnso": [25, 24] + }, + "vertices": ["Rnso", "Hvq1", "VNps", "4ezv"], + "texture": 0 + }, + "Y33rUMC7": { + "uv": { + "EbdB": [24, 24], + "4ezv": [24, 20], + "Rnso": [25, 20], + "4mSB": [25, 24] + }, + "vertices": ["4mSB", "Rnso", "4ezv", "EbdB"], + "texture": 0 + }, + "ZzNAHZec": { + "uv": { + "qevP": [25, 20], + "EbdB": [25, 24], + "4mSB": [24, 24], + "7R9u": [24, 20] + }, + "vertices": ["7R9u", "4mSB", "EbdB", "qevP"], + "texture": 0 + }, + "09dBiOBM": { + "uv": { + "VNps": [24, 24], + "VN3R": [24, 20], + "sRfy": [25, 20], + "Hvq1": [25, 24] + }, + "vertices": ["Hvq1", "sRfy", "VN3R", "VNps"], + "texture": 0 + }, + "cRoD6z5f": { + "uv": { + "GwxS": [25, 20], + "qevP": [25, 24], + "7R9u": [24, 24], + "ww1k": [24, 20] + }, + "vertices": ["ww1k", "7R9u", "qevP", "GwxS"], + "texture": 0 + }, + "JI8OZCGa": { + "uv": { + "hnZd": [24, 24], + "La2n": [24, 20], + "BQWs": [25, 20], + "zojw": [25, 24] + }, + "vertices": ["zojw", "BQWs", "La2n", "hnZd"], + "texture": 0 + }, + "JwbEywX4": { + "uv": { + "00Kd": [26.25, 20], + "GwxS": [24.75, 20], + "ww1k": [24.75, 24], + "Kim6": [26.25, 24] + }, + "vertices": ["Kim6", "ww1k", "GwxS", "00Kd"], + "texture": 0 + }, + "K8KxJUkc": { + "uv": { + "6ehA": [25, 20], + "00Kd": [25, 24], + "Kim6": [24, 24], + "OaX5": [24, 20] + }, + "vertices": ["OaX5", "Kim6", "00Kd", "6ehA"], + "texture": 0 + }, + "hYkNu1Mz": { + "uv": { + "La2n": [24, 24], + "6ehA": [24, 20], + "OaX5": [25, 20], + "BQWs": [25, 24] + }, + "vertices": ["BQWs", "OaX5", "6ehA", "La2n"], + "texture": 0 + }, + "lkuqRz64": { + "uv": { + "wTU7": [24, 24], + "hnZd": [24, 20], + "zojw": [25, 20], + "40cf": [25, 24] + }, + "vertices": ["40cf", "zojw", "hnZd", "wTU7"], + "texture": 0 + }, + "mlsGAVtJ": { + "uv": { + "OU6q": [0, 23.73348], + "zeVr": [0.00013, 20.04213], + "GS48": [0.99925, 20], + "GU5z": [0.99925, 23.73398] + }, + "vertices": ["GU5z", "GS48", "zeVr", "OU6q"], + "texture": 0 + }, + "3DcfQm2f": { + "uv": { + "40cf": [1.5, 20], + "OU6q": [0, 20], + "GU5z": [0, 24], + "l1mk": [1.5, 24] + }, + "vertices": ["l1mk", "GU5z", "OU6q", "40cf"], + "texture": 0 + }, + "SVnlKzlW": { + "uv": { + "zeVr": [2.73445, 21.99827], + "40cf": [0.00064, 22], + "l1mk": [0, 21], + "GS48": [2.76027, 21] + }, + "vertices": ["GS48", "l1mk", "40cf", "zeVr"], + "texture": 0 + }, + "rgfKtVor": { + "uv": { + "sRfy": [0.00087, 26.76012], + "zeVr": [0, 24.02628], + "GS48": [0.99956, 24], + "rN5K": [0.99956, 26.76077] + }, + "vertices": ["rN5K", "GS48", "zeVr", "sRfy"], + "texture": 0 + }, + "NC4hIjdH": { + "uv": { + "VDIH": [1.5, 20], + "sRfy": [0, 20], + "rN5K": [0, 24], + "V5o8": [1.5, 24] + }, + "vertices": ["V5o8", "rN5K", "sRfy", "VDIH"], + "texture": 0 + }, + "98ngj9KD": { + "uv": { + "zeVr": [3.68921, 24.9983], + "VDIH": [0.00035, 24.99992], + "V5o8": [0, 24], + "GS48": [3.73172, 24] + }, + "vertices": ["GS48", "V5o8", "VDIH", "zeVr"], + "texture": 0 + }, + "0wc8SlE7": { + "uv": { + "VNps": [1.73205, 10.1], + "VN3R": [1.73205, 8.1], + "hnZd": [0.57735, 10.1], + "wTU7": [0.57735, 8.1] + }, + "vertices": ["wTU7", "hnZd", "VN3R", "VNps"], + "texture": 0 + }, + "7TVX7b7N": { + "uv": { + "wTU7": [0, 4], + "VN3R": [2.9048, 4], + "qRdi": [0, 3], + "xJW8": [2.9048, 3] + }, + "vertices": ["xJW8", "qRdi", "VN3R", "wTU7"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "9b7ace10-f4a4-74b2-a33d-8dc435a7d04c" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 4, -2], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "0klA": [0, 20, 2], + "TYCj": [0, 22, 2], + "uqWQ": [0.72654, 20, 3], + "VUnI": [0.72654, 22, 3], + "3pM6": [1.17557, 20, 1.61803], + "k4Z0": [1.17557, 22, 1.61803], + "liE0": [0, 20, 0.76393], + "4MRC": [0, 22, 0.76393], + "BpW6": [-1.17557, 20, 1.61803], + "0kUY": [-1.17557, 22, 1.61803], + "rDCl": [-0.72654, 20, 3], + "uFpQ": [-0.72654, 22, 3] + }, + "faces": { + "neQxZgj7": { + "uv": { + "0klA": [0, 0.72652], + "uqWQ": [0.99999, 0], + "3pM6": [0.99999, 1.45314] + }, + "vertices": ["3pM6", "uqWQ", "0klA"], + "texture": 0 + }, + "Pmm72AqV": { + "uv": { + "VUnI": [0, 0], + "k4Z0": [1.453, 0], + "3pM6": [1.453, 2], + "uqWQ": [0, 2] + }, + "vertices": ["uqWQ", "3pM6", "k4Z0", "VUnI"], + "texture": 0 + }, + "zF43FN77": { + "uv": { + "TYCj": [0, 0], + "k4Z0": [1.23611, 0], + "VUnI": [0.3819, 1.17556] + }, + "vertices": ["VUnI", "k4Z0", "TYCj"], + "texture": 0 + }, + "3Z2mxhsi": { + "uv": { + "0klA": [0, 0], + "3pM6": [1.1756, 0.382], + "liE0": [0, 1.2361] + }, + "vertices": ["liE0", "3pM6", "0klA"], + "texture": 0 + }, + "Ge7vXuNy": { + "uv": { + "k4Z0": [0, 0], + "4MRC": [1.453, 0], + "liE0": [1.453, 2], + "3pM6": [0, 2] + }, + "vertices": ["3pM6", "liE0", "4MRC", "k4Z0"], + "texture": 0 + }, + "6csrFhyY": { + "uv": { + "TYCj": [0, 1.2361], + "4MRC": [0, 0], + "k4Z0": [1.1756, 0.8541] + }, + "vertices": ["k4Z0", "4MRC", "TYCj"], + "texture": 0 + }, + "PzDbGLZI": { + "uv": { + "0klA": [1.1756, 0], + "liE0": [1.1756, 1.2361], + "BpW6": [0, 0.382] + }, + "vertices": ["BpW6", "liE0", "0klA"], + "texture": 0 + }, + "Jnti7pZB": { + "uv": { + "4MRC": [0, 0], + "0kUY": [1.453, 0], + "BpW6": [1.453, 2], + "liE0": [0, 2] + }, + "vertices": ["liE0", "BpW6", "0kUY", "4MRC"], + "texture": 0 + }, + "ggZw5JIi": { + "uv": { + "TYCj": [1.1756, 1.2361], + "0kUY": [0, 0.8541], + "4MRC": [1.1756, 0] + }, + "vertices": ["4MRC", "0kUY", "TYCj"], + "texture": 0 + }, + "3aqe5f3y": { + "uv": { + "0klA": [1.23611, 1.17556], + "BpW6": [0, 1.17556], + "rDCl": [0.8542, 0] + }, + "vertices": ["rDCl", "BpW6", "0klA"], + "texture": 0 + }, + "z1Wsx2z6": { + "uv": { + "0kUY": [0, 0], + "uFpQ": [1.453, 0], + "rDCl": [1.453, 2], + "BpW6": [0, 2] + }, + "vertices": ["BpW6", "rDCl", "uFpQ", "0kUY"], + "texture": 0 + }, + "WnJUw8Za": { + "uv": { + "TYCj": [1.99999, 0.72662], + "uFpQ": [1, 1.45314], + "0kUY": [1, 0] + }, + "vertices": ["0kUY", "uFpQ", "TYCj"], + "texture": 0 + }, + "bGf5q9nr": { + "uv": { + "0klA": [0.7265, 1], + "rDCl": [0, 0], + "uqWQ": [1.453, 0] + }, + "vertices": ["uqWQ", "rDCl", "0klA"], + "texture": 0 + }, + "cfYYgyy7": { + "uv": { + "uFpQ": [0, 0], + "VUnI": [1.453, 0], + "uqWQ": [1.453, 2], + "rDCl": [0, 2] + }, + "vertices": ["rDCl", "uqWQ", "VUnI", "uFpQ"], + "texture": 0 + }, + "grmykaTZ": { + "uv": { + "TYCj": [0.7265, 0], + "VUnI": [1.453, 1], + "uFpQ": [0, 1] + }, + "vertices": ["uFpQ", "VUnI", "TYCj"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "29b97531-9807-676f-958b-5c8c1506ade0" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.48481, 9.64286, -0.17365], + "rotation": [1.72795, 0.14886, -0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [0.0026, -4.6424, 0.53015], + "769S": [0, 5.35714, 0.5], + "Ngnq": [1.44338, -3.64286, 2.9], + "86iU": [1.23028, 3.42858, 3.5], + "Orqk": [2.88675, -3.64286, 0.5], + "2WPs": [2.46057, 3.42858, 0.5], + "sf20": [1.44338, -3.64286, -1.9], + "JpAB": [1.23028, 3.42858, -2.5], + "uSt3": [-1.44338, -3.64286, -1.9], + "LEG0": [-1.23028, 3.42858, -2.5], + "H1ru": [-2.88675, -3.64286, 0.5], + "GPdT": [-2.46057, 3.42858, 0.5], + "HLm2": [-1.44338, -3.64286, 2.9], + "Ba1X": [-1.23028, 3.42858, 3.5] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 50.4], + "Ngnq": [3.37555, 48], + "Orqk": [5.3696, 50.4] + }, + "vertices": ["Orqk", "Ngnq", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 44.0163], + "2WPs": [5.80906, 44], + "Orqk": [6.11257, 55.006], + "Ngnq": [2.24355, 55.006] + }, + "vertices": ["Ngnq", "Orqk", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 45], + "2WPs": [4.47951, 48.766], + "86iU": [0, 48.766] + }, + "vertices": ["86iU", "2WPs", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 47], + "Orqk": [5.3696, 47], + "sf20": [3.37555, 49.4] + }, + "vertices": ["sf20", "Orqk", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 44.0057], + "JpAB": [6.11257, 44], + "sf20": [5.25052, 55.0008], + "Orqk": [1.3815, 55.0008] + }, + "vertices": ["Orqk", "sf20", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 48], + "JpAB": [5.86086, 51.766], + "2WPs": [1.3815, 51.766] + }, + "vertices": ["2WPs", "JpAB", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 49], + "sf20": [5.3696, 51.4], + "uSt3": [1.3815, 51.4] + }, + "vertices": ["uSt3", "sf20", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 44], + "LEG0": [5.07521, 44], + "uSt3": [5.3696, 55.0163], + "sf20": [1.3815, 55.0163] + }, + "vertices": ["sf20", "uSt3", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 45], + "LEG0": [4.78081, 49.2426], + "JpAB": [1.3815, 49.2426] + }, + "vertices": ["JpAB", "LEG0", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 47], + "uSt3": [3.37541, 49.4], + "H1ru": [1.3815, 47] + }, + "vertices": ["H1ru", "uSt3", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 44.0163], + "GPdT": [4.42756, 44], + "H1ru": [4.73108, 55.006], + "uSt3": [0.86205, 55.006] + }, + "vertices": ["uSt3", "H1ru", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 48], + "GPdT": [4.47937, 51.766], + "LEG0": [0, 51.766] + }, + "vertices": ["LEG0", "GPdT", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 50.4], + "H1ru": [1.3815, 50.4], + "HLm2": [3.37541, 48] + }, + "vertices": ["HLm2", "H1ru", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 44.0057], + "Ba1X": [6.11257, 44], + "HLm2": [5.25052, 55.0007], + "H1ru": [1.3815, 55.0007] + }, + "vertices": ["H1ru", "HLm2", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 45], + "Ba1X": [7.2425, 48.766], + "GPdT": [2.76299, 48.766] + }, + "vertices": ["GPdT", "Ba1X", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 49.4], + "HLm2": [1.3815, 47], + "Ngnq": [5.3696, 47] + }, + "vertices": ["Ngnq", "HLm2", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 44], + "86iU": [5.07521, 44], + "Ngnq": [5.3696, 55.0164], + "HLm2": [1.3815, 55.0164] + }, + "vertices": ["HLm2", "Ngnq", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 48], + "86iU": [4.78081, 52.2426], + "Ba1X": [1.3815, 52.2426] + }, + "vertices": ["Ba1X", "86iU", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "952d1c26-5c46-044f-47a3-1bbb6da6bc21" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.48481, 9.64286, -0.17365], + "rotation": [1.72795, -0.14886, 0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [-0.0026, -4.6424, 0.53015], + "769S": [0, 5.35714, 0.5], + "Ngnq": [-1.44338, -3.64286, 2.9], + "86iU": [-1.23028, 3.42857, 3.5], + "Orqk": [-2.88675, -3.64286, 0.5], + "2WPs": [-2.46057, 3.42857, 0.5], + "sf20": [-1.44338, -3.64286, -1.9], + "JpAB": [-1.23028, 3.42857, -2.5], + "uSt3": [1.44338, -3.64286, -1.9], + "LEG0": [1.23028, 3.42857, -2.5], + "H1ru": [2.88675, -3.64286, 0.5], + "GPdT": [2.46057, 3.42857, 0.5], + "HLm2": [1.44338, -3.64286, 2.9], + "Ba1X": [1.23028, 3.42857, 3.5] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [5.3815, 51.4], + "Orqk": [7.37555, 49], + "Ngnq": [9.3696, 51.4] + }, + "vertices": ["Ngnq", "Orqk", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [9.80906, 45], + "2WPs": [5.3815, 45.0163], + "Ngnq": [10.11257, 56.006], + "Orqk": [6.24355, 56.006] + }, + "vertices": ["Orqk", "Ngnq", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [7.18974, 46], + "86iU": [8.47951, 49.766], + "2WPs": [4, 49.766] + }, + "vertices": ["2WPs", "86iU", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [5.3815, 48], + "sf20": [9.3696, 48], + "Orqk": [7.37555, 50.4] + }, + "vertices": ["Orqk", "sf20", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [10.11257, 45], + "JpAB": [5.68501, 45.0057], + "Orqk": [9.25052, 56.0008], + "sf20": [5.3815, 56.0008] + }, + "vertices": ["sf20", "Orqk", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [6.67126, 49], + "2WPs": [9.86086, 52.766], + "JpAB": [5.3815, 52.766] + }, + "vertices": ["JpAB", "2WPs", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [7.37555, 50], + "uSt3": [9.3696, 52.4], + "sf20": [5.3815, 52.4] + }, + "vertices": ["sf20", "uSt3", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [9.07521, 45], + "LEG0": [5.67589, 45], + "sf20": [9.3696, 56.0163], + "uSt3": [5.3815, 56.0163] + }, + "vertices": ["uSt3", "sf20", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [7.08115, 46], + "JpAB": [8.78081, 50.2426], + "LEG0": [5.3815, 50.2426] + }, + "vertices": ["LEG0", "JpAB", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [9.36947, 48], + "H1ru": [7.37541, 50.4], + "uSt3": [5.3815, 48] + }, + "vertices": ["uSt3", "H1ru", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [8.42756, 45], + "GPdT": [4, 45.0163], + "uSt3": [8.73108, 56.006], + "H1ru": [4.86205, 56.006] + }, + "vertices": ["H1ru", "uSt3", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [7.1896, 49], + "LEG0": [8.47937, 52.766], + "GPdT": [4, 52.766] + }, + "vertices": ["GPdT", "LEG0", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [9.36947, 51.4], + "HLm2": [5.3815, 51.4], + "H1ru": [7.37541, 49] + }, + "vertices": ["H1ru", "HLm2", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [10.11257, 45], + "Ba1X": [5.68501, 45.0057], + "H1ru": [9.25052, 56.0007], + "HLm2": [5.3815, 56.0007] + }, + "vertices": ["HLm2", "H1ru", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [8.05276, 46], + "GPdT": [11.2425, 49.766], + "Ba1X": [6.76299, 49.766] + }, + "vertices": ["Ba1X", "GPdT", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [7.37555, 50.4], + "Ngnq": [5.3815, 48], + "HLm2": [9.3696, 48] + }, + "vertices": ["HLm2", "Ngnq", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [9.07521, 45], + "86iU": [5.67589, 45], + "HLm2": [9.3696, 56.0164], + "Ngnq": [5.3815, 56.0164] + }, + "vertices": ["Ngnq", "HLm2", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [7.08115, 49], + "Ba1X": [8.78081, 53.2426], + "86iU": [5.3815, 53.2426] + }, + "vertices": ["86iU", "Ba1X", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "bfdad83a-2e41-be24-903c-5ebd81b969b3" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.98481, 6, -0.17365], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "hKiQ": [0.75, -5.5, 0.5], + "P9yc": [0.75, 3, 0.5], + "1O7X": [1.39012, -4.17391, 2.2], + "AuqO": [1.55815, 3, 2.2], + "3QLG": [2.03023, -4.17391, 0.5], + "SQtr": [2.8547, 3, 0.5], + "zALn": [1.39012, -4.17391, -1.2], + "XwTk": [1.80235, 3, -1.2], + "XrMY": [0.10988, -4.17391, -1.2], + "SxBA": [-0.30235, 3, -1.2], + "9bCg": [-0.53023, -4.17391, 0.5], + "xfU2": [-1.3547, 3, 0.5], + "YkcP": [0.10988, -4.17391, 2.2], + "5O4d": [-0.05815, 3, 2.2], + "H3Hz": [-0.30235, -0.587, -1.2], + "uVfc": [1.80235, -0.587, -1.2], + "D3Zi": [2.8547, -0.587, 0.5], + "S34R": [1.55815, -0.587, 2.2], + "gPMU": [-0.05815, -0.587, 2.2], + "JTfr": [-1.3547, -0.587, 0.5] + }, + "faces": { + "YiBnE33q": { + "uv": { + "hKiQ": [7, 40], + "1O7X": [8.1547, 40], + "3QLG": [7.5774, 39] + }, + "vertices": ["3QLG", "1O7X", "hKiQ"], + "texture": 0 + }, + "amXAQ62A": { + "uv": { + "SQtr": [3.1548, 33], + "S34R": [0, 34.50002], + "D3Zi": [3.1548, 34.50002], + "AuqO": [0, 33] + }, + "vertices": ["AuqO", "D3Zi", "S34R", "SQtr"], + "texture": 0 + }, + "pmtHFukt": { + "uv": { + "P9yc": [5.1547, 32], + "SQtr": [4, 32], + "AuqO": [4.5773, 33] + }, + "vertices": ["AuqO", "SQtr", "P9yc"], + "texture": 0 + }, + "dbwNvdVu": { + "uv": { + "hKiQ": [7, 39], + "3QLG": [7.5774, 40], + "zALn": [8.1547, 39] + }, + "vertices": ["zALn", "3QLG", "hKiQ"], + "texture": 0 + }, + "KLi0aNFD": { + "uv": { + "XwTk": [3.1548, 33], + "D3Zi": [0, 34.50002], + "uVfc": [3.1548, 34.50002], + "SQtr": [0, 33] + }, + "vertices": ["SQtr", "uVfc", "D3Zi", "XwTk"], + "texture": 0 + }, + "1nnlJSX0": { + "uv": { + "P9yc": [5.1547, 32], + "XwTk": [4, 32], + "SQtr": [4.5773, 33] + }, + "vertices": ["SQtr", "XwTk", "P9yc"], + "texture": 0 + }, + "xyppXCm4": { + "uv": { + "hKiQ": [7.5774, 39], + "zALn": [7, 40], + "XrMY": [8.1548, 40] + }, + "vertices": ["XrMY", "zALn", "hKiQ"], + "texture": 0 + }, + "TlijztB8": { + "uv": { + "SxBA": [3.1548, 33], + "uVfc": [0, 34.50002], + "H3Hz": [3.1548, 34.50002], + "XwTk": [0, 33] + }, + "vertices": ["XwTk", "H3Hz", "uVfc", "SxBA"], + "texture": 0 + }, + "iSo9y4Ks": { + "uv": { + "P9yc": [5.1547, 32], + "SxBA": [4, 32], + "XwTk": [4.5773, 33] + }, + "vertices": ["XwTk", "SxBA", "P9yc"], + "texture": 0 + }, + "802o7kue": { + "uv": { + "hKiQ": [8.1547, 39], + "XrMY": [7, 39], + "9bCg": [7.5773, 40] + }, + "vertices": ["9bCg", "XrMY", "hKiQ"], + "texture": 0 + }, + "TZySRbzl": { + "uv": { + "xfU2": [3.1548, 33], + "H3Hz": [0, 34.50002], + "JTfr": [3.1548, 34.50002], + "SxBA": [0, 33] + }, + "vertices": ["SxBA", "JTfr", "H3Hz", "xfU2"], + "texture": 0 + }, + "VqxZUv3r": { + "uv": { + "P9yc": [5.1547, 32], + "xfU2": [4, 32], + "SxBA": [4.5773, 33] + }, + "vertices": ["SxBA", "xfU2", "P9yc"], + "texture": 0 + }, + "VZ0J1wkW": { + "uv": { + "hKiQ": [8.1547, 40], + "9bCg": [7.5773, 39], + "YkcP": [7, 40] + }, + "vertices": ["YkcP", "9bCg", "hKiQ"], + "texture": 0 + }, + "5JhxGbwK": { + "uv": { + "5O4d": [3.1548, 33], + "JTfr": [0, 34.50002], + "gPMU": [3.1548, 34.50002], + "xfU2": [0, 33] + }, + "vertices": ["xfU2", "gPMU", "JTfr", "5O4d"], + "texture": 0 + }, + "fjNguha9": { + "uv": { + "P9yc": [5.1547, 32], + "5O4d": [4, 32], + "xfU2": [4.5773, 33] + }, + "vertices": ["xfU2", "5O4d", "P9yc"], + "texture": 0 + }, + "gmvsrhwQ": { + "uv": { + "hKiQ": [7.5774, 40], + "YkcP": [8.1548, 39], + "1O7X": [7, 39] + }, + "vertices": ["1O7X", "YkcP", "hKiQ"], + "texture": 0 + }, + "vDOAOCtP": { + "uv": { + "AuqO": [3.1548, 33], + "gPMU": [0, 34.50002], + "S34R": [3.1548, 34.50002], + "5O4d": [0, 33] + }, + "vertices": ["5O4d", "S34R", "gPMU", "AuqO"], + "texture": 0 + }, + "dnWXIx0A": { + "uv": { + "P9yc": [5.1547, 32], + "AuqO": [4, 32], + "5O4d": [4.5773, 33] + }, + "vertices": ["5O4d", "AuqO", "P9yc"], + "texture": 0 + }, + "hpoEQbnj": { + "uv": { + "zALn": [8, 39.59998], + "uVfc": [8, 38], + "H3Hz": [7, 38], + "XrMY": [7, 39.59998] + }, + "vertices": ["XrMY", "H3Hz", "uVfc", "zALn"], + "texture": 0 + }, + "KGaXeg2R": { + "uv": { + "3QLG": [8, 39.59998], + "D3Zi": [8, 38], + "uVfc": [7, 38], + "zALn": [7, 39.59998] + }, + "vertices": ["zALn", "uVfc", "D3Zi", "3QLG"], + "texture": 0 + }, + "PZum2TUC": { + "uv": { + "1O7X": [8, 39.59998], + "S34R": [8, 38], + "D3Zi": [7, 38], + "3QLG": [7, 39.59998] + }, + "vertices": ["3QLG", "D3Zi", "S34R", "1O7X"], + "texture": 0 + }, + "Hm45mM5A": { + "uv": { + "YkcP": [8, 39.59998], + "gPMU": [8, 38], + "S34R": [7, 38], + "1O7X": [7, 39.59998] + }, + "vertices": ["1O7X", "S34R", "gPMU", "YkcP"], + "texture": 0 + }, + "gGfMirYG": { + "uv": { + "9bCg": [8, 39.59998], + "JTfr": [8, 38], + "gPMU": [7, 38], + "YkcP": [7, 39.59998] + }, + "vertices": ["YkcP", "gPMU", "JTfr", "9bCg"], + "texture": 0 + }, + "RPPTuXb3": { + "uv": { + "XrMY": [8, 39.59998], + "H3Hz": [8, 38], + "JTfr": [7, 38], + "9bCg": [7, 39.59998] + }, + "vertices": ["9bCg", "JTfr", "H3Hz", "XrMY"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "fa408760-0e21-5c7c-f5f2-34ce3493f337" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.98481, 6, -0.17365], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "hKiQ": [-0.75, -5.5, 0.5], + "P9yc": [-0.75, 3, 0.5], + "1O7X": [-1.39012, -4.17391, 2.3], + "AuqO": [-1.55815, 3, 2.3], + "3QLG": [-2.03023, -4.17391, 0.5], + "SQtr": [-2.8547, 3, 0.5], + "zALn": [-1.39012, -4.17391, -1.3], + "XwTk": [-1.80235, 3, -1.3], + "XrMY": [-0.10988, -4.17391, -1.3], + "SxBA": [0.30235, 3, -1.3], + "9bCg": [0.53023, -4.17391, 0.5], + "xfU2": [1.3547, 3, 0.5], + "YkcP": [-0.10988, -4.17391, 2.3], + "5O4d": [0.05815, 3, 2.3], + "H3Hz": [0.30235, -0.587, -1.3], + "uVfc": [-1.80235, -0.587, -1.3], + "D3Zi": [-2.8547, -0.587, 0.5], + "S34R": [-1.55815, -0.587, 2.3], + "gPMU": [0.05815, -0.587, 2.3], + "JTfr": [1.3547, -0.587, 0.5] + }, + "faces": { + "YiBnE33q": { + "uv": { + "hKiQ": [7, 40], + "3QLG": [8.1547, 40], + "1O7X": [7.5774, 39] + }, + "vertices": ["1O7X", "3QLG", "hKiQ"], + "texture": 0 + }, + "amXAQ62A": { + "uv": { + "SQtr": [3.1548, 33], + "S34R": [0, 34.50002], + "AuqO": [0, 33], + "D3Zi": [3.1548, 34.50002] + }, + "vertices": ["D3Zi", "AuqO", "S34R", "SQtr"], + "texture": 0 + }, + "pmtHFukt": { + "uv": { + "P9yc": [5.1547, 32], + "AuqO": [4, 32], + "SQtr": [4.5773, 33] + }, + "vertices": ["SQtr", "AuqO", "P9yc"], + "texture": 0 + }, + "dbwNvdVu": { + "uv": { + "hKiQ": [7, 39], + "zALn": [7.5774, 40], + "3QLG": [8.1547, 39] + }, + "vertices": ["3QLG", "zALn", "hKiQ"], + "texture": 0 + }, + "KLi0aNFD": { + "uv": { + "XwTk": [3.1548, 33], + "D3Zi": [0, 34.50002], + "SQtr": [0, 33], + "uVfc": [3.1548, 34.50002] + }, + "vertices": ["uVfc", "SQtr", "D3Zi", "XwTk"], + "texture": 0 + }, + "1nnlJSX0": { + "uv": { + "P9yc": [5.1547, 32], + "SQtr": [4, 32], + "XwTk": [4.5773, 33] + }, + "vertices": ["XwTk", "SQtr", "P9yc"], + "texture": 0 + }, + "xyppXCm4": { + "uv": { + "hKiQ": [7.5774, 39], + "XrMY": [7, 40], + "zALn": [8.1548, 40] + }, + "vertices": ["zALn", "XrMY", "hKiQ"], + "texture": 0 + }, + "TlijztB8": { + "uv": { + "SxBA": [3.1548, 33], + "uVfc": [0, 34.50002], + "XwTk": [0, 33], + "H3Hz": [3.1548, 34.50002] + }, + "vertices": ["H3Hz", "XwTk", "uVfc", "SxBA"], + "texture": 0 + }, + "iSo9y4Ks": { + "uv": { + "P9yc": [5.1547, 32], + "XwTk": [4, 32], + "SxBA": [4.5773, 33] + }, + "vertices": ["SxBA", "XwTk", "P9yc"], + "texture": 0 + }, + "802o7kue": { + "uv": { + "hKiQ": [8.1547, 39], + "9bCg": [7, 39], + "XrMY": [7.5773, 40] + }, + "vertices": ["XrMY", "9bCg", "hKiQ"], + "texture": 0 + }, + "TZySRbzl": { + "uv": { + "xfU2": [3.1548, 33], + "H3Hz": [0, 34.50002], + "SxBA": [0, 33], + "JTfr": [3.1548, 34.50002] + }, + "vertices": ["JTfr", "SxBA", "H3Hz", "xfU2"], + "texture": 0 + }, + "VqxZUv3r": { + "uv": { + "P9yc": [5.1547, 32], + "SxBA": [4, 32], + "xfU2": [4.5773, 33] + }, + "vertices": ["xfU2", "SxBA", "P9yc"], + "texture": 0 + }, + "VZ0J1wkW": { + "uv": { + "hKiQ": [8.1547, 40], + "YkcP": [7.5773, 39], + "9bCg": [7, 40] + }, + "vertices": ["9bCg", "YkcP", "hKiQ"], + "texture": 0 + }, + "5JhxGbwK": { + "uv": { + "5O4d": [3.1548, 33], + "JTfr": [0, 34.50002], + "xfU2": [0, 33], + "gPMU": [3.1548, 34.50002] + }, + "vertices": ["gPMU", "xfU2", "JTfr", "5O4d"], + "texture": 0 + }, + "fjNguha9": { + "uv": { + "P9yc": [5.1547, 32], + "xfU2": [4, 32], + "5O4d": [4.5773, 33] + }, + "vertices": ["5O4d", "xfU2", "P9yc"], + "texture": 0 + }, + "gmvsrhwQ": { + "uv": { + "hKiQ": [7.5774, 40], + "1O7X": [8.1548, 39], + "YkcP": [7, 39] + }, + "vertices": ["YkcP", "1O7X", "hKiQ"], + "texture": 0 + }, + "vDOAOCtP": { + "uv": { + "AuqO": [3.1548, 33], + "gPMU": [0, 34.50002], + "5O4d": [0, 33], + "S34R": [3.1548, 34.50002] + }, + "vertices": ["S34R", "5O4d", "gPMU", "AuqO"], + "texture": 0 + }, + "dnWXIx0A": { + "uv": { + "P9yc": [5.1547, 32], + "5O4d": [4, 32], + "AuqO": [4.5773, 33] + }, + "vertices": ["AuqO", "5O4d", "P9yc"], + "texture": 0 + }, + "hpoEQbnj": { + "uv": { + "zALn": [7, 39.59998], + "uVfc": [7, 38], + "XrMY": [8, 39.59998], + "H3Hz": [8, 38] + }, + "vertices": ["H3Hz", "XrMY", "uVfc", "zALn"], + "texture": 0 + }, + "KGaXeg2R": { + "uv": { + "3QLG": [7, 39.59998], + "D3Zi": [7, 38], + "zALn": [8, 39.59998], + "uVfc": [8, 38] + }, + "vertices": ["uVfc", "zALn", "D3Zi", "3QLG"], + "texture": 0 + }, + "PZum2TUC": { + "uv": { + "1O7X": [7, 39.59998], + "S34R": [7, 38], + "3QLG": [8, 39.59998], + "D3Zi": [8, 38] + }, + "vertices": ["D3Zi", "3QLG", "S34R", "1O7X"], + "texture": 0 + }, + "Hm45mM5A": { + "uv": { + "YkcP": [7, 39.59998], + "gPMU": [7, 38], + "1O7X": [8, 39.59998], + "S34R": [8, 38] + }, + "vertices": ["S34R", "1O7X", "gPMU", "YkcP"], + "texture": 0 + }, + "gGfMirYG": { + "uv": { + "9bCg": [7, 39.59998], + "JTfr": [7, 38], + "YkcP": [8, 39.59998], + "gPMU": [8, 38] + }, + "vertices": ["gPMU", "YkcP", "JTfr", "9bCg"], + "texture": 0 + }, + "RPPTuXb3": { + "uv": { + "XrMY": [7, 39.59998], + "H3Hz": [7, 38], + "9bCg": [8, 39.59998], + "JTfr": [8, 38] + }, + "vertices": ["JTfr", "9bCg", "H3Hz", "XrMY"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "03a7b0ca-adbc-e921-e466-02042f51f0fb" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-5.6, 14.3, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "uXX4": [-0.04894, -1.2, 0.15], + "oTYm": [-0.04894, 6.5, 0.15], + "xQ7R": [0.69917, -0.2375, 1.33333], + "KviP": [1.02311, 5.5375, 1.925], + "ZAwo": [0.7994, -0.2375, 0.15], + "jvUa": [2.09517, 5.5375, 0.15], + "ZlND": [0.69917, -0.2375, -1.03333], + "0viC": [1.02311, 5.5375, -1.625], + "0sOe": [-0.79706, -0.2375, -1.03333], + "bbcG": [-0.47311, 5.5375, -1.625], + "EHEa": [-1.54517, -0.2375, 0.15], + "Hf1h": [-1.54517, 5.5375, 0.15], + "qpo9": [-0.79706, -0.2375, 1.33333], + "AFOM": [-0.47311, 5.5375, 1.925] + }, + "faces": { + "lobLHojZ": { + "uv": { + "uXX4": [0, 3], + "xQ7R": [0.5774, 2], + "ZAwo": [1.1547, 3] + }, + "vertices": ["ZAwo", "xQ7R", "uXX4"], + "texture": 0 + }, + "2wrsF9PS": { + "uv": { + "KviP": [0, 0], + "jvUa": [1.1548, 0], + "ZAwo": [1.1548, 6], + "xQ7R": [0, 6] + }, + "vertices": ["xQ7R", "ZAwo", "jvUa", "KviP"], + "texture": 0 + }, + "MLElNaEL": { + "uv": { + "oTYm": [3, 0], + "jvUa": [4.1547, 0], + "KviP": [3.5774, 1] + }, + "vertices": ["KviP", "jvUa", "oTYm"], + "texture": 0 + }, + "NHGFWn7K": { + "uv": { + "uXX4": [0, 2], + "ZAwo": [1.1547, 2], + "ZlND": [0.5774, 3] + }, + "vertices": ["ZlND", "ZAwo", "uXX4"], + "texture": 0 + }, + "8cc6hOOR": { + "uv": { + "jvUa": [0, 0], + "0viC": [1.1548, 0], + "ZlND": [1.1548, 6], + "ZAwo": [0, 6] + }, + "vertices": ["ZAwo", "ZlND", "0viC", "jvUa"], + "texture": 0 + }, + "SrTdhUln": { + "uv": { + "oTYm": [3, 1], + "0viC": [3.5774, 0], + "jvUa": [4.1547, 1] + }, + "vertices": ["jvUa", "0viC", "oTYm"], + "texture": 0 + }, + "9UtXiLWH": { + "uv": { + "uXX4": [0.5774, 2], + "ZlND": [1.1548, 3], + "0sOe": [0, 3] + }, + "vertices": ["0sOe", "ZlND", "uXX4"], + "texture": 0 + }, + "qGP3hNLj": { + "uv": { + "0viC": [0, 0], + "bbcG": [1.1548, 0], + "0sOe": [1.1548, 6], + "ZlND": [0, 6] + }, + "vertices": ["ZlND", "0sOe", "bbcG", "0viC"], + "texture": 0 + }, + "1B3EpcYx": { + "uv": { + "oTYm": [3.5774, 1], + "bbcG": [3, 0], + "0viC": [4.1548, 0] + }, + "vertices": ["0viC", "bbcG", "oTYm"], + "texture": 0 + }, + "6tckQVaJ": { + "uv": { + "uXX4": [1.1547, 2], + "0sOe": [0.5773, 3], + "EHEa": [0, 2] + }, + "vertices": ["EHEa", "0sOe", "uXX4"], + "texture": 0 + }, + "2WWrRUBm": { + "uv": { + "bbcG": [0, 0], + "Hf1h": [1.1548, 0], + "EHEa": [1.1548, 6], + "0sOe": [0, 6] + }, + "vertices": ["0sOe", "EHEa", "Hf1h", "bbcG"], + "texture": 0 + }, + "gSUoLh4J": { + "uv": { + "oTYm": [3.5774, 1], + "Hf1h": [3, 0], + "bbcG": [4.1548, 0] + }, + "vertices": ["bbcG", "Hf1h", "oTYm"], + "texture": 0 + }, + "Gd1XafzL": { + "uv": { + "uXX4": [0.5774, 3], + "EHEa": [0, 2], + "qpo9": [1.1548, 2] + }, + "vertices": ["qpo9", "EHEa", "uXX4"], + "texture": 0 + }, + "4eJ8kTWL": { + "uv": { + "Hf1h": [0, 0], + "AFOM": [1.1548, 0], + "qpo9": [1.1548, 6], + "EHEa": [0, 6] + }, + "vertices": ["EHEa", "qpo9", "AFOM", "Hf1h"], + "texture": 0 + }, + "EiJgXwpU": { + "uv": { + "oTYm": [3.5774, 1], + "AFOM": [3, 0], + "Hf1h": [4.1548, 0] + }, + "vertices": ["Hf1h", "AFOM", "oTYm"], + "texture": 0 + }, + "U1EMdNou": { + "uv": { + "uXX4": [0.5774, 3], + "qpo9": [0, 2], + "xQ7R": [1.1548, 2] + }, + "vertices": ["xQ7R", "qpo9", "uXX4"], + "texture": 0 + }, + "JaWe1p8r": { + "uv": { + "AFOM": [0, 0], + "KviP": [1.1548, 0], + "xQ7R": [1.1548, 6], + "qpo9": [0, 6] + }, + "vertices": ["qpo9", "xQ7R", "KviP", "AFOM"], + "texture": 0 + }, + "1NM4KFOU": { + "uv": { + "oTYm": [3.5774, 1], + "KviP": [3, 0], + "AFOM": [4.1548, 0] + }, + "vertices": ["AFOM", "KviP", "oTYm"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "fcd91531-57f5-3dad-6808-1c446c0006ae" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-2.215, 12.12, 3.255], + "to": [1.215, 23.88, 3.745], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [3.175, 12.61, 3.745], + "faces": { + "north": { + "uv": [0.5, 0.5, 15.5, 15.5], + "rotation": 90 + }, + "east": { + "uv": [0, 0, 16, 0], + "rotation": 270 + }, + "south": { + "uv": [15.5, 0.5, 0.5, 15.5], + "rotation": 270 + }, + "west": { + "uv": [16, 1.5, 0, 2], + "rotation": 270 + }, + "up": { + "uv": [0, 0, 0.5, 16], + "rotation": 270 + }, + "down": { + "uv": [15, 1, 15.5, 16], + "rotation": 270 + } + }, + "type": "cube", + "uuid": "7d4c2b23-2316-988a-596c-3e0bb1650e3e" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-2.215, 12.12, 3.304], + "to": [1.215, 23.88, 3.696], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [3.175, 12.61, 3.745], + "faces": { + "north": { + "uv": [0.5, 0.5, 15.5, 15.5], + "rotation": 90 + }, + "east": { + "uv": [0, 0, 16, 0], + "rotation": 270 + }, + "south": { + "uv": [15.5, 0.5, 0.5, 15.5], + "rotation": 270 + }, + "west": { + "uv": [16, 1.5, 0, 2], + "rotation": 270 + }, + "up": { + "uv": [0, 0, 0.5, 16], + "rotation": 270 + }, + "down": { + "uv": [15, 1, 15.5, 16], + "rotation": 270 + } + }, + "type": "cube", + "uuid": "75bea1d5-87bd-fc64-240b-0c1cb80366a4" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-2.215, 12.12, 3.353], + "to": [1.215, 23.88, 3.647], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [3.175, 12.61, 3.745], + "faces": { + "north": { + "uv": [0.5, 0.5, 15.5, 15.5], + "rotation": 90 + }, + "east": { + "uv": [0, 0, 16, 0], + "rotation": 270 + }, + "south": { + "uv": [15.5, 0.5, 0.5, 15.5], + "rotation": 270 + }, + "west": { + "uv": [16, 1.5, 0, 2], + "rotation": 270 + }, + "up": { + "uv": [0, 0, 0.5, 16], + "rotation": 270 + }, + "down": { + "uv": [15, 1, 15.5, 16], + "rotation": 270 + } + }, + "type": "cube", + "uuid": "978245c3-4a24-892e-168f-731f704c1545" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-2.215, 12.12, 3.402], + "to": [1.215, 23.88, 3.598], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [3.175, 12.61, 3.745], + "faces": { + "north": { + "uv": [0.5, 0.5, 15.5, 15.5], + "rotation": 90 + }, + "east": { + "uv": [0, 0, 16, 0], + "rotation": 270 + }, + "south": { + "uv": [15.5, 0.5, 0.5, 15.5], + "rotation": 270 + }, + "west": { + "uv": [16, 1.5, 0, 2], + "rotation": 270 + }, + "up": { + "uv": [0, 0, 0.5, 16], + "rotation": 270 + }, + "down": { + "uv": [15, 1, 15.5, 16], + "rotation": 270 + } + }, + "type": "cube", + "uuid": "977bc890-568a-0428-0f50-2d6a172167f2" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-2.215, 12.12, 3.5], + "to": [1.215, 23.88, 3.5], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [3.175, 12.61, 3.745], + "faces": { + "north": { + "uv": [0.5, 0.5, 15.5, 15.5], + "rotation": 90 + }, + "east": { + "uv": [0, 0, 16, 0], + "rotation": 270 + }, + "south": { + "uv": [15.5, 0.5, 0.5, 15.5], + "rotation": 270 + }, + "west": { + "uv": [16, 1.5, 0, 2], + "rotation": 270 + }, + "up": { + "uv": [0, 0, 0.5, 16], + "rotation": 270 + }, + "down": { + "uv": [15, 1, 15.5, 16], + "rotation": 270 + } + }, + "type": "cube", + "uuid": "78b5f951-2049-2a7f-4da7-f45b345ba784" + }, + { + "name": "happy", + "color": 8, + "origin": [0, 28.05, -1], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "zyRr": [3.44889, 2.4, -0.39411], + "ooTR": [3.44889, 0.3, -0.39411], + "73OG": [-3.39778, 2.4, -0.39411], + "HXoH": [-3.39778, 0.3, -0.39411], + "fJPg": [-0.06422, 0.3, -0.39411], + "ujQW": [-0.06422, 2.4, -0.39411] + }, + "faces": { + "ygbaDk3h": { + "uv": { + "HXoH": [13, 16], + "ujQW": [21, 10], + "fJPg": [21, 16], + "73OG": [13, 10] + }, + "vertices": ["73OG", "fJPg", "ujQW", "HXoH"], + "texture": 0 + }, + "QOPlDywE": { + "uv": { + "zyRr": [13, 10], + "ujQW": [21, 10], + "fJPg": [21, 16], + "ooTR": [13, 16] + }, + "vertices": ["ooTR", "fJPg", "ujQW", "zyRr"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "e04237d4-85ad-3a6b-4a89-a2115d5f67fc" + }, + { + "name": "concerned", + "color": 8, + "origin": [0, 28.05, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "zyRr": [3.44889, 2.4, -0.39411], + "ooTR": [3.44889, 0.3, -0.39411], + "73OG": [-3.39778, 2.4, -0.39411], + "HXoH": [-3.39778, 0.3, -0.39411], + "fJPg": [-0.06422, 0.3, -0.39411], + "ujQW": [-0.06422, 2.4, -0.39411] + }, + "faces": { + "ygbaDk3h": { + "uv": { + "HXoH": [21, 16], + "ujQW": [29, 10], + "fJPg": [29, 16], + "73OG": [21, 10] + }, + "vertices": ["73OG", "fJPg", "ujQW", "HXoH"], + "texture": 0 + }, + "QOPlDywE": { + "uv": { + "zyRr": [21, 10], + "ujQW": [29, 10], + "fJPg": [29, 16], + "ooTR": [21, 16] + }, + "vertices": ["ooTR", "fJPg", "ujQW", "zyRr"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "a52ffc8b-11fe-e05a-f2a3-53ad302c1496" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 24, 2], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "ppnZ": [0, 1, -0.20896], + "EAQP": [0, 8, -0.11171], + "TV9o": [1.26853, 1.77778, 1.44414], + "n3UK": [1.44975, 7.22222, 2.22207], + "xI8D": [3.0625, 1.77778, 0.52988], + "If9H": [3.5, 7.22222, 1.1772], + "NlFz": [3.0625, 1.77778, -1.33676], + "lH3O": [3.0625, 7.22222, -1.40063], + "BlXc": [1.26853, 1.06065, -3.22819], + "j3zU": [1.44975, 7.22222, -2.83447], + "8Vaz": [1.44975, 3.13473, -4.00612], + "2fMz": [1.44975, 4.37037, -3.22343], + "DFnu": [3.0625, 3.46296, -1.40063], + "ZKz3": [3.0625, 4.37037, -1.40063], + "9wlZ": [3.5, 3.46296, 1.1772], + "HeA6": [3.5, 5.14815, 1.1772], + "ETfb": [1.44975, 3.46296, 3], + "EqZH": [1.44975, 5.92593, 3], + "yF3x": [-1.26853, 1.77778, 1.44414], + "lXqu": [-1.44975, 7.22222, 2.22207], + "C6cU": [-3.0625, 1.77778, 0.52988], + "qc0L": [-3.5, 7.22222, 1.1772], + "HCVy": [-3.0625, 1.77778, -1.33676], + "dgCx": [-3.0625, 7.22222, -1.40063], + "a6Ti": [-1.26853, 1.06065, -3.22819], + "2NA1": [-1.44975, 7.22222, -2.83447], + "5WyA": [-1.44975, 3.13473, -4.00612], + "FBal": [-1.44975, 4.37037, -3.22343], + "XPZQ": [-3.0625, 3.46296, -1.40063], + "tTFb": [-3.0625, 4.37037, -1.40063], + "A49p": [-3.5, 3.46296, 1.1772], + "uuLd": [-3.5, 5.14815, 1.1772], + "Jfz9": [-1.44975, 3.46296, 3], + "ZHiN": [-1.44975, 5.92593, 3] + }, + "faces": { + "SGOtJOVi": { + "uv": { + "ppnZ": [0, 5.40583], + "TV9o": [5.60717, 2], + "xI8D": [7.92959, 5.40583] + }, + "vertices": ["xI8D", "TV9o", "ppnZ"], + "texture": 0 + }, + "qybQHbiM": { + "uv": { + "If9H": [6.06919, 2], + "EqZH": [0, 4.96667], + "HeA6": [6.06919, 4.96667], + "n3UK": [0, 2] + }, + "vertices": ["n3UK", "HeA6", "EqZH", "If9H"], + "texture": 0 + }, + "OTX97j14": { + "uv": { + "EAQP": [0, 2], + "If9H": [5.60695, 5.40596], + "n3UK": [0, 6.81666] + }, + "vertices": ["n3UK", "If9H", "EAQP"], + "texture": 0 + }, + "NeEi2vFZ": { + "uv": { + "ppnZ": [0, 3.8433], + "xI8D": [7.32595, 2], + "NlFz": [7.32595, 5.6866] + }, + "vertices": ["NlFz", "xI8D", "ppnZ"], + "texture": 0 + }, + "WedP020P": { + "uv": { + "lH3O": [6.06919, 2], + "HeA6": [0, 4.96667], + "ZKz3": [6.06919, 4.96667], + "If9H": [0, 2] + }, + "vertices": ["If9H", "ZKz3", "HeA6", "lH3O"], + "texture": 0 + }, + "BYsI7aC0": { + "uv": { + "EAQP": [0, 3.8433], + "lH3O": [7.32595, 2], + "If9H": [7.32595, 5.6866] + }, + "vertices": ["If9H", "lH3O", "EAQP"], + "texture": 0 + }, + "WWTxBVtP": { + "uv": { + "ppnZ": [0, 2], + "NlFz": [5.60695, 5.40596], + "BlXc": [0, 6.81666] + }, + "vertices": ["BlXc", "NlFz", "ppnZ"], + "texture": 0 + }, + "m9E4bexa": { + "uv": { + "j3zU": [6.06919, 2], + "ZKz3": [0, 4.96667], + "2fMz": [6.06919, 4.96667], + "lH3O": [0, 2] + }, + "vertices": ["lH3O", "2fMz", "ZKz3", "j3zU"], + "texture": 0 + }, + "1K3IilLx": { + "uv": { + "EAQP": [0, 5.40583], + "j3zU": [5.60717, 2], + "lH3O": [7.92959, 5.40583] + }, + "vertices": ["lH3O", "j3zU", "EAQP"], + "texture": 0 + }, + "gkvqNXSk": { + "uv": { + "ppnZ": [3.03459, 2], + "BlXc": [6.06919, 6.45], + "a6Ti": [0, 6.45] + }, + "vertices": ["a6Ti", "BlXc", "ppnZ"], + "texture": 0 + }, + "WZA3BCX4": { + "uv": { + "2NA1": [6.06919, 2], + "2fMz": [0, 4.96667], + "FBal": [6.06919, 4.96667], + "j3zU": [0, 2] + }, + "vertices": ["j3zU", "FBal", "2fMz", "2NA1"], + "texture": 0 + }, + "UfluJ6be": { + "uv": { + "EAQP": [3.03459, 6.45], + "2NA1": [0, 2], + "j3zU": [6.06919, 2] + }, + "vertices": ["j3zU", "2NA1", "EAQP"], + "texture": 0 + }, + "mCNrpYIj": { + "uv": { + "ppnZ": [3.03459, 6.45], + "yF3x": [0, 2], + "TV9o": [6.06919, 2] + }, + "vertices": ["TV9o", "yF3x", "ppnZ"], + "texture": 0 + }, + "taIZthpZ": { + "uv": { + "n3UK": [6.06919, 2], + "ZHiN": [0, 4.96667], + "EqZH": [6.06919, 4.96667], + "lXqu": [0, 2] + }, + "vertices": ["lXqu", "EqZH", "ZHiN", "n3UK"], + "texture": 0 + }, + "eHr3thlr": { + "uv": { + "EAQP": [3.03459, 2], + "n3UK": [6.06919, 6.45], + "lXqu": [0, 6.45] + }, + "vertices": ["lXqu", "n3UK", "EAQP"], + "texture": 0 + }, + "mOGzqJIk": { + "uv": { + "BlXc": [8, 8], + "8Vaz": [8, 4], + "5WyA": [13, 4], + "a6Ti": [13, 8] + }, + "vertices": ["a6Ti", "5WyA", "8Vaz", "BlXc"], + "texture": 0 + }, + "IspizuX0": { + "uv": { + "8Vaz": [0, 7.93333], + "2fMz": [0, 4.96667], + "FBal": [6.06919, 4.96667], + "5WyA": [6.06919, 7.93333] + }, + "vertices": ["5WyA", "FBal", "2fMz", "8Vaz"], + "texture": 0 + }, + "4elRqR2m": { + "uv": { + "NlFz": [0, 4.96667], + "DFnu": [0, 2], + "8Vaz": [6.06919, 2], + "BlXc": [6.06919, 4.96667] + }, + "vertices": ["BlXc", "8Vaz", "DFnu", "NlFz"], + "texture": 0 + }, + "Pro0QCF0": { + "uv": { + "DFnu": [0, 7.93333], + "ZKz3": [0, 4.96667], + "2fMz": [6.06919, 4.96667], + "8Vaz": [6.06919, 7.93333] + }, + "vertices": ["8Vaz", "2fMz", "ZKz3", "DFnu"], + "texture": 0 + }, + "0wLusB14": { + "uv": { + "xI8D": [0, 4.96667], + "9wlZ": [0, 2], + "DFnu": [6.06919, 2], + "NlFz": [6.06919, 4.96667] + }, + "vertices": ["NlFz", "DFnu", "9wlZ", "xI8D"], + "texture": 0 + }, + "wGe6CeFl": { + "uv": { + "9wlZ": [0, 7.93333], + "HeA6": [0, 4.96667], + "ZKz3": [6.06919, 4.96667], + "DFnu": [6.06919, 7.93333] + }, + "vertices": ["DFnu", "ZKz3", "HeA6", "9wlZ"], + "texture": 0 + }, + "ZCt7nfD8": { + "uv": { + "TV9o": [0, 4.96667], + "ETfb": [0, 2], + "9wlZ": [6.06919, 2], + "xI8D": [6.06919, 4.96667] + }, + "vertices": ["xI8D", "9wlZ", "ETfb", "TV9o"], + "texture": 0 + }, + "yq9buZK2": { + "uv": { + "ETfb": [0, 7.93333], + "EqZH": [0, 4.96667], + "HeA6": [6.06919, 4.96667], + "9wlZ": [6.06919, 7.93333] + }, + "vertices": ["9wlZ", "HeA6", "EqZH", "ETfb"], + "texture": 0 + }, + "3RmOj4jX": { + "uv": { + "yF3x": [0, 4.96667], + "Jfz9": [0, 2], + "ETfb": [6.06919, 2], + "TV9o": [6.06919, 4.96667] + }, + "vertices": ["TV9o", "ETfb", "Jfz9", "yF3x"], + "texture": 0 + }, + "5QqsYfQ8": { + "uv": { + "Jfz9": [0, 7.93333], + "ZHiN": [0, 4.96667], + "EqZH": [6.06919, 4.96667], + "ETfb": [6.06919, 7.93333] + }, + "vertices": ["ETfb", "EqZH", "ZHiN", "Jfz9"], + "texture": 0 + }, + "Fg9vJv4N": { + "uv": { + "ppnZ": [0, 5.40583], + "C6cU": [7.92959, 5.40583], + "yF3x": [5.60717, 2] + }, + "vertices": ["yF3x", "C6cU", "ppnZ"], + "texture": 0 + }, + "wfInJ26T": { + "uv": { + "qc0L": [6.06919, 2], + "ZHiN": [0, 4.96667], + "lXqu": [0, 2], + "uuLd": [6.06919, 4.96667] + }, + "vertices": ["uuLd", "lXqu", "ZHiN", "qc0L"], + "texture": 0 + }, + "eiK1svyY": { + "uv": { + "EAQP": [0, 2], + "lXqu": [0, 6.81666], + "qc0L": [5.60695, 5.40596] + }, + "vertices": ["qc0L", "lXqu", "EAQP"], + "texture": 0 + }, + "ZFEG13AU": { + "uv": { + "ppnZ": [0, 3.8433], + "HCVy": [7.32595, 5.6866], + "C6cU": [7.32595, 2] + }, + "vertices": ["C6cU", "HCVy", "ppnZ"], + "texture": 0 + }, + "BcBa4KR3": { + "uv": { + "dgCx": [6.06919, 2], + "uuLd": [0, 4.96667], + "qc0L": [0, 2], + "tTFb": [6.06919, 4.96667] + }, + "vertices": ["tTFb", "qc0L", "uuLd", "dgCx"], + "texture": 0 + }, + "ixMgOYvh": { + "uv": { + "EAQP": [0, 3.8433], + "qc0L": [7.32595, 5.6866], + "dgCx": [7.32595, 2] + }, + "vertices": ["dgCx", "qc0L", "EAQP"], + "texture": 0 + }, + "RBqNM3aV": { + "uv": { + "ppnZ": [0, 2], + "a6Ti": [0, 6.81666], + "HCVy": [5.60695, 5.40596] + }, + "vertices": ["HCVy", "a6Ti", "ppnZ"], + "texture": 0 + }, + "PbRsxzNF": { + "uv": { + "2NA1": [6.06919, 2], + "tTFb": [0, 4.96667], + "dgCx": [0, 2], + "FBal": [6.06919, 4.96667] + }, + "vertices": ["FBal", "dgCx", "tTFb", "2NA1"], + "texture": 0 + }, + "YLxZHzXa": { + "uv": { + "EAQP": [0, 5.40583], + "dgCx": [7.92959, 5.40583], + "2NA1": [5.60717, 2] + }, + "vertices": ["2NA1", "dgCx", "EAQP"], + "texture": 0 + }, + "j7kPMev4": { + "uv": { + "HCVy": [0, 4.96667], + "XPZQ": [0, 2], + "a6Ti": [6.06919, 4.96667], + "5WyA": [6.06919, 2] + }, + "vertices": ["5WyA", "a6Ti", "XPZQ", "HCVy"], + "texture": 0 + }, + "oYEZeJop": { + "uv": { + "XPZQ": [0, 7.93333], + "tTFb": [0, 4.96667], + "5WyA": [6.06919, 7.93333], + "FBal": [6.06919, 4.96667] + }, + "vertices": ["FBal", "5WyA", "tTFb", "XPZQ"], + "texture": 0 + }, + "JN2qxV70": { + "uv": { + "C6cU": [0, 4.96667], + "A49p": [0, 2], + "HCVy": [6.06919, 4.96667], + "XPZQ": [6.06919, 2] + }, + "vertices": ["XPZQ", "HCVy", "A49p", "C6cU"], + "texture": 0 + }, + "s7idVvdI": { + "uv": { + "A49p": [0, 7.93333], + "uuLd": [0, 4.96667], + "XPZQ": [6.06919, 7.93333], + "tTFb": [6.06919, 4.96667] + }, + "vertices": ["tTFb", "XPZQ", "uuLd", "A49p"], + "texture": 0 + }, + "3YxMl6ID": { + "uv": { + "yF3x": [0, 4.96667], + "Jfz9": [0, 2], + "C6cU": [6.06919, 4.96667], + "A49p": [6.06919, 2] + }, + "vertices": ["A49p", "C6cU", "Jfz9", "yF3x"], + "texture": 0 + }, + "W7j54Eei": { + "uv": { + "Jfz9": [0, 7.93333], + "ZHiN": [0, 4.96667], + "A49p": [6.06919, 7.93333], + "uuLd": [6.06919, 4.96667] + }, + "vertices": ["uuLd", "A49p", "ZHiN", "Jfz9"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "537ef66b-a5ff-b3ae-7587-873be2d53cc2" + }, + { + "name": "LeftElytra", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-5, 4, 6], + "to": [5, 24, 8], + "autouv": 0, + "color": 1, + "visibility": false, + "inflate": 1, + "origin": [-5, 24, 6], + "faces": { + "north": { + "uv": [24, 4, 34, 44], + "texture": 0 + }, + "east": { + "uv": [22, 4, 24, 44], + "texture": 0 + }, + "south": { + "uv": [36, 4, 46, 44], + "texture": 0 + }, + "west": { + "uv": [34, 4, 36, 44], + "texture": 0 + }, + "up": { + "uv": [34, 4, 24, 0], + "texture": 0 + }, + "down": { + "uv": [44, 0, 34, 4], + "texture": 0 + } + }, + "type": "cube", + "uuid": "f13098f5-2b9f-c55c-ac85-5679cc688966" + }, + { + "name": "RightElytra", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-5, 4, 6], + "to": [5, 24, 8], + "autouv": 0, + "color": 4, + "visibility": false, + "inflate": 1, + "origin": [5, 24, 6], + "faces": { + "north": { + "uv": [34, 4, 24, 44], + "texture": 0 + }, + "east": { + "uv": [36, 4, 34, 44], + "texture": 0 + }, + "south": { + "uv": [46, 4, 36, 44], + "texture": 0 + }, + "west": { + "uv": [24, 4, 22, 44], + "texture": 0 + }, + "up": { + "uv": [24, 4, 34, 0], + "texture": 0 + }, + "down": { + "uv": [34, 0, 44, 4], + "texture": 0 + } + }, + "type": "cube", + "uuid": "9dc0af0e-5f57-3947-ed18-4309680c6759" + }, + { + "name": "Cape", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-5, 8, 8], + "to": [5, 24, 9], + "autouv": 0, + "color": 6, + "visibility": false, + "origin": [0, 24, 8], + "faces": { + "north": { + "uv": [1, 2, 11, 34], + "texture": 0 + }, + "east": { + "uv": [0, 2, 1, 34], + "texture": 0 + }, + "south": { + "uv": [12, 2, 22, 34], + "texture": 0 + }, + "west": { + "uv": [11, 2, 12, 34], + "texture": 0 + }, + "up": { + "uv": [11, 2, 1, 0], + "texture": 0 + }, + "down": { + "uv": [21, 0, 11, 2], + "texture": 0 + } + }, + "type": "cube", + "uuid": "9d4f5a09-3416-0623-7a0b-3bbcf0d919d8" + }, + { + "name": "cube", + "color": 8, + "origin": [1.01519, 0, -0.17365], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "BtHE": [-4.2, 2, 2], + "p9SG": [-4.2, 2, -0.85714], + "dP2U": [-4.2, 0, 2], + "eok7": [-5, 0, -0.85714], + "ocfu": [-1.8, 2, 2], + "vUhB": [-1.8, 2, -0.85714], + "EUsg": [-1.8, 0, 2], + "oqGO": [-1, 0, -0.85714], + "LuHl": [-1.8, 2, -3], + "xXtl": [-4.2, 2, -3], + "EDaA": [-1.8, 0, -4], + "X2US": [-4.2, 0, -4] + }, + "faces": { + "rLMf7opp": { + "uv": { + "dP2U": [0, 24], + "eok7": [0, 22], + "p9SG": [4, 22], + "BtHE": [4, 24] + }, + "vertices": ["BtHE", "p9SG", "eok7", "dP2U"], + "texture": 0 + }, + "lK1uZ4ZU": { + "uv": { + "oqGO": [0, 24], + "EUsg": [0, 22], + "ocfu": [4, 22], + "vUhB": [4, 24] + }, + "vertices": ["vUhB", "ocfu", "EUsg", "oqGO"], + "texture": 0 + }, + "IOcJK5rY": { + "uv": { + "ocfu": [0, 26], + "BtHE": [0, 22], + "p9SG": [3, 22], + "vUhB": [3, 26] + }, + "vertices": ["vUhB", "p9SG", "BtHE", "ocfu"], + "texture": 0 + }, + "TZD9oDhP": { + "uv": { + "oqGO": [0, 26], + "eok7": [0, 22], + "dP2U": [3, 22], + "EUsg": [3, 26] + }, + "vertices": ["EUsg", "dP2U", "eok7", "oqGO"], + "texture": 0 + }, + "h8ImDcMA": { + "uv": { + "EUsg": [0, 24], + "dP2U": [0, 22], + "BtHE": [3, 22], + "ocfu": [3, 24] + }, + "vertices": ["ocfu", "BtHE", "dP2U", "EUsg"], + "texture": 0 + }, + "4tbVDhEo": { + "uv": { + "X2US": [0, 24], + "EDaA": [0, 22], + "LuHl": [3, 22], + "xXtl": [3, 24] + }, + "vertices": ["xXtl", "LuHl", "EDaA", "X2US"], + "texture": 0 + }, + "EtmLgTse": { + "uv": { + "vUhB": [3, 22], + "oqGO": [0, 22], + "LuHl": [3, 24], + "EDaA": [0, 24] + }, + "vertices": ["EDaA", "LuHl", "oqGO", "vUhB"], + "texture": 0 + }, + "iRHEFw0e": { + "uv": { + "p9SG": [3, 25], + "vUhB": [3, 22], + "xXtl": [0, 25], + "LuHl": [0, 22] + }, + "vertices": ["LuHl", "xXtl", "vUhB", "p9SG"], + "texture": 0 + }, + "5H56KX26": { + "uv": { + "eok7": [0, 24], + "p9SG": [3, 24], + "X2US": [0, 22], + "xXtl": [3, 22] + }, + "vertices": ["xXtl", "X2US", "p9SG", "eok7"], + "texture": 0 + }, + "YPxuRqB2": { + "uv": { + "oqGO": [0, 22], + "eok7": [0, 25], + "EDaA": [3, 22], + "X2US": [3, 25] + }, + "vertices": ["X2US", "EDaA", "eok7", "oqGO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "88ccf0b1-c887-5a42-45aa-2a7eb359c98b" + }, + { + "name": "circle", + "color": 8, + "origin": [-1.4, 29.3, -4.2], + "rotation": [-80, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "QlBo": [-0.54435, -0.00243, 0.25043], + "FP9N": [-1.32807, -0.13252, 1.72337], + "lUGq": [-2.19315, -0.25464, 0.01943], + "ro66": [-1.40899, -0.13901, -1.1681], + "Usga": [0.23938, 0.12766, -1.22251], + "GyQD": [1.10402, 0.26425, 0.19602], + "sKKe": [0.32029, 0.13416, 1.66896], + "gp6k": [4.13013, -0.13338, 1.72352], + "vTgM": [4.21104, -0.13988, -1.16795], + "IXDG": [2.56266, 0.12679, -1.22236], + "82YR": [1.69802, 0.26338, 0.19617], + "p7xK": [2.48175, 0.13329, 1.66911], + "1CcK": [0.92358, 0.18131, 0.58363], + "zLaG": [1.87847, 0.18044, 0.5838], + "BVQ2": [-1.87797, -0.07795, 0.77392], + "hOxT": [-1.63483, -2.08748, 1.02764], + "DUmR": [-1.91752, -2.21305, 0.36658], + "ijmy": [4.43483, -2.08748, 1.02764], + "B9AS": [4.71752, -2.21305, 0.36658], + "mmJQ": [3.34639, -0.00329, 0.25058], + "49hN": [4.99499, -0.26274, 0.16228], + "qMSp": [4.62124, -0.14025, 0.89416] + }, + "faces": { + "MOKUwzxs": { + "uv": { + "QlBo": [26.1547, 3], + "lUGq": [25, 9], + "ro66": [27.3094, 9] + }, + "vertices": ["ro66", "lUGq", "QlBo"], + "texture": 0 + }, + "51YiqX10": { + "uv": { + "lUGq": [30.0855, 10.1107], + "BVQ2": [28.29597, 8], + "hOxT": [23, 8], + "DUmR": [24.78953, 10.1107] + }, + "vertices": ["DUmR", "hOxT", "BVQ2", "lUGq"], + "texture": 0 + }, + "2pIUB8ES": { + "uv": { + "QlBo": [26.1547, 3], + "ro66": [25, 9], + "Usga": [27.3094, 9] + }, + "vertices": ["Usga", "ro66", "QlBo"], + "texture": 0 + }, + "ZK7NKOeF": { + "uv": { + "QlBo": [26.1547, 3], + "Usga": [25, 9], + "GyQD": [27.3094, 9] + }, + "vertices": ["GyQD", "Usga", "QlBo"], + "texture": 0 + }, + "wR8umpUu": { + "uv": { + "QlBo": [26.1547, 3], + "sKKe": [25, 9], + "FP9N": [27.3094, 9] + }, + "vertices": ["FP9N", "sKKe", "QlBo"], + "texture": 0 + }, + "H6VP4Ksv": { + "uv": { + "mmJQ": [26.1547, 3], + "IXDG": [27.3094, 9], + "vTgM": [25, 9] + }, + "vertices": ["vTgM", "IXDG", "mmJQ"], + "texture": 0 + }, + "wJyfxrMY": { + "uv": { + "GyQD": [25, 9], + "QlBo": [26.1547, 3], + "1CcK": [25, 9], + "sKKe": [27.3094, 9] + }, + "vertices": ["sKKe", "1CcK", "QlBo", "GyQD"], + "texture": 0 + }, + "DIF8u6Nx": { + "uv": { + "p7xK": [25, 9], + "mmJQ": [26.1547, 3], + "zLaG": [26.1547, 9], + "82YR": [25, 9] + }, + "vertices": ["82YR", "zLaG", "mmJQ", "p7xK"], + "texture": 0 + }, + "Y3MIAtYU": { + "uv": { + "49hN": [30.0855, 10.1107], + "qMSp": [28.29597, 8], + "B9AS": [24.78953, 10.1107], + "ijmy": [23, 8] + }, + "vertices": ["ijmy", "B9AS", "qMSp", "49hN"], + "texture": 0 + }, + "m5Ei64ON": { + "uv": { + "lUGq": [27.3094, 9], + "QlBo": [26.1547, 3], + "FP9N": [25, 9], + "BVQ2": [27.3094, 9] + }, + "vertices": ["BVQ2", "FP9N", "QlBo", "lUGq"], + "texture": 0 + }, + "JXbA3fJc": { + "uv": { + "mmJQ": [26.1547, 3], + "82YR": [27.3094, 9], + "IXDG": [25, 9] + }, + "vertices": ["IXDG", "82YR", "mmJQ"], + "texture": 0 + }, + "tMb37bkc": { + "uv": { + "1CcK": [22, 8.3337], + "GyQD": [22.52825, 8], + "82YR": [23.03255, 8], + "zLaG": [23.5608, 8.3337] + }, + "vertices": ["zLaG", "82YR", "GyQD", "1CcK"], + "texture": 0 + }, + "6XGDzFgh": { + "uv": { + "mmJQ": [26.1547, 3], + "vTgM": [27.3094, 9], + "49hN": [25, 9] + }, + "vertices": ["49hN", "vTgM", "mmJQ"], + "texture": 0 + }, + "ZQX1Mu9J": { + "uv": { + "mmJQ": [26.1547, 3], + "gp6k": [25, 9], + "p7xK": [27.3094, 9] + }, + "vertices": ["p7xK", "gp6k", "mmJQ"], + "texture": 0 + }, + "57qo5ODz": { + "uv": { + "49hN": [25, 9], + "mmJQ": [26.1547, 3], + "qMSp": [25, 9], + "gp6k": [27.3094, 9] + }, + "vertices": ["gp6k", "qMSp", "mmJQ", "49hN"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "cddc15a2-e47f-cc9b-6543-a33edf4f6221" + }, + { + "name": "cube", + "color": 8, + "origin": [0, 26.9, -4.2], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "tkxK": [0.5, 3.80513, 0.57334], + "ECCY": [0.5, 1.25502, -1.03671], + "ZgvY": [0.7, 0.7, 1], + "iCyR": [0.7, 0.56166, -0.36696], + "cIz3": [-0.5, 3.80513, 0.57334], + "ZpVa": [-0.5, 1.25502, -1.03671], + "linI": [-0.7, 0.7, 1], + "zu4W": [-0.7, 0.56166, -0.36696] + }, + "faces": { + "dlJOkDpI": { + "uv": { + "ZgvY": [0, 1], + "iCyR": [2, 1], + "tkxK": [0, 3], + "ECCY": [2, 3] + }, + "vertices": ["ECCY", "tkxK", "iCyR", "ZgvY"], + "texture": 0 + }, + "XO0XBOJM": { + "uv": { + "zu4W": [0, 1], + "linI": [2, 1], + "ZpVa": [0, 3], + "cIz3": [2, 3] + }, + "vertices": ["cIz3", "ZpVa", "linI", "zu4W"], + "texture": 0 + }, + "z9C8lfjV": { + "uv": { + "cIz3": [0, 4], + "tkxK": [2, 4], + "ZpVa": [0, 2], + "ECCY": [2, 2] + }, + "vertices": ["ECCY", "ZpVa", "tkxK", "cIz3"], + "texture": 0 + }, + "Adj6L1Cx": { + "uv": { + "zu4W": [0, 0], + "iCyR": [2, 0], + "linI": [0, 2], + "ZgvY": [2, 2] + }, + "vertices": ["ZgvY", "linI", "iCyR", "zu4W"], + "texture": 0 + }, + "o9Tb4bFQ": { + "uv": { + "linI": [0, 4], + "ZgvY": [2, 4], + "cIz3": [0, 2], + "tkxK": [2, 2] + }, + "vertices": ["tkxK", "cIz3", "ZgvY", "linI"], + "texture": 0 + }, + "CqQfY0iI": { + "uv": { + "iCyR": [0, 1], + "zu4W": [2, 1], + "ECCY": [0, 3], + "ZpVa": [2, 3] + }, + "vertices": ["ZpVa", "ECCY", "zu4W", "iCyR"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "8cf37dda-a1f4-41c9-00ea-784d1ef19a8d" + }, + { + "name": "circle", + "color": 8, + "origin": [-1.4, 29.3, -4.2], + "rotation": [-80, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "QlBo": [-0.54435, -0.00243, 0.25043], + "FP9N": [-1.32807, -0.13252, 1.72337], + "lUGq": [-2.19315, -0.25464, 0.01943], + "ro66": [-1.40899, -0.13901, -1.1681], + "Usga": [0.23938, 0.12766, -1.22251], + "GyQD": [1.10402, 0.26425, 0.19602], + "sKKe": [0.32029, 0.13416, 1.66896], + "gp6k": [4.13013, -0.13338, 1.72352], + "vTgM": [4.21104, -0.13988, -1.16795], + "IXDG": [2.56266, 0.12679, -1.22236], + "82YR": [1.69802, 0.26338, 0.19617], + "p7xK": [2.48175, 0.13329, 1.66911], + "1CcK": [0.92358, 0.18131, 0.58363], + "zLaG": [1.87847, 0.18044, 0.5838], + "BVQ2": [-1.87797, -0.07795, 0.77392], + "hOxT": [-1.63483, -2.08748, 1.02764], + "DUmR": [-1.91752, -2.21305, 0.36658], + "ijmy": [4.43483, -2.08748, 1.02764], + "B9AS": [4.71752, -2.21305, 0.36658], + "mmJQ": [3.34639, -0.00329, 0.25058], + "49hN": [4.99499, -0.26274, 0.16228], + "qMSp": [4.62124, -0.14025, 0.89416] + }, + "faces": { + "MOKUwzxs": { + "uv": { + "QlBo": [26.1547, 3], + "lUGq": [25, 9], + "ro66": [27.3094, 9] + }, + "vertices": ["ro66", "lUGq", "QlBo"], + "texture": 0 + }, + "51YiqX10": { + "uv": { + "lUGq": [30.0855, 10.1107], + "BVQ2": [28.29597, 8], + "hOxT": [23, 8], + "DUmR": [24.78953, 10.1107] + }, + "vertices": ["DUmR", "hOxT", "BVQ2", "lUGq"], + "texture": 0 + }, + "2pIUB8ES": { + "uv": { + "QlBo": [26.1547, 3], + "ro66": [25, 9], + "Usga": [27.3094, 9] + }, + "vertices": ["Usga", "ro66", "QlBo"], + "texture": 0 + }, + "ZK7NKOeF": { + "uv": { + "QlBo": [26.1547, 3], + "Usga": [25, 9], + "GyQD": [27.3094, 9] + }, + "vertices": ["GyQD", "Usga", "QlBo"], + "texture": 0 + }, + "wR8umpUu": { + "uv": { + "QlBo": [26.5, 4], + "sKKe": [25, 0], + "FP9N": [27.5, 0] + }, + "vertices": ["FP9N", "sKKe", "QlBo"], + "texture": 0 + }, + "H6VP4Ksv": { + "uv": { + "mmJQ": [26.1547, 3], + "IXDG": [27.3094, 9], + "vTgM": [25, 9] + }, + "vertices": ["vTgM", "IXDG", "mmJQ"], + "texture": 0 + }, + "wJyfxrMY": { + "uv": { + "GyQD": [25, 0], + "QlBo": [26.5, 4], + "1CcK": [26, 0], + "sKKe": [27.5, 0] + }, + "vertices": ["sKKe", "1CcK", "QlBo", "GyQD"], + "texture": 0 + }, + "DIF8u6Nx": { + "uv": { + "p7xK": [25, 0], + "mmJQ": [26.5, 4], + "zLaG": [26, 0], + "82YR": [27.5, 0] + }, + "vertices": ["82YR", "zLaG", "mmJQ", "p7xK"], + "texture": 0 + }, + "Y3MIAtYU": { + "uv": { + "49hN": [30.0855, 10.1107], + "qMSp": [28.29597, 8], + "B9AS": [24.78953, 10.1107], + "ijmy": [23, 8] + }, + "vertices": ["ijmy", "B9AS", "qMSp", "49hN"], + "texture": 0 + }, + "m5Ei64ON": { + "uv": { + "lUGq": [27.5, 0], + "QlBo": [26.5, 4], + "FP9N": [25, 0], + "BVQ2": [26, 0] + }, + "vertices": ["BVQ2", "FP9N", "QlBo", "lUGq"], + "texture": 0 + }, + "JXbA3fJc": { + "uv": { + "mmJQ": [26.1547, 3], + "82YR": [27.3094, 9], + "IXDG": [25, 9] + }, + "vertices": ["IXDG", "82YR", "mmJQ"], + "texture": 0 + }, + "tMb37bkc": { + "uv": { + "1CcK": [22, 8.3337], + "GyQD": [22.52825, 8], + "82YR": [23.03255, 8], + "zLaG": [23.5608, 8.3337] + }, + "vertices": ["zLaG", "82YR", "GyQD", "1CcK"], + "texture": 0 + }, + "6XGDzFgh": { + "uv": { + "mmJQ": [26.1547, 3], + "vTgM": [27.3094, 9], + "49hN": [25, 9] + }, + "vertices": ["49hN", "vTgM", "mmJQ"], + "texture": 0 + }, + "ZQX1Mu9J": { + "uv": { + "mmJQ": [26.5, 4], + "gp6k": [25, 0], + "p7xK": [27.5, 0] + }, + "vertices": ["p7xK", "gp6k", "mmJQ"], + "texture": 0 + }, + "57qo5ODz": { + "uv": { + "49hN": [25, 0], + "mmJQ": [26.5, 4], + "qMSp": [26, 0], + "gp6k": [27.5, 0] + }, + "vertices": ["gp6k", "qMSp", "mmJQ", "49hN"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "330f0efc-1466-6509-2612-0e94630f723f" + }, + { + "name": "cube", + "color": 8, + "origin": [-6.15, 14.7, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "pd2g": [-0.99217, -0.3294, 1.1], + "mmL5": [-0.99217, -0.3294, -1.15], + "rrJj": [-1.30842, -3.15797, 1.1], + "s2jG": [-1.30842, -3.15797, -1.15], + "SQdA": [1.22158, 0.37774, 1.1], + "1I6t": [1.22158, 0.23632, -1.15], + "x97M": [1.22158, -3.15797, 1.1], + "6OCI": [1.22158, -3.15797, -1.15], + "1mAv": [-0.67592, -4.57226, 0.725], + "qLFu": [1.22158, -4.57226, 0.725], + "l2mI": [-0.67592, -4.57226, -0.775], + "0CGp": [1.22158, -4.57226, -0.775], + "Az5f": [1.22158, -1.74368, -1.9], + "cZ9p": [-0.67592, -1.74368, -1.9], + "zqiK": [1.22158, -3.15797, -1.9], + "iXLD": [-0.67592, -3.15797, -1.9], + "kFKb": [-0.99217, -0.3294, -0.5875], + "Jy9D": [-1.30842, -3.15797, -0.5875], + "NjLO": [-0.99217, -0.3294, -0.025], + "EamT": [-1.30842, -3.15797, -0.025], + "4Uw8": [-0.99217, -0.3294, 0.5375], + "E7H1": [-1.30842, -3.15797, 0.5375], + "zNmF": [-0.67592, -4.57226, -0.4], + "I94e": [-0.67592, -4.57226, -0.025], + "lmne": [-0.67592, -4.57226, 0.35], + "81Au": [1.22158, -4.57226, -0.4], + "bkdC": [1.22158, -4.57226, -0.025], + "GJFl": [1.22158, -4.57226, 0.35], + "iA4U": [1.22158, -3.15797, -0.5875], + "IVs2": [1.22158, -3.15797, -0.025], + "wqYW": [1.22158, -3.15797, 0.5375], + "UdID": [1.22158, 0.27167, -0.5875], + "09B4": [1.22158, 0.30703, -0.025], + "azok": [1.22158, 0.34239, 0.5375] + }, + "faces": { + "FKjq113j": { + "uv": { + "pd2g": [3, 5], + "E7H1": [0, 4.5], + "rrJj": [0, 5], + "4Uw8": [3, 4.5] + }, + "vertices": ["4Uw8", "rrJj", "E7H1", "pd2g"], + "texture": 0 + }, + "jZ871epm": { + "uv": { + "x97M": [0, 3], + "azok": [3, 3.5], + "SQdA": [3, 3], + "wqYW": [0, 3.5] + }, + "vertices": ["wqYW", "SQdA", "azok", "x97M"], + "texture": 0 + }, + "uGJH28Iv": { + "uv": { + "SQdA": [0, 5], + "4Uw8": [0.375, 2], + "pd2g": [0, 2], + "azok": [0.375, 5] + }, + "vertices": ["azok", "pd2g", "4Uw8", "SQdA"], + "texture": 0 + }, + "1nFJZMx2": { + "uv": { + "1mAv": [1.5, 2], + "GJFl": [1.125, 5], + "qLFu": [1.5, 5], + "lmne": [1.125, 2] + }, + "vertices": ["lmne", "qLFu", "GJFl", "1mAv"], + "texture": 0 + }, + "OQgR4dER": { + "uv": { + "x97M": [0, 5], + "rrJj": [0, 3], + "pd2g": [1.5, 3], + "SQdA": [1.5, 5] + }, + "vertices": ["SQdA", "pd2g", "rrJj", "x97M"], + "texture": 0 + }, + "UN1JDrWQ": { + "uv": { + "iXLD": [0, 5], + "zqiK": [0, 3], + "Az5f": [1.5, 3], + "cZ9p": [1.5, 5] + }, + "vertices": ["cZ9p", "Az5f", "zqiK", "iXLD"], + "texture": 0 + }, + "XyxwRClU": { + "uv": { + "rrJj": [0, 2], + "lmne": [3, 2.25], + "1mAv": [3, 2], + "E7H1": [0, 2.25] + }, + "vertices": ["E7H1", "1mAv", "lmne", "rrJj"], + "texture": 0 + }, + "Ilz3SEts": { + "uv": { + "x97M": [0, 2], + "rrJj": [0, 3], + "qLFu": [1.5, 2], + "1mAv": [1.5, 3] + }, + "vertices": ["1mAv", "qLFu", "rrJj", "x97M"], + "texture": 0 + }, + "Cchw1LL2": { + "uv": { + "qLFu": [3, 3], + "wqYW": [0, 2.75], + "x97M": [0, 3], + "GJFl": [3, 2.75] + }, + "vertices": ["GJFl", "x97M", "wqYW", "qLFu"], + "texture": 0 + }, + "n2rwk4ci": { + "uv": { + "s2jG": [0, 3], + "6OCI": [0, 4], + "l2mI": [1.5, 3], + "0CGp": [1.5, 4] + }, + "vertices": ["0CGp", "l2mI", "6OCI", "s2jG"], + "texture": 0 + }, + "O5Z8kx5g": { + "uv": { + "1I6t": [2, 3], + "6OCI": [1, 3], + "Az5f": [2, 5], + "zqiK": [1, 5] + }, + "vertices": ["zqiK", "Az5f", "6OCI", "1I6t"], + "texture": 0 + }, + "4RYNouH5": { + "uv": { + "mmL5": [1.5, 3], + "1I6t": [1.5, 2], + "cZ9p": [0, 3], + "Az5f": [0, 2] + }, + "vertices": ["Az5f", "cZ9p", "1I6t", "mmL5"], + "texture": 0 + }, + "TW0YxAz3": { + "uv": { + "s2jG": [0, 5], + "mmL5": [1, 5], + "iXLD": [0, 3], + "cZ9p": [1, 3] + }, + "vertices": ["cZ9p", "iXLD", "mmL5", "s2jG"], + "texture": 0 + }, + "2zYxvLvJ": { + "uv": { + "6OCI": [0, 2], + "s2jG": [0, 3], + "zqiK": [1.5, 2], + "iXLD": [1.5, 3] + }, + "vertices": ["iXLD", "zqiK", "s2jG", "6OCI"], + "texture": 0 + }, + "BKf5NSMf": { + "uv": { + "s2jG": [0, 1], + "Jy9D": [0, 2], + "mmL5": [3, 1], + "kFKb": [3, 2] + }, + "vertices": ["kFKb", "mmL5", "Jy9D", "s2jG"], + "texture": 0 + }, + "JpNiYA3G": { + "uv": { + "Jy9D": [0, 3.5], + "EamT": [0, 4], + "kFKb": [3, 3.5], + "NjLO": [3, 4] + }, + "vertices": ["NjLO", "kFKb", "EamT", "Jy9D"], + "texture": 0 + }, + "GdpzZg9a": { + "uv": { + "EamT": [0, 2.33333], + "E7H1": [0, 2.5], + "NjLO": [3, 2.33333], + "4Uw8": [3, 2.5] + }, + "vertices": ["4Uw8", "NjLO", "E7H1", "EamT"], + "texture": 0 + }, + "TlsMHfmZ": { + "uv": { + "l2mI": [3, 1.33333], + "zNmF": [3, 1.25], + "s2jG": [0, 1.33333], + "Jy9D": [0, 1.25] + }, + "vertices": ["Jy9D", "s2jG", "zNmF", "l2mI"], + "texture": 0 + }, + "aqKhnRXQ": { + "uv": { + "zNmF": [3, 2.75], + "I94e": [3, 2.5], + "Jy9D": [0, 2.75], + "EamT": [0, 2.5] + }, + "vertices": ["EamT", "Jy9D", "I94e", "zNmF"], + "texture": 0 + }, + "63v75zR5": { + "uv": { + "I94e": [3, 1.16667], + "lmne": [3, 1.08333], + "EamT": [0, 1.16667], + "E7H1": [0, 1.08333] + }, + "vertices": ["E7H1", "EamT", "lmne", "I94e"], + "texture": 0 + }, + "EMdhJPKA": { + "uv": { + "0CGp": [0, 2], + "81Au": [0.375, 2], + "l2mI": [0, 1], + "zNmF": [0.375, 1] + }, + "vertices": ["zNmF", "l2mI", "81Au", "0CGp"], + "texture": 0 + }, + "mbMoevDt": { + "uv": { + "81Au": [0.375, 5], + "bkdC": [0.75, 5], + "zNmF": [0.375, 2], + "I94e": [0.75, 2] + }, + "vertices": ["I94e", "zNmF", "bkdC", "81Au"], + "texture": 0 + }, + "x0VSEKNp": { + "uv": { + "bkdC": [0.75, 2], + "GJFl": [1.125, 2], + "I94e": [0.75, 1], + "lmne": [1.125, 1] + }, + "vertices": ["lmne", "I94e", "GJFl", "bkdC"], + "texture": 0 + }, + "JxgfCy0i": { + "uv": { + "6OCI": [0, 1], + "iA4U": [0, 1.08333], + "0CGp": [3, 1], + "81Au": [3, 1.08333] + }, + "vertices": ["81Au", "0CGp", "iA4U", "6OCI"], + "texture": 0 + }, + "QyoKJJph": { + "uv": { + "iA4U": [0, 2.25], + "IVs2": [0, 2.5], + "81Au": [3, 2.25], + "bkdC": [3, 2.5] + }, + "vertices": ["bkdC", "81Au", "IVs2", "iA4U"], + "texture": 0 + }, + "Lk3hmryg": { + "uv": { + "IVs2": [0, 1.16667], + "wqYW": [0, 1.25], + "bkdC": [3, 1.16667], + "GJFl": [3, 1.25] + }, + "vertices": ["GJFl", "bkdC", "wqYW", "IVs2"], + "texture": 0 + }, + "pJI3WqXz": { + "uv": { + "1I6t": [3, 2.66667], + "UdID": [3, 2.5], + "6OCI": [0, 2.66667], + "iA4U": [0, 2.5] + }, + "vertices": ["iA4U", "6OCI", "UdID", "1I6t"], + "texture": 0 + }, + "h7pymN6Y": { + "uv": { + "UdID": [3, 4.5], + "09B4": [3, 4], + "iA4U": [0, 4.5], + "IVs2": [0, 4] + }, + "vertices": ["IVs2", "iA4U", "09B4", "UdID"], + "texture": 0 + }, + "bDYNAwsd": { + "uv": { + "09B4": [3, 2.33333], + "azok": [3, 2.16667], + "IVs2": [0, 2.33333], + "wqYW": [0, 2.16667] + }, + "vertices": ["wqYW", "IVs2", "azok", "09B4"], + "texture": 0 + }, + "q4OUrDWP": { + "uv": { + "mmL5": [1.5, 1], + "kFKb": [1.125, 1], + "1I6t": [1.5, 2], + "UdID": [1.125, 2] + }, + "vertices": ["UdID", "1I6t", "kFKb", "mmL5"], + "texture": 0 + }, + "tdhfravm": { + "uv": { + "kFKb": [1.125, 2], + "NjLO": [0.75, 2], + "UdID": [1.125, 5], + "09B4": [0.75, 5] + }, + "vertices": ["09B4", "UdID", "NjLO", "kFKb"], + "texture": 0 + }, + "aBr6k8lJ": { + "uv": { + "NjLO": [0.75, 1], + "4Uw8": [0.375, 1], + "09B4": [0.75, 2], + "azok": [0.375, 2] + }, + "vertices": ["azok", "09B4", "4Uw8", "NjLO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "58a66c62-16cb-55b7-2195-1e1a1280b174" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-4, 29.7, -1.9], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8bfM": [0.55, -0.44721, 0], + "Kvjd": [0.55, -0.44721, -1], + "USVQ": [1.17629, -1.5, 0], + "HXhU": [1.17629, -1.5, -1], + "UZWq": [1.56336, -0.04508, 0], + "axTi": [1.56336, -0.04508, -1], + "tgyO": [0.55, 0.8541, 0], + "Ib2Y": [0.55, 0.8541, -1], + "FTwV": [-0.46336, -0.04508, 0], + "O5S9": [-0.46336, -0.04508, -1], + "5xC8": [-0.07629, -1.5, 0], + "tls7": [-0.07629, -1.5, -1] + }, + "faces": { + "91nAa0xC": { + "uv": { + "8bfM": [0, 6.08977], + "UZWq": [1.50002, 7.1796], + "USVQ": [1.50002, 5] + }, + "vertices": ["USVQ", "UZWq", "8bfM"], + "texture": 0 + }, + "9ZKH0lG6": { + "uv": { + "HXhU": [0, 5], + "axTi": [2.1796, 5], + "USVQ": [0, 7], + "UZWq": [2.1796, 7] + }, + "vertices": ["UZWq", "USVQ", "axTi", "HXhU"], + "texture": 0 + }, + "RGmcX1UG": { + "uv": { + "Kvjd": [4.50306, 0], + "HXhU": [2.16591, 1.76648], + "axTi": [5.06639, 1.76648] + }, + "vertices": ["axTi", "HXhU", "Kvjd"], + "texture": 0 + }, + "hURkvpYa": { + "uv": { + "8bfM": [0, 2.7634], + "tgyO": [1.8541, 2.7634], + "UZWq": [0.8729, 0] + }, + "vertices": ["UZWq", "tgyO", "8bfM"], + "texture": 0 + }, + "WyrjtDC7": { + "uv": { + "axTi": [0, 5], + "Ib2Y": [2.1796, 5], + "UZWq": [0, 7], + "tgyO": [2.1796, 7] + }, + "vertices": ["tgyO", "UZWq", "Ib2Y", "axTi"], + "texture": 0 + }, + "acbFBVuv": { + "uv": { + "Kvjd": [4.50306, 0], + "axTi": [2.16591, 1.76648], + "Ib2Y": [5.06639, 1.76648] + }, + "vertices": ["Ib2Y", "axTi", "Kvjd"], + "texture": 0 + }, + "lyFWiRhd": { + "uv": { + "8bfM": [0, 2.7634], + "FTwV": [1.8541, 2.7634], + "tgyO": [0.8729, 0] + }, + "vertices": ["tgyO", "FTwV", "8bfM"], + "texture": 0 + }, + "wjezwsCE": { + "uv": { + "Ib2Y": [0, 5], + "O5S9": [2.1796, 5], + "tgyO": [0, 7], + "FTwV": [2.1796, 7] + }, + "vertices": ["FTwV", "tgyO", "O5S9", "Ib2Y"], + "texture": 0 + }, + "j57EBA6J": { + "uv": { + "Kvjd": [4.50306, 0], + "Ib2Y": [2.16591, 1.76648], + "O5S9": [5.06639, 1.76648] + }, + "vertices": ["O5S9", "Ib2Y", "Kvjd"], + "texture": 0 + }, + "vcbsA7yR": { + "uv": { + "8bfM": [1.85413, 6.76333], + "5xC8": [1.28114, 5], + "FTwV": [0, 6.76333] + }, + "vertices": ["FTwV", "5xC8", "8bfM"], + "texture": 0 + }, + "lYJAyjcC": { + "uv": { + "O5S9": [0, 5], + "tls7": [2.1796, 5], + "FTwV": [0, 7], + "5xC8": [2.1796, 7] + }, + "vertices": ["5xC8", "FTwV", "tls7", "O5S9"], + "texture": 0 + }, + "dswA4ncI": { + "uv": { + "Kvjd": [4.50306, 0], + "O5S9": [2.16591, 1.76648], + "tls7": [5.06639, 1.76648] + }, + "vertices": ["tls7", "O5S9", "Kvjd"], + "texture": 0 + }, + "x4e93Rac": { + "uv": { + "8bfM": [1.0898, 6.5], + "USVQ": [2.1796, 5], + "5xC8": [0, 5] + }, + "vertices": ["5xC8", "USVQ", "8bfM"], + "texture": 0 + }, + "TtnpSvW1": { + "uv": { + "tls7": [0, 5], + "HXhU": [2.1796, 5], + "5xC8": [0, 7], + "USVQ": [2.1796, 7] + }, + "vertices": ["USVQ", "5xC8", "HXhU", "tls7"], + "texture": 0 + }, + "royATjFd": { + "uv": { + "Kvjd": [4.50306, 0], + "tls7": [2.16591, 1.76648], + "HXhU": [5.06639, 1.76648] + }, + "vertices": ["HXhU", "tls7", "Kvjd"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "13b888c6-ccc6-3eba-eac8-25aa02e3ae0a" + }, + { + "name": "cylinder", + "color": 8, + "origin": [5.6, 14.3, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "uXX4": [0.04894, -1.2, 0.15], + "oTYm": [0.04894, 6.5, 0.15], + "xQ7R": [-0.69917, -0.2375, 1.33333], + "KviP": [-1.02311, 5.5375, 1.925], + "ZAwo": [-0.7994, -0.2375, 0.15], + "jvUa": [-2.09517, 5.5375, 0.15], + "ZlND": [-0.69917, -0.2375, -1.03333], + "0viC": [-1.02311, 5.5375, -1.625], + "0sOe": [0.79706, -0.2375, -1.03333], + "bbcG": [0.47311, 5.5375, -1.625], + "EHEa": [1.54517, -0.2375, 0.15], + "Hf1h": [1.54517, 5.5375, 0.15], + "qpo9": [0.79706, -0.2375, 1.33333], + "AFOM": [0.47311, 5.5375, 1.925] + }, + "faces": { + "lobLHojZ": { + "uv": { + "uXX4": [0, 3], + "ZAwo": [1.1547, 3], + "xQ7R": [0.5774, 2] + }, + "vertices": ["xQ7R", "ZAwo", "uXX4"], + "texture": 0 + }, + "2wrsF9PS": { + "uv": { + "KviP": [0, 0], + "jvUa": [1.1548, 0], + "xQ7R": [0, 6], + "ZAwo": [1.1548, 6] + }, + "vertices": ["ZAwo", "xQ7R", "jvUa", "KviP"], + "texture": 0 + }, + "MLElNaEL": { + "uv": { + "oTYm": [3, 0], + "KviP": [3.5774, 1], + "jvUa": [4.1547, 0] + }, + "vertices": ["jvUa", "KviP", "oTYm"], + "texture": 0 + }, + "NHGFWn7K": { + "uv": { + "uXX4": [0, 2], + "ZlND": [0.5774, 3], + "ZAwo": [1.1547, 2] + }, + "vertices": ["ZAwo", "ZlND", "uXX4"], + "texture": 0 + }, + "8cc6hOOR": { + "uv": { + "jvUa": [0, 0], + "0viC": [1.1548, 0], + "ZAwo": [0, 6], + "ZlND": [1.1548, 6] + }, + "vertices": ["ZlND", "ZAwo", "0viC", "jvUa"], + "texture": 0 + }, + "SrTdhUln": { + "uv": { + "oTYm": [3, 1], + "jvUa": [4.1547, 1], + "0viC": [3.5774, 0] + }, + "vertices": ["0viC", "jvUa", "oTYm"], + "texture": 0 + }, + "9UtXiLWH": { + "uv": { + "uXX4": [0.5774, 2], + "0sOe": [0, 3], + "ZlND": [1.1548, 3] + }, + "vertices": ["ZlND", "0sOe", "uXX4"], + "texture": 0 + }, + "qGP3hNLj": { + "uv": { + "0viC": [0, 0], + "bbcG": [1.1548, 0], + "ZlND": [0, 6], + "0sOe": [1.1548, 6] + }, + "vertices": ["0sOe", "ZlND", "bbcG", "0viC"], + "texture": 0 + }, + "1B3EpcYx": { + "uv": { + "oTYm": [3.5774, 1], + "0viC": [4.1548, 0], + "bbcG": [3, 0] + }, + "vertices": ["bbcG", "0viC", "oTYm"], + "texture": 0 + }, + "6tckQVaJ": { + "uv": { + "uXX4": [1.1547, 2], + "EHEa": [0, 2], + "0sOe": [0.5773, 3] + }, + "vertices": ["0sOe", "EHEa", "uXX4"], + "texture": 0 + }, + "2WWrRUBm": { + "uv": { + "bbcG": [0, 0], + "Hf1h": [1.1548, 0], + "0sOe": [0, 6], + "EHEa": [1.1548, 6] + }, + "vertices": ["EHEa", "0sOe", "Hf1h", "bbcG"], + "texture": 0 + }, + "gSUoLh4J": { + "uv": { + "oTYm": [3.5774, 1], + "bbcG": [4.1548, 0], + "Hf1h": [3, 0] + }, + "vertices": ["Hf1h", "bbcG", "oTYm"], + "texture": 0 + }, + "Gd1XafzL": { + "uv": { + "uXX4": [0.5774, 3], + "qpo9": [1.1548, 2], + "EHEa": [0, 2] + }, + "vertices": ["EHEa", "qpo9", "uXX4"], + "texture": 0 + }, + "4eJ8kTWL": { + "uv": { + "Hf1h": [0, 0], + "AFOM": [1.1548, 0], + "EHEa": [0, 6], + "qpo9": [1.1548, 6] + }, + "vertices": ["qpo9", "EHEa", "AFOM", "Hf1h"], + "texture": 0 + }, + "EiJgXwpU": { + "uv": { + "oTYm": [3.5774, 1], + "Hf1h": [4.1548, 0], + "AFOM": [3, 0] + }, + "vertices": ["AFOM", "Hf1h", "oTYm"], + "texture": 0 + }, + "U1EMdNou": { + "uv": { + "uXX4": [0.5774, 3], + "xQ7R": [1.1548, 2], + "qpo9": [0, 2] + }, + "vertices": ["qpo9", "xQ7R", "uXX4"], + "texture": 0 + }, + "JaWe1p8r": { + "uv": { + "AFOM": [0, 0], + "KviP": [1.1548, 0], + "qpo9": [0, 6], + "xQ7R": [1.1548, 6] + }, + "vertices": ["xQ7R", "qpo9", "KviP", "AFOM"], + "texture": 0 + }, + "1NM4KFOU": { + "uv": { + "oTYm": [3.5774, 1], + "AFOM": [4.1548, 0], + "KviP": [3, 0] + }, + "vertices": ["KviP", "AFOM", "oTYm"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "c6ff2935-b98b-c9cc-3937-80110c67e83a" + }, + { + "name": "cube", + "color": 8, + "origin": [6.15, 14.7, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "pd2g": [0.99217, -0.3294, 1.1], + "mmL5": [0.99217, -0.3294, -1.15], + "rrJj": [1.30842, -3.15797, 1.1], + "s2jG": [1.30842, -3.15797, -1.15], + "SQdA": [-1.22158, 0.37774, 1.1], + "1I6t": [-1.22158, 0.23632, -1.15], + "x97M": [-1.22158, -3.15797, 1.1], + "6OCI": [-1.22158, -3.15797, -1.15], + "1mAv": [0.67592, -4.57226, 0.725], + "qLFu": [-1.22158, -4.57226, 0.725], + "l2mI": [0.67592, -4.57226, -0.775], + "0CGp": [-1.22158, -4.57226, -0.775], + "Az5f": [-1.22158, -1.74368, -1.9], + "cZ9p": [0.67592, -1.74368, -1.9], + "zqiK": [-1.22158, -3.15797, -1.9], + "iXLD": [0.67592, -3.15797, -1.9], + "kFKb": [0.99217, -0.3294, -0.5875], + "Jy9D": [1.30842, -3.15797, -0.5875], + "NjLO": [0.99217, -0.3294, -0.025], + "EamT": [1.30842, -3.15797, -0.025], + "4Uw8": [0.99217, -0.3294, 0.5375], + "E7H1": [1.30842, -3.15797, 0.5375], + "zNmF": [0.67592, -4.57226, -0.4], + "I94e": [0.67592, -4.57226, -0.025], + "lmne": [0.67592, -4.57226, 0.35], + "81Au": [-1.22158, -4.57226, -0.4], + "bkdC": [-1.22158, -4.57226, -0.025], + "GJFl": [-1.22158, -4.57226, 0.35], + "iA4U": [-1.22158, -3.15797, -0.5875], + "IVs2": [-1.22158, -3.15797, -0.025], + "wqYW": [-1.22158, -3.15797, 0.5375], + "UdID": [-1.22158, 0.27167, -0.5875], + "09B4": [-1.22158, 0.30703, -0.025], + "azok": [-1.22158, 0.34239, 0.5375] + }, + "faces": { + "FKjq113j": { + "uv": { + "pd2g": [3, 5], + "E7H1": [0, 4.5], + "4Uw8": [3, 4.5], + "rrJj": [0, 5] + }, + "vertices": ["rrJj", "4Uw8", "E7H1", "pd2g"], + "texture": 0 + }, + "jZ871epm": { + "uv": { + "x97M": [0, 3], + "azok": [3, 3.5], + "wqYW": [0, 3.5], + "SQdA": [3, 3] + }, + "vertices": ["SQdA", "wqYW", "azok", "x97M"], + "texture": 0 + }, + "uGJH28Iv": { + "uv": { + "SQdA": [0, 5], + "4Uw8": [0.375, 2], + "azok": [0.375, 5], + "pd2g": [0, 2] + }, + "vertices": ["pd2g", "azok", "4Uw8", "SQdA"], + "texture": 0 + }, + "1nFJZMx2": { + "uv": { + "1mAv": [1.5, 2], + "GJFl": [1.125, 5], + "lmne": [1.125, 2], + "qLFu": [1.5, 5] + }, + "vertices": ["qLFu", "lmne", "GJFl", "1mAv"], + "texture": 0 + }, + "OQgR4dER": { + "uv": { + "x97M": [0, 5], + "rrJj": [0, 3], + "SQdA": [1.5, 5], + "pd2g": [1.5, 3] + }, + "vertices": ["pd2g", "SQdA", "rrJj", "x97M"], + "texture": 0 + }, + "UN1JDrWQ": { + "uv": { + "iXLD": [0, 5], + "zqiK": [0, 3], + "cZ9p": [1.5, 5], + "Az5f": [1.5, 3] + }, + "vertices": ["Az5f", "cZ9p", "zqiK", "iXLD"], + "texture": 0 + }, + "XyxwRClU": { + "uv": { + "rrJj": [0, 2], + "lmne": [3, 2.25], + "E7H1": [0, 2.25], + "1mAv": [3, 2] + }, + "vertices": ["1mAv", "E7H1", "lmne", "rrJj"], + "texture": 0 + }, + "Ilz3SEts": { + "uv": { + "x97M": [0, 2], + "rrJj": [0, 3], + "1mAv": [1.5, 3], + "qLFu": [1.5, 2] + }, + "vertices": ["qLFu", "1mAv", "rrJj", "x97M"], + "texture": 0 + }, + "Cchw1LL2": { + "uv": { + "qLFu": [3, 3], + "wqYW": [0, 2.75], + "GJFl": [3, 2.75], + "x97M": [0, 3] + }, + "vertices": ["x97M", "GJFl", "wqYW", "qLFu"], + "texture": 0 + }, + "n2rwk4ci": { + "uv": { + "s2jG": [0, 3], + "6OCI": [0, 4], + "0CGp": [1.5, 4], + "l2mI": [1.5, 3] + }, + "vertices": ["l2mI", "0CGp", "6OCI", "s2jG"], + "texture": 0 + }, + "O5Z8kx5g": { + "uv": { + "1I6t": [2, 3], + "6OCI": [1, 3], + "zqiK": [1, 5], + "Az5f": [2, 5] + }, + "vertices": ["Az5f", "zqiK", "6OCI", "1I6t"], + "texture": 0 + }, + "4RYNouH5": { + "uv": { + "mmL5": [1.5, 3], + "1I6t": [1.5, 2], + "Az5f": [0, 2], + "cZ9p": [0, 3] + }, + "vertices": ["cZ9p", "Az5f", "1I6t", "mmL5"], + "texture": 0 + }, + "TW0YxAz3": { + "uv": { + "s2jG": [0, 5], + "mmL5": [1, 5], + "cZ9p": [1, 3], + "iXLD": [0, 3] + }, + "vertices": ["iXLD", "cZ9p", "mmL5", "s2jG"], + "texture": 0 + }, + "2zYxvLvJ": { + "uv": { + "6OCI": [0, 2], + "s2jG": [0, 3], + "iXLD": [1.5, 3], + "zqiK": [1.5, 2] + }, + "vertices": ["zqiK", "iXLD", "s2jG", "6OCI"], + "texture": 0 + }, + "BKf5NSMf": { + "uv": { + "s2jG": [0, 1], + "Jy9D": [0, 2], + "kFKb": [3, 2], + "mmL5": [3, 1] + }, + "vertices": ["mmL5", "kFKb", "Jy9D", "s2jG"], + "texture": 0 + }, + "JpNiYA3G": { + "uv": { + "Jy9D": [0, 3.5], + "EamT": [0, 4], + "NjLO": [3, 4], + "kFKb": [3, 3.5] + }, + "vertices": ["kFKb", "NjLO", "EamT", "Jy9D"], + "texture": 0 + }, + "GdpzZg9a": { + "uv": { + "EamT": [0, 2.33333], + "E7H1": [0, 2.5], + "4Uw8": [3, 2.5], + "NjLO": [3, 2.33333] + }, + "vertices": ["NjLO", "4Uw8", "E7H1", "EamT"], + "texture": 0 + }, + "TlsMHfmZ": { + "uv": { + "l2mI": [3, 1.33333], + "zNmF": [3, 1.25], + "Jy9D": [0, 1.25], + "s2jG": [0, 1.33333] + }, + "vertices": ["s2jG", "Jy9D", "zNmF", "l2mI"], + "texture": 0 + }, + "aqKhnRXQ": { + "uv": { + "zNmF": [3, 2.75], + "I94e": [3, 2.5], + "EamT": [0, 2.5], + "Jy9D": [0, 2.75] + }, + "vertices": ["Jy9D", "EamT", "I94e", "zNmF"], + "texture": 0 + }, + "63v75zR5": { + "uv": { + "I94e": [3, 1.16667], + "lmne": [3, 1.08333], + "E7H1": [0, 1.08333], + "EamT": [0, 1.16667] + }, + "vertices": ["EamT", "E7H1", "lmne", "I94e"], + "texture": 0 + }, + "EMdhJPKA": { + "uv": { + "0CGp": [0, 2], + "81Au": [0.375, 2], + "zNmF": [0.375, 1], + "l2mI": [0, 1] + }, + "vertices": ["l2mI", "zNmF", "81Au", "0CGp"], + "texture": 0 + }, + "mbMoevDt": { + "uv": { + "81Au": [0.375, 5], + "bkdC": [0.75, 5], + "I94e": [0.75, 2], + "zNmF": [0.375, 2] + }, + "vertices": ["zNmF", "I94e", "bkdC", "81Au"], + "texture": 0 + }, + "x0VSEKNp": { + "uv": { + "bkdC": [0.75, 2], + "GJFl": [1.125, 2], + "lmne": [1.125, 1], + "I94e": [0.75, 1] + }, + "vertices": ["I94e", "lmne", "GJFl", "bkdC"], + "texture": 0 + }, + "JxgfCy0i": { + "uv": { + "6OCI": [0, 1], + "iA4U": [0, 1.08333], + "81Au": [3, 1.08333], + "0CGp": [3, 1] + }, + "vertices": ["0CGp", "81Au", "iA4U", "6OCI"], + "texture": 0 + }, + "QyoKJJph": { + "uv": { + "iA4U": [0, 2.25], + "IVs2": [0, 2.5], + "bkdC": [3, 2.5], + "81Au": [3, 2.25] + }, + "vertices": ["81Au", "bkdC", "IVs2", "iA4U"], + "texture": 0 + }, + "Lk3hmryg": { + "uv": { + "IVs2": [0, 1.16667], + "wqYW": [0, 1.25], + "GJFl": [3, 1.25], + "bkdC": [3, 1.16667] + }, + "vertices": ["bkdC", "GJFl", "wqYW", "IVs2"], + "texture": 0 + }, + "pJI3WqXz": { + "uv": { + "1I6t": [3, 2.66667], + "UdID": [3, 2.5], + "iA4U": [0, 2.5], + "6OCI": [0, 2.66667] + }, + "vertices": ["6OCI", "iA4U", "UdID", "1I6t"], + "texture": 0 + }, + "h7pymN6Y": { + "uv": { + "UdID": [3, 4.5], + "09B4": [3, 4], + "IVs2": [0, 4], + "iA4U": [0, 4.5] + }, + "vertices": ["iA4U", "IVs2", "09B4", "UdID"], + "texture": 0 + }, + "bDYNAwsd": { + "uv": { + "09B4": [3, 2.33333], + "azok": [3, 2.16667], + "wqYW": [0, 2.16667], + "IVs2": [0, 2.33333] + }, + "vertices": ["IVs2", "wqYW", "azok", "09B4"], + "texture": 0 + }, + "q4OUrDWP": { + "uv": { + "mmL5": [1.5, 1], + "kFKb": [1.125, 1], + "UdID": [1.125, 2], + "1I6t": [1.5, 2] + }, + "vertices": ["1I6t", "UdID", "kFKb", "mmL5"], + "texture": 0 + }, + "tdhfravm": { + "uv": { + "kFKb": [1.125, 2], + "NjLO": [0.75, 2], + "09B4": [0.75, 5], + "UdID": [1.125, 5] + }, + "vertices": ["UdID", "09B4", "NjLO", "kFKb"], + "texture": 0 + }, + "aBr6k8lJ": { + "uv": { + "NjLO": [0.75, 1], + "4Uw8": [0.375, 1], + "azok": [0.375, 2], + "09B4": [0.75, 2] + }, + "vertices": ["09B4", "azok", "4Uw8", "NjLO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "11ea81eb-0e0f-83ea-387f-aaddcaea9ce1" + }, + { + "name": "cylinder", + "color": 2, + "origin": [0, 12, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "ITSp": [0, 3.5, 0.5], + "Nvu6": [3.3094, -2, 5], + "RrBX": [2.69066, 3.5, 3.7625], + "iPyJ": [6.6188, -2, 0.5], + "0Y79": [5.38131, 3.5, 0.5], + "eigQ": [3.3094, -2, -4], + "Xvb6": [2.69066, 3.5, -2.7625], + "5Dmg": [-3.3094, -2, -4], + "AtQi": [-2.69066, 3.5, -2.7625], + "eaBi": [-6.6188, -2, 0.5], + "2g3l": [-5.38131, 3.5, 0.5], + "ztoH": [-3.3094, -2, 5], + "sPHf": [-2.69066, 3.5, 3.7625], + "FbI5": [-2.48205, -2, -2.875], + "gG1t": [2.48205, -2, -2.875], + "cDOV": [4.9641, -2, 0.5], + "LmQd": [2.48205, -2, 3.875], + "vun5": [-2.48205, -2, 3.875], + "yR3f": [-4.9641, -2, 0.5], + "eaV1": [-2.48205, 1, -2.875], + "tN6F": [2.48205, 1, -2.875], + "klLY": [0, 1, 0.5], + "rCTa": [4.9641, 1, 0.5], + "pXeQ": [2.48205, 1, 3.875], + "8ZDb": [-2.48205, 1, 3.875], + "bcxb": [-4.9641, 1, 0.5] + }, + "faces": { + "bxrwCLzy": { + "uv": { + "klLY": [0, 54.00926], + "pXeQ": [5.8571, 47.48148], + "rCTa": [11.71399, 54.00926] + }, + "vertices": ["rCTa", "pXeQ", "klLY"], + "texture": 0 + }, + "V9FyZeSc": { + "uv": { + "RrBX": [1.52502, 31.98263], + "0Y79": [10.09378, 31.98263], + "iPyJ": [11.6188, 43.6246], + "Nvu6": [0, 43.6246] + }, + "vertices": ["Nvu6", "iPyJ", "0Y79", "RrBX"], + "texture": 0 + }, + "OQQuJfT4": { + "uv": { + "ITSp": [9.6188, 32], + "0Y79": [4.8094, 44], + "RrBX": [0, 32] + }, + "vertices": ["RrBX", "0Y79", "ITSp"], + "texture": 0 + }, + "SPlMr3Na": { + "uv": { + "klLY": [0, 44], + "rCTa": [11.71399, 44], + "tN6F": [5.8571, 50.52778] + }, + "vertices": ["tN6F", "rCTa", "klLY"], + "texture": 0 + }, + "0ruZX02Z": { + "uv": { + "0Y79": [1.52502, 31.98263], + "Xvb6": [10.09378, 31.98263], + "eigQ": [11.6188, 43.6246], + "iPyJ": [0, 43.6246] + }, + "vertices": ["iPyJ", "eigQ", "Xvb6", "0Y79"], + "texture": 0 + }, + "ulXhCvEk": { + "uv": { + "ITSp": [4.8094, 32], + "Xvb6": [9.6188, 44], + "0Y79": [0, 44] + }, + "vertices": ["0Y79", "Xvb6", "ITSp"], + "texture": 0 + }, + "DU8KihLn": { + "uv": { + "klLY": [5.8571, 49.22222], + "tN6F": [11.7142, 55.75], + "eaV1": [0, 55.75] + }, + "vertices": ["eaV1", "tN6F", "klLY"], + "texture": 0 + }, + "XWzjVFrf": { + "uv": { + "Xvb6": [1.52502, 31.98263], + "AtQi": [10.09378, 31.98263], + "5Dmg": [11.6188, 43.6246], + "eigQ": [0, 43.6246] + }, + "vertices": ["eigQ", "5Dmg", "AtQi", "Xvb6"], + "texture": 0 + }, + "w9jFffcg": { + "uv": { + "ITSp": [0, 32], + "AtQi": [9.6188, 32], + "Xvb6": [4.8094, 44] + }, + "vertices": ["Xvb6", "AtQi", "ITSp"], + "texture": 0 + }, + "K2cLYEBb": { + "uv": { + "klLY": [11.71399, 44], + "eaV1": [5.85689, 50.52778], + "bcxb": [0, 44] + }, + "vertices": ["bcxb", "eaV1", "klLY"], + "texture": 0 + }, + "kG34slMj": { + "uv": { + "AtQi": [1.52502, 31.98263], + "2g3l": [10.09378, 31.98263], + "eaBi": [11.6188, 43.6246], + "5Dmg": [0, 43.6246] + }, + "vertices": ["5Dmg", "eaBi", "2g3l", "AtQi"], + "texture": 0 + }, + "8ihFMEJy": { + "uv": { + "ITSp": [0, 44], + "2g3l": [4.8094, 32], + "AtQi": [9.6188, 44] + }, + "vertices": ["AtQi", "2g3l", "ITSp"], + "texture": 0 + }, + "UjD7vhy7": { + "uv": { + "klLY": [11.71399, 54.00926], + "bcxb": [0, 54.00926], + "8ZDb": [5.85689, 47.48148] + }, + "vertices": ["8ZDb", "bcxb", "klLY"], + "texture": 0 + }, + "SDLqZtLt": { + "uv": { + "2g3l": [1.52502, 31.98263], + "sPHf": [10.09378, 31.98263], + "ztoH": [11.6188, 43.6246], + "eaBi": [0, 43.6246] + }, + "vertices": ["eaBi", "ztoH", "sPHf", "2g3l"], + "texture": 0 + }, + "EdMUBDM6": { + "uv": { + "ITSp": [4.8094, 44], + "sPHf": [0, 32], + "2g3l": [9.6188, 32] + }, + "vertices": ["2g3l", "sPHf", "ITSp"], + "texture": 0 + }, + "cMbGsGyo": { + "uv": { + "klLY": [5.8571, 50.52778], + "8ZDb": [0, 44], + "pXeQ": [11.7142, 44] + }, + "vertices": ["pXeQ", "8ZDb", "klLY"], + "texture": 0 + }, + "jFTliP3X": { + "uv": { + "sPHf": [1.52502, 31.98263], + "RrBX": [10.09378, 31.98263], + "Nvu6": [11.6188, 43.6246], + "ztoH": [0, 43.6246] + }, + "vertices": ["ztoH", "Nvu6", "RrBX", "sPHf"], + "texture": 0 + }, + "bxf4msRu": { + "uv": { + "ITSp": [9.6188, 44], + "RrBX": [0, 44], + "sPHf": [4.8094, 32] + }, + "vertices": ["sPHf", "RrBX", "ITSp"], + "texture": 0 + }, + "sxvMJH49": { + "uv": { + "eigQ": [7.6188, 39.25], + "5Dmg": [0, 39.25], + "FbI5": [0.9523, 38], + "gG1t": [6.6665, 38] + }, + "vertices": ["gG1t", "FbI5", "5Dmg", "eigQ"], + "texture": 0 + }, + "eqZO2G0m": { + "uv": { + "iPyJ": [6.28582, 39.51509], + "eigQ": [0, 39.51503], + "gG1t": [0.41719, 38], + "cDOV": [5.13153, 38] + }, + "vertices": ["cDOV", "gG1t", "eigQ", "iPyJ"], + "texture": 0 + }, + "WzKqxyO5": { + "uv": { + "Nvu6": [6.51503, 41], + "iPyJ": [6.51509, 47.28582], + "cDOV": [5, 46.13153], + "LmQd": [5, 41.41719] + }, + "vertices": ["LmQd", "cDOV", "iPyJ", "Nvu6"], + "texture": 0 + }, + "dxcKcdd6": { + "uv": { + "ztoH": [3, 37], + "Nvu6": [10.6188, 37], + "LmQd": [9.6665, 38.25], + "vun5": [3.9523, 38.25] + }, + "vertices": ["vun5", "LmQd", "Nvu6", "ztoH"], + "texture": 0 + }, + "WVrgpPxW": { + "uv": { + "eaBi": [4, 37], + "ztoH": [10.28582, 37.00005], + "vun5": [9.86863, 38.51509], + "yR3f": [5.15429, 38.51509] + }, + "vertices": ["yR3f", "vun5", "ztoH", "eaBi"], + "texture": 0 + }, + "QseuJ9JX": { + "uv": { + "5Dmg": [4.00005, 34.28582], + "eaBi": [4, 28], + "yR3f": [5.51509, 29.15429], + "FbI5": [5.51509, 33.86863] + }, + "vertices": ["FbI5", "yR3f", "eaBi", "5Dmg"], + "texture": 0 + }, + "aqWuqrqN": { + "uv": { + "gG1t": [0, 53], + "FbI5": [11.7141, 53], + "eaV1": [11.7141, 56], + "tN6F": [0, 56] + }, + "vertices": ["tN6F", "eaV1", "FbI5", "gG1t"], + "texture": 0 + }, + "yTBPAKrY": { + "uv": { + "cDOV": [2.05, 47], + "gG1t": [11.7143, 47], + "tN6F": [11.7143, 50], + "rCTa": [2.05, 50] + }, + "vertices": ["rCTa", "tN6F", "gG1t", "cDOV"], + "texture": 0 + }, + "rer2pNQY": { + "uv": { + "LmQd": [2.05, 50], + "cDOV": [11.7143, 50], + "rCTa": [11.7143, 53], + "pXeQ": [2.05, 53] + }, + "vertices": ["pXeQ", "rCTa", "cDOV", "LmQd"], + "texture": 0 + }, + "Hl4STh0d": { + "uv": { + "vun5": [0, 44], + "LmQd": [11.7141, 44], + "pXeQ": [11.7141, 47], + "8ZDb": [0, 47] + }, + "vertices": ["8ZDb", "pXeQ", "LmQd", "vun5"], + "texture": 0 + }, + "K2K6NWmV": { + "uv": { + "yR3f": [0, 50], + "vun5": [9.6643, 50], + "8ZDb": [9.6643, 53], + "bcxb": [0, 53] + }, + "vertices": ["bcxb", "8ZDb", "vun5", "yR3f"], + "texture": 0 + }, + "AaGZZNOw": { + "uv": { + "FbI5": [0, 47], + "yR3f": [9.6643, 47], + "bcxb": [9.6643, 50], + "eaV1": [0, 50] + }, + "vertices": ["eaV1", "bcxb", "yR3f", "FbI5"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "46e46f49-fca6-eb7f-d115-7473d8719233" + }, + { + "name": "neutral", + "color": 8, + "origin": [0, 27.75, -4.1], + "rotation": [2.5, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "zyRr": [4.10492, 2.7, -0.0201], + "ooTR": [4.10492, 0.5, -0.0201], + "73OG": [-4.06506, 2.7, -0.02013], + "HXoH": [-4.06506, 0.5, -0.02013], + "fJPg": [-0.07242, 0.5, -0.76488], + "ujQW": [-0.07242, 2.7, -0.76488] + }, + "faces": { + "ygbaDk3h": { + "uv": { + "HXoH": [27.7, 18.1], + "ujQW": [13.7, 12.1], + "fJPg": [13.7, 18.1], + "73OG": [27.7, 12.1] + }, + "vertices": ["73OG", "fJPg", "ujQW", "HXoH"], + "texture": 0 + }, + "QOPlDywE": { + "uv": { + "zyRr": [27.7, 12.1], + "ujQW": [13.7, 12.1], + "fJPg": [13.7, 18.1], + "ooTR": [27.7, 18.1] + }, + "vertices": ["ooTR", "fJPg", "ujQW", "zyRr"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "8dee770f-2330-9d98-92fa-7c0c3210c4fd" + }, + { + "name": "circle", + "color": 8, + "origin": [-1.4, 29.3, -4.3], + "rotation": [-90, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "QlBo": [-0.54435, -0.00243, 0.25043], + "FP9N": [-1.32807, -0.13252, 1.72337], + "lUGq": [-2.19315, -0.19793, 0.18435], + "ro66": [-1.40899, -0.13901, -1.1681], + "Usga": [0.23938, 0.12766, -1.22251], + "GyQD": [1.10402, 0.26425, 0.19602], + "sKKe": [0.32029, 0.13416, 1.66896], + "gp6k": [4.13013, -0.13338, 1.72352], + "vTgM": [4.21104, -0.13988, -1.16795], + "IXDG": [2.56266, 0.12679, -1.22236], + "82YR": [1.69802, 0.26338, 0.19617], + "p7xK": [2.48175, 0.13329, 1.66911], + "1CcK": [0.92358, 0.18131, 0.58363], + "zLaG": [1.87847, 0.18044, 0.5838], + "BVQ2": [-1.87797, -0.13378, 0.95807], + "hOxT": [-1.63483, -3.15248, 0.85898], + "DUmR": [-1.91752, -3.16571, 0.18616], + "ijmy": [4.43483, -3.11461, 0.9051], + "B9AS": [4.71752, -3.17205, 0.2333], + "mmJQ": [3.34639, -0.00329, 0.25058], + "49hN": [4.99499, -0.22481, 0.28533], + "qMSp": [4.62124, -0.18585, 1.02693] + }, + "faces": { + "MOKUwzxs": { + "uv": { + "QlBo": [26.1547, 3], + "lUGq": [25, 9], + "ro66": [27.3094, 9] + }, + "vertices": ["ro66", "lUGq", "QlBo"], + "texture": 0 + }, + "51YiqX10": { + "uv": { + "lUGq": [30.0855, 10.1107], + "BVQ2": [28.29597, 8], + "hOxT": [23, 8], + "DUmR": [24.78953, 10.1107] + }, + "vertices": ["DUmR", "hOxT", "BVQ2", "lUGq"], + "texture": 0 + }, + "2pIUB8ES": { + "uv": { + "QlBo": [26.1547, 3], + "ro66": [25, 9], + "Usga": [27.3094, 9] + }, + "vertices": ["Usga", "ro66", "QlBo"], + "texture": 0 + }, + "ZK7NKOeF": { + "uv": { + "QlBo": [26.1547, 3], + "Usga": [25, 9], + "GyQD": [27.3094, 9] + }, + "vertices": ["GyQD", "Usga", "QlBo"], + "texture": 0 + }, + "wR8umpUu": { + "uv": { + "QlBo": [26.1547, 5.3], + "sKKe": [25, 0.3], + "FP9N": [27.3094, 0.3] + }, + "vertices": ["FP9N", "sKKe", "QlBo"], + "texture": 0 + }, + "H6VP4Ksv": { + "uv": { + "mmJQ": [26.1547, 3], + "IXDG": [27.3094, 9], + "vTgM": [25, 9] + }, + "vertices": ["vTgM", "IXDG", "mmJQ"], + "texture": 0 + }, + "wJyfxrMY": { + "uv": { + "GyQD": [25.1547, 0.3], + "QlBo": [27, 5.3], + "1CcK": [25, 0.3], + "sKKe": [27.3094, 0.3] + }, + "vertices": ["sKKe", "1CcK", "QlBo", "GyQD"], + "texture": 0 + }, + "DIF8u6Nx": { + "uv": { + "p7xK": [25, 0.3], + "mmJQ": [27.5, 5.3], + "zLaG": [25, 0.3], + "82YR": [27.5, 0.3] + }, + "vertices": ["82YR", "zLaG", "mmJQ", "p7xK"], + "texture": 0 + }, + "Y3MIAtYU": { + "uv": { + "49hN": [30.0855, 10.1107], + "qMSp": [28.29597, 8], + "B9AS": [24.78953, 10.1107], + "ijmy": [23, 8] + }, + "vertices": ["ijmy", "B9AS", "qMSp", "49hN"], + "texture": 0 + }, + "m5Ei64ON": { + "uv": { + "lUGq": [25, 0.3], + "QlBo": [27.5, 5.3], + "FP9N": [27.5, 0.3], + "BVQ2": [25, 0.3] + }, + "vertices": ["BVQ2", "FP9N", "QlBo", "lUGq"], + "texture": 0 + }, + "JXbA3fJc": { + "uv": { + "mmJQ": [26.1547, 3], + "82YR": [27.3094, 9], + "IXDG": [25, 9] + }, + "vertices": ["IXDG", "82YR", "mmJQ"], + "texture": 0 + }, + "tMb37bkc": { + "uv": { + "1CcK": [22, 8.3337], + "GyQD": [22.52825, 8], + "82YR": [23.03255, 8], + "zLaG": [23.5608, 8.3337] + }, + "vertices": ["zLaG", "82YR", "GyQD", "1CcK"], + "texture": 0 + }, + "6XGDzFgh": { + "uv": { + "mmJQ": [26.1547, 3], + "vTgM": [27.3094, 9], + "49hN": [25, 9] + }, + "vertices": ["49hN", "vTgM", "mmJQ"], + "texture": 0 + }, + "ZQX1Mu9J": { + "uv": { + "mmJQ": [27.5, 5.3], + "gp6k": [25, 0.3], + "p7xK": [27.5, 0.3] + }, + "vertices": ["p7xK", "gp6k", "mmJQ"], + "texture": 0 + }, + "57qo5ODz": { + "uv": { + "49hN": [25, 0.3], + "mmJQ": [27.5, 5.3], + "qMSp": [25, 0.3], + "gp6k": [27.5, 0.3] + }, + "vertices": ["gp6k", "qMSp", "mmJQ", "49hN"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "f2ee2225-6cf0-0d4a-cde5-856d38b66daa" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-5.55, 20.35, 0], + "rotation": [0, 0, -10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [0.52276, -6.4525, 0.15], + "hwjg": [-0.50335, -5.59397, 2.275], + "ZISf": [-0.85754, 2.40417, 1.74375], + "ryg1": [-1.52947, -5.59397, 0.15], + "Jq92": [-1.47021, 2.40417, 0.15], + "rilX": [-0.50335, -5.59397, -1.975], + "iCDk": [-0.85754, 2.40417, -1.44375], + "v1hz": [1.54888, -5.59397, -1.975], + "UN0m": [1.13543, 2.99147, -1.44375], + "92Ln": [2.575, -5.59397, 0.15], + "uZrh": [1.74811, 2.99147, 0.15], + "bftR": [1.54888, -5.59397, 2.275], + "ORyy": [1.13543, 2.99147, 1.74375], + "9zIy": [0.52276, 3.85, 0.15], + "zVQ5": [-0.08989, 3.85, 0.15], + "Lrul": [0.21642, 3.85, 0.9469], + "Sltx": [0.82911, 3.85, 0.9469], + "l955": [1.13546, 3.85, 0.15], + "ovht": [0.82911, 3.85, -0.6469], + "12zS": [0.21642, 3.85, -0.6469], + "jS6F": [0.11433, -6.4525, 1.21247], + "IKHl": [-0.29415, -6.4525, 0.15], + "srzj": [0.1143, -6.4525, -0.91253], + "TZsM": [0.93123, -6.4525, -0.91253], + "n74E": [1.33968, -6.4525, 0.15], + "AgKl": [0.93123, -6.4525, 1.21253] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [3.3516, 26.1565], + "IKHl": [1.4433, 27.4375], + "jS6F": [2.5815, 27.4375], + "ryg1": [1, 26] + }, + "vertices": ["ryg1", "jS6F", "IKHl", "hwjg"], + "texture": 0 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [8.00293, 25.70159], + "Jq92": [7.99834, 24], + "hwjg": [0.00761, 26.35979], + "ryg1": [0, 24] + }, + "vertices": ["ryg1", "hwjg", "Jq92", "ZISf"], + "texture": 0 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1, 24.9366], + "Lrul": [2.349, 23], + "zVQ5": [1.4953, 23], + "ZISf": [2.7075, 24.9366] + }, + "vertices": ["ZISf", "zVQ5", "Lrul", "Jq92"], + "texture": 0 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [2.3517, 24], + "srzj": [0.7701, 25.4317], + "IKHl": [1.9085, 25.4317], + "rilX": [0, 24.1455] + }, + "vertices": ["rilX", "IKHl", "srzj", "ryg1"], + "texture": 0 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.334, 22.0015], + "iCDk": [0.6324, 22], + "ryg1": [2.3597, 29.9986], + "rilX": [0, 29.9986] + }, + "vertices": ["rilX", "ryg1", "iCDk", "Jq92"], + "texture": 0 + }, + "telwhUl5": { + "uv": { + "iCDk": [1, 27.9366], + "zVQ5": [2.2123, 26], + "12zS": [1.3585, 26], + "Jq92": [2.7075, 27.9366] + }, + "vertices": ["Jq92", "12zS", "zVQ5", "iCDk"], + "texture": 0 + }, + "Y0oRikhE": { + "uv": { + "rilX": [2.0522, 28], + "TZsM": [0.6177, 29.366], + "srzj": [1.4346, 29.366], + "v1hz": [0, 28] + }, + "vertices": ["v1hz", "srzj", "TZsM", "rilX"], + "texture": 0 + }, + "M1vklvUl": { + "uv": { + "iCDk": [8.122, 27.01875], + "UN0m": [8.61183, 25], + "rilX": [0.09854, 27.04983], + "v1hz": [0, 25] + }, + "vertices": ["v1hz", "rilX", "UN0m", "iCDk"], + "texture": 0 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1, 23.1366], + "12zS": [1.919, 22], + "ovht": [1.3063, 22], + "iCDk": [2.9929, 23.6509] + }, + "vertices": ["iCDk", "ovht", "12zS", "UN0m"], + "texture": 0 + }, + "L0SUV83I": { + "uv": { + "v1hz": [2.3517, 23.1566], + "n74E": [0.4433, 24.4376], + "TZsM": [1.5816, 24.4376], + "92Ln": [0, 23] + }, + "vertices": ["92Ln", "TZsM", "n74E", "v1hz"], + "texture": 0 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.0612, 21.0122], + "uZrh": [0.3596, 21], + "v1hz": [2.3598, 29.6177], + "92Ln": [0, 29.6177] + }, + "vertices": ["92Ln", "v1hz", "uZrh", "UN0m"], + "texture": 0 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0, 27.0316], + "ovht": [1.0736, 26], + "l955": [0.2199, 26], + "UN0m": [1.7075, 27.0316] + }, + "vertices": ["UN0m", "l955", "ovht", "uZrh"], + "texture": 0 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [2.3516, 26], + "AgKl": [0.7701, 27.4316], + "n74E": [1.9084, 27.4316], + "bftR": [0, 26.1454] + }, + "vertices": ["bftR", "n74E", "AgKl", "92Ln"], + "texture": 0 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.0002, 21], + "ORyy": [0.2986, 21.0099], + "92Ln": [2.3597, 29.6165], + "bftR": [0, 29.6165] + }, + "vertices": ["bftR", "92Ln", "ORyy", "uZrh"], + "texture": 0 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0, 24.0316], + "l955": [1.4876, 23], + "Sltx": [0.6339, 23], + "uZrh": [1.7075, 24.0316] + }, + "vertices": ["uZrh", "Sltx", "l955", "ORyy"], + "texture": 0 + }, + "Ahdauex4": { + "uv": { + "bftR": [2.0522, 22.0001], + "jS6F": [0.6176, 23.3661], + "AgKl": [1.4345, 23.3661], + "hwjg": [0, 22] + }, + "vertices": ["hwjg", "AgKl", "jS6F", "bftR"], + "texture": 0 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.01682, 21], + "ZISf": [0, 21.49748], + "bftR": [2.0503, 29.61157], + "hwjg": [0, 29.52099] + }, + "vertices": ["hwjg", "bftR", "ZISf", "ORyy"], + "texture": 0 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [0, 29.6018], + "Sltx": [1.6866, 28], + "Lrul": [1.0739, 28], + "ORyy": [1.9929, 29.1714] + }, + "vertices": ["ORyy", "Lrul", "Sltx", "ZISf"], + "texture": 0 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 22.7969], + "zVQ5": [0, 22], + "9zIy": [0.6127, 22] + }, + "vertices": ["9zIy", "zVQ5", "Lrul"], + "texture": 0 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 23.7969], + "Lrul": [1, 23.7969], + "9zIy": [1.3064, 23] + }, + "vertices": ["9zIy", "Lrul", "Sltx"], + "texture": 0 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 22], + "Sltx": [2.3063, 22.7969], + "9zIy": [2, 22] + }, + "vertices": ["9zIy", "Sltx", "l955"], + "texture": 0 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 28], + "l955": [2.6127, 28.7969], + "9zIy": [2, 28.7969] + }, + "vertices": ["9zIy", "l955", "ovht"], + "texture": 0 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 27], + "ovht": [1.6127, 27], + "9zIy": [1.3064, 27.7969] + }, + "vertices": ["9zIy", "ovht", "12zS"], + "texture": 0 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 28.7969], + "12zS": [0.3063, 28], + "9zIy": [0.6127, 28.7969] + }, + "vertices": ["9zIy", "12zS", "zVQ5"], + "texture": 0 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 30.0625], + "jS6F": [1.4084, 29], + "4WRs": [1.8169, 30.0625] + }, + "vertices": ["4WRs", "jS6F", "IKHl"], + "texture": 0 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 23.0625], + "IKHl": [1, 22], + "4WRs": [1.8169, 22] + }, + "vertices": ["4WRs", "IKHl", "srzj"], + "texture": 0 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 24.0625], + "srzj": [1, 24.0625], + "4WRs": [1.4085, 23] + }, + "vertices": ["4WRs", "srzj", "TZsM"], + "texture": 0 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 22], + "TZsM": [2.4084, 23.0625], + "4WRs": [2, 22] + }, + "vertices": ["4WRs", "TZsM", "n74E"], + "texture": 0 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 29], + "n74E": [2.8169, 30.0625], + "4WRs": [2, 30.0625] + }, + "vertices": ["4WRs", "n74E", "AgKl"], + "texture": 0 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 27], + "AgKl": [1.8169, 27], + "4WRs": [1.4085, 28.0625] + }, + "vertices": ["4WRs", "AgKl", "jS6F"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "b4aa1095-c834-139c-8b5f-93abfd983a84" + }, + { + "name": "cylinder", + "color": 8, + "origin": [5.55, 20.35, 0], + "rotation": [0, 0, 10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [-0.52276, -6.4525, 0.15], + "hwjg": [0.50335, -5.59397, 2.275], + "ZISf": [0.85754, 2.40417, 1.74375], + "ryg1": [1.52947, -5.59397, 0.15], + "Jq92": [1.47021, 2.40417, 0.15], + "rilX": [0.50335, -5.59397, -1.975], + "iCDk": [0.85754, 2.40417, -1.44375], + "v1hz": [-1.54888, -5.59397, -1.975], + "UN0m": [-1.13543, 2.99147, -1.44375], + "92Ln": [-2.575, -5.59397, 0.15], + "uZrh": [-1.74811, 2.99147, 0.15], + "bftR": [-1.54888, -5.59397, 2.275], + "ORyy": [-1.13543, 2.99147, 1.74375], + "9zIy": [-0.52276, 3.85, 0.15], + "zVQ5": [0.08989, 3.85, 0.15], + "Lrul": [-0.21642, 3.85, 0.9469], + "Sltx": [-0.82911, 3.85, 0.9469], + "l955": [-1.13546, 3.85, 0.15], + "ovht": [-0.82911, 3.85, -0.6469], + "12zS": [-0.21642, 3.85, -0.6469], + "jS6F": [-0.11433, -6.4525, 1.21247], + "IKHl": [0.29415, -6.4525, 0.15], + "srzj": [-0.1143, -6.4525, -0.91253], + "TZsM": [-0.93123, -6.4525, -0.91253], + "n74E": [-1.33968, -6.4525, 0.15], + "AgKl": [-0.93123, -6.4525, 1.21253] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [2.5815, 27.4375], + "IKHl": [1, 26], + "ryg1": [1.4433, 27.4375], + "jS6F": [3.3516, 26.1565] + }, + "vertices": ["jS6F", "ryg1", "IKHl", "hwjg"], + "texture": 0 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [0.00761, 26.35979], + "Jq92": [0, 24], + "ryg1": [7.99834, 24], + "hwjg": [8.00293, 25.70159] + }, + "vertices": ["hwjg", "ryg1", "Jq92", "ZISf"], + "texture": 0 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1.4953, 23], + "Lrul": [2.7075, 24.9366], + "ZISf": [2.349, 23], + "zVQ5": [1, 24.9366] + }, + "vertices": ["zVQ5", "ZISf", "Lrul", "Jq92"], + "texture": 0 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [1.9085, 25.4317], + "srzj": [0, 24.1455], + "rilX": [0.7701, 25.4317], + "IKHl": [2.3517, 24] + }, + "vertices": ["IKHl", "rilX", "srzj", "ryg1"], + "texture": 0 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.3597, 29.9986], + "iCDk": [0, 29.9986], + "rilX": [0.6324, 22], + "ryg1": [2.334, 22.0015] + }, + "vertices": ["ryg1", "rilX", "iCDk", "Jq92"], + "texture": 0 + }, + "telwhUl5": { + "uv": { + "iCDk": [1.3585, 26], + "zVQ5": [2.7075, 27.9366], + "Jq92": [2.2123, 26], + "12zS": [1, 27.9366] + }, + "vertices": ["12zS", "Jq92", "zVQ5", "iCDk"], + "texture": 0 + }, + "Y0oRikhE": { + "uv": { + "rilX": [1.4346, 29.366], + "TZsM": [0, 28], + "v1hz": [0.6177, 29.366], + "srzj": [2.0522, 28] + }, + "vertices": ["srzj", "v1hz", "TZsM", "rilX"], + "texture": 0 + }, + "M1vklvUl": { + "uv": { + "iCDk": [0.09854, 27.04983], + "UN0m": [0, 25], + "v1hz": [8.61183, 25], + "rilX": [8.122, 27.01875] + }, + "vertices": ["rilX", "v1hz", "UN0m", "iCDk"], + "texture": 0 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1.3063, 22], + "12zS": [2.9929, 23.6509], + "iCDk": [1.919, 22], + "ovht": [1, 23.1366] + }, + "vertices": ["ovht", "iCDk", "12zS", "UN0m"], + "texture": 0 + }, + "L0SUV83I": { + "uv": { + "v1hz": [1.5816, 24.4376], + "n74E": [0, 23], + "92Ln": [0.4433, 24.4376], + "TZsM": [2.3517, 23.1566] + }, + "vertices": ["TZsM", "92Ln", "n74E", "v1hz"], + "texture": 0 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.3598, 29.6177], + "uZrh": [0, 29.6177], + "92Ln": [0.3596, 21], + "v1hz": [2.0612, 21.0122] + }, + "vertices": ["v1hz", "92Ln", "uZrh", "UN0m"], + "texture": 0 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0.2199, 26], + "ovht": [1.7075, 27.0316], + "UN0m": [1.0736, 26], + "l955": [0, 27.0316] + }, + "vertices": ["l955", "UN0m", "ovht", "uZrh"], + "texture": 0 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [1.9084, 27.4316], + "AgKl": [0, 26.1454], + "bftR": [0.7701, 27.4316], + "n74E": [2.3516, 26] + }, + "vertices": ["n74E", "bftR", "AgKl", "92Ln"], + "texture": 0 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.3597, 29.6165], + "ORyy": [0, 29.6165], + "bftR": [0.2986, 21.0099], + "92Ln": [2.0002, 21] + }, + "vertices": ["92Ln", "bftR", "ORyy", "uZrh"], + "texture": 0 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0.6339, 23], + "l955": [1.7075, 24.0316], + "uZrh": [1.4876, 23], + "Sltx": [0, 24.0316] + }, + "vertices": ["Sltx", "uZrh", "l955", "ORyy"], + "texture": 0 + }, + "Ahdauex4": { + "uv": { + "bftR": [1.4345, 23.3661], + "jS6F": [0, 22], + "hwjg": [0.6176, 23.3661], + "AgKl": [2.0522, 22.0001] + }, + "vertices": ["AgKl", "hwjg", "jS6F", "bftR"], + "texture": 0 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.0503, 29.61157], + "ZISf": [0, 29.52099], + "hwjg": [0, 21.49748], + "bftR": [2.01682, 21] + }, + "vertices": ["bftR", "hwjg", "ZISf", "ORyy"], + "texture": 0 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [1.0739, 28], + "Sltx": [1.9929, 29.1714], + "ORyy": [1.6866, 28], + "Lrul": [0, 29.6018] + }, + "vertices": ["Lrul", "ORyy", "Sltx", "ZISf"], + "texture": 0 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 22.7969], + "9zIy": [0, 22], + "zVQ5": [0.6127, 22] + }, + "vertices": ["zVQ5", "9zIy", "Lrul"], + "texture": 0 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 23.7969], + "9zIy": [1, 23.7969], + "Lrul": [1.3064, 23] + }, + "vertices": ["Lrul", "9zIy", "Sltx"], + "texture": 0 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 22], + "9zIy": [2.3063, 22.7969], + "Sltx": [2, 22] + }, + "vertices": ["Sltx", "9zIy", "l955"], + "texture": 0 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 28], + "9zIy": [2.6127, 28.7969], + "l955": [2, 28.7969] + }, + "vertices": ["l955", "9zIy", "ovht"], + "texture": 0 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 27], + "9zIy": [1.6127, 27], + "ovht": [1.3064, 27.7969] + }, + "vertices": ["ovht", "9zIy", "12zS"], + "texture": 0 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 28.7969], + "9zIy": [0.3063, 28], + "12zS": [0.6127, 28.7969] + }, + "vertices": ["12zS", "9zIy", "zVQ5"], + "texture": 0 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 30.0625], + "4WRs": [1.4084, 29], + "jS6F": [1.8169, 30.0625] + }, + "vertices": ["jS6F", "4WRs", "IKHl"], + "texture": 0 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 23.0625], + "4WRs": [1, 22], + "IKHl": [1.8169, 22] + }, + "vertices": ["IKHl", "4WRs", "srzj"], + "texture": 0 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 24.0625], + "4WRs": [1, 24.0625], + "srzj": [1.4085, 23] + }, + "vertices": ["srzj", "4WRs", "TZsM"], + "texture": 0 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 22], + "4WRs": [2.4084, 23.0625], + "TZsM": [2, 22] + }, + "vertices": ["TZsM", "4WRs", "n74E"], + "texture": 0 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 29], + "4WRs": [2.8169, 30.0625], + "n74E": [2, 30.0625] + }, + "vertices": ["n74E", "4WRs", "AgKl"], + "texture": 0 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 27], + "4WRs": [1.8169, 27], + "AgKl": [1.4085, 28.0625] + }, + "vertices": ["AgKl", "4WRs", "jS6F"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "5b436543-2419-e70e-86f7-2277ab9225f9" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.48481, 5.64286, -0.17365], + "rotation": [1.72795, 0.14886, -0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [0.00233, -4.6424, 0.53015], + "769S": [0, 5.35714, 0.5], + "Ngnq": [1.29338, -3.64286, 2.9], + "86iU": [1.10243, 3.42858, 3.5], + "Orqk": [2.58675, -3.64286, 0.5], + "2WPs": [2.20486, 3.42858, 0.5], + "sf20": [1.29338, -3.64286, -1.9], + "JpAB": [1.10243, 3.42858, -2.5], + "uSt3": [-1.29338, -3.64286, -1.9], + "LEG0": [-1.10243, 3.42858, -2.5], + "H1ru": [-2.58675, -3.64286, 0.5], + "GPdT": [-2.20486, 3.42858, 0.5], + "HLm2": [-1.29338, -3.64286, 2.9], + "Ba1X": [-1.10243, 3.42858, 3.5] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 50.4], + "Ngnq": [3.37555, 48], + "Orqk": [5.3696, 50.4] + }, + "vertices": ["Orqk", "Ngnq", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 44.0163], + "2WPs": [5.80906, 44], + "Orqk": [6.11257, 55.006], + "Ngnq": [2.24355, 55.006] + }, + "vertices": ["Ngnq", "Orqk", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 45], + "2WPs": [4.47951, 48.766], + "86iU": [0, 48.766] + }, + "vertices": ["86iU", "2WPs", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 47], + "Orqk": [5.3696, 47], + "sf20": [3.37555, 49.4] + }, + "vertices": ["sf20", "Orqk", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 44.0057], + "JpAB": [6.11257, 44], + "sf20": [5.25052, 55.0008], + "Orqk": [1.3815, 55.0008] + }, + "vertices": ["Orqk", "sf20", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 48], + "JpAB": [5.86086, 51.766], + "2WPs": [1.3815, 51.766] + }, + "vertices": ["2WPs", "JpAB", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 49], + "sf20": [5.3696, 51.4], + "uSt3": [1.3815, 51.4] + }, + "vertices": ["uSt3", "sf20", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 44], + "LEG0": [5.07521, 44], + "uSt3": [5.3696, 55.0163], + "sf20": [1.3815, 55.0163] + }, + "vertices": ["sf20", "uSt3", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 45], + "LEG0": [4.78081, 49.2426], + "JpAB": [1.3815, 49.2426] + }, + "vertices": ["JpAB", "LEG0", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 47], + "uSt3": [3.37541, 49.4], + "H1ru": [1.3815, 47] + }, + "vertices": ["H1ru", "uSt3", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 44.0163], + "GPdT": [4.42756, 44], + "H1ru": [4.73108, 55.006], + "uSt3": [0.86205, 55.006] + }, + "vertices": ["uSt3", "H1ru", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 48], + "GPdT": [4.47937, 51.766], + "LEG0": [0, 51.766] + }, + "vertices": ["LEG0", "GPdT", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 50.4], + "H1ru": [1.3815, 50.4], + "HLm2": [3.37541, 48] + }, + "vertices": ["HLm2", "H1ru", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 44.0057], + "Ba1X": [6.11257, 44], + "HLm2": [5.25052, 55.0007], + "H1ru": [1.3815, 55.0007] + }, + "vertices": ["H1ru", "HLm2", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 45], + "Ba1X": [7.2425, 48.766], + "GPdT": [2.76299, 48.766] + }, + "vertices": ["GPdT", "Ba1X", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 49.4], + "HLm2": [1.3815, 47], + "Ngnq": [5.3696, 47] + }, + "vertices": ["Ngnq", "HLm2", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 44], + "86iU": [5.07521, 44], + "Ngnq": [5.3696, 55.0164], + "HLm2": [1.3815, 55.0164] + }, + "vertices": ["HLm2", "Ngnq", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 48], + "86iU": [4.78081, 52.2426], + "Ba1X": [1.3815, 52.2426] + }, + "vertices": ["Ba1X", "86iU", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "02c1d309-dc14-6511-c2fa-60a9333aff71" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.48481, 5.64286, -0.17365], + "rotation": [1.72795, -0.14886, 0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [-0.00233, -4.6424, 0.53015], + "769S": [0, 5.35714, 0.5], + "Ngnq": [-1.29338, -3.64286, 2.9], + "86iU": [-1.10243, 3.42858, 3.5], + "Orqk": [-2.58675, -3.64286, 0.5], + "2WPs": [-2.20486, 3.42858, 0.5], + "sf20": [-1.29338, -3.64286, -1.9], + "JpAB": [-1.10243, 3.42858, -2.5], + "uSt3": [1.29338, -3.64286, -1.9], + "LEG0": [1.10243, 3.42858, -2.5], + "H1ru": [2.58675, -3.64286, 0.5], + "GPdT": [2.20486, 3.42858, 0.5], + "HLm2": [1.29338, -3.64286, 2.9], + "Ba1X": [1.10243, 3.42858, 3.5] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 50.4], + "Orqk": [5.3696, 50.4], + "Ngnq": [3.37555, 48] + }, + "vertices": ["Ngnq", "Orqk", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 44.0163], + "2WPs": [5.80906, 44], + "Ngnq": [2.24355, 55.006], + "Orqk": [6.11257, 55.006] + }, + "vertices": ["Orqk", "Ngnq", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 45], + "86iU": [0, 48.766], + "2WPs": [4.47951, 48.766] + }, + "vertices": ["2WPs", "86iU", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 47], + "sf20": [3.37555, 49.4], + "Orqk": [5.3696, 47] + }, + "vertices": ["Orqk", "sf20", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 44.0057], + "JpAB": [6.11257, 44], + "Orqk": [1.3815, 55.0008], + "sf20": [5.25052, 55.0008] + }, + "vertices": ["sf20", "Orqk", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 48], + "2WPs": [1.3815, 51.766], + "JpAB": [5.86086, 51.766] + }, + "vertices": ["JpAB", "2WPs", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 49], + "uSt3": [1.3815, 51.4], + "sf20": [5.3696, 51.4] + }, + "vertices": ["sf20", "uSt3", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 44], + "LEG0": [5.07521, 44], + "sf20": [1.3815, 55.0163], + "uSt3": [5.3696, 55.0163] + }, + "vertices": ["uSt3", "sf20", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 45], + "JpAB": [1.3815, 49.2426], + "LEG0": [4.78081, 49.2426] + }, + "vertices": ["LEG0", "JpAB", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 47], + "H1ru": [1.3815, 47], + "uSt3": [3.37541, 49.4] + }, + "vertices": ["uSt3", "H1ru", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 44.0163], + "GPdT": [4.42756, 44], + "uSt3": [0.86205, 55.006], + "H1ru": [4.73108, 55.006] + }, + "vertices": ["H1ru", "uSt3", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 48], + "LEG0": [0, 51.766], + "GPdT": [4.47937, 51.766] + }, + "vertices": ["GPdT", "LEG0", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 50.4], + "HLm2": [3.37541, 48], + "H1ru": [1.3815, 50.4] + }, + "vertices": ["H1ru", "HLm2", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 44.0057], + "Ba1X": [6.11257, 44], + "H1ru": [1.3815, 55.0007], + "HLm2": [5.25052, 55.0007] + }, + "vertices": ["HLm2", "H1ru", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 45], + "GPdT": [2.76299, 48.766], + "Ba1X": [7.2425, 48.766] + }, + "vertices": ["Ba1X", "GPdT", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 49.4], + "Ngnq": [5.3696, 47], + "HLm2": [1.3815, 47] + }, + "vertices": ["HLm2", "Ngnq", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 44], + "86iU": [5.07521, 44], + "HLm2": [1.3815, 55.0164], + "Ngnq": [5.3696, 55.0164] + }, + "vertices": ["Ngnq", "HLm2", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 48], + "Ba1X": [1.3815, 52.2426], + "86iU": [4.78081, 52.2426] + }, + "vertices": ["86iU", "Ba1X", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "ede354f1-5bc7-42b9-abdf-24d57d32ea0f" + } + ], + "outliner": [ + { + "name": "root", + "origin": [0, 0, 0], + "color": 0, + "uuid": "8ca6699e-74b1-10dc-5d18-29f7e8345ef5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + { + "name": "Head", + "origin": [0, 25, 0], + "color": 0, + "uuid": "9b1cdac1-623c-a07f-13cf-50b4cba2d280", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "cddc15a2-e47f-cc9b-6543-a33edf4f6221", + "330f0efc-1466-6509-2612-0e94630f723f", + "8cf37dda-a1f4-41c9-00ea-784d1ef19a8d", + "7564b320-32ad-f191-5c63-fdfa5abfafd5", + "f2ee2225-6cf0-0d4a-cde5-856d38b66daa", + "8dee770f-2330-9d98-92fa-7c0c3210c4fd", + "13b888c6-ccc6-3eba-eac8-25aa02e3ae0a", + { + "name": "facehappy", + "origin": [0, 29.05, -1], + "color": 0, + "uuid": "0392cfe5-09b7-4556-2496-3d4854818fe9", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "children": ["537ef66b-a5ff-b3ae-7587-873be2d53cc2", "e04237d4-85ad-3a6b-4a89-a2115d5f67fc"] + }, + { + "name": "facesad", + "origin": [0, 29.05, 0], + "color": 0, + "uuid": "d572f8c9-b753-09cb-9cde-257d33e8451d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": ["a52ffc8b-11fe-e05a-f2a3-53ad302c1496"] + }, + "6ee6c485-55e3-677f-8a8a-6437317da917", + "9875d2c2-108c-3b84-099f-32f17d751b35", + "29b97531-9807-676f-958b-5c8c1506ade0", + { + "name": "LeftSpyglassPivot", + "origin": [-2, 29, -4], + "color": 0, + "uuid": "652f5f01-1c60-78ed-cfd0-b0f7a02f265c", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + { + "name": "RightSpyglassPivot", + "origin": [2, 29, -4], + "color": 0, + "uuid": "37b6d76a-b922-bdc1-c509-f5907127af15", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + } + ] + }, + { + "name": "Body", + "origin": [0, 24, 0], + "color": 0, + "uuid": "3a163167-946a-9709-bfaa-60c63fb36d88", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "9b7ace10-f4a4-74b2-a33d-8dc435a7d04c", + "46e46f49-fca6-eb7f-d115-7473d8719233", + { + "name": "RightParrotPivot", + "origin": [6, 24, 0], + "color": 0, + "uuid": "631e98c5-9485-a328-a01e-92a96e0240ad", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + { + "name": "LeftParrotPivot", + "origin": [-6, 24, 0], + "color": 0, + "uuid": "3439f3f1-52a6-6cb0-fe3b-0ce070dc05dc", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + { + "name": "Elytra", + "origin": [0, 24, 6], + "color": 0, + "uuid": "d42de82c-5a38-eb25-42eb-87cb4a5c35a5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "children": [ + { + "name": "LeftElytra", + "origin": [-5, 24, 6], + "color": 0, + "uuid": "ceb41f70-a2e8-7b23-16a1-451cf9d74932", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "children": ["f13098f5-2b9f-c55c-ac85-5679cc688966"] + }, + { + "name": "RightElytra", + "origin": [5, 24, 6], + "color": 0, + "uuid": "8adf2983-7ffc-972c-a980-bb221a825385", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": false, + "autouv": 0, + "children": ["9dc0af0e-5f57-3947-ed18-4309680c6759"] + } + ] + }, + { + "name": "Cape", + "origin": [0, 24, 8], + "color": 0, + "uuid": "5b3c2fd0-e0f8-737b-05ee-6c57b784316e", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": ["9d4f5a09-3416-0623-7a0b-3bbcf0d919d8"] + } + ] + }, + { + "name": "LeftArm", + "origin": [-3.5, 22, 0], + "color": 0, + "uuid": "4532a408-8267-4ac1-f89b-9c02843401c5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "b4aa1095-c834-139c-8b5f-93abfd983a84", + { + "name": "LFA", + "origin": [-5.6, 18.6, 0], + "color": 0, + "uuid": "39b8f506-2d25-9ffc-4844-a483667159b6", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "fcd91531-57f5-3dad-6808-1c446c0006ae", + { + "name": "LH", + "origin": [-5.6, 14.2, 0], + "color": 0, + "uuid": "97179e6c-ca07-eedf-6655-10644ba0253b", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + { + "name": "LeftItemPivot", + "origin": [-4.5, 12, -1.1], + "color": 0, + "uuid": "9df644d4-b183-5aa8-8c3e-e33b2353ed95", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + "58a66c62-16cb-55b7-2195-1e1a1280b174" + ] + } + ] + } + ] + }, + { + "name": "RightArm", + "origin": [3.5, 22, 0], + "color": 0, + "uuid": "703b9bfd-bdc6-385a-89b3-b900d1de58f5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "5b436543-2419-e70e-86f7-2277ab9225f9", + { + "name": "RFA", + "origin": [5.6, 18.6, 0], + "color": 0, + "uuid": "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "c6ff2935-b98b-c9cc-3937-80110c67e83a", + { + "name": "RH", + "origin": [5.6, 14.2, 0], + "color": 0, + "uuid": "b8c08a9d-ce87-2959-a847-0534a1702c08", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + { + "name": "RightItemPivot", + "origin": [4.5, 12, -1.1], + "color": 0, + "uuid": "a541fa65-211d-661c-e9d5-6d5bf783dce6", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + "11ea81eb-0e0f-83ea-387f-aaddcaea9ce1" + ] + } + ] + } + ] + }, + { + "name": "RightArmPivot", + "origin": [4, 23, 0], + "color": 0, + "uuid": "c875d215-80f4-5cda-951f-10027c6965b5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [] + }, + { + "name": "RightLeg", + "origin": [2, 12, 0], + "color": 0, + "uuid": "02123f94-db06-5dae-758f-a4b6191791e5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "952d1c26-5c46-044f-47a3-1bbb6da6bc21", + { + "name": "RightForeLeg", + "origin": [1.98481, 8, 0.8264], + "color": 0, + "uuid": "9d530b83-521c-52ff-34ec-05833bb4753c", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "02c1d309-dc14-6511-c2fa-60a9333aff71", + "03a7b0ca-adbc-e921-e466-02042f51f0fb", + { + "name": "RightShoe", + "origin": [1.98481, 0, 0.82635], + "rotation": [0, -10, 0], + "color": 0, + "uuid": "ee63e079-5cf9-5d1f-d8a3-5114116d8c24", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": ["841507ff-09dc-0d69-b367-522f44abd3cd"] + } + ] + } + ] + }, + { + "name": "LeftLeg", + "origin": [-2, 12, 0], + "color": 0, + "uuid": "4ef21934-9598-a1cc-d2cb-2a978ecab20f", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "bfdad83a-2e41-be24-903c-5ebd81b969b3", + { + "name": "LeftForeLeg", + "origin": [-1.98481, 8, 0.82635], + "color": 0, + "uuid": "80ca9439-0183-c534-a9eb-ada28e85b1ec", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": [ + "fa408760-0e21-5c7c-f5f2-34ce3493f337", + "ede354f1-5bc7-42b9-abdf-24d57d32ea0f", + { + "name": "LeftShoe", + "origin": [-1.9848, 0, 0.8264], + "rotation": [0, 10, 0], + "color": 0, + "uuid": "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "children": ["88ccf0b1-c887-5a42-45aa-2a7eb359c98b"] + } + ] + } + ] + } + ] + }, + { + "name": "shotgun", + "origin": [-0.5, 18, 3.5], + "rotation": [0, -90, 0], + "color": 0, + "uuid": "49bae41a-b792-d5b1-fe28-d6716295f6cc", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "children": [ + "7d4c2b23-2316-988a-596c-3e0bb1650e3e", + "75bea1d5-87bd-fc64-240b-0c1cb80366a4", + "978245c3-4a24-892e-168f-731f704c1545", + "977bc890-568a-0428-0f50-2d6a172167f2", + "78b5f951-2049-2a7f-4da7-f45b345ba784" + ] + } + ], + "textures": [ + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.4/.minecraft/figura/avatars/Akira Eiko Olivia Pink/akiracombined_v4.png", + "name": "akiracombined_v4.png", + "folder": "", + "namespace": "", + "id": "0", + "group": "", + "width": 96, + "height": 64, + "uv_width": 96, + "uv_height": 64, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "52081aa1-5867-5eef-7a66-414d06fb2d1a", + "relative_path": "akiracombined_v4.png" + } + ], + "animations": [ + { + "uuid": "dfe4e14e-e510-f422-0338-7a0576138b7a", + "name": "animation2", + "loop": "once", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-40", + "z": "0" + } + ], + "uuid": "4df13930-1a09-0cec-34ab-5c92d36cd608", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-30" + } + ], + "uuid": "3417a133-d05f-7ea3-d757-817ef87e7082", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "75" + } + ], + "uuid": "f4776505-8831-b7b0-d30c-e64276d61e17", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "d1172a47-17e3-21a6-b75e-3285e2e625ef", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-47.5" + } + ], + "uuid": "5fa3ffb5-1f63-b52f-ea84-38edffd1afc1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "25", + "z": "0" + } + ], + "uuid": "6f84f80e-cd15-7971-25ac-f2308b68ce01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "41f639b6-4636-a0f8-6b97-9bd17a22654c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "2a415bfe-b8e6-9601-ed92-a5cdf8d7ff08", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "49bae41a-b792-d5b1-fe28-d6716295f6cc": { + "name": "shotgun", + "type": "bone", + "keyframes": [ + { + "channel": "scale", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b2dd53-b28c-c9c0-07ab-63fa4c7af048", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-25", + "z": "0" + } + ], + "uuid": "bcaa3cb8-f177-e3cb-5301-18c8a84d1083", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "4c9337e0-66c6-a9ee-86f2-6c0f4edd4c86", + "name": "hold_gun", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d05a6080-6b2c-ff7f-07a9-23b3f3c10c30", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "e743110f-344c-fd88-d239-983b390e1903", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-74.90819992901243", + "y": "7.443374674822735", + "z": "73.73466757022197" + } + ], + "uuid": "9a71e1bf-e38e-5167-fb69-d75611c9b779", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.4787499714439036", + "y": "-6.6485093715123185", + "z": "27.702122918474288" + } + ], + "uuid": "0e90813a-961a-8208-20fa-ef4b5879660c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "49bae41a-b792-d5b1-fe28-d6716295f6cc": { + "name": "shotgun", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-355.1179402290336", + "y": "-88.91911086367008", + "z": "-462.4539205435858" + } + ], + "uuid": "1cb4421a-78de-ea61-f9b3-4eb2d125e2d6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "4", + "y": "3", + "z": "-8" + } + ], + "uuid": "19eb4f1e-37e9-8d90-2b7c-a51ad63b6052", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2", + "y": "2", + "z": "2" + } + ], + "uuid": "77173661-2dbd-72a5-19cd-4d579fdda2f4", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-28.005142910979885", + "y": "-3.308672396280599", + "z": "26.61599545962099" + } + ], + "uuid": "70d4acd5-19c6-ba91-1e34-81bb5f68da5b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-68.70324234768441", + "y": "-29.902821510986996", + "z": "-4.8074013741193085" + } + ], + "uuid": "ee8c180f-117b-9310-3b94-7553468c5def", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.086807439427048", + "y": "-3.211315815895432", + "z": "-52.15992931285973" + } + ], + "uuid": "74c79225-a238-40eb-1a1c-9b5b5c32a7e6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "9ecc7bde-c333-33b6-b489-2f0ad1ea6eab", + "name": "ready_gun", + "loop": "hold", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "470e54b0-899c-5cfc-5564-68ea810c5251", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-86.94901223960824", + "y": "34.96182456421275", + "z": "36.749419593732" + } + ], + "uuid": "0344c822-ee21-5d9c-a559-60cd5d79ba25", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "-3" + } + ], + "uuid": "29d62d25-8df3-4bd8-0c05-f7941e52a3c8", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "5" + } + ], + "uuid": "9dc2c6c0-50d5-1df5-265a-aa9838639f73", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "82d60343-5825-d275-7817-8e40bb1080e6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-50", + "z": "0" + } + ], + "uuid": "120a52e6-9850-eb63-2ecd-4004bceda34c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "efe0ad91-5e6a-0c08-0eac-0c031b5ecda0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "bdc0b96c-ff68-9b45-907c-98148b162e86", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "76fe876f-de24-4ac5-fecb-ac1b998689c0", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "57.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1d6e4f39-a891-4cff-d7e1-2bbcf47b3d7f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3c9550b6-a70c-a194-7943-dc71577c5f54", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-2" + } + ], + "uuid": "a26fda4d-b7f5-b101-9872-bbf3f415038c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "88ee97b1-48bd-79af-98e5-c254c1eb8dcf", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "79b65b90-6efb-3039-2993-dd50b0479591", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "49bae41a-b792-d5b1-fe28-d6716295f6cc": { + "name": "shotgun", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-92.49999999999363", + "z": "-90.03692596300289" + } + ], + "uuid": "52732c19-c6dd-1a33-bc13-bfdfc9297af5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-90.00000000003502", + "z": "-90.03692596306205" + } + ], + "uuid": "7c4aa6a9-b802-d750-bd16-e6389f120430", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-92.50000000003911", + "z": "-90.03692596306205" + } + ], + "uuid": "75c771a1-4a24-27fe-0f5a-4cb0c2fd5eb0", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "6.050000000000001", + "z": "-17.87" + } + ], + "uuid": "d07aebdd-20f9-a034-8021-86d031a656ea", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2", + "y": "2", + "z": "2" + } + ], + "uuid": "103fe8b4-ca02-43cf-2706-a51fc529cee8", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.5", + "z": "0" + } + ], + "uuid": "b5fb5448-1af7-8fd5-bc93-a8e01d793b86", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad0f63e0-6f8f-8efc-5d7b-115dd60403de", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "28ed2d8f-8b8f-3031-398c-15c40944da0c", + "time": 0.25, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.96", + "z": "1.05" + } + ], + "uuid": "f81395a0-b103-ff2b-4827-a29c1d481f3d", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-31.07296082320181", + "y": "-6.862278331730522", + "z": "-6.726612476383707" + } + ], + "uuid": "b3e24b30-ed05-9f70-5b2e-21bca8be35ca", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "dc101984-c945-0fad-ff15-737c7f8669ae", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-88.7754402379603", + "y": "-19.09895761197182", + "z": "-24.47687105754012" + } + ], + "uuid": "67cc85c5-f16d-907d-028a-12fed0e6c0f5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "6.977354320100039", + "y": "-14.729901334653277", + "z": "17.104658416961612" + } + ], + "uuid": "9bba9062-fa9a-d225-cafc-543dd2d83358", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "47e21b4e-026e-ef62-4622-0f7934bb2d24", + "name": "walking_un", + "loop": "loop", + "override": true, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6bb137e5-c326-85ea-0852-2f8b99ecdb3d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "c755c55a-3a92-b28b-563a-874730bf3f4f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "628b8198-fffb-2f7f-7368-fdf47d5c7aa9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "4fae9932-bad9-cf68-9971-72d26308ac2a", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "372a08ff-f23a-20bd-bafb-b1ef4f2bf94b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "3375dbc8-24dc-27d4-f061-e008bd9835bc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5717fe2b-6bb4-86e5-daea-ba0845e2e53d", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "08228c7a-4dce-5911-305f-f8e2961290ea", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "71e11e12-8913-8071-3783-e18ab9ffc129", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "cc9b0825-f5c1-c4d3-36f7-d5d22bc87209", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "dec6a01b-8225-c331-d365-bb5933b68213", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c73383b-fd4e-dcd8-f095-ef4efd52a3f7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a4d7abf4-7577-df51-7390-05d9ad7502f0", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5414a5e5-7e6e-b538-51f0-f731df81a97d", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a0f34ebc-9b99-5370-e6ce-25847fceff0f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "59dbacab-42ef-14e8-7897-c117881f9182", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71314692-8827-878f-449c-b94ea0222155", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c9ecd96d-522b-1157-66fe-bd98b610bb63", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0782d3a1-605f-3c57-c98c-2284141dffd0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "05253eca-4880-4ca1-d18c-117b923a179f", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7ec5e551-ff87-554b-096f-e7104363f7d0", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f96154fc-75ea-8796-9f8b-0e917bc11c6a", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "55da1b6c-85f1-b4ba-62c3-da2c023862ae", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "a95673a2-04f3-8a65-a8d4-08a1e4eb9fc0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "a9fb05f2-21cb-9bc0-952a-dd1c304b1faf", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bbd0f890-7a9c-fe21-3e78-393e68f82584", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "c95741d7-4e3a-89ee-2c1e-4d4e4eb0fea1", + "name": "sprinting_un", + "loop": "loop", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "markers": [ + { + "color": 0, + "time": 0.75 + } + ], + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5ad4b02d-adab-5aa4-3e7f-579327b646f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "7018513a-94cc-4abe-9378-e15d33b9391c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "ade18367-6bd7-fd0d-3bdd-f4fd47296dd7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "2ea88e7f-a48b-d737-cb84-89c071fcfe05", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c5b2c5d9-148b-08bc-d190-c76ba90dc96f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "12.5" + } + ], + "uuid": "1566a452-3604-1937-9f85-181e69473d04", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "12.5" + } + ], + "uuid": "80b7c133-f9b6-1b66-1880-9e96f78f9e6f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "0b0d4ac1-5bb3-b9e0-9826-50726cb6482f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60", + "y": "0", + "z": "12.5" + } + ], + "uuid": "698b468d-bea0-834f-29b7-dac5070fc10d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60", + "y": "0", + "z": "12.5" + } + ], + "uuid": "15428192-6bdb-b36f-1a7d-9d72c24882a2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "c6c6ba99-8621-204b-eed5-7ca34c9335c9", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "10bb9ccd-3d42-6029-4a9e-b41a94ed000f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "f02420e5-9975-31d2-b0c9-fb3a7ac03eaf", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "53a0b4fb-2094-54f8-8e58-3b054257ec5a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "1fc4d470-4fa0-150b-9cf7-735333d46ac2", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "cbc1a7cb-2376-30e7-0f3d-8daa2ca39804", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "38615f94-ed54-acfd-0092-d3355ed400e2", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "b097f599-9634-da25-2a0b-cc8ea6301ea7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "5fb1b451-651a-475c-f308-c7db4eed1dda", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "829e21d7-be40-b7b6-90af-a578292c2cd5", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "265c3ca5-e561-3e07-af2f-3caa6b339978", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "9ddc607d-2529-38c4-e179-589f31d15a96", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "138d035e-7915-8e29-7b9c-3b832a84672c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "9719a8b0-391a-0e9e-774f-42b616b5d111", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "10", + "y": "0", + "z": "0" + } + ], + "uuid": "23815ee1-c736-d5d3-1d1f-fd884841d66b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "111674c6-f4c5-eb59-654e-83725ceebc85", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0e638bfb-11c8-bc83-a40e-842f47fabf6b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-12.5" + } + ], + "uuid": "dbce26c8-4f58-75f2-e924-9cb92b58e28a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "e9652221-9854-1e2b-964d-f9585186e51c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-12.5" + } + ], + "uuid": "d981fb0c-9367-86e0-c9d0-69df7700d116", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "00ddadf9-52ca-8ea9-84c2-5f066f1846d1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "57529a98-2fa6-3d9e-0d4a-906e82c0e931", + "name": "sprint_older", + "loop": "loop", + "override": true, + "length": 0.79167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "markers": [ + { + "color": 0, + "time": 0.75 + } + ], + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5ad4b02d-adab-5aa4-3e7f-579327b646f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.58333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "7018513a-94cc-4abe-9378-e15d33b9391c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "ade18367-6bd7-fd0d-3bdd-f4fd47296dd7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "2ea88e7f-a48b-d737-cb84-89c071fcfe05", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "79bd6a5e-7c72-3634-c04d-1a5504482dff", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-87.5" + } + ], + "uuid": "0c25b4d5-093b-1b64-0cb7-36a5c44bd079", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "b6724395-2832-b072-e4f7-58cd774f86e3", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2.5" + } + ], + "uuid": "c299a195-4337-8eba-a578-ff4d1d9dd276", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8e4917db-c17f-c350-d4f9-7df6b5485525", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "13390083-32bb-13fb-0642-3bde4b064c49", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "c6c6ba99-8621-204b-eed5-7ca34c9335c9", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "10bb9ccd-3d42-6029-4a9e-b41a94ed000f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "f02420e5-9975-31d2-b0c9-fb3a7ac03eaf", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "53a0b4fb-2094-54f8-8e58-3b054257ec5a", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "1fc4d470-4fa0-150b-9cf7-735333d46ac2", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "cbc1a7cb-2376-30e7-0f3d-8daa2ca39804", + "time": 0.58333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "38615f94-ed54-acfd-0092-d3355ed400e2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "b097f599-9634-da25-2a0b-cc8ea6301ea7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "5fb1b451-651a-475c-f308-c7db4eed1dda", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "829e21d7-be40-b7b6-90af-a578292c2cd5", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "265c3ca5-e561-3e07-af2f-3caa6b339978", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "9ddc607d-2529-38c4-e179-589f31d15a96", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "138d035e-7915-8e29-7b9c-3b832a84672c", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-15" + } + ], + "uuid": "456a10c7-91bc-d007-d954-1b1b18d06ba5", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-35" + } + ], + "uuid": "045f4f5d-e490-af8d-cba9-51b7f4724cb5", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "4c533678-4796-34d0-1550-f8c817f2cbf8", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "84a56d9e-03be-2a3c-5f8c-72260d7c6f06", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "fb594db7-55ef-ff08-f9c1-4809831b7972", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "80" + } + ], + "uuid": "450dcaae-ffb8-a414-3906-bc927aa2246c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "87.5" + } + ], + "uuid": "7ccb1c34-892d-e4de-03ef-87b4c642c420", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "80" + } + ], + "uuid": "846820d6-8e8b-d638-1e88-00472d784eff", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5" + } + ], + "uuid": "f415c654-77b6-82c1-7628-76f4b2b4c4c6", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ef5d0f67-d1ea-efca-a879-67e2ef3663e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f96d91f6-4f0b-3f8e-ff1c-2e8111620d29", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "683be467-9706-a507-a54f-3bdd417df5b8", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "35" + } + ], + "uuid": "40e59133-4998-9fa6-5da1-cc8be589470d", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "40" + } + ], + "uuid": "6bd1616f-2528-c952-c278-63cc18307143", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "40" + } + ], + "uuid": "38f17f67-f2fc-0a68-1de2-459ee84d0c3b", + "time": 0.58333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "40" + } + ], + "uuid": "3e451a41-6dad-c487-1713-ef9f1f0dedfc", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "3c072359-f9ba-f341-d4ed-c926bec0c1f7", + "name": "sit", + "loop": "loop", + "override": true, + "length": 2, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "45b60604-826c-127d-6b64-3e56dc19068c", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c049f0f3-aeb5-9dd3-9419-5ce02ecf8e21", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a82826d2-326f-3049-4711-5565e8e7fe56", + "time": 2, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "-2" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-160.27126444785472", + "y": "68.69403741183623", + "z": "-71.446979487112" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-135", + "y": "0", + "z": "0" + } + ], + "uuid": "8de9690b-63d0-e56f-4a69-72e0162c29ad", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-3" + } + ], + "uuid": "fd826736-1b28-fb58-f1d5-9a409a09b780", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3411dcc8-c5f0-b933-3cb5-c02d3e903446", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "6a371a42-64c4-2c76-0106-17f76271eed4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-135", + "y": "0", + "z": "0" + } + ], + "uuid": "e83d9aed-8c8e-93c9-a5bc-fdd162a5c6a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-3" + } + ], + "uuid": "6739ba2b-9750-6ebc-6601-1a980b4e5003", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d1a64128-1062-a381-6c51-365ca96cb95f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3000000000000003" + } + ], + "uuid": "f06382c5-821a-5c99-95d7-d8473c8e7166", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "-2" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-180", + "y": "-70", + "z": "92.5" + } + ], + "uuid": "d09adcb9-bab5-8c18-9b26-f972dfc98653", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "f95e7de6-0331-4c7f-88de-901a3d3aafb7", + "name": "sit_emote", + "loop": "loop", + "override": false, + "length": 4, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "45b60604-826c-127d-6b64-3e56dc19068c", + "time": 2.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c049f0f3-aeb5-9dd3-9419-5ce02ecf8e21", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a82826d2-326f-3049-4711-5565e8e7fe56", + "time": 4.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-11", + "z": "0" + } + ], + "uuid": "3949d09a-29e1-3053-98f0-06208647ebd1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "682ffc0f-a5e7-482a-b8c5-8f569d918f5f", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-96.60139441617054", + "y": "5.426770158390573", + "z": "-7.540367186791209" + } + ], + "uuid": "47a9dc69-b9f3-a7d0-4f7a-8a25192a6762", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "2", + "z": "-1" + } + ], + "uuid": "0c21aa35-fa40-1768-fd7d-d047cee061c9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "27.673889233549673", + "y": "21.915455570267696", + "z": "-96.60562441079342" + } + ], + "uuid": "704122b0-7f7b-4f57-5a89-fe668927f094", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "b78a9441-1f2a-8e92-13e7-b572c4a98585", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-86.10943275837872", + "y": "-33.854937900673576", + "z": "5.682570018300794" + } + ], + "uuid": "ab6d4c05-8eb9-55c0-6f59-6910e2f76f50", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-2" + } + ], + "uuid": "9c000610-3b2c-faf8-3fe3-5da8a7127f1d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "143.68712264787146", + "y": "-14.087419469977103", + "z": "-51.94712911146026" + } + ], + "uuid": "1e4dcef5-46be-8431-c57a-367e5baff27a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3" + } + ], + "uuid": "e5515ae6-7ccf-7129-65a7-01a2f6ece4d6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "00665345-46b1-7d26-38a6-1c6b61db0c93", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "49bae41a-b792-d5b1-fe28-d6716295f6cc": { + "name": "shotgun", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-12", + "z": "1" + } + ], + "uuid": "9e1fc28a-337a-bb48-f884-4629af520267", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "60", + "z": "0" + } + ], + "uuid": "09c4f59c-9073-320f-e8f0-ad5c0b081934", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "180.00000000000227", + "y": "82.5", + "z": "90.00000000000364" + } + ], + "uuid": "d7fb0cf1-df61-462a-5a82-a6659bf8557c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d09adcb9-bab5-8c18-9b26-f972dfc98653", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "32.5" + } + ], + "uuid": "ac38a3f9-8926-f8a2-a538-6fafd960eee7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f3c6ff59-57f3-486b-d4e3-796f773b3d5d", + "name": "sit_emote2", + "loop": "hold", + "override": false, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-7", + "z": "0" + } + ], + "uuid": "3949d09a-29e1-3053-98f0-06208647ebd1", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-12", + "z": "0" + } + ], + "uuid": "18cdebb9-8aaf-29b5-922f-4fbd801b17c9", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-9", + "z": "0" + } + ], + "uuid": "4bf7e122-0910-b4b6-5a75-fc84149bd36c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "da59f1ad-b9ac-a18e-7a7c-fc23338e5f6f", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "2b6edfcb-ea3c-3049-216c-12e4c32886f8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-17", + "z": "0" + } + ], + "uuid": "5e4fc510-9501-05e9-335c-95ce608b72e7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.6000000000000003", + "y": "0.7", + "z": "1" + } + ], + "uuid": "ba29ca86-2c69-1839-a973-07ff3136036e", + "time": 0.08333, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.25", + "z": "1" + } + ], + "uuid": "f29c01c3-eade-2f64-fcbe-987bf1b8b641", + "time": 0.16667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.3000000000000003", + "y": "0.9", + "z": "1" + } + ], + "uuid": "fdbbf9aa-d4ba-0a44-684b-cc769ba626aa", + "time": 0.25, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1\n", + "z": "1" + } + ], + "uuid": "1c784972-3f64-c2d9-4db8-b0967c07891b", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.1", + "z": "1" + } + ], + "uuid": "5c4a563e-f048-7c75-428f-5be11251a7ac", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.5500000000000003", + "z": "1" + } + ], + "uuid": "46227ed3-05bc-c304-bf87-e6161b08ec69", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-96.60139441617054", + "y": "5.426770158390573", + "z": "-7.540367186791209" + } + ], + "uuid": "47a9dc69-b9f3-a7d0-4f7a-8a25192a6762", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "2", + "z": "-1" + } + ], + "uuid": "0c21aa35-fa40-1768-fd7d-d047cee061c9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "27.673889233549673", + "y": "21.915455570267696", + "z": "-96.60562441079342" + } + ], + "uuid": "704122b0-7f7b-4f57-5a89-fe668927f094", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "b78a9441-1f2a-8e92-13e7-b572c4a98585", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-86.10943275837872", + "y": "-33.854937900673576", + "z": "5.682570018300794" + } + ], + "uuid": "ab6d4c05-8eb9-55c0-6f59-6910e2f76f50", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-2" + } + ], + "uuid": "9c000610-3b2c-faf8-3fe3-5da8a7127f1d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "143.68712264787146", + "y": "-14.087419469977103", + "z": "-51.94712911146026" + } + ], + "uuid": "1e4dcef5-46be-8431-c57a-367e5baff27a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3" + } + ], + "uuid": "e5515ae6-7ccf-7129-65a7-01a2f6ece4d6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "00665345-46b1-7d26-38a6-1c6b61db0c93", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "49bae41a-b792-d5b1-fe28-d6716295f6cc": { + "name": "shotgun", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-12", + "z": "1" + } + ], + "uuid": "9e1fc28a-337a-bb48-f884-4629af520267", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "60", + "z": "0" + } + ], + "uuid": "09c4f59c-9073-320f-e8f0-ad5c0b081934", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "180.00000000000227", + "y": "82.5", + "z": "90.00000000000364" + } + ], + "uuid": "d7fb0cf1-df61-462a-5a82-a6659bf8557c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d09adcb9-bab5-8c18-9b26-f972dfc98653", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "32.5" + } + ], + "uuid": "ac38a3f9-8926-f8a2-a538-6fafd960eee7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f99872e7-f2bd-e73b-4f83-082c1623d28b", + "name": "followMe", + "loop": "once", + "override": false, + "length": 1.375, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22517dff-4ad8-8b8f-8623-14c5ef40504b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9887f18d-8d35-6cf1-7e2f-004a182ed804", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0.7340404134620258", + "y": "24.874691603068186", + "z": "0.46394336388129886" + } + ], + "uuid": "a301e9b0-bd77-f7aa-69aa-12b45109bb2e", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0.7340404134620258", + "y": "24.874691603068186", + "z": "0.46394336388129886" + } + ], + "uuid": "86494bd4-7bf3-dd74-e4de-fbe10b2f4ccc", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "edb9127a-1a8c-d741-e2da-7e21f595fdb8", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7e177ca-90a1-003a-26ac-3c9045a57cc5", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fd11d9d5-1bf1-e60a-4653-5723e7b64e60", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12d5d418-e4ae-a422-f62a-e40539931954", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "c9639672-905c-99d3-1a7c-77f2c45ba3b3", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "c04b8863-b977-afdb-b3fe-6359ecc5c567", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "82360ee6-bd9c-a3a2-7bcb-b38adf942506", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7e74412c-c6a0-968d-4185-f48aead2da70", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "3602a1be-1956-0578-3e2a-f4295a97a960", + "time": 0.375, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73537b14-ba1a-8945-763c-1b1acc5c70c6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.139296625613042", + "y": "40.79237202269042", + "z": "1.366426829135773" + } + ], + "uuid": "3c01d642-23de-db77-55b0-6f7b9acde257", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6f5c7d09-2d66-86b2-ae96-bb7835673357", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "b6c0469a-dd61-9462-c83f-a4e98b5b0a9e", + "time": 0.83333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.070845175358954", + "y": "20.245553693528116", + "z": "-0.21019016151115277" + } + ], + "uuid": "86420be3-cb9f-b837-dbda-ff8166be5b29", + "time": 0.58333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5d72c177-a7db-d56d-a96f-88d01cb4b5de", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "c5560157-4076-0c2f-521f-b9abdae3f38e", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b3bb1bfa-40a9-8bd9-a35a-8aa4b5ea8969", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "1.5" + } + ], + "uuid": "03750fe2-3cb7-acd5-8172-bc16f0dfbdc7", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b94d417e-1e40-5063-695a-8c2b7900f837", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0.5" + } + ], + "uuid": "2fefd0fd-8f00-3c1f-9d80-324dbbb4baa0", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "1.5" + } + ], + "uuid": "78493484-4e17-5159-33c8-8aa9d4740f87", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0.5" + } + ], + "uuid": "7eda4b76-a9fc-4ce6-1b40-b79af69432a9", + "time": 0.58333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "031ec465-a678-6aa3-a9d7-74ca0b4d6b36", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0.5" + } + ], + "uuid": "1c254bed-2250-6edf-8d71-3e86e32e9216", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "348ee9c0-cc61-f6c6-510d-6a76ebf3598e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f72330bc-8125-b922-1fe1-c8d2c4d799f9", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "394f8bfd-ad27-5c9a-3e9d-f767aecaf941", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "8ef5b0e8-2c51-ed8c-e1e3-a427d6d88f7c", + "time": 0.79167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-120.70533623040757", + "y": "33.15221974766706", + "z": "20.488613927605456" + } + ], + "uuid": "a1be318f-e8cc-95c8-aa31-ad94345c26e2", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "7a23199d-ba66-827e-9140-2a86faae3c52", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-214.08915231876986", + "y": "72.05925312606412", + "z": "-134.5891257222278" + } + ], + "uuid": "f80b279e-5624-07c4-8aa9-d023e4a59224", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-74.56834248387258", + "y": "-9.935578431269278", + "z": "-5.267040957668087" + } + ], + "uuid": "87bb9ffc-84f7-8f3b-4850-0eafd866272c", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-74.56834248387258", + "y": "-9.935578431269278", + "z": "-5.267040957668087" + } + ], + "uuid": "5bf5c788-e523-f564-fa4b-55a2e11785fc", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "886b6b44-033b-74de-3529-66edc7cc7272", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "23444864-78a8-958a-6067-77cce11ed1cd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4b900c7f-97c2-5d28-4e90-7ca809243ce4", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-3" + } + ], + "uuid": "4c1dabd6-f7fb-6518-83e4-faaea18c9b8e", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-3" + } + ], + "uuid": "dbc8565e-837c-5e99-5aa8-cc25eb6ae0f8", + "time": 0.79167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "1", + "z": "-3" + } + ], + "uuid": "cd9cb512-72a4-6c3d-b26a-a731727c42b4", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-3" + } + ], + "uuid": "ed0ea3bd-52ec-7ed5-334b-5934920cc468", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "019b9018-b03f-328d-aeba-b34849091478", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "27.5" + } + ], + "uuid": "ae4ab0bc-e5d5-82fc-cb4e-49c4171eb127", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c6b981f9-34ff-efcb-56b5-035a8a27895f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "27.5" + } + ], + "uuid": "276e3817-fce1-f03d-c446-c0848a02fc30", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "27.5" + } + ], + "uuid": "78a71f22-ae84-277b-9783-eac06a91c845", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "27.5" + } + ], + "uuid": "eddb6f0c-4617-085e-e706-de951368d386", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "27.5" + } + ], + "uuid": "9a1d21a9-a7b6-9520-e723-7d26afbda307", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "21.761514824064307", + "y": "10.474174376960491", + "z": "-3.2857771429571585" + } + ], + "uuid": "d390e3f1-2b0e-a3ed-cb8e-5c0aacd02739", + "time": 0.25, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "395986d6-2c66-e222-2f62-5f04154fe542", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dbda7c26-906d-1959-db9d-5b02c1f9ea9a", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "21.761514824064307", + "y": "10.474174376960491", + "z": "-3.2857771429571585" + } + ], + "uuid": "b95a2377-5da3-42d5-755f-bef480120ba7", + "time": 1.16667, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-5", + "z": "0" + } + ], + "uuid": "46546742-be92-bffb-3a97-b6d067ed66ce", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec62f10d-4f32-ac12-8f59-04e59031cc0e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4dad5c7d-7819-dd4c-5e44-a73bc7f41f7f", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-5", + "z": "0" + } + ], + "uuid": "a8c50d56-c2fb-1689-3284-a0525c74e4ed", + "time": 1.16667, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "74138584-550c-acf3-7418-f44444a13e97", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "c6d7784c-15bd-6596-c27c-4b7c80804ab4", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "23c920ce-e9f2-3ad7-5769-4d5ddea625f7", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "77a62a19-88cd-1843-5e53-40545e247b79", + "time": 0.83333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "83a7c14b-e28e-d108-bd14-eeca060ca57d", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "9bdb6c46-1df5-0a81-5788-d5d33f2e9e8c", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.001975664013571", + "y": "51.05934394980068", + "z": "-2.1762636138515745" + } + ], + "uuid": "b3644f7a-5de1-79ff-4e3b-b8e718eaf680", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41020bdb-9ffa-222f-1fec-5768a68bad7c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-2.5" + } + ], + "uuid": "ac978271-fa68-2077-7ef7-e237148a253a", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-2.5" + } + ], + "uuid": "6d3d5627-f8d3-a155-a8b3-d94743d40e0b", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "02f405d5-4085-ef63-9628-3a364458fe0a", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "5.5" + } + ], + "uuid": "1b7ae221-c820-b462-a759-4dda1d4f4ed3", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "5.5" + } + ], + "uuid": "b853c2f1-9021-4616-3536-a827bbdeec7e", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "2f08abdb-8345-b201-0dc4-4d954c194f5e", + "name": "clap", + "loop": "once", + "override": false, + "length": 2.5, + "snapping": 60, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f78104f5-827f-1cfc-5dc3-6d529cf6282b", + "time": 0.15, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "695eeaec-4ea3-219b-f55a-7fc02a8e6149", + "time": 0.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1900d0a4-26a6-f3f5-5e5c-4e5c04468ecb", + "time": 2.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "41aa99a2-f6a6-7ce7-2144-be90427d898f", + "time": 0.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "b3bd1e0e-33d6-6ef6-da85-d6389d0312ce", + "time": 0.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "9db7af38-551d-b81c-c23e-25f9750c79a7", + "time": 0.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "0dd46afb-b028-c740-7213-ff04a4152d39", + "time": 0.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "5ada14d6-fc43-8733-067c-88c5739b6a17", + "time": 0.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "db2e0314-4bd1-abca-35b6-adab26afac3e", + "time": 1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "7649cf21-636b-a5f0-7d77-7e3b5946976d", + "time": 1.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "fe72dec6-d02f-9ba7-5c7e-59f564cb47aa", + "time": 1.2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "acacc018-4067-2c5b-43a4-af00708e308e", + "time": 1.3, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "8f1b16cd-62c7-313c-afe7-743ce0b6f405", + "time": 1.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "cca3b185-3dde-5049-4a67-386a4c4e4f08", + "time": 1.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "e3595c95-49da-86e6-e2e6-579fd9545469", + "time": 1.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "62023697-b62e-d6ba-d33f-5c30a44cbfba", + "time": 1.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "c87242f8-87dd-4c1a-5896-8e6ef7474b5d", + "time": 1.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "3e2c5396-1174-1ac5-de3f-ad49583d6514", + "time": 1.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.1913214233482", + "y": "31.947151766892603", + "z": "6.3127395129627075" + } + ], + "uuid": "ae52c019-305b-48f7-67cf-bd7b917b6a8b", + "time": 2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-70.53156048742397", + "y": "5.582261531297444", + "z": "-1.6400488166504514" + } + ], + "uuid": "11359dbb-4d6b-35da-004d-ac4f78cb873c", + "time": 2.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "986a00af-33bf-c7f9-3a2c-c72bfca5d16e", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e54fab22-bbd7-f84e-02c3-091bba0c607d", + "time": 0.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "42a9cfcc-35e3-84da-14d0-c871f5a7fbc1", + "time": 0.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5a0ad8d0-ac33-a5d1-cda9-7cdd9efc679a", + "time": 0.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "c394ae70-623d-60dd-bc40-0c4cabc8e693", + "time": 0.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1728225a-c76d-0578-00eb-25066f4c9ee6", + "time": 0.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "42e38152-aeb7-66be-942c-81b261c69182", + "time": 0.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f9bb99aa-79d8-026b-8ffc-69a464b5d6b5", + "time": 1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "34260934-5fdf-8a19-ec05-5b07527fb43a", + "time": 1.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "df98b001-7b92-f831-3d92-be4507b7e26a", + "time": 1.2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "ff17d778-bbd9-11f6-d11d-24ac8a360b2d", + "time": 1.3, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22500e70-b7dd-2c8a-9589-9180c0ab366b", + "time": 1.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "8939f5d0-fcb9-d8b1-3423-3ed1e92d792c", + "time": 1.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bf95953d-b36d-91bf-3f6b-8820033ff065", + "time": 1.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "3c62c475-95b5-042c-0cf9-c8fbb06cd3c9", + "time": 1.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f5e7652b-37d3-6113-0c91-175e6f69dca5", + "time": 1.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "5684fbe7-bebf-643c-981a-a2a5ecc1fc67", + "time": 1.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0619d8de-15a1-3284-d542-9bddff9db47f", + "time": 2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-3.228808676392873", + "y": "-22.01423715965393", + "z": "28.461402035637548" + } + ], + "uuid": "6d662385-dda9-7d87-5309-cf2871f87b3d", + "time": 2.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "77d488d1-9458-58c6-e241-75599906ba19", + "time": 0.15, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "82bbdf59-bb08-0e30-adb3-7b60cda04bdd", + "time": 0.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8aeb6d8b-7275-cc98-8b08-40f2afbc4a41", + "time": 2.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "0efbf3a5-1b2b-c125-17f5-451f9f4e82e7", + "time": 0.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "8cdeb588-8a6a-9c22-bb3b-bc622658bb53", + "time": 0.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "d53a61fe-18bf-e174-81b7-c5e9f7824211", + "time": 0.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "d360cf51-fff2-c80a-7bd0-897fc4fa36d9", + "time": 0.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "ad7554b0-4884-82bf-ebda-91b35e920075", + "time": 0.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "7393f14f-adf1-5ea6-cabc-b432212699c4", + "time": 1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "b4bc66c8-30c6-f3b6-3221-67ab1aff47b5", + "time": 1.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "0174391b-5142-927b-c2bd-1d62656b73c4", + "time": 1.2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "cc1b42bd-de4c-687d-42f0-69102d60fdc7", + "time": 1.3, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "0d43ae72-7b98-9431-50e1-5f420928454b", + "time": 1.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "c394a69f-c958-aa64-f642-07710bb89b8c", + "time": 1.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "0fcf716e-aee1-73d0-f93c-957cde63188b", + "time": 1.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "5a0db9ac-7169-f545-6bcc-df7bcc234cee", + "time": 1.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "e5585907-f80f-9bd1-5ebe-a6cabfe27988", + "time": 1.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "3453b437-dd81-3de6-5f52-fe9e1710be81", + "time": 1.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80\n", + "y": "-35", + "z": "0" + } + ], + "uuid": "f503e8c9-06a0-d249-7d58-2d79bbfc0507", + "time": 2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.82205746653926", + "y": "-0.40898196155967526", + "z": "5.716312245268" + } + ], + "uuid": "4bc69ec9-0a53-a37e-edde-4beb500bcad0", + "time": 2.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ba056cda-b225-2c29-4301-81a4ecdc907a", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3eb12c22-3350-ea40-82f8-591b7bdac147", + "time": 0.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "ba4ed43a-5bf0-664c-4931-536e75b03c7c", + "time": 0.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0d88a6bf-3412-4531-6cd4-11738a55699d", + "time": 0.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "488d6ce2-e0b5-24b3-08b0-9b3bf2996c4c", + "time": 0.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fd5351df-736c-0900-c37e-0baa3d807699", + "time": 0.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "64762d80-bcc8-a452-6481-f2ba50224161", + "time": 0.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25ab2be7-b89a-2ab5-4fc5-2aba9f02a025", + "time": 1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "ddbaabb1-e79f-7040-b56b-998370be527b", + "time": 1.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a43d3ce-e77e-ba8c-d9e8-5eae00a6cd04", + "time": 1.2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "65491092-cca2-774b-0e8c-c7e0dd61d0d7", + "time": 1.3, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56c8c5c6-7ec2-4e2f-c300-95ff358e95b0", + "time": 1.4, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "ed4be47a-f9f7-ac74-d158-1117cbed5536", + "time": 1.5, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "422b63e0-7339-251d-6b44-298391be90b6", + "time": 1.6, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "671516d0-4974-d731-8172-6b5cdfc7c6b9", + "time": 1.7, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cbd3889d-c0d1-0403-1cba-1ae2c5bc0a16", + "time": 1.8, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "9d6e8bb0-dbc5-3688-b437-063046fb8ce5", + "time": 1.9, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9aa24d7b-d139-3184-ca95-f5ea809f4b07", + "time": 2, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-22.5" + } + ], + "uuid": "6d1c2153-058f-bb53-0bfd-3bf73af63c1c", + "time": 2.1, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + } + } + }, + { + "uuid": "a744e70f-1914-3caf-f9f2-2a837bbbeda4", + "name": "wave", + "loop": "once", + "override": false, + "length": 1.79167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "fbf9bb0c-ca98-b7c4-dd2d-62b2508f2d65", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c49791f-30aa-3980-ae97-7c674489c16b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8dba4889-5451-0f9a-14aa-c19b994f9798", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "72178732-c646-78cd-77f2-d160f8ecaf36", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "0" + } + ], + "uuid": "4dcd1858-4b7e-195a-6ce8-2c0287bb39f5", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "95ee3234-13ad-bed7-51c5-362c09f52d68", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1ed3963-107d-6b31-ae28-45618a3bba09", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "0" + } + ], + "uuid": "1ea437d7-7f58-c3a3-e13e-554c9a493ef8", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "146e5194-74ad-5691-25e5-3f66e9648927", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "00ba43c2-0c33-8511-ee34-2c5c843bbb36", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bb6db12c-33a1-03b7-5c78-5e2c00609e08", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "4fc9fcfa-b266-94c9-cd3d-0853c4d2b817", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "ea91c4db-3a89-20ec-89d8-52c5ad1a5423", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "26bc77fc-9318-359e-5b09-72fa3946804c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9af0934a-8a39-5295-6f9a-3c38af15ff44", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "d7cdea44-6104-431e-a07f-b1a3afdbb035", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "f81dc3c7-77dc-3a00-af08-10607e7bc843", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115" + } + ], + "uuid": "fb0cf5f8-8850-120f-9208-a28d121b0716", + "time": 0.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d8102de7-586c-2345-680d-784b2f4363ed", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "382fc072-1206-bcd1-5cab-a0cd6543432a", + "time": 0.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "d4fda29f-d347-ebf7-90a5-edc78ca36e8e", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "c89e9b58-2084-cdca-c606-9dcffe382396", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "26bcf4f9-9583-f211-a21f-af500968f238", + "time": 0.54167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9254c77c-28ee-0efc-d0cf-42985284d7b2", + "time": 1.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "bb261ab3-cbd9-bcef-1f72-3b8b81d5ed00", + "time": 0.91667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "35292b51-de25-61a9-41a1-06cf2e0da61f", + "time": 1.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "30adc32b-0bcd-df2f-d072-0bb16f14197d", + "time": 1.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "79c2edb9-386e-de4d-2529-b96e2c08f056", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "7d713123-a19e-78c0-b868-a58dc9a2a0e6", + "time": 1.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "65cbf914-8b60-b758-9096-bade2c1ffc14", + "time": 1.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "f26813fd-4d51-2b38-9362-7dd6a90c5c8e", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4a14476e-3a87-9399-7433-71ba342c3fa7", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa041bd6-eedd-cedc-1e15-af3032cff0cb", + "time": 1.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "530164e4-7f6f-e1a8-5c89-8add456c773b", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa33bd55-e6c1-875a-6ef7-72d08dbe3c4e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "954ac53c-1b5e-1b20-bffa-962dd8cc6492", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n\n", + "z": "0" + } + ], + "uuid": "31cfdbc1-3975-c4ee-820d-5c3f5fc1873f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0\n", + "y": "0", + "z": "0" + } + ], + "uuid": "5fcfc295-d3ca-ddbd-b055-9a6b65ea5661", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0\n", + "y": "0", + "z": "0" + } + ], + "uuid": "e41a5bc7-f55d-53a3-7ebd-bcb31c34d26d", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n", + "z": "0" + } + ], + "uuid": "083ebb2c-b339-196c-7609-c8576d39927a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n", + "z": "0" + } + ], + "uuid": "85f601b8-b74a-25a0-24b7-9d93f15f26f5", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "544a47ef-3151-3c19-8551-8f54c38f902f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "95a03ee5-c52b-9f66-30c3-734f37d0ba46", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5\n" + } + ], + "uuid": "90d33293-fe43-3edc-623e-f46f3d0df698", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5\n" + } + ], + "uuid": "45cf7d7f-255f-a390-368d-23ff6c6ede98", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3178b6d3-2042-0802-c607-1befb5d9e09f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cffd18b1-0e36-85a4-32c0-ffa2bc97c75a", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "0" + } + ], + "uuid": "30053a7c-e691-5849-ba43-8add2c8b0153", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "0" + } + ], + "uuid": "e4bda781-7786-0b9c-b962-5c94d0861efc", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c70d65ff-0518-8da8-ff84-1179c183d4ef", + "name": "elytra", + "loop": "loop", + "override": true, + "length": 0.54167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "676f73ba-7120-ba5f-b1f6-96da235316ac": { + "name": "RightArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1089e166-f458-a8d7-0105-15b904d2e0a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "a298f9b0-f55b-ae1f-e6f8-bef92266c6c7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b1602645-bd60-af43-75f0-36b41c96b6d6", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "e8ef99f2-5e21-5df8-9105-c9cda71e371a", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "707ed181-3b32-0882-b413-e80fac5a29cb", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "08b1889c-f605-17bb-c427-cb3c97b0d7d6": { + "name": "LeftArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "651021d1-4a85-0501-ef67-55d9b5f737d4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "1.7081840554196788", + "z": "4.699856911810457" + } + ], + "uuid": "785fabc9-c478-7d42-df89-eaab9dea98c8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1daa91fc-19ff-9589-1c8d-1c692ad9e4bd", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "cd3741de-807a-6f11-4a74-33b8e1942f99", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "c15b36c1-20bf-940d-62b2-cff67b5329ef": { + "name": "LLL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3d103cc1-d42d-017e-5b13-819322a05ab1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "157615d3-1412-db1c-85ef-cd259943d5f6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-85", + "z": "-20" + } + ], + "uuid": "f03646c9-8407-830d-63e3-cbbfee0fb77e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-90", + "z": "-110" + } + ], + "uuid": "f986bb28-1972-9d37-c5c9-9b831a885235", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-85", + "z": "-20" + } + ], + "uuid": "01dfa058-2e65-faca-0b62-c2fddb50b903", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "a2b728c3-1cf6-437a-c1f5-f46ca575e725", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "37eda337-5d97-3288-1fef-dcfb75e37d80", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4fe77a49-9c15-6919-0c98-a58d65ea3765", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "9236a4e0-cfcd-0901-bf6d-22da353e2452", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "6d01fbb0-015a-3585-818d-5307e80dfb70", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9c3dfefb-c145-0726-6f2f-05a5a04f9f0c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "d6cddb9b-7427-cf0f-9782-4875d0845d0e", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10.78", + "y": "0", + "z": "0" + } + ], + "uuid": "7bfb4fe9-0013-defb-76c0-0f9de15e47fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10.78", + "y": "0", + "z": "0" + } + ], + "uuid": "c4f0a7a4-b5ef-3ac7-8b4d-376dbb742d95", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "0" + } + ], + "uuid": "b7606192-0d27-974c-360f-577b83d4f9d1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-2.5", + "z": "0" + } + ], + "uuid": "52a7ff92-652f-3ee5-aad1-343451ef51d6", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "0" + } + ], + "uuid": "bfed4ebd-3eae-3d71-9953-3d8cc4db994c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "85", + "z": "20" + } + ], + "uuid": "9135accd-0077-6738-9c33-0c14c061e288", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "90", + "z": "110" + } + ], + "uuid": "23ee2180-b567-a958-1f26-75b235510122", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "85", + "z": "20" + } + ], + "uuid": "1c792fdb-b66a-0d8d-cc01-2417dfaa6ad1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "3a11a8e8-3f94-5a20-6a68-52137a18af0a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "ca5d1fd6-c676-6f79-9532-a0ca36899738", + "name": "elytradown", + "loop": "loop", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "676f73ba-7120-ba5f-b1f6-96da235316ac": { + "name": "RightArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1089e166-f458-a8d7-0105-15b904d2e0a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "a298f9b0-f55b-ae1f-e6f8-bef92266c6c7", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b1602645-bd60-af43-75f0-36b41c96b6d6", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "707ed181-3b32-0882-b413-e80fac5a29cb", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "08b1889c-f605-17bb-c427-cb3c97b0d7d6": { + "name": "LeftArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "651021d1-4a85-0501-ef67-55d9b5f737d4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "1.7081840554196788", + "z": "4.699856911810457" + } + ], + "uuid": "785fabc9-c478-7d42-df89-eaab9dea98c8", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1daa91fc-19ff-9589-1c8d-1c692ad9e4bd", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "cd3741de-807a-6f11-4a74-33b8e1942f99", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "5cba2b77-6bed-3ec1-60a1-9f361cd7c418": { + "name": "RRL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9213920a-c6e9-c3dc-823d-8dcbe146ee63", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "d9b5b5fe-d976-6ac4-8428-fb30a50b61ef", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "c15b36c1-20bf-940d-62b2-cff67b5329ef": { + "name": "LLL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3d103cc1-d42d-017e-5b13-819322a05ab1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "157615d3-1412-db1c-85ef-cd259943d5f6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "1.7139436140287216", + "y": "4.697763659989505", + "z": "0.07030897931554136" + } + ], + "uuid": "f03646c9-8407-830d-63e3-cbbfee0fb77e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.7139436140287216", + "y": "4.697763659989505", + "z": "0.07030897931554136" + } + ], + "uuid": "194c2fe2-8ad5-cad6-5bd7-a0a4e4b9c91b", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.5070097180978337", + "y": "4.768035963348666", + "z": "-2.4372550646980926" + } + ], + "uuid": "32185d45-95e8-7b04-61c8-bba21e604cd1", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "4.171539289556604", + "y": "4.7121636670044245", + "z": "-0.44353414376741057" + } + ], + "uuid": "27c752e9-a7ec-73d6-6af8-a968aad5b4c5", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "a2b728c3-1cf6-437a-c1f5-f46ca575e725", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "16\n", + "y": "0", + "z": "0" + } + ], + "uuid": "37eda337-5d97-3288-1fef-dcfb75e37d80", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "14", + "y": "0", + "z": "0" + } + ], + "uuid": "5ffdef7b-2332-058c-6784-5fa7878eef7e", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16", + "y": "0", + "z": "0" + } + ], + "uuid": "e2157d09-afa5-cd37-edfe-4845c585bbc1", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "16\n", + "y": "0", + "z": "0" + } + ], + "uuid": "a7c1e886-6dc5-2e6d-ccad-d648d146d41b", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "14", + "y": "0", + "z": "0" + } + ], + "uuid": "d9ca9c36-bb36-d2d4-10dd-d548579d845e", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16", + "y": "0", + "z": "0" + } + ], + "uuid": "ae10e99f-1acb-c0a5-1a72-edd087025ee6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "b7606192-0d27-974c-360f-577b83d4f9d1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "52a7ff92-652f-3ee5-aad1-343451ef51d6", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "bfed4ebd-3eae-3d71-9953-3d8cc4db994c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.0824266447744", + "y": "-4.618537953409941", + "z": "-362.57733562522526" + } + ], + "uuid": "9135accd-0077-6738-9c33-0c14c061e288", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.0824266447744", + "y": "-4.618537953409941", + "z": "-362.57733562522526" + } + ], + "uuid": "81f95a84-2fdd-edcb-31f0-0878782368ac", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.2860559702208", + "y": "-4.697764794083923", + "z": "-360.07030901336475" + } + ], + "uuid": "eb2d9cad-23ff-78ee-2626-bb1ea08e1e28", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-360.62415380575715", + "y": "-4.6347728995687065", + "z": "-362.06360263126004" + } + ], + "uuid": "fd33e3fd-a00b-7771-5b63-31e7d5ce9822", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "3a11a8e8-3f94-5a20-6a68-52137a18af0a", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c6c2015d-505f-d365-9f1a-e94902b0e556", + "name": "fallen_down", + "loop": "once", + "override": false, + "length": 2, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-7", + "z": "0" + } + ], + "uuid": "7a14759e-4c73-cb54-c74f-6e0b70f5e9ff", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "572999ea-aab2-fa92-9cc2-c455d6c30174", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ccd2320f-600d-fa6a-12e1-fba8f23d9bd8", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "0", + "z": "0" + } + ], + "uuid": "aef16164-104a-ba87-5af8-73a72a0e4ab9", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "8828461f-856f-526f-afd6-da0380ead13d", + "time": 1.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-4", + "z": "-5" + } + ], + "uuid": "f919fc7a-17fc-b589-c784-942bf33fcabe", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-5" + } + ], + "uuid": "7a75b663-bd4b-9737-6a30-6b21bb9ef728", + "time": 1.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b0160c0f-1e58-e5e5-c4af-8b90fe0d46f8", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "3220dd24-4cd5-de75-018e-19c5b7d02747", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "2" + } + ], + "uuid": "1e8183fa-a9dd-05fb-1c21-ed151d60331b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "7a54a105-94d1-ead4-f81f-85ff3dc5bf4f", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "1" + } + ], + "uuid": "2b925276-781c-b970-19d4-aa8ad85ac942", + "time": 1.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "624e4404-117d-a6c5-d3ec-db6f93c5e9d2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e737ea-707b-cd01-4567-e7d4bb88c1d8", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-13.740886471626254", + "y": "6.027243974087924", + "z": "2.587610929675975" + } + ], + "uuid": "578e53a6-c9cc-f6a9-3635-228d8ad9db34", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-7", + "z": "-6" + } + ], + "uuid": "72497733-6beb-c607-1a15-dbd943ec0ac3", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-3.5", + "z": "-5" + } + ], + "uuid": "4181f120-0c33-58d6-0a82-e693653b5b5f", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-3.5", + "z": "-5" + } + ], + "uuid": "f6c32a4d-461c-783a-5c4e-a8e4e750676b", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1.5", + "z": "-5" + } + ], + "uuid": "32722476-1154-1a22-3781-5bd07e32e082", + "time": 1.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-8.913101754094896", + "y": "19.52579073928291", + "z": "90.39479412399987" + } + ], + "uuid": "34415b63-90c2-b62f-6985-d70c490f7e2c", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c375de02-964c-d44b-0289-1a8145a4dbc4", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5000077136649814", + "y": "21.251700627884276", + "z": "122.40052170686671" + } + ], + "uuid": "66663582-91d6-81bc-cd14-eb4a4afabb6c", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "c694b782-6e87-5ea2-ab88-23a52f22622a", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "383dbffe-c418-9276-d9fb-fb13dbeafe09", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-75" + } + ], + "uuid": "f5af7152-869f-4932-d9f8-85eea9bae7e2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8af6f8d0-c7e7-7e64-b7df-19f57ec12274", + "time": 0.375, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-4.336100370535405", + "y": "-11.735074752301443", + "z": "20.445820099525918" + } + ], + "uuid": "433a815d-2eb3-587b-ba22-3bb8115dd6e1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-35.00000000000031", + "y": "-12.499999999999764", + "z": "-2.7355895326763857e-13" + } + ], + "uuid": "c3efc945-4c1c-6f96-4942-fc109866d39e", + "time": 0.29167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-65.00000000000045", + "y": "-12.499999999999545", + "z": "-4.547473508864641e-13" + } + ], + "uuid": "272f3287-2902-6964-4156-c672873bddca", + "time": 0.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-120.00000000000045", + "y": "-12.499999999999545", + "z": "-4.547473508864641e-13" + } + ], + "uuid": "a5d28206-e1cf-d13b-d8ea-8a24295be696", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-1" + } + ], + "uuid": "a88681ab-c3fd-96f0-d408-399b7fb4c64b", + "time": 0.29167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "223fcc76-f900-f69c-3c91-9479465c4644", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "a193cc67-3965-2fbb-548b-9edf05f14e7b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "110", + "y": "0", + "z": "0" + } + ], + "uuid": "206242f9-09fe-9ddc-0719-50f0338aa5a6", + "time": 0.29167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "130", + "y": "0", + "z": "0" + } + ], + "uuid": "7a2a2eb6-4662-f760-7e4e-2b0d0cb17ba2", + "time": 0.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "135", + "y": "0", + "z": "0" + } + ], + "uuid": "803547bf-ab00-3496-1d04-48f5a63c379a", + "time": 1.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "3" + } + ], + "uuid": "26705eff-cd98-fa90-61a9-02d95a81973e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-2", + "z": "2" + } + ], + "uuid": "3cd408c9-4dc0-e83c-791c-f8b8a653d5ec", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.69", + "y": "-1.38", + "z": "0.31000000000000005" + } + ], + "uuid": "1c1ec8a0-e11a-52ee-338e-9bd84b153714", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.5", + "y": "-1.4999999999999996", + "z": "2" + } + ], + "uuid": "ab8f2d63-ee2d-b9a2-3f59-543839f4c6d5", + "time": 1.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "100", + "y": "0", + "z": "0" + } + ], + "uuid": "93755341-14c8-96c4-a1b1-1ca812c42d1b", + "time": 0.29167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "694b2ae4-56b3-faae-6d01-2a08b2530e27", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "87.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1f090497-c35c-0172-e3ab-dbe179c642f9", + "time": 0.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a24df147-348d-b021-15f0-5bbe6ed1beb4", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "87.5", + "y": "0", + "z": "0" + } + ], + "uuid": "69c66712-9530-9dea-a7cb-43c74964a967", + "time": 0.83333, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-10" + } + ], + "uuid": "749aafc1-c2f9-3b25-c0c5-48abe44c98db", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "-10" + } + ], + "uuid": "841c3d22-bde0-c181-1d4a-5baa3842c533", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "adb58a38-1c6a-82d3-0be3-4dbfab49c2b9", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "157.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7f2b74a1-8672-4413-20ec-fd2215b24bcd", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "2" + } + ], + "uuid": "dc4b9b9c-f907-9384-f0e9-0e1360c82b9e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-20", + "z": "0" + } + ], + "uuid": "f408e20d-35f7-2d62-818e-343df0ce9a0c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-7", + "z": "-5" + } + ], + "uuid": "0ad58c8f-cb60-fa0d-2123-9fac2ab0793a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "-4" + } + ], + "uuid": "cd444394-5c24-d40b-83e1-c25c5113df25", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "88c665ef-f579-e04c-01a8-d1f6fe3c7a9b", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "b8c08a9d-ce87-2959-a847-0534a1702c08": { + "name": "RH", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "65" + } + ], + "uuid": "f4b240ad-9749-6d5f-3560-b92c667d8fd2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f8c453b0-4f0a-de6b-f6bb-982e30243fc9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "e6e30e03-879e-b600-df0a-80f85cc8ac1c", + "name": "jumpingup_un", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "-10.547935953487286", + "z": "-14.04397327585233" + } + ], + "uuid": "2ce88a47-e760-d023-f435-fee15a942e01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "-21.469023519779256", + "z": "13.124268122792381" + } + ], + "uuid": "57bd311c-c651-cb95-d7e8-00b3ddc080f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7b14a130-b86f-c7b6-acaf-391e3615e38c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "c4bee500-dfc3-288e-e5be-f1abcb841f50", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6d2f6d31-a7a4-97b4-9a64-3f0daf236c3b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "331a6bfb-9c77-3901-1736-91a8522d3e70", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "79d43228-ea3b-a486-b935-03a3b8b95e5c", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "10.547935953487286", + "z": "14.04397327585233" + } + ], + "uuid": "99e5ad07-48b6-b8ac-9153-2dfc358f5f46", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "21.469023519779256", + "z": "-13.124268122792381" + } + ], + "uuid": "d300bf2c-7f4c-5b80-7be9-b0f4df223e1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "9dcf4fa5-5f02-bf18-4da5-baf3e1853a15", + "name": "jumpingdown_un", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "24.66569435017618", + "y": "-4.208542519128969", + "z": "-23.420532526717125" + } + ], + "uuid": "b40dc0a0-efb9-9f8c-fd76-8538f1d6151e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.50141512903565", + "y": "21.469023519779057", + "z": "13.124268122792273" + } + ], + "uuid": "ebade1bc-8d9b-7452-656f-c651843ad881", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1080d370-979f-afd0-1990-df7136997d28", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "2afc1367-c16d-0bc7-c13c-41b0556b534e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "9a87c967-985b-57c4-92d9-8ffe83c78122", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a728401b-c01f-1b6d-1de3-bf6ff7a33eaf", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "70", + "y": "0", + "z": "0" + } + ], + "uuid": "7b335476-00b3-7443-15a4-076d16f1a5fe", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.721658181035764", + "y": "-0.9658317366702249", + "z": "13.738468230615126" + } + ], + "uuid": "8075c8e1-0ef5-49d4-e14c-baf6cde73d84", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "ffda97cd-4f5d-df11-e7ab-14464d7a742f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "77066a60-fda8-8b84-a0e9-5a4f71ca5138", + "name": "sprintjumpup_un", + "loop": "hold", + "override": true, + "length": 0.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "24.66569435017618", + "y": "-4.208542519128969", + "z": "-23.420532526717125" + } + ], + "uuid": "8cc15b94-f5fb-11c8-2021-1aa81459686b", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "-10.547935953487286", + "z": "-14.04397327585233" + } + ], + "uuid": "2ce88a47-e760-d023-f435-fee15a942e01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.50141512903565", + "y": "21.469023519779057", + "z": "13.124268122792273" + } + ], + "uuid": "33cbf45a-a330-0e48-08bb-5fc52f9cf3e4", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "-21.469023519779256", + "z": "13.124268122792381" + } + ], + "uuid": "57bd311c-c651-cb95-d7e8-00b3ddc080f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ab9a172f-64ce-599a-2323-b583f1ec1ab7", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7b14a130-b86f-c7b6-acaf-391e3615e38c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "7ceb5601-93ac-b15c-8d3f-1b89244e71a5", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "c4bee500-dfc3-288e-e5be-f1abcb841f50", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "40e6845f-0f1b-fbd2-14f9-def847e3bf2d", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6d2f6d31-a7a4-97b4-9a64-3f0daf236c3b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "33a14844-1e2d-f8b8-60a4-07b859b55d3f", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "331a6bfb-9c77-3901-1736-91a8522d3e70", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "70", + "y": "0", + "z": "0" + } + ], + "uuid": "92750794-713d-7646-aca2-67ac972f8b5a", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "79d43228-ea3b-a486-b935-03a3b8b95e5c", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.721658181035764", + "y": "-0.9658317366702249", + "z": "13.738468230615126" + } + ], + "uuid": "9b2c2034-98fa-42c8-f7bd-e7cd6adbf5af", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "10.547935953487286", + "z": "14.04397327585233" + } + ], + "uuid": "99e5ad07-48b6-b8ac-9153-2dfc358f5f46", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "28740c2c-e4a2-bfd8-4058-0ac4c1213372", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "21.469023519779256", + "z": "-13.124268122792381" + } + ], + "uuid": "d300bf2c-7f4c-5b80-7be9-b0f4df223e1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "93e93f98-3606-59fe-6804-809edd0ba99d", + "name": "sprintjumpdown_un", + "loop": "hold", + "override": true, + "length": 0.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "33.04", + "y": "-7.66", + "z": "-106.78" + } + ], + "uuid": "9b2a3d76-e697-ac99-6138-647c4423af39", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-28.75", + "y": "0", + "z": "13.75" + } + ], + "uuid": "729197d1-4aa9-3e64-4d81-1ab685ff4a04", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-54.53", + "y": "-4.27", + "z": "-6.19" + } + ], + "uuid": "bbb61508-3a9c-c319-eaf4-634a726db49f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "6ecb351a-4131-44ff-5aad-cf1d40550d10", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "40e6845f-0f1b-fbd2-14f9-def847e3bf2d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-29.53", + "y": "4.27", + "z": "6.19" + } + ], + "uuid": "b5bb7c64-4ad7-b2d3-cf3e-98355b795405", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "475d3f28-89d3-aac3-fa64-f7bb61f3a94e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "33.04", + "y": "7.66", + "z": "106.78" + } + ], + "uuid": "c42b9ee2-0927-dd7b-b6f1-c91947adb3e4", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RFA", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-28.75", + "y": "0", + "z": "-13.75" + } + ], + "uuid": "8d73697d-9369-3831-e6bb-e325ebb14849", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "1c9fffc8-3a44-a8fc-7673-9e5faf0323ac", + "name": "crouching", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "-3" + } + ], + "uuid": "4b569acd-c608-df6f-3da2-c4b862fe959d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "1c3f7051-7cc7-623f-2941-1eabe1167044", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "0e1e279a-b0e6-73d2-715a-7b7dad4dea51", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "e1f281e2-be01-69a5-d61a-1e0ca773e590", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "20cb3517-cb5f-13f6-3824-2f4d84ada274", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "2336055b-9af8-8092-a33c-1efbc7e4ae22", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "5aafa2a5-f030-6650-9770-0f0dbff165b7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "acae99d5-af76-d05f-e411-3637afb3c46b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "86f279b7-9445-ecb8-45ef-e0c82f00b202", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "85efa497-707f-7cf5-537c-59e0e81c49a1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "a519eb49-f6b7-32ba-98ad-dcb9e3d553ce", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "36392c4d-571a-9eb6-3572-d9b7fe8314a7", + "name": "crouch2", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-4", + "z": "-5" + } + ], + "uuid": "4b569acd-c608-df6f-3da2-c4b862fe959d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "1c3f7051-7cc7-623f-2941-1eabe1167044", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "4" + } + ], + "uuid": "aef4ded1-340e-2b3d-405e-8c6a726b3bb0", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "e1f281e2-be01-69a5-d61a-1e0ca773e590", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "20cb3517-cb5f-13f6-3824-2f4d84ada274", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "2336055b-9af8-8092-a33c-1efbc7e4ae22", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "5aafa2a5-f030-6650-9770-0f0dbff165b7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "acae99d5-af76-d05f-e411-3637afb3c46b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "86f279b7-9445-ecb8-45ef-e0c82f00b202", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "85efa497-707f-7cf5-537c-59e0e81c49a1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "a519eb49-f6b7-32ba-98ad-dcb9e3d553ce", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + } + ] +} \ No newline at end of file diff --git a/3d_models/akira/model 4.13/akiracombined_v4.png b/3d_models/akira/model 4.13/akiracombined_v4.png new file mode 100644 index 0000000..91aa503 Binary files /dev/null and b/3d_models/akira/model 4.13/akiracombined_v4.png differ diff --git a/3d_models/akira/model 4.13/avatar.json b/3d_models/akira/model 4.13/avatar.json new file mode 100644 index 0000000..28d77d1 --- /dev/null +++ b/3d_models/akira/model 4.13/avatar.json @@ -0,0 +1,9 @@ +{ + "authors": [ + "oatmealine", + "akirapink" + ], + "name": "Akira Eiko Olivia Pink (v4)", + "description":"The Last Human on the Internet", + "color": "#ff73d3" +} diff --git a/3d_models/akira/model 4.13/elytra.png b/3d_models/akira/model 4.13/elytra.png new file mode 100644 index 0000000..619f2e1 Binary files /dev/null and b/3d_models/akira/model 4.13/elytra.png differ diff --git a/3d_models/akira/model 4.13/script.lua b/3d_models/akira/model 4.13/script.lua new file mode 100644 index 0000000..ae16dd5 --- /dev/null +++ b/3d_models/akira/model 4.13/script.lua @@ -0,0 +1,29 @@ +require("GSAnimBlend") +local anims = require("EZAnims") +local example = anims:addBBModel(animations.akira_olivia_pink) +vanilla_model.PLAYER:setVisible(false) +vanilla_model.ARMOR:setVisible(false) +vanilla_model.HELD_ITEMS:setVisible(true) +vanilla_model.ELYTRA:setVisible(true) +vanilla_model.CAPE:setVisible(false) +BlendTime = 2 +animations.akira_olivia_pink.sit_emote:setBlendTime(2) +-- nameplate.All:setText('[{"text":"akirapink","color":"#ff73d3"}]') + + +-- models.akira_olivia_pink.root.RightArm +-- :copy("RightArmCopy") -- Create a copy of the arm +-- :setParentType("models.akira_olivia_pink.root.Torso.RightArm") -- Set the parent type of the copy +-- :moveTo(models.akira_olivia_pink.root.Torso) -- Move it to some location in the model +-- +--function events.RENDER(_, context) +-- local is_firstperson = context == "FIRST_PERSON"f +-- models.akira_olivia_pink.root.Torso.RightArm:setVisible(not is_firstperson) +-- models.akira_olivia_pink.root.Torso:setVisible(not is_firstperson) +-- models.akira_olivia_pink.root.Torso.backpack:setVisible(not is_firstperson) +-- models.akira_olivia_pink.root.Torso.RightArmCopy:setVisible(is_firstperson) +--end + + +--hide vanilla elytra model +vanilla_model.ELYTRA:setVisible(false) diff --git a/3d_models/akira/akira olivia pink_old.gif b/3d_models/akira/old model backup/akira olivia pink_old.gif similarity index 100% rename from 3d_models/akira/akira olivia pink_old.gif rename to 3d_models/akira/old model backup/akira olivia pink_old.gif diff --git a/3d_models/akira/akira_follow.gif b/3d_models/akira/old model backup/akira_follow.gif similarity index 100% rename from 3d_models/akira/akira_follow.gif rename to 3d_models/akira/old model backup/akira_follow.gif diff --git a/3d_models/akira/akira_run.gif b/3d_models/akira/old model backup/akira_run.gif similarity index 100% rename from 3d_models/akira/akira_run.gif rename to 3d_models/akira/old model backup/akira_run.gif diff --git a/3d_models/akira/akira_walk.gif b/3d_models/akira/old model backup/akira_walk.gif similarity index 100% rename from 3d_models/akira/akira_walk.gif rename to 3d_models/akira/old model backup/akira_walk.gif diff --git a/3d_models/akira/akira_wave.gif b/3d_models/akira/old model backup/akira_wave.gif similarity index 100% rename from 3d_models/akira/akira_wave.gif rename to 3d_models/akira/old model backup/akira_wave.gif diff --git a/3d_models/akira/net.akirapink.akirapink_3d_lowpoly.gif b/3d_models/akira/old model backup/net.akirapink.akirapink_3d_lowpoly.gif similarity index 100% rename from 3d_models/akira/net.akirapink.akirapink_3d_lowpoly.gif rename to 3d_models/akira/old model backup/net.akirapink.akirapink_3d_lowpoly.gif diff --git a/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-1.png b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-1.png new file mode 100644 index 0000000..c71837b Binary files /dev/null and b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-1.png differ diff --git a/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-3.png b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-3.png new file mode 100644 index 0000000..1d4b401 Binary files /dev/null and b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-3.png differ diff --git a/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-4.png b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-4.png new file mode 100644 index 0000000..e7f8013 Binary files /dev/null and b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-4.png differ diff --git a/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-5.png b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-5.png new file mode 100644 index 0000000..aa3727d Binary files /dev/null and b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-5.png differ diff --git a/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-6.png b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-6.png new file mode 100644 index 0000000..4eec560 Binary files /dev/null and b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-6.png differ diff --git a/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-7.png b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-7.png new file mode 100644 index 0000000..b0cb981 Binary files /dev/null and b/drawings/old/before_violet_meadow/GIMP Drawings/unf-drawing-7.png differ diff --git a/pixel_art/undertale-deltarune/better_goner_maker.aseprite b/pixel_art/undertale-deltarune/better_goner_maker.aseprite new file mode 100644 index 0000000..9fd4ac1 Binary files /dev/null and b/pixel_art/undertale-deltarune/better_goner_maker.aseprite differ diff --git a/webdev/website_16/bg.png b/webdev/website_16/bg.png index 2359210..95663aa 100644 Binary files a/webdev/website_16/bg.png and b/webdev/website_16/bg.png differ diff --git a/webdev/website_16/bgpaper.png b/webdev/website_16/bgpaper.png new file mode 100644 index 0000000..140375f Binary files /dev/null and b/webdev/website_16/bgpaper.png differ diff --git a/webdev/website_16/index.html b/webdev/website_16/index.html index 57eb0c0..d86f5ab 100644 --- a/webdev/website_16/index.html +++ b/webdev/website_16/index.html @@ -237,7 +237,7 @@ sub{ - +