diff --git a/battle_srv/models/room.go b/battle_srv/models/room.go
index b25d6ad..898db7b 100644
--- a/battle_srv/models/room.go
+++ b/battle_srv/models/room.go
@@ -345,13 +345,6 @@ func (pR *Room) ConvertToLastUsedRenderFrameId(inputFrameId int32, inputDelayFra
return ((inputFrameId << pR.InputScaleFrames) + inputDelayFrames + (1 << pR.InputScaleFrames) - 1)
}
-func (pR *Room) EncodeUpsyncCmd(upsyncCmd *InputFrameUpsync) uint64 {
- var ret uint64 = 0
- // There're 13 possible directions, occupying the first 4 bits, no need to shift
- ret += uint64(upsyncCmd.EncodedDir)
- return ret
-}
-
func (pR *Room) RenderFrameBufferString() string {
return fmt.Sprintf("{renderFrameId: %d, stRenderFrameId: %d, edRenderFrameId: %d, lastAllConfirmedRenderFrameId: %d}", pR.RenderFrameId, pR.RenderFrameBuffer.StFrameId, pR.RenderFrameBuffer.EdFrameId, pR.CurDynamicsRenderFrameId)
}
@@ -1073,7 +1066,7 @@ func (pR *Room) prefabInputFrameDownsync(inputFrameId int32) *InputFrameDownsync
ConfirmedList: uint64(0),
}
} else {
- tmp := pR.InputsBuffer.GetByFrameId(inputFrameId - 1)
+ tmp := pR.InputsBuffer.GetByFrameId(inputFrameId - 1) // There's no need for the backend to find the "lastAllConfirmed inputs" for prefabbing, either "BackendDynamicsEnabled" is true or false
if nil == tmp {
panic(fmt.Sprintf("Error prefabbing inputFrameDownsync: roomId=%v, InputsBuffer=%v", pR.Id, pR.InputsBufferString(false)))
}
@@ -1114,7 +1107,7 @@ func (pR *Room) markConfirmationIfApplicable() {
}
inputFrameUpsync := tmp.(*InputFrameUpsync)
indiceInJoinIndexBooleanArr := uint32(player.JoinIndex - 1)
- inputFrameDownsync.InputList[indiceInJoinIndexBooleanArr] = pR.EncodeUpsyncCmd(inputFrameUpsync)
+ inputFrameDownsync.InputList[indiceInJoinIndexBooleanArr] = inputFrameUpsync.Encoded
inputFrameDownsync.ConfirmedList |= (1 << indiceInJoinIndexBooleanArr)
}
@@ -1239,9 +1232,8 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF
joinIndex := player.JoinIndex
effPushbacks[joinIndex-1].X, effPushbacks[joinIndex-1].Y = float64(0), float64(0)
currPlayerDownsync := currRenderFrame.Players[playerId]
- encodedInput := inputList[joinIndex-1]
- decodedInput := DIRECTION_DECODER[encodedInput]
- proposedVirtualGridDx, proposedVirtualGridDy := (decodedInput[0] + decodedInput[0]*currPlayerDownsync.Speed), (decodedInput[1] + decodedInput[1]*currPlayerDownsync.Speed)
+ decodedInput := pR.decodeInput(inputList[joinIndex-1])
+ proposedVirtualGridDx, proposedVirtualGridDy := (decodedInput.Dx + decodedInput.Dx*currPlayerDownsync.Speed), (decodedInput.Dy + decodedInput.Dy*currPlayerDownsync.Speed)
newVx, newVy := (currPlayerDownsync.VirtualGridX + proposedVirtualGridDx), (currPlayerDownsync.VirtualGridY + proposedVirtualGridDy)
// Reset playerCollider position from the "virtual grid position"
collisionPlayerIndex := COLLISION_PLAYER_INDEX_PREFIX + joinIndex
@@ -1251,10 +1243,10 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF
// Update in the collision system
playerCollider.Update()
- if 0 < encodedInput {
+ if 0 != decodedInput.Dx || 0 != decodedInput.Dy {
Logger.Debug(fmt.Sprintf("Checking collision for playerId=%v: virtual (%d, %d) -> (%d, %d), now playerShape=%v", playerId, currPlayerDownsync.VirtualGridX, currPlayerDownsync.VirtualGridY, newVx, newVy, ConvexPolygonStr(playerCollider.Shape.(*resolv.ConvexPolygon))))
- nextRenderFramePlayers[playerId].Dir.Dx = decodedInput[0]
- nextRenderFramePlayers[playerId].Dir.Dy = decodedInput[1]
+ nextRenderFramePlayers[playerId].Dir.Dx = decodedInput.Dx
+ nextRenderFramePlayers[playerId].Dir.Dy = decodedInput.Dy
}
}
@@ -1295,6 +1287,16 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF
return toRet
}
+func (pR *Room) decodeInput(encodedInput uint64) *InputFrameDecoded {
+ encodedDirection := (encodedInput & 0xf)
+ btnALevel := int32((encodedInput >> 4) & 1)
+ return &InputFrameDecoded{
+ Dx: DIRECTION_DECODER[encodedDirection][0],
+ Dy: DIRECTION_DECODER[encodedDirection][1],
+ BtnALevel: btnALevel,
+ }
+}
+
func (pR *Room) inputFrameIdDebuggable(inputFrameId int32) bool {
return 0 == (inputFrameId % 10)
}
diff --git a/battle_srv/protos/room_downsync_frame.pb.go b/battle_srv/protos/room_downsync_frame.pb.go
index d826b45..460b3a8 100644
--- a/battle_srv/protos/room_downsync_frame.pb.go
+++ b/battle_srv/protos/room_downsync_frame.pb.go
@@ -1,7 +1,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.28.1
-// protoc v3.7.1
+// protoc v3.21.4
// source: room_downsync_frame.proto
package protos
@@ -442,19 +442,82 @@ func (x *PlayerDownsyncMeta) GetColliderRadius() float64 {
return 0
}
+type InputFrameDecoded struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ Dx int32 `protobuf:"varint,1,opt,name=dx,proto3" json:"dx,omitempty"`
+ Dy int32 `protobuf:"varint,2,opt,name=dy,proto3" json:"dy,omitempty"`
+ BtnALevel int32 `protobuf:"varint,3,opt,name=btnALevel,proto3" json:"btnALevel,omitempty"`
+}
+
+func (x *InputFrameDecoded) Reset() {
+ *x = InputFrameDecoded{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_room_downsync_frame_proto_msgTypes[3]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *InputFrameDecoded) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*InputFrameDecoded) ProtoMessage() {}
+
+func (x *InputFrameDecoded) ProtoReflect() protoreflect.Message {
+ mi := &file_room_downsync_frame_proto_msgTypes[3]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use InputFrameDecoded.ProtoReflect.Descriptor instead.
+func (*InputFrameDecoded) Descriptor() ([]byte, []int) {
+ return file_room_downsync_frame_proto_rawDescGZIP(), []int{3}
+}
+
+func (x *InputFrameDecoded) GetDx() int32 {
+ if x != nil {
+ return x.Dx
+ }
+ return 0
+}
+
+func (x *InputFrameDecoded) GetDy() int32 {
+ if x != nil {
+ return x.Dy
+ }
+ return 0
+}
+
+func (x *InputFrameDecoded) GetBtnALevel() int32 {
+ if x != nil {
+ return x.BtnALevel
+ }
+ return 0
+}
+
type InputFrameUpsync struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- InputFrameId int32 `protobuf:"varint,1,opt,name=inputFrameId,proto3" json:"inputFrameId,omitempty"`
- EncodedDir int32 `protobuf:"varint,6,opt,name=encodedDir,proto3" json:"encodedDir,omitempty"`
+ InputFrameId int32 `protobuf:"varint,1,opt,name=inputFrameId,proto3" json:"inputFrameId,omitempty"`
+ Encoded uint64 `protobuf:"varint,2,opt,name=encoded,proto3" json:"encoded,omitempty"`
}
func (x *InputFrameUpsync) Reset() {
*x = InputFrameUpsync{}
if protoimpl.UnsafeEnabled {
- mi := &file_room_downsync_frame_proto_msgTypes[3]
+ mi := &file_room_downsync_frame_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -467,7 +530,7 @@ func (x *InputFrameUpsync) String() string {
func (*InputFrameUpsync) ProtoMessage() {}
func (x *InputFrameUpsync) ProtoReflect() protoreflect.Message {
- mi := &file_room_downsync_frame_proto_msgTypes[3]
+ mi := &file_room_downsync_frame_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -480,7 +543,7 @@ func (x *InputFrameUpsync) ProtoReflect() protoreflect.Message {
// Deprecated: Use InputFrameUpsync.ProtoReflect.Descriptor instead.
func (*InputFrameUpsync) Descriptor() ([]byte, []int) {
- return file_room_downsync_frame_proto_rawDescGZIP(), []int{3}
+ return file_room_downsync_frame_proto_rawDescGZIP(), []int{4}
}
func (x *InputFrameUpsync) GetInputFrameId() int32 {
@@ -490,9 +553,9 @@ func (x *InputFrameUpsync) GetInputFrameId() int32 {
return 0
}
-func (x *InputFrameUpsync) GetEncodedDir() int32 {
+func (x *InputFrameUpsync) GetEncoded() uint64 {
if x != nil {
- return x.EncodedDir
+ return x.Encoded
}
return 0
}
@@ -510,7 +573,7 @@ type InputFrameDownsync struct {
func (x *InputFrameDownsync) Reset() {
*x = InputFrameDownsync{}
if protoimpl.UnsafeEnabled {
- mi := &file_room_downsync_frame_proto_msgTypes[4]
+ mi := &file_room_downsync_frame_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -523,7 +586,7 @@ func (x *InputFrameDownsync) String() string {
func (*InputFrameDownsync) ProtoMessage() {}
func (x *InputFrameDownsync) ProtoReflect() protoreflect.Message {
- mi := &file_room_downsync_frame_proto_msgTypes[4]
+ mi := &file_room_downsync_frame_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -536,7 +599,7 @@ func (x *InputFrameDownsync) ProtoReflect() protoreflect.Message {
// Deprecated: Use InputFrameDownsync.ProtoReflect.Descriptor instead.
func (*InputFrameDownsync) Descriptor() ([]byte, []int) {
- return file_room_downsync_frame_proto_rawDescGZIP(), []int{4}
+ return file_room_downsync_frame_proto_rawDescGZIP(), []int{5}
}
func (x *InputFrameDownsync) GetInputFrameId() int32 {
@@ -571,7 +634,7 @@ type HeartbeatUpsync struct {
func (x *HeartbeatUpsync) Reset() {
*x = HeartbeatUpsync{}
if protoimpl.UnsafeEnabled {
- mi := &file_room_downsync_frame_proto_msgTypes[5]
+ mi := &file_room_downsync_frame_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -584,7 +647,7 @@ func (x *HeartbeatUpsync) String() string {
func (*HeartbeatUpsync) ProtoMessage() {}
func (x *HeartbeatUpsync) ProtoReflect() protoreflect.Message {
- mi := &file_room_downsync_frame_proto_msgTypes[5]
+ mi := &file_room_downsync_frame_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -597,7 +660,7 @@ func (x *HeartbeatUpsync) ProtoReflect() protoreflect.Message {
// Deprecated: Use HeartbeatUpsync.ProtoReflect.Descriptor instead.
func (*HeartbeatUpsync) Descriptor() ([]byte, []int) {
- return file_room_downsync_frame_proto_rawDescGZIP(), []int{5}
+ return file_room_downsync_frame_proto_rawDescGZIP(), []int{6}
}
func (x *HeartbeatUpsync) GetClientTimestamp() int64 {
@@ -621,7 +684,7 @@ type RoomDownsyncFrame struct {
func (x *RoomDownsyncFrame) Reset() {
*x = RoomDownsyncFrame{}
if protoimpl.UnsafeEnabled {
- mi := &file_room_downsync_frame_proto_msgTypes[6]
+ mi := &file_room_downsync_frame_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -634,7 +697,7 @@ func (x *RoomDownsyncFrame) String() string {
func (*RoomDownsyncFrame) ProtoMessage() {}
func (x *RoomDownsyncFrame) ProtoReflect() protoreflect.Message {
- mi := &file_room_downsync_frame_proto_msgTypes[6]
+ mi := &file_room_downsync_frame_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -647,7 +710,7 @@ func (x *RoomDownsyncFrame) ProtoReflect() protoreflect.Message {
// Deprecated: Use RoomDownsyncFrame.ProtoReflect.Descriptor instead.
func (*RoomDownsyncFrame) Descriptor() ([]byte, []int) {
- return file_room_downsync_frame_proto_rawDescGZIP(), []int{6}
+ return file_room_downsync_frame_proto_rawDescGZIP(), []int{7}
}
func (x *RoomDownsyncFrame) GetId() int32 {
@@ -696,7 +759,7 @@ type WsReq struct {
func (x *WsReq) Reset() {
*x = WsReq{}
if protoimpl.UnsafeEnabled {
- mi := &file_room_downsync_frame_proto_msgTypes[7]
+ mi := &file_room_downsync_frame_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -709,7 +772,7 @@ func (x *WsReq) String() string {
func (*WsReq) ProtoMessage() {}
func (x *WsReq) ProtoReflect() protoreflect.Message {
- mi := &file_room_downsync_frame_proto_msgTypes[7]
+ mi := &file_room_downsync_frame_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -722,7 +785,7 @@ func (x *WsReq) ProtoReflect() protoreflect.Message {
// Deprecated: Use WsReq.ProtoReflect.Descriptor instead.
func (*WsReq) Descriptor() ([]byte, []int) {
- return file_room_downsync_frame_proto_rawDescGZIP(), []int{7}
+ return file_room_downsync_frame_proto_rawDescGZIP(), []int{8}
}
func (x *WsReq) GetMsgId() int32 {
@@ -797,7 +860,7 @@ type WsResp struct {
func (x *WsResp) Reset() {
*x = WsResp{}
if protoimpl.UnsafeEnabled {
- mi := &file_room_downsync_frame_proto_msgTypes[8]
+ mi := &file_room_downsync_frame_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -810,7 +873,7 @@ func (x *WsResp) String() string {
func (*WsResp) ProtoMessage() {}
func (x *WsResp) ProtoReflect() protoreflect.Message {
- mi := &file_room_downsync_frame_proto_msgTypes[8]
+ mi := &file_room_downsync_frame_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -823,7 +886,7 @@ func (x *WsResp) ProtoReflect() protoreflect.Message {
// Deprecated: Use WsResp.ProtoReflect.Descriptor instead.
func (*WsResp) Descriptor() ([]byte, []int) {
- return file_room_downsync_frame_proto_rawDescGZIP(), []int{8}
+ return file_room_downsync_frame_proto_rawDescGZIP(), []int{9}
}
func (x *WsResp) GetRet() int32 {
@@ -992,87 +1055,92 @@ var file_room_downsync_frame_proto_rawDesc = []byte{
0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x6f, 0x6c, 0x6c, 0x69,
0x64, 0x65, 0x72, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52,
0x0e, 0x63, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x22,
- 0x56, 0x0a, 0x10, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73,
- 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d,
- 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74,
- 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x6e, 0x63, 0x6f, 0x64,
- 0x65, 0x64, 0x44, 0x69, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x65, 0x6e, 0x63,
- 0x6f, 0x64, 0x65, 0x64, 0x44, 0x69, 0x72, 0x22, 0x7c, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74,
- 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a,
- 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x05, 0x52, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49,
- 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02,
- 0x20, 0x03, 0x28, 0x04, 0x52, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12,
- 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65,
- 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x0f, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65,
- 0x61, 0x74, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x6c, 0x69, 0x65,
- 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x0f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x22, 0x8b, 0x03, 0x0a, 0x11, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73,
- 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x40, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x79,
- 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x73, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46,
- 0x72, 0x61, 0x6d, 0x65, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72,
- 0x79, 0x52, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x0e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e,
- 0x6f, 0x73, 0x12, 0x4c, 0x0a, 0x0b, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61,
- 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73,
- 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61,
- 0x6d, 0x65, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73, 0x45, 0x6e,
- 0x74, 0x72, 0x79, 0x52, 0x0b, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73,
- 0x1a, 0x52, 0x0a, 0x0c, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
- 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b,
- 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65,
- 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x5a, 0x0a, 0x10, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65,
- 0x74, 0x61, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x30, 0x0a, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e,
- 0x63, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
- 0x22, 0xb8, 0x02, 0x0a, 0x05, 0x57, 0x73, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x73,
- 0x67, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64,
- 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x05, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03,
- 0x61, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x63, 0x74, 0x12, 0x1c,
- 0x0a, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x05, 0x52, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d,
- 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x05, 0x52, 0x0d, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x46, 0x72, 0x61, 0x6d, 0x65,
- 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x12, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75,
- 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12,
- 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65,
- 0x49, 0x64, 0x12, 0x4e, 0x0a, 0x15, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65,
- 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x18, 0x07, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x18, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74,
- 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x15, 0x69, 0x6e, 0x70,
- 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74,
- 0x63, 0x68, 0x12, 0x27, 0x0a, 0x02, 0x68, 0x62, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61,
- 0x74, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x02, 0x68, 0x62, 0x22, 0x89, 0x02, 0x0a, 0x06,
- 0x57, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x65, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x63, 0x68, 0x6f,
- 0x65, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x65,
- 0x63, 0x68, 0x6f, 0x65, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x63,
- 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x63, 0x74, 0x12, 0x2b, 0x0a, 0x03,
- 0x72, 0x64, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x73, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46,
- 0x72, 0x61, 0x6d, 0x65, 0x52, 0x03, 0x72, 0x64, 0x66, 0x12, 0x54, 0x0a, 0x17, 0x69, 0x6e, 0x70,
- 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x42,
- 0x61, 0x74, 0x63, 0x68, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f,
- 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x17, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61,
- 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12,
- 0x36, 0x0a, 0x08, 0x62, 0x63, 0x69, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c,
- 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x62,
- 0x63, 0x69, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x42, 0x13, 0x5a, 0x11, 0x62, 0x61, 0x74, 0x74, 0x6c,
- 0x65, 0x5f, 0x73, 0x72, 0x76, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x62, 0x06, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x33,
+ 0x51, 0x0a, 0x11, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x65, 0x63,
+ 0x6f, 0x64, 0x65, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x64, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
+ 0x52, 0x02, 0x64, 0x78, 0x12, 0x0e, 0x0a, 0x02, 0x64, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
+ 0x52, 0x02, 0x64, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x74, 0x6e, 0x41, 0x4c, 0x65, 0x76, 0x65,
+ 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x62, 0x74, 0x6e, 0x41, 0x4c, 0x65, 0x76,
+ 0x65, 0x6c, 0x22, 0x50, 0x0a, 0x10, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65,
+ 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46,
+ 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x69, 0x6e,
+ 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e,
+ 0x63, 0x6f, 0x64, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x65, 0x6e, 0x63,
+ 0x6f, 0x64, 0x65, 0x64, 0x22, 0x7c, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61,
+ 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e,
+ 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
+ 0x52, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1c,
+ 0x0a, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28,
+ 0x04, 0x52, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d,
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20,
+ 0x01, 0x28, 0x04, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4c, 0x69,
+ 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x0f, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x55,
+ 0x70, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54,
+ 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f,
+ 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22,
+ 0x8b, 0x03, 0x0a, 0x11, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63,
+ 0x46, 0x72, 0x61, 0x6d, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
+ 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x40, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73,
+ 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e,
+ 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d,
+ 0x65, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07,
+ 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x6f, 0x75, 0x6e, 0x74,
+ 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
+ 0x0e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x12,
+ 0x4c, 0x0a, 0x0b, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73, 0x18, 0x04,
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x52, 0x6f,
+ 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x2e,
+ 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
+ 0x52, 0x0b, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73, 0x1a, 0x52, 0x0a,
+ 0x0c, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
+ 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
+ 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,
+ 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x44, 0x6f,
+ 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
+ 0x01, 0x1a, 0x5a, 0x0a, 0x10, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73,
+ 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x30, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e,
+ 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x4d, 0x65,
+ 0x74, 0x61, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb8, 0x02,
+ 0x0a, 0x05, 0x57, 0x73, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x1a, 0x0a,
+ 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
+ 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x63, 0x74,
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x63, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6a,
+ 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09,
+ 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x63, 0x6b,
+ 0x69, 0x6e, 0x67, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05,
+ 0x52, 0x0d, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12,
+ 0x2e, 0x0a, 0x12, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72,
+ 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x61, 0x63, 0x6b,
+ 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12,
+ 0x4e, 0x0a, 0x15, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73,
+ 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18,
+ 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61,
+ 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x15, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46,
+ 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12,
+ 0x27, 0x0a, 0x02, 0x68, 0x62, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x72,
+ 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x55, 0x70,
+ 0x73, 0x79, 0x6e, 0x63, 0x52, 0x02, 0x68, 0x62, 0x22, 0x89, 0x02, 0x0a, 0x06, 0x57, 0x73, 0x52,
+ 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
+ 0x52, 0x03, 0x72, 0x65, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x63, 0x68, 0x6f, 0x65, 0x64, 0x4d,
+ 0x73, 0x67, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x65, 0x63, 0x68, 0x6f,
+ 0x65, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x63, 0x74, 0x18, 0x03,
+ 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x63, 0x74, 0x12, 0x2b, 0x0a, 0x03, 0x72, 0x64, 0x66,
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e,
+ 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d,
+ 0x65, 0x52, 0x03, 0x72, 0x64, 0x66, 0x12, 0x54, 0x0a, 0x17, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46,
+ 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63,
+ 0x68, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73,
+ 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73,
+ 0x79, 0x6e, 0x63, 0x52, 0x17, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44,
+ 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, 0x36, 0x0a, 0x08,
+ 0x62, 0x63, 0x69, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
+ 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f,
+ 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x62, 0x63, 0x69, 0x46,
+ 0x72, 0x61, 0x6d, 0x65, 0x42, 0x13, 0x5a, 0x11, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x73,
+ 0x72, 0x76, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x33,
}
var (
@@ -1087,38 +1155,39 @@ func file_room_downsync_frame_proto_rawDescGZIP() []byte {
return file_room_downsync_frame_proto_rawDescData
}
-var file_room_downsync_frame_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
+var file_room_downsync_frame_proto_msgTypes = make([]protoimpl.MessageInfo, 14)
var file_room_downsync_frame_proto_goTypes = []interface{}{
(*BattleColliderInfo)(nil), // 0: protos.BattleColliderInfo
(*PlayerDownsync)(nil), // 1: protos.PlayerDownsync
(*PlayerDownsyncMeta)(nil), // 2: protos.PlayerDownsyncMeta
- (*InputFrameUpsync)(nil), // 3: protos.InputFrameUpsync
- (*InputFrameDownsync)(nil), // 4: protos.InputFrameDownsync
- (*HeartbeatUpsync)(nil), // 5: protos.HeartbeatUpsync
- (*RoomDownsyncFrame)(nil), // 6: protos.RoomDownsyncFrame
- (*WsReq)(nil), // 7: protos.WsReq
- (*WsResp)(nil), // 8: protos.WsResp
- nil, // 9: protos.BattleColliderInfo.StrToVec2DListMapEntry
- nil, // 10: protos.BattleColliderInfo.StrToPolygon2DListMapEntry
- nil, // 11: protos.RoomDownsyncFrame.PlayersEntry
- nil, // 12: protos.RoomDownsyncFrame.PlayerMetasEntry
- (*sharedprotos.Direction)(nil), // 13: sharedprotos.Direction
- (*sharedprotos.Vec2DList)(nil), // 14: sharedprotos.Vec2DList
- (*sharedprotos.Polygon2DList)(nil), // 15: sharedprotos.Polygon2DList
+ (*InputFrameDecoded)(nil), // 3: protos.InputFrameDecoded
+ (*InputFrameUpsync)(nil), // 4: protos.InputFrameUpsync
+ (*InputFrameDownsync)(nil), // 5: protos.InputFrameDownsync
+ (*HeartbeatUpsync)(nil), // 6: protos.HeartbeatUpsync
+ (*RoomDownsyncFrame)(nil), // 7: protos.RoomDownsyncFrame
+ (*WsReq)(nil), // 8: protos.WsReq
+ (*WsResp)(nil), // 9: protos.WsResp
+ nil, // 10: protos.BattleColliderInfo.StrToVec2DListMapEntry
+ nil, // 11: protos.BattleColliderInfo.StrToPolygon2DListMapEntry
+ nil, // 12: protos.RoomDownsyncFrame.PlayersEntry
+ nil, // 13: protos.RoomDownsyncFrame.PlayerMetasEntry
+ (*sharedprotos.Direction)(nil), // 14: sharedprotos.Direction
+ (*sharedprotos.Vec2DList)(nil), // 15: sharedprotos.Vec2DList
+ (*sharedprotos.Polygon2DList)(nil), // 16: sharedprotos.Polygon2DList
}
var file_room_downsync_frame_proto_depIdxs = []int32{
- 9, // 0: protos.BattleColliderInfo.strToVec2DListMap:type_name -> protos.BattleColliderInfo.StrToVec2DListMapEntry
- 10, // 1: protos.BattleColliderInfo.strToPolygon2DListMap:type_name -> protos.BattleColliderInfo.StrToPolygon2DListMapEntry
- 13, // 2: protos.PlayerDownsync.dir:type_name -> sharedprotos.Direction
- 11, // 3: protos.RoomDownsyncFrame.players:type_name -> protos.RoomDownsyncFrame.PlayersEntry
- 12, // 4: protos.RoomDownsyncFrame.playerMetas:type_name -> protos.RoomDownsyncFrame.PlayerMetasEntry
- 3, // 5: protos.WsReq.inputFrameUpsyncBatch:type_name -> protos.InputFrameUpsync
- 5, // 6: protos.WsReq.hb:type_name -> protos.HeartbeatUpsync
- 6, // 7: protos.WsResp.rdf:type_name -> protos.RoomDownsyncFrame
- 4, // 8: protos.WsResp.inputFrameDownsyncBatch:type_name -> protos.InputFrameDownsync
+ 10, // 0: protos.BattleColliderInfo.strToVec2DListMap:type_name -> protos.BattleColliderInfo.StrToVec2DListMapEntry
+ 11, // 1: protos.BattleColliderInfo.strToPolygon2DListMap:type_name -> protos.BattleColliderInfo.StrToPolygon2DListMapEntry
+ 14, // 2: protos.PlayerDownsync.dir:type_name -> sharedprotos.Direction
+ 12, // 3: protos.RoomDownsyncFrame.players:type_name -> protos.RoomDownsyncFrame.PlayersEntry
+ 13, // 4: protos.RoomDownsyncFrame.playerMetas:type_name -> protos.RoomDownsyncFrame.PlayerMetasEntry
+ 4, // 5: protos.WsReq.inputFrameUpsyncBatch:type_name -> protos.InputFrameUpsync
+ 6, // 6: protos.WsReq.hb:type_name -> protos.HeartbeatUpsync
+ 7, // 7: protos.WsResp.rdf:type_name -> protos.RoomDownsyncFrame
+ 5, // 8: protos.WsResp.inputFrameDownsyncBatch:type_name -> protos.InputFrameDownsync
0, // 9: protos.WsResp.bciFrame:type_name -> protos.BattleColliderInfo
- 14, // 10: protos.BattleColliderInfo.StrToVec2DListMapEntry.value:type_name -> sharedprotos.Vec2DList
- 15, // 11: protos.BattleColliderInfo.StrToPolygon2DListMapEntry.value:type_name -> sharedprotos.Polygon2DList
+ 15, // 10: protos.BattleColliderInfo.StrToVec2DListMapEntry.value:type_name -> sharedprotos.Vec2DList
+ 16, // 11: protos.BattleColliderInfo.StrToPolygon2DListMapEntry.value:type_name -> sharedprotos.Polygon2DList
1, // 12: protos.RoomDownsyncFrame.PlayersEntry.value:type_name -> protos.PlayerDownsync
2, // 13: protos.RoomDownsyncFrame.PlayerMetasEntry.value:type_name -> protos.PlayerDownsyncMeta
14, // [14:14] is the sub-list for method output_type
@@ -1171,7 +1240,7 @@ func file_room_downsync_frame_proto_init() {
}
}
file_room_downsync_frame_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*InputFrameUpsync); i {
+ switch v := v.(*InputFrameDecoded); i {
case 0:
return &v.state
case 1:
@@ -1183,7 +1252,7 @@ func file_room_downsync_frame_proto_init() {
}
}
file_room_downsync_frame_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*InputFrameDownsync); i {
+ switch v := v.(*InputFrameUpsync); i {
case 0:
return &v.state
case 1:
@@ -1195,7 +1264,7 @@ func file_room_downsync_frame_proto_init() {
}
}
file_room_downsync_frame_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*HeartbeatUpsync); i {
+ switch v := v.(*InputFrameDownsync); i {
case 0:
return &v.state
case 1:
@@ -1207,7 +1276,7 @@ func file_room_downsync_frame_proto_init() {
}
}
file_room_downsync_frame_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*RoomDownsyncFrame); i {
+ switch v := v.(*HeartbeatUpsync); i {
case 0:
return &v.state
case 1:
@@ -1219,7 +1288,7 @@ func file_room_downsync_frame_proto_init() {
}
}
file_room_downsync_frame_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*WsReq); i {
+ switch v := v.(*RoomDownsyncFrame); i {
case 0:
return &v.state
case 1:
@@ -1231,6 +1300,18 @@ func file_room_downsync_frame_proto_init() {
}
}
file_room_downsync_frame_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*WsReq); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_room_downsync_frame_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WsResp); i {
case 0:
return &v.state
@@ -1249,7 +1330,7 @@ func file_room_downsync_frame_proto_init() {
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_room_downsync_frame_proto_rawDesc,
NumEnums: 0,
- NumMessages: 13,
+ NumMessages: 14,
NumExtensions: 0,
NumServices: 0,
},
diff --git a/charts/AttackTriggerCases.jpg b/charts/AttackTriggerCases.jpg
new file mode 100644
index 0000000..baa137f
Binary files /dev/null and b/charts/AttackTriggerCases.jpg differ
diff --git a/charts/DelayNoMore.drawio b/charts/DelayNoMore.drawio
index 0dbdfe1..3b220a7 100644
--- a/charts/DelayNoMore.drawio
+++ b/charts/DelayNoMore.drawio
@@ -1 +1 @@
-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
\ No newline at end of file
+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
\ No newline at end of file
diff --git a/dnmshared/sharedprotos/geometry.pb.go b/dnmshared/sharedprotos/geometry.pb.go
index e3aedc9..b96f64b 100644
--- a/dnmshared/sharedprotos/geometry.pb.go
+++ b/dnmshared/sharedprotos/geometry.pb.go
@@ -1,7 +1,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.28.1
-// protoc v3.7.1
+// protoc v3.21.4
// source: geometry.proto
package sharedprotos
diff --git a/dragonBonesAnimProjects/SoldierElf.dbproj b/dragonBonesAnimProjects/SoldierElf.dbproj
new file mode 100644
index 0000000..c585f3a
Binary files /dev/null and b/dragonBonesAnimProjects/SoldierElf.dbproj differ
diff --git a/dragonBonesAnimProjects/SoldierFireGhost.dbproj b/dragonBonesAnimProjects/SoldierFireGhost.dbproj
new file mode 100644
index 0000000..91582ec
Binary files /dev/null and b/dragonBonesAnimProjects/SoldierFireGhost.dbproj differ
diff --git a/dragonBonesAnimProjects/library/SoldierElf.json b/dragonBonesAnimProjects/library/SoldierElf.json
new file mode 100644
index 0000000..000fccb
--- /dev/null
+++ b/dragonBonesAnimProjects/library/SoldierElf.json
@@ -0,0 +1 @@
+{"width":128,"imagePath":"SoldierElf_tex.png","height":128,"name":"SoldierElf","SubTexture":[{"frameHeight":45,"y":1,"frameX":0,"width":34,"frameY":0,"height":44,"name":"cape","frameWidth":34,"x":70},{"width":10,"y":107,"height":14,"name":"shouder_l","x":74},{"width":11,"y":107,"height":14,"name":"forearm_l","x":61},{"width":15,"y":93,"height":16,"name":"hand_l","x":1},{"width":30,"y":61,"height":30,"name":"weapon_hand_l","x":1},{"width":8,"y":101,"height":11,"name":"thigh_l","x":86},{"width":12,"y":93,"height":17,"name":"calf_l","x":18},{"width":20,"y":113,"height":8,"name":"foot_l","x":39},{"width":28,"y":61,"height":31,"name":"pelvis","x":33},{"width":8,"y":88,"height":11,"name":"thigh_r","x":77},{"width":12,"y":88,"height":17,"name":"calf_r","x":63},{"width":20,"y":113,"height":8,"name":"foot_r","x":17},{"width":13,"y":94,"height":12,"name":"shouder_r","x":45},{"width":67,"y":1,"height":58,"name":"chest","x":1},{"width":11,"y":94,"height":17,"name":"forearm_r","x":32},{"width":14,"y":111,"height":13,"name":"hand_r","x":1},{"frameHeight":39,"y":47,"frameX":-2,"width":34,"frameY":0,"height":39,"name":"we_bl_4_f_1","frameWidth":36,"x":70}]}
\ No newline at end of file
diff --git a/dragonBonesAnimProjects/library/SoldierElf.png b/dragonBonesAnimProjects/library/SoldierElf.png
new file mode 100644
index 0000000..2d2ccee
Binary files /dev/null and b/dragonBonesAnimProjects/library/SoldierElf.png differ
diff --git a/dragonBonesAnimProjects/library/SoldierFireGhost.json b/dragonBonesAnimProjects/library/SoldierFireGhost.json
new file mode 100644
index 0000000..7bf40b2
--- /dev/null
+++ b/dragonBonesAnimProjects/library/SoldierFireGhost.json
@@ -0,0 +1 @@
+{"imagePath":"Soldier_02_tex.png","width":128,"name":"Soldier_02","SubTexture":[{"x":53,"y":44,"width":23,"name":"biu","height":22},{"x":76,"y":68,"width":9,"name":"rightArm","height":14},{"y":35,"frameY":0,"height":32,"frameWidth":29,"frameX":-1,"frameHeight":32,"width":27,"name":"yinmoqe00","x":89},{"x":53,"y":1,"width":34,"name":"body","height":41},{"x":78,"y":44,"width":9,"name":"rightShoulder","height":13},{"y":50,"frameY":0,"height":18,"frameWidth":19,"frameX":0,"frameHeight":18,"width":19,"name":"rightFrontArm","x":23},{"x":23,"y":70,"width":14,"name":"rightHand","height":14},{"y":68,"frameY":0,"height":12,"frameWidth":12,"frameX":0,"frameHeight":12,"width":12,"name":"leftArm","x":62},{"x":1,"y":73,"width":13,"name":"leftShoulder","height":12},{"x":1,"y":50,"width":20,"name":"leftFrontArm","height":21},{"x":89,"y":1,"width":33,"name":"head","height":32},{"x":1,"y":1,"width":50,"name":"head2","height":47},{"x":44,"y":68,"width":16,"name":"leftHand","height":14},{"y":59,"frameY":-2,"height":4,"frameWidth":8,"frameX":-1,"frameHeight":8,"width":4,"name":"huomiao01","x":78}],"height":128}
\ No newline at end of file
diff --git a/dragonBonesAnimProjects/library/SoldierFireGhost.png b/dragonBonesAnimProjects/library/SoldierFireGhost.png
new file mode 100644
index 0000000..c695ff5
Binary files /dev/null and b/dragonBonesAnimProjects/library/SoldierFireGhost.png differ
diff --git a/frontend/assets/resources/animation/SoldierElf.meta b/frontend/assets/resources/animation/SoldierElf.meta
new file mode 100644
index 0000000..e5d6765
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierElf.meta
@@ -0,0 +1,7 @@
+{
+ "ver": "1.0.1",
+ "uuid": "2202f4f4-b792-4dea-8302-633315aded66",
+ "isSubpackage": false,
+ "subpackageName": "",
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json
new file mode 100644
index 0000000..7d4168d
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json
@@ -0,0 +1 @@
+{"frameRate":25,"name":"SoldierElf","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":25,"name":"SoldierElf","aabb":{"x":-34.53,"y":-104.78,"width":86.87,"height":105.25},"bone":[{"name":"root1","transform":{"y":-11.0128}},{"inheritScale":false,"name":"effect_r","parent":"root1","transform":{"x":33.28,"y":4,"skX":-46.2343,"skY":-23.9186,"scX":2.1416,"scY":2.3753}},{"inheritScale":false,"length":3,"name":"root","parent":"root1","transform":{"x":-0.04,"y":-15.48,"skX":90.2632,"skY":90.2632}},{"inheritScale":false,"length":5,"name":"thigh_l","parent":"root","transform":{"x":1.6606,"y":-6.4628,"skX":-40.9714,"skY":-40.9714,"scX":0.9869,"scY":0.9853}},{"inheritScale":false,"length":5,"name":"thigh_r","parent":"root","transform":{"x":1.3414,"y":6.0837,"skX":3.567,"skY":3.567,"scX":0.9859,"scY":0.9981}},{"inheritScale":false,"length":3,"name":"pelvis","parent":"root","transform":{"x":-3.2028,"y":0.1015,"skX":-174.7594,"skY":-174.7594,"scX":0.9802,"scY":0.9952}},{"inheritScale":false,"length":8,"name":"chest","parent":"pelvis","transform":{"x":4,"y":-0.0016,"skX":-5.2066,"skY":-5.2246,"scX":0.9979,"scY":0.9998}},{"inheritScale":false,"length":9,"name":"calf_r","parent":"thigh_r","transform":{"x":5.704,"y":0.0016,"skX":16.144,"skY":16.1453,"scX":0.9955,"scY":0.9905}},{"inheritScale":false,"length":7,"name":"calf_l","parent":"thigh_l","transform":{"x":5.6592,"y":-0.0016,"skX":32.6682,"skY":32.6684,"scX":0.9945,"scY":0.9954}},{"inheritScale":false,"length":5,"name":"shouder_l","parent":"chest","transform":{"x":8.6578,"y":9.9632,"skX":-164.5031,"skY":-164.5031,"scX":0.9868,"scY":0.9948}},{"inheritScale":false,"length":5,"name":"shouder_r","parent":"chest","transform":{"x":10.4583,"y":-13.3897,"skX":-147.4808,"skY":-147.4808,"scX":0.9972,"scY":0.9986}},{"inheritScale":false,"name":"foot_l","parent":"calf_l","transform":{"x":15.2897,"y":1.2193,"skX":8.0381,"skY":8.0381,"scX":0.9955}},{"inheritScale":false,"name":"foot_r","parent":"calf_r","transform":{"x":14.2999,"y":-2.3357,"skX":-19.9771,"skY":-19.9771,"scX":0.9955}},{"inheritScale":false,"length":12,"name":"forearm_r","parent":"shouder_r","transform":{"x":6.0016,"y":0.0016,"skX":-38.0045,"skY":-38.0045,"scX":0.9973,"scY":0.994}},{"inheritScale":false,"length":7,"name":"forearm_l","parent":"shouder_l","transform":{"x":6.0144,"y":-0.0016,"skX":-42.3089,"skY":-42.3089,"scX":0.9979,"scY":0.987}},{"inheritScale":false,"name":"hand_r","parent":"forearm_r","transform":{"x":13.7919,"y":0.7114,"skX":3.3187,"skY":3.3187,"scX":1.0446,"scY":0.9963}},{"inheritScale":false,"name":"hand_l","parent":"forearm_l","transform":{"x":7.6912,"y":-0.0032,"skX":119.4238,"skY":119.4238,"scX":0.9894,"scY":0.9954}},{"inheritScale":false,"name":"weapon_hand_l","parent":"hand_l","transform":{"x":-8.5173,"y":-2.6264,"skX":139.1066,"skY":139.1066,"scX":0.9967,"scY":0.9984}},{"inheritRotation":false,"inheritScale":false,"name":"weapon_hand_r","parent":"hand_r","transform":{"x":1.4768,"y":-3.0184,"skX":-17.7744,"skY":-17.7744,"scX":0.9981,"scY":0.999}}],"slot":[{"name":"cape","parent":"pelvis"},{"name":"shouder_l","parent":"shouder_l"},{"name":"forearm_l","parent":"forearm_l"},{"name":"hand_l","parent":"hand_l"},{"name":"weapon_hand_l","parent":"weapon_hand_l"},{"name":"thigh_l","parent":"thigh_l"},{"name":"calf_l","parent":"calf_l"},{"name":"foot_l","parent":"foot_l"},{"name":"pelvis","parent":"pelvis"},{"name":"thigh_r","parent":"thigh_r"},{"name":"calf_r","parent":"calf_r"},{"name":"foot_r","parent":"foot_r"},{"name":"shouder_r","parent":"shouder_r"},{"name":"chest","parent":"chest"},{"name":"weapon_hand_r","parent":"weapon_hand_r"},{"name":"forearm_r","parent":"forearm_r"},{"name":"hand_r","parent":"hand_r"},{"name":"effect_r","parent":"effect_r"}],"skin":[{"slot":[{"name":"forearm_l","display":[{"name":"mecha_1004d_folder/textures/forearm_l_2","transform":{"x":5.09,"y":0.15,"skX":-63.39,"skY":-63.39},"path":"forearm_l"}]},{"name":"effect_r","display":[{"name":"we_bl_4","transform":{"x":11.39,"y":-12.38},"path":"we_bl_4_f_1"}]},{"name":"shouder_l","display":[{"name":"mecha_1004d_folder/textures/shouder_l_1","transform":{"x":0.4,"y":0.06,"skX":-68.92,"skY":-68.56,"scX":1.0015,"scY":0.9985},"path":"shouder_l"}]},{"name":"thigh_r","display":[{"name":"mecha_1004d_folder/textures/thigh_r_0","transform":{"x":-0.65,"y":1.03,"skX":-94.6,"skY":-94.62,"scX":0.9991,"scY":0.99},"path":"thigh_r"}]},{"name":"pelvis","display":[{"name":"mecha_1004d_folder/textures/pelvis_0","transform":{"x":9.56,"y":-1.5,"skX":83.65,"skY":83.65},"path":"pelvis"}]},{"name":"weapon_hand_r","display":[{"name":"weapon_hand_r","transform":{"x":14.2,"y":2.01,"skX":51,"skY":51},"path":"weapon_hand_l"}]},{"name":"hand_r","display":[{"name":"mecha_1004d_folder/textures/hand_r_2","transform":{"x":3.51,"y":-2.17,"skX":-84.89,"skY":-84.89},"path":"hand_r"}]},{"name":"weapon_hand_l","display":[{"name":"weapon_hand_l","transform":{"x":12.59,"y":1.83,"skX":52.1,"skY":52.1}}]},{"name":"shouder_r","display":[{"name":"mecha_1004d_folder/textures/shouder_r_1","transform":{"x":0.46,"y":0.08,"skX":-136.05,"skY":-136.05},"path":"shouder_r"}]},{"name":"calf_l","display":[{"name":"mecha_1004d_folder/textures/calf_l_0","transform":{"x":7.16,"y":0.84,"skX":-91.2,"skY":-91.2},"path":"calf_l"}]},{"name":"foot_r","display":[{"name":"mecha_1004d_folder/textures/foot_r_0","transform":{"x":1.06,"y":-1.31,"skX":-85.95,"skY":-85.95},"path":"foot_r"}]},{"name":"foot_l","display":[{"name":"mecha_1004d_folder/textures/foot_l_0","transform":{"x":1.82,"y":-3.5,"skX":-90.37,"skY":-90.37},"path":"foot_l"}]},{"name":"calf_r","display":[{"name":"mecha_1004d_folder/textures/calf_r_0","transform":{"x":5.87,"y":0.08,"skX":-91.22,"skY":-91.22},"path":"calf_r"}]},{"name":"thigh_l","display":[{"name":"mecha_1004d_folder/textures/thigh_l_0","transform":{"x":1.19,"y":0.3,"skX":-66.04,"skY":-66.04},"path":"thigh_l"}]},{"name":"hand_l","display":[{"name":"mecha_1004d_folder/textures/hand_l_2","transform":{"x":-5.62,"y":-5.3,"skX":179.52,"skY":179.52},"path":"hand_l"}]},{"name":"forearm_r","display":[{"name":"mecha_1004d_folder/textures/forearm_r_3","transform":{"x":6.7,"y":0.41,"skX":-87.21,"skY":-87.21},"path":"forearm_r"}]},{"name":"chest","display":[{"name":"mecha_1004d_folder/textures/chest_0","transform":{"x":42.26,"y":-1.48,"skX":90.4,"skY":90.61},"path":"chest"}]},{"name":"cape","display":[{"name":"cape","transform":{"x":10.59,"y":-16.32,"skX":84.58,"skY":84.41,"scX":1.0049,"scY":1.0201}}]}]}],"animation":[{"duration":60,"playTimes":0,"fadeInTime":0.2,"name":"Idle1","bone":[{"name":"pelvis","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.31},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.5},{"duration":0}]},{"name":"chest","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":0.11},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.48},{"duration":0}]},{"name":"shouder_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.6,"y":-0.22},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.98},{"duration":0}]},{"name":"shouder_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.23,"y":0.28},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.98},{"duration":0}]},{"name":"forearm_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":-0.01},{"duration":0}]},{"name":"forearm_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01},{"duration":0}]},{"name":"hand_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.5},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"hand_l","rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.75},{"duration":0}]},{"name":"weapon_hand_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.92},{"duration":0}]},{"name":"weapon_hand_r","rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-3.01},{"duration":0}]},{"name":"thigh_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.17,"y":0.21},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":0.25},{"duration":0}]},{"name":"thigh_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.45,"y":-0.21},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":7.53},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.97},{"duration":0}]},{"name":"calf_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.75},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":1.01},{"duration":0}]},{"name":"calf_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-10.55},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":1.03},{"duration":0}]},{"name":"foot_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.5},{"duration":0}]},{"name":"foot_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"y":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":3.03},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":58,"playTimes":0,"fadeInTime":0.2,"name":"Walking","frame":[{"duration":27},{"duration":31,"sound":"footstep"},{"duration":0,"sound":"walk"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":10,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":17,"tweenEasing":0,"x":-0.47,"y":-0.01},{"duration":8,"tweenEasing":0,"x":0.01},{"duration":5,"tweenEasing":0},{"duration":16,"tweenEasing":0,"x":-1.06,"y":0.03},{"duration":0,"x":-0.1}],"rotateFrame":[{"duration":10,"tweenEasing":0,"rotate":6.25},{"duration":2,"tweenEasing":0,"rotate":5.25},{"duration":17,"tweenEasing":0,"rotate":5},{"duration":8,"tweenEasing":0,"rotate":5.75},{"duration":5,"tweenEasing":0,"rotate":5.5},{"duration":16,"tweenEasing":0,"rotate":5.75},{"duration":0,"rotate":6.05}],"scaleFrame":[{"duration":10,"tweenEasing":0,"x":1.01},{"duration":19,"tweenEasing":0,"x":0.98},{"duration":8,"tweenEasing":0,"x":0.98},{"duration":21}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.06,"y":0.19},{"duration":7,"tweenEasing":0,"x":-0.44,"y":0.27},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.28},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.29},{"duration":7,"tweenEasing":0,"x":1.11,"y":0.18},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.18},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.23},{"duration":5,"tweenEasing":0,"x":-0.28,"y":0.26},{"duration":2,"tweenEasing":0,"x":-0.03,"y":0.25},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.23},{"duration":7,"tweenEasing":0,"x":-0.05,"y":0.24},{"duration":9,"tweenEasing":0,"x":0.69,"y":0.13},{"duration":0,"x":0.33,"y":0.17}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-4.04},{"duration":7,"tweenEasing":0,"rotate":-3.46},{"duration":2,"tweenEasing":0,"rotate":-2.94},{"duration":7,"tweenEasing":0,"rotate":-3.06},{"duration":7,"tweenEasing":0,"rotate":-4.75},{"duration":3,"tweenEasing":0,"rotate":-6.6},{"duration":3,"tweenEasing":0,"rotate":-5.2},{"duration":5,"tweenEasing":0,"rotate":-3.88},{"duration":2,"tweenEasing":0,"rotate":-4.26},{"duration":3,"tweenEasing":0,"rotate":-4.62},{"duration":7,"tweenEasing":0,"rotate":-5.53},{"duration":9,"tweenEasing":0,"rotate":-7.66},{"duration":0,"rotate":-5.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99},{"duration":9,"tweenEasing":0},{"duration":7,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":32}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-1.74,"y":8.78},{"duration":7,"tweenEasing":0,"x":-1.64,"y":8.53},{"duration":2,"tweenEasing":0,"x":-1.12,"y":6.91},{"duration":7,"tweenEasing":0,"x":-0.96,"y":6.53},{"duration":7,"tweenEasing":0,"x":-0.54,"y":5.36},{"duration":3,"tweenEasing":0,"x":-0.63,"y":4.56},{"duration":3,"tweenEasing":0,"x":-0.91,"y":5.01},{"duration":5,"tweenEasing":0,"x":-1.15,"y":5.24},{"duration":2,"tweenEasing":0,"x":-1.33,"y":6.55},{"duration":3,"tweenEasing":0,"x":-1.37,"y":6.99},{"duration":7,"tweenEasing":0,"x":-1.4,"y":7.48},{"duration":9,"tweenEasing":0,"x":-1.43,"y":8.33},{"duration":0,"x":-1.62,"y":8.69}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-19.52},{"duration":7,"tweenEasing":0,"rotate":-17.27},{"duration":2,"tweenEasing":0,"rotate":-10.54},{"duration":7,"tweenEasing":0,"rotate":-8.54},{"duration":7,"tweenEasing":0,"rotate":-2.29},{"duration":3,"tweenEasing":0,"rotate":2.3},{"duration":3,"tweenEasing":0,"rotate":1.76},{"duration":5,"tweenEasing":0,"rotate":0.78},{"duration":2,"tweenEasing":0,"rotate":-0.48},{"duration":3,"tweenEasing":0,"rotate":-1.48},{"duration":7,"tweenEasing":0,"rotate":-2.99},{"duration":9,"tweenEasing":0,"rotate":-7.27},{"duration":0,"rotate":-17.54}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":2.41,"y":-9.55},{"duration":7,"tweenEasing":0,"x":2.28,"y":-9.45},{"duration":2,"tweenEasing":0,"x":1.84,"y":-8.13},{"duration":7,"tweenEasing":0,"x":1.7,"y":-7.82},{"duration":7,"tweenEasing":0,"x":1.34,"y":-6.83},{"duration":3,"tweenEasing":0,"x":1.5,"y":-6.26},{"duration":3,"tweenEasing":0,"x":1.76,"y":-6.59},{"duration":5,"tweenEasing":0,"x":1.99,"y":-6.82},{"duration":2,"tweenEasing":0,"x":2.13,"y":-7.95},{"duration":3,"tweenEasing":0,"x":2.15,"y":-8.36},{"duration":7,"tweenEasing":0,"x":2.16,"y":-8.77},{"duration":9,"tweenEasing":0,"x":2.12,"y":-9.35},{"duration":0,"x":2.28,"y":-9.54}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":9.06},{"duration":7,"tweenEasing":0,"rotate":8.05},{"duration":2,"tweenEasing":0,"rotate":5.76},{"duration":7,"tweenEasing":0,"rotate":4.5},{"duration":7,"tweenEasing":0,"rotate":-0.28},{"duration":3,"tweenEasing":0,"rotate":-5.21},{"duration":3,"tweenEasing":0,"rotate":-6.5},{"duration":5,"tweenEasing":0,"rotate":-5.98},{"duration":2,"tweenEasing":0,"rotate":-2.48},{"duration":3,"tweenEasing":0,"rotate":-0.98},{"duration":7,"tweenEasing":0,"rotate":1.52},{"duration":9,"tweenEasing":0,"rotate":7.27},{"duration":0,"rotate":9.53}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.85},{"duration":7,"tweenEasing":0,"x":0.87},{"duration":2,"tweenEasing":0,"x":0.91},{"duration":7,"tweenEasing":0,"x":0.91},{"duration":7,"tweenEasing":0,"x":0.89},{"duration":3,"tweenEasing":0,"x":0.87},{"duration":8,"tweenEasing":0,"x":0.86},{"duration":2,"tweenEasing":0,"x":0.86},{"duration":10,"tweenEasing":0,"x":0.87},{"duration":9,"tweenEasing":0,"x":0.87},{"duration":0,"x":0.86}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.82,"y":-0.12},{"duration":7,"tweenEasing":0,"x":0.8,"y":-0.13},{"duration":2,"tweenEasing":0,"x":0.78,"y":-0.1},{"duration":7,"tweenEasing":0,"x":0.78,"y":-0.07},{"duration":7,"tweenEasing":0,"x":0.8,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.84,"y":-0.04},{"duration":3,"tweenEasing":0,"x":0.83,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.84,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.84,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.84,"y":-0.08},{"duration":7,"tweenEasing":0,"x":0.84,"y":-0.1},{"duration":9,"tweenEasing":0,"x":0.83,"y":-0.12},{"duration":0,"x":0.82,"y":-0.13}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6.96},{"duration":7,"tweenEasing":0,"rotate":6.97},{"duration":2,"tweenEasing":0,"rotate":7.24},{"duration":7,"tweenEasing":0,"rotate":7.74},{"duration":7,"tweenEasing":0,"rotate":8.73},{"duration":3,"tweenEasing":0,"rotate":9.96},{"duration":3,"tweenEasing":0,"rotate":8.7},{"duration":5,"tweenEasing":0,"rotate":6.69},{"duration":2,"tweenEasing":0,"rotate":3.2},{"duration":3,"tweenEasing":0,"rotate":1.95},{"duration":7,"tweenEasing":0,"rotate":0.44},{"duration":9,"tweenEasing":0,"rotate":0.2},{"duration":0,"rotate":5.68}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.85,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.89,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.95,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.95},{"duration":7,"tweenEasing":0,"x":0.96},{"duration":3,"tweenEasing":0,"x":0.95},{"duration":3,"tweenEasing":0,"x":0.95},{"duration":5,"tweenEasing":0,"x":0.94},{"duration":2,"tweenEasing":0,"x":0.93},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":7,"tweenEasing":0,"x":0.92},{"duration":9,"tweenEasing":0,"x":0.9},{"duration":0,"x":0.86,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.24,"y":0.22},{"duration":7,"tweenEasing":0,"x":1.24,"y":0.23},{"duration":2,"tweenEasing":0,"x":1.23,"y":0.21},{"duration":7,"tweenEasing":0,"x":1.24,"y":0.2},{"duration":7,"tweenEasing":0,"x":1.21,"y":0.19},{"duration":3,"tweenEasing":0,"x":1.2,"y":0.2},{"duration":3,"tweenEasing":0,"x":1.21,"y":0.2},{"duration":5,"tweenEasing":0,"x":1.2,"y":0.17},{"duration":2,"tweenEasing":0,"x":1.18,"y":0.18},{"duration":3,"tweenEasing":0,"x":1.17,"y":0.18},{"duration":7,"tweenEasing":0,"x":1.19,"y":0.18},{"duration":9,"tweenEasing":0,"x":1.25,"y":0.2},{"duration":0,"x":1.23,"y":0.22}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6.52},{"duration":7,"tweenEasing":0,"rotate":6.27},{"duration":2,"tweenEasing":0,"rotate":5.52},{"duration":7,"tweenEasing":0,"rotate":5.27},{"duration":7,"tweenEasing":0,"rotate":6.51},{"duration":3,"tweenEasing":0,"rotate":9.5},{"duration":3,"tweenEasing":0,"rotate":10},{"duration":5,"tweenEasing":0,"rotate":10.25},{"duration":2,"tweenEasing":0,"rotate":9.5},{"duration":3,"tweenEasing":0,"rotate":9.01},{"duration":7,"tweenEasing":0,"rotate":8.77},{"duration":9,"tweenEasing":0,"rotate":8.53},{"duration":0,"rotate":7.78}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":16,"tweenEasing":0,"x":1.03},{"duration":7,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":5,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":9,"x":1.03}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.14,"y":-0.07},{"duration":7,"tweenEasing":0,"x":0.12,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.11,"y":-0.05},{"duration":7,"tweenEasing":0,"x":0.1,"y":-0.04},{"duration":7,"tweenEasing":0,"x":0.1,"y":-0.06},{"duration":3,"tweenEasing":0,"x":0.1,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.11},{"duration":5,"tweenEasing":0,"x":0.12,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.14,"y":-0.06},{"duration":10,"tweenEasing":0,"x":0.15,"y":-0.05},{"duration":9,"tweenEasing":0,"x":0.15,"y":-0.05},{"duration":0,"x":0.14,"y":-0.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-5.5},{"duration":7,"tweenEasing":0,"rotate":-5},{"duration":2,"tweenEasing":0,"rotate":-4.5},{"duration":7,"tweenEasing":0,"rotate":-4.25},{"duration":7,"tweenEasing":0,"rotate":-5.25},{"duration":3,"tweenEasing":0,"rotate":-7.5},{"duration":3,"tweenEasing":0,"rotate":-7.25},{"duration":5,"tweenEasing":0,"rotate":-6.25},{"duration":2,"tweenEasing":0,"rotate":-1.75},{"duration":3,"tweenEasing":0,"rotate":-0.25},{"duration":7,"tweenEasing":0,"rotate":0.25},{"duration":9,"tweenEasing":0,"rotate":-1.5},{"duration":0,"rotate":-4.75}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":7,"tweenEasing":0,"x":0.98},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.96},{"duration":5,"tweenEasing":0,"x":0.96},{"duration":5,"tweenEasing":0,"x":0.97},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":9,"tweenEasing":0,"x":0.98},{"duration":0,"x":0.98,"y":0.99}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.13,"y":0.09},{"duration":7,"tweenEasing":0,"x":0.09,"y":0.09},{"duration":2,"tweenEasing":0,"x":0.04,"y":0.12},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.1},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.13},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.14},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.13},{"duration":5,"tweenEasing":0,"x":0.04,"y":0.14},{"duration":2,"tweenEasing":0,"x":0.06,"y":0.15},{"duration":3,"tweenEasing":0,"x":0.07,"y":0.15},{"duration":7,"tweenEasing":0,"x":0.08,"y":0.14},{"duration":9,"tweenEasing":0,"x":0.1,"y":0.14},{"duration":0,"x":0.12,"y":0.11}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":5.14},{"duration":7,"tweenEasing":0,"rotate":6.86},{"duration":2,"tweenEasing":0,"rotate":9.82},{"duration":7,"tweenEasing":0,"rotate":9.31},{"duration":7,"tweenEasing":0,"rotate":7.06},{"duration":3,"tweenEasing":0,"rotate":4.3},{"duration":3,"tweenEasing":0,"rotate":4.05},{"duration":5,"tweenEasing":0,"rotate":5.06},{"duration":2,"tweenEasing":0,"rotate":7.32},{"duration":3,"tweenEasing":0,"rotate":8.08},{"duration":7,"tweenEasing":0,"rotate":9.08},{"duration":9,"tweenEasing":0,"rotate":9.35},{"duration":0,"rotate":5.91}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.95},{"duration":7,"tweenEasing":0,"x":0.99,"y":0.96},{"duration":2,"tweenEasing":0,"y":0.97},{"duration":7,"tweenEasing":0,"y":0.97},{"duration":23,"tweenEasing":0,"x":0.99,"y":0.97},{"duration":7,"tweenEasing":0,"x":0.99,"y":0.97},{"duration":9,"tweenEasing":0,"y":0.97},{"duration":0,"y":0.96}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02},{"duration":7,"tweenEasing":0,"x":0.02},{"duration":2,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":7,"tweenEasing":0,"x":0.01},{"duration":7,"tweenEasing":0,"x":0.01},{"duration":3,"tweenEasing":0,"y":0.01},{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":9,"tweenEasing":0,"x":0.01},{"duration":0,"x":0.02,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.05},{"duration":7,"tweenEasing":0,"rotate":19.94},{"duration":2,"tweenEasing":0,"rotate":17.95},{"duration":7,"tweenEasing":0,"rotate":18.42},{"duration":7,"tweenEasing":0,"rotate":20.58},{"duration":3,"tweenEasing":0,"rotate":23.19},{"duration":3,"tweenEasing":0,"rotate":23.94},{"duration":5,"tweenEasing":0,"rotate":23.5},{"duration":2,"tweenEasing":0,"rotate":22.36},{"duration":3,"tweenEasing":0,"rotate":21.8},{"duration":7,"tweenEasing":0,"rotate":21.24},{"duration":9,"tweenEasing":0,"rotate":20.8},{"duration":0,"rotate":21.25}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.01},{"duration":7,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":0.01},{"duration":7,"tweenEasing":0,"x":-0.01,"y":0.01},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-0.01},{"duration":10,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":7,"tweenEasing":0,"y":0.01},{"duration":9,"tweenEasing":0,"y":0.01},{"duration":0,"x":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-3.01},{"duration":7,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":6.76},{"duration":7,"tweenEasing":0,"rotate":8.77},{"duration":7,"tweenEasing":0,"rotate":14.4},{"duration":3,"tweenEasing":0,"rotate":18.27},{"duration":3,"tweenEasing":0,"rotate":19.78},{"duration":5,"tweenEasing":0,"rotate":21.53},{"duration":2,"tweenEasing":0,"rotate":24.53},{"duration":3,"tweenEasing":0,"rotate":24.28},{"duration":7,"tweenEasing":0,"rotate":21.78},{"duration":9,"tweenEasing":0,"rotate":12.52},{"duration":0,"rotate":-0.5}]},{"name":"root","translateFrame":[{"duration":10,"tweenEasing":0,"x":-1.63,"y":0.96},{"duration":19,"tweenEasing":0,"x":-1.48,"y":0.02},{"duration":8,"tweenEasing":0,"x":-1.63,"y":1.03},{"duration":21,"tweenEasing":0,"x":-1.79,"y":0.99},{"duration":0,"x":-1.65,"y":0.95}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.64,"y":-2.98},{"duration":2,"tweenEasing":0,"x":1.2,"y":-3.05},{"duration":5,"tweenEasing":0,"x":1.43,"y":-3.11},{"duration":2,"tweenEasing":0,"x":1.14,"y":-3.22},{"duration":7,"tweenEasing":0,"x":0.73,"y":-3.3},{"duration":7,"tweenEasing":0,"x":-0.05,"y":-3.55},{"duration":3,"tweenEasing":0,"x":0.51,"y":-3.77},{"duration":3,"tweenEasing":0,"x":1.26,"y":-3.91},{"duration":5,"tweenEasing":0,"x":1.48,"y":-3.99},{"duration":2,"tweenEasing":0,"x":1,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.45,"y":-3.93},{"duration":7,"tweenEasing":0,"x":-0.23,"y":-3.84},{"duration":9,"tweenEasing":0,"x":-0.66,"y":-3.51},{"duration":0,"x":0.16,"y":-3.07}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-21.02},{"duration":2,"tweenEasing":0,"rotate":-22.53},{"duration":5,"tweenEasing":0,"rotate":-26.04},{"duration":2,"tweenEasing":0,"rotate":-53.15},{"duration":7,"tweenEasing":0,"rotate":-58.92},{"duration":7,"tweenEasing":0,"rotate":-60.43},{"duration":3,"tweenEasing":0,"rotate":-72.97},{"duration":3,"tweenEasing":0,"rotate":-65.19},{"duration":5,"tweenEasing":0,"rotate":-68.71},{"duration":2,"tweenEasing":0,"rotate":-61.43},{"duration":3,"tweenEasing":0,"rotate":-54.4},{"duration":7,"tweenEasing":0,"rotate":-44.36},{"duration":9,"tweenEasing":0,"rotate":-31.31},{"duration":0,"rotate":-21.52}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":10,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":0,"x":1.01}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.63,"y":2.95},{"duration":7,"tweenEasing":0,"x":-0.37,"y":3},{"duration":2,"tweenEasing":0,"x":-1.12,"y":3.18},{"duration":7,"tweenEasing":0,"x":-1.64,"y":3.24},{"duration":7,"tweenEasing":0,"x":-2.57,"y":3.46},{"duration":3,"tweenEasing":0,"x":-2,"y":3.72},{"duration":3,"tweenEasing":0,"x":-1.22,"y":3.86},{"duration":2,"tweenEasing":0,"x":-0.89,"y":3.94},{"duration":3,"tweenEasing":0,"x":-0.79,"y":3.96},{"duration":2,"tweenEasing":0,"x":-0.99,"y":3.91},{"duration":3,"tweenEasing":0,"x":-1.38,"y":3.91},{"duration":7,"tweenEasing":0,"x":-1.88,"y":3.85},{"duration":9,"tweenEasing":0,"x":-2.1,"y":3.53},{"duration":0,"x":-1.12,"y":3.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-20.58},{"duration":7,"tweenEasing":0,"rotate":-21.34},{"duration":2,"tweenEasing":0,"rotate":-5.52},{"duration":7,"tweenEasing":0,"rotate":1.26},{"duration":7,"tweenEasing":0,"rotate":20.33},{"duration":3,"tweenEasing":0,"rotate":26.84},{"duration":3,"tweenEasing":0,"rotate":21.33},{"duration":2,"tweenEasing":0,"rotate":19.83},{"duration":3,"tweenEasing":0,"rotate":16.31},{"duration":2,"tweenEasing":0,"rotate":1.76},{"duration":3,"tweenEasing":0,"rotate":-8.29},{"duration":7,"tweenEasing":0,"rotate":-15.32},{"duration":9,"tweenEasing":0,"rotate":-18.83},{"duration":0,"rotate":-19.05}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.98,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":9,"tweenEasing":0,"x":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":7,"tweenEasing":0,"x":0.04,"y":-0.03},{"duration":7,"tweenEasing":0,"x":0.03,"y":-0.04},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.02},{"duration":5,"tweenEasing":0,"x":0.04,"y":-0.04},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.02},{"duration":7,"tweenEasing":0,"x":0.05,"y":-0.02},{"duration":9,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":0,"x":0.07,"y":-0.06}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":48.14},{"duration":2,"tweenEasing":0,"rotate":58.43},{"duration":5,"tweenEasing":0,"rotate":64.7},{"duration":2,"tweenEasing":0,"rotate":80.26},{"duration":7,"tweenEasing":0,"rotate":79.51},{"duration":7,"tweenEasing":0,"rotate":56.68},{"duration":3,"tweenEasing":0,"rotate":52.2},{"duration":3,"tweenEasing":0,"rotate":42.17},{"duration":5,"tweenEasing":0,"rotate":48.44},{"duration":2,"tweenEasing":0,"rotate":48.66},{"duration":3,"tweenEasing":0,"rotate":43.64},{"duration":7,"tweenEasing":0,"rotate":35.85},{"duration":9,"tweenEasing":0,"rotate":32.07},{"duration":0,"rotate":41.6}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":5,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.99,"y":1.01},{"duration":10,"tweenEasing":0,"x":0.99},{"duration":9,"tweenEasing":0,"x":0.99},{"duration":0,"x":0.98}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.02},{"duration":7,"tweenEasing":0,"x":-0.03,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":7,"tweenEasing":0,"x":-0.03,"y":-0.04},{"duration":7,"tweenEasing":0,"x":-0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":5,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":7,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":9,"tweenEasing":0,"x":-0.02,"y":-0.01},{"duration":0,"x":-0.03,"y":-0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":26.19},{"duration":7,"tweenEasing":0,"rotate":27.35},{"duration":2,"tweenEasing":0,"rotate":23.54},{"duration":7,"tweenEasing":0,"rotate":19.51},{"duration":7,"tweenEasing":0,"rotate":10.96},{"duration":3,"tweenEasing":0,"rotate":20.49},{"duration":3,"tweenEasing":0,"rotate":36.56},{"duration":2,"tweenEasing":0,"rotate":47.6},{"duration":3,"tweenEasing":0,"rotate":54.38},{"duration":2,"tweenEasing":0,"rotate":63.92},{"duration":3,"tweenEasing":0,"rotate":66.19},{"duration":7,"tweenEasing":0,"rotate":62.92},{"duration":9,"tweenEasing":0,"rotate":43.86},{"duration":0,"rotate":24.05}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":9,"tweenEasing":0,"x":0.98},{"duration":0}]},{"name":"foot_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.22,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.24,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.23,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.2,"y":-0.01},{"duration":7,"tweenEasing":0,"x":-0.18,"y":-0.04},{"duration":7,"tweenEasing":0,"x":-0.15,"y":0.02},{"duration":3,"tweenEasing":0,"x":-0.16,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.17},{"duration":5,"tweenEasing":0,"x":-0.17},{"duration":2,"tweenEasing":0,"x":-0.16,"y":0.06},{"duration":3,"tweenEasing":0,"x":-0.16,"y":0.03},{"duration":7,"tweenEasing":0,"x":-0.16,"y":0.03},{"duration":9,"tweenEasing":0,"x":-0.18,"y":-0.02},{"duration":0,"x":-0.21,"y":-0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-20.1},{"duration":2,"tweenEasing":0,"rotate":-16.61},{"duration":5,"tweenEasing":0,"rotate":-12.35},{"duration":2,"tweenEasing":0,"rotate":10.49},{"duration":7,"tweenEasing":0,"rotate":13.25},{"duration":7,"tweenEasing":0,"rotate":3.01},{"duration":3,"tweenEasing":0,"rotate":5.76},{"duration":3,"tweenEasing":0,"rotate":23.03},{"duration":5,"tweenEasing":0,"rotate":20.28},{"duration":2,"tweenEasing":0,"rotate":12.78},{"duration":3,"tweenEasing":0,"rotate":10.78},{"duration":7,"tweenEasing":0,"rotate":8.52},{"duration":9,"tweenEasing":0,"rotate":-0.75},{"duration":0,"rotate":-16.03}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":20,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"x":0.98}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.53,"y":-0.14},{"duration":7,"tweenEasing":0,"x":1.52,"y":-0.1},{"duration":2,"tweenEasing":0,"x":1.51,"y":-0.07},{"duration":7,"tweenEasing":0,"x":1.51,"y":-0.09},{"duration":7,"tweenEasing":0,"x":1.51,"y":-0.12},{"duration":3,"tweenEasing":0,"x":1.49,"y":-0.17},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.18},{"duration":2,"tweenEasing":0,"x":1.47,"y":-0.18},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.2},{"duration":2,"tweenEasing":0,"x":1.5,"y":-0.16},{"duration":3,"tweenEasing":0,"x":1.52,"y":-0.15},{"duration":7,"tweenEasing":0,"x":1.55,"y":-0.16},{"duration":9,"tweenEasing":0,"x":1.56,"y":-0.1},{"duration":0,"x":1.54,"y":-0.11}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-6.94},{"duration":7,"tweenEasing":0,"rotate":-7.25},{"duration":2,"tweenEasing":0,"rotate":-19},{"duration":7,"tweenEasing":0,"rotate":-21.75},{"duration":7,"tweenEasing":0,"rotate":-31.28},{"duration":3,"tweenEasing":0,"rotate":-44.59},{"duration":3,"tweenEasing":0,"rotate":-49.88},{"duration":2,"tweenEasing":0,"rotate":-47.9},{"duration":3,"tweenEasing":0,"rotate":-44.39},{"duration":2,"tweenEasing":0,"rotate":-31.6},{"duration":3,"tweenEasing":0,"rotate":-20.56},{"duration":7,"tweenEasing":0,"rotate":-18.8},{"duration":9,"tweenEasing":0,"rotate":-26.94},{"duration":0,"rotate":-13.54}],"scaleFrame":[{"duration":19,"tweenEasing":0},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":10,"tweenEasing":0,"y":0.99},{"duration":7,"tweenEasing":0,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.01},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":58,"value":-1}]}]},{"duration":66,"fadeInTime":0.1,"name":"Dying","bone":[{"name":"pelvis","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":2,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":10,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.36,"y":-0.17},{"duration":2,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":3,"tweenEasing":0,"x":-0.06,"y":-0.16},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.64,"y":-0.33},{"duration":9,"tweenEasing":0,"x":0.17,"y":-0.32},{"duration":0,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":17.28},{"duration":4,"tweenEasing":0,"rotate":5.5},{"duration":2,"tweenEasing":0,"rotate":-5.5},{"duration":10,"tweenEasing":0,"rotate":-6},{"duration":10,"tweenEasing":0,"rotate":1.75},{"duration":5,"tweenEasing":0,"rotate":5.5},{"duration":2,"tweenEasing":0,"rotate":-7},{"duration":3,"tweenEasing":0,"rotate":-10.51},{"duration":3,"tweenEasing":0,"rotate":6.51},{"duration":2,"tweenEasing":0,"rotate":20.04},{"duration":3,"tweenEasing":0,"rotate":41.37},{"duration":4,"tweenEasing":0,"rotate":82.99},{"duration":3,"tweenEasing":0,"rotate":84},{"duration":9,"tweenEasing":0,"rotate":87.25},{"duration":0,"rotate":85}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.98},{"duration":10,"tweenEasing":0,"x":0.98},{"duration":5,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.04},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":9,"x":1.03}]},{"name":"chest","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.71},{"duration":3,"tweenEasing":0,"x":-0.03,"y":0.28},{"tweenEasing":0,"x":0.05,"y":0.48},{"duration":2,"tweenEasing":0,"x":-0.2,"y":0.86},{"duration":10,"tweenEasing":0,"x":-0.27,"y":0.94},{"duration":10,"tweenEasing":0,"x":-0.12,"y":0.54},{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.06},{"duration":2,"tweenEasing":0,"x":0.04,"y":0.04},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.05},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.35},{"duration":2,"tweenEasing":0,"x":-0.12,"y":0.05},{"duration":3,"tweenEasing":0,"x":-0.19,"y":0.43},{"duration":4,"tweenEasing":0,"x":-0.13,"y":0.39},{"duration":3,"tweenEasing":0,"x":-0.1,"y":0.23},{"duration":4,"tweenEasing":0,"x":-0.1,"y":0.26},{"duration":5,"tweenEasing":0,"x":-0.12,"y":0.53},{"duration":0,"x":-0.07,"y":0.25}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":44.35},{"duration":3,"tweenEasing":0,"rotate":24.74},{"tweenEasing":0,"rotate":10.26},{"duration":2,"tweenEasing":0,"rotate":8.29},{"duration":10,"tweenEasing":0,"rotate":4.32},{"duration":10,"tweenEasing":0,"rotate":1.32},{"duration":5,"tweenEasing":0,"rotate":1.88},{"duration":2,"tweenEasing":0,"rotate":-2.13},{"duration":3,"tweenEasing":0,"rotate":-0.44},{"duration":3,"tweenEasing":0,"rotate":15.76},{"duration":2,"tweenEasing":0,"rotate":37.03},{"duration":3,"tweenEasing":0,"rotate":17.21},{"duration":4,"tweenEasing":0,"rotate":-25.71},{"duration":3,"tweenEasing":0,"rotate":15.88},{"duration":4,"tweenEasing":0,"rotate":-3.38},{"duration":5,"tweenEasing":0,"rotate":12.65},{"duration":0,"rotate":15.67}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":10,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.93},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0},{"duration":5,"x":1.01}]},{"name":"shouder_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-2.6,"y":7.58},{"duration":3,"tweenEasing":0,"x":1.4,"y":8.29},{"tweenEasing":0,"x":3.2,"y":6.9},{"duration":2,"tweenEasing":0,"x":1.67,"y":5.49},{"duration":10,"tweenEasing":0,"x":-0.81,"y":4.98},{"duration":10,"tweenEasing":0,"x":-1.99,"y":5.37},{"duration":5,"tweenEasing":0,"x":0.57,"y":5.79},{"duration":2,"tweenEasing":0,"x":0.83,"y":4.7},{"duration":3,"tweenEasing":0,"x":0.91,"y":3.96},{"duration":3,"tweenEasing":0,"x":-0.44,"y":2.83},{"duration":2,"tweenEasing":0,"x":-3.08,"y":4.1},{"duration":3,"tweenEasing":0,"x":-1.24,"y":6.75},{"duration":4,"tweenEasing":0,"x":-3.48,"y":14.35},{"duration":3,"tweenEasing":0,"x":-0.97,"y":13.13},{"duration":4,"tweenEasing":0,"x":-1.45,"y":13.55},{"duration":5,"tweenEasing":0,"x":-0.61,"y":12.94},{"duration":0,"x":-0.52,"y":12.96}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-81.03},{"duration":3,"tweenEasing":0,"rotate":69.12},{"tweenEasing":0,"rotate":70.36},{"duration":2,"tweenEasing":0,"rotate":7.92},{"duration":10,"tweenEasing":0,"rotate":-7.21},{"duration":10,"tweenEasing":0,"rotate":6.38},{"duration":5,"tweenEasing":0,"rotate":-12.29},{"duration":2,"tweenEasing":0,"rotate":32.33},{"duration":3,"tweenEasing":0,"rotate":78.92},{"duration":3,"tweenEasing":0,"rotate":23.95},{"duration":2,"tweenEasing":0,"rotate":-17.09},{"duration":3,"tweenEasing":0,"rotate":-30.39},{"duration":4,"tweenEasing":0,"rotate":-8.51},{"duration":3,"tweenEasing":0,"rotate":-68.19},{"duration":4,"tweenEasing":0,"rotate":-62.93},{"duration":5,"tweenEasing":0,"rotate":-55.67},{"duration":0,"rotate":-55.92}]},{"name":"shouder_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":1.86,"y":-11.59},{"duration":2,"tweenEasing":0,"x":-0.92,"y":-12.92},{"duration":3,"tweenEasing":0,"x":-1.4,"y":-12.54},{"tweenEasing":0,"x":-0.47,"y":-9.24},{"duration":2,"tweenEasing":0,"x":0.23,"y":-7.51},{"duration":10,"tweenEasing":0,"x":2.02,"y":-4.95},{"duration":10,"tweenEasing":0,"x":4.02,"y":-5.5},{"duration":5,"tweenEasing":0,"x":1.57,"y":-6.9},{"duration":2,"tweenEasing":0,"x":1.38,"y":-5.55},{"duration":3,"tweenEasing":0,"x":1.22,"y":-4.68},{"duration":3,"tweenEasing":0,"x":2,"y":-3.25},{"duration":2,"tweenEasing":0,"x":3.13,"y":-4.25},{"duration":3,"tweenEasing":0,"x":1.42,"y":-8.87},{"duration":4,"tweenEasing":0,"x":2.96,"y":-16.32},{"duration":3,"tweenEasing":0,"x":-0.25,"y":-14.02},{"duration":4,"tweenEasing":0,"x":0.16,"y":-14.36},{"duration":5,"tweenEasing":0,"x":-0.56,"y":-13.82},{"duration":0,"x":-0.59,"y":-13.92}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-106.06},{"duration":2,"tweenEasing":0,"rotate":-8.75},{"duration":3,"tweenEasing":0,"rotate":3.7},{"tweenEasing":0,"rotate":16.47},{"duration":2,"tweenEasing":0,"rotate":17.43},{"duration":10,"tweenEasing":0,"rotate":16.36},{"duration":10,"tweenEasing":0,"rotate":1.1},{"duration":5,"tweenEasing":0,"rotate":25.08},{"duration":2,"tweenEasing":0,"rotate":27.28},{"duration":3,"tweenEasing":0,"rotate":21},{"duration":3,"tweenEasing":0,"rotate":-9.44},{"duration":2,"tweenEasing":0,"rotate":-30.15},{"duration":3,"tweenEasing":0,"rotate":1.96},{"duration":4,"tweenEasing":0,"rotate":-20.8},{"duration":3,"tweenEasing":0,"rotate":-28.08},{"duration":4,"tweenEasing":0,"rotate":-20.04},{"duration":5,"tweenEasing":0,"rotate":-19.34},{"duration":0,"rotate":-19.1}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.08,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.09,"y":0.99},{"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":10,"tweenEasing":0,"x":1.01},{"duration":5,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.86,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":3,"tweenEasing":0,"x":0.81,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.78,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.82},{"duration":4,"tweenEasing":0,"x":0.72,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.19},{"duration":4,"tweenEasing":0,"x":1.18},{"duration":5,"tweenEasing":0,"x":1.2},{"duration":0,"x":1.15}]},{"name":"forearm_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":-0.08,"y":0.1},{"duration":2,"tweenEasing":0,"x":-0.26,"y":-0.19},{"duration":3,"tweenEasing":0,"x":-0.3,"y":-0.21},{"tweenEasing":0,"x":-0.21,"y":-0.26},{"duration":2,"tweenEasing":0,"x":-0.15,"y":-0.27},{"duration":10,"tweenEasing":0,"x":-0.08,"y":-0.24},{"duration":10,"tweenEasing":0,"x":-0.07,"y":-0.15},{"duration":5,"tweenEasing":0,"x":-0.16,"y":-0.27},{"duration":2,"tweenEasing":0,"x":-0.02,"y":-0.22},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.12},{"duration":3,"tweenEasing":0,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.09,"y":-0.13},{"duration":4,"tweenEasing":0,"x":0.03,"y":-0.06},{"duration":3,"tweenEasing":0,"x":-0.24,"y":-0.05},{"duration":4,"tweenEasing":0,"x":-0.23,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.27,"y":-0.04},{"duration":0,"x":-0.24,"y":-0.05}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-1.88},{"duration":2,"tweenEasing":0,"rotate":-14.52},{"duration":3,"tweenEasing":0,"rotate":-11.52},{"tweenEasing":0,"rotate":-12.78},{"duration":2,"tweenEasing":0,"rotate":-12.29},{"duration":10,"tweenEasing":0,"rotate":-7.79},{"duration":10,"tweenEasing":0,"rotate":11.55},{"duration":5,"tweenEasing":0,"rotate":1.93},{"duration":2,"tweenEasing":0,"rotate":4.68},{"duration":3,"tweenEasing":0,"rotate":5.43},{"duration":3,"tweenEasing":0,"rotate":4.15},{"duration":2,"tweenEasing":0,"rotate":-0.93},{"duration":3,"tweenEasing":0,"rotate":5.3},{"duration":4,"tweenEasing":0,"rotate":40.88},{"duration":3,"tweenEasing":0,"rotate":36.08},{"duration":4,"tweenEasing":0,"rotate":29.81},{"duration":5,"tweenEasing":0,"rotate":39.09},{"duration":0,"rotate":40.61}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.87,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.86,"y":1.01},{"tweenEasing":0,"x":0.83},{"duration":2,"tweenEasing":0,"x":0.83},{"duration":10,"tweenEasing":0,"x":0.85},{"duration":10,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":5,"tweenEasing":0,"x":0.82,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.76,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.75,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.7,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.66},{"duration":4,"tweenEasing":0,"x":0.66},{"duration":3,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.66},{"duration":5,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":0,"x":0.76,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.11,"y":0.24},{"duration":3,"tweenEasing":0,"x":-1.38,"y":0.34},{"tweenEasing":0,"x":-2.98,"y":0.44},{"duration":2,"tweenEasing":0,"x":-2.4,"y":0.55},{"duration":10,"tweenEasing":0,"x":0.17,"y":0.4},{"duration":10,"tweenEasing":0,"x":-0.15,"y":0.44},{"duration":5,"tweenEasing":0,"x":0.08,"y":0.4},{"duration":2,"tweenEasing":0,"x":0.6,"y":0.37},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.3},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.28},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.24},{"duration":3,"tweenEasing":0,"x":0.11,"y":0.23},{"duration":4,"tweenEasing":0,"x":-3.42,"y":0.06},{"duration":3,"tweenEasing":0,"x":-2.78,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-2.47,"y":-0.01},{"duration":5,"tweenEasing":0,"x":-3.04},{"duration":0,"x":-2.96,"y":0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-10.55},{"duration":3,"tweenEasing":0,"rotate":-146.71},{"tweenEasing":0,"rotate":-125.63},{"duration":2,"tweenEasing":0,"rotate":-48.42},{"duration":10,"tweenEasing":0,"rotate":-26.84},{"duration":10,"tweenEasing":0,"rotate":-54.95},{"duration":5,"tweenEasing":0,"rotate":13.27},{"duration":2,"tweenEasing":0,"rotate":-4.33},{"duration":3,"tweenEasing":0,"rotate":-41.41},{"duration":3,"tweenEasing":0,"rotate":4.18},{"duration":2,"tweenEasing":0,"rotate":-9.62},{"duration":3,"tweenEasing":0,"rotate":-4.1},{"duration":4,"tweenEasing":0,"rotate":-31.67},{"duration":3,"tweenEasing":0,"rotate":-4.85},{"duration":4,"tweenEasing":0,"rotate":12.72},{"duration":5,"tweenEasing":0,"rotate":-9.87},{"duration":0,"rotate":-12.37}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.89,"y":0.99},{"tweenEasing":0,"x":0.82,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.77,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.9,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.92},{"duration":2,"tweenEasing":0,"x":0.89},{"duration":3,"tweenEasing":0,"x":0.67},{"duration":3,"tweenEasing":0,"x":0.87,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":4,"tweenEasing":0,"x":0.74},{"duration":3,"tweenEasing":0,"x":0.77},{"duration":4,"tweenEasing":0,"x":0.74,"y":0.99},{"duration":5,"x":0.72,"y":0.99}]},{"name":"hand_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.17,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.09,"y":-0.2},{"tweenEasing":0,"x":-0.19,"y":-0.2},{"duration":2,"tweenEasing":0,"x":-0.25,"y":-0.08},{"duration":10,"tweenEasing":0,"x":-0.07,"y":-0.02},{"duration":10,"tweenEasing":0,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.02,"y":0.11},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.15},{"duration":3,"tweenEasing":0,"x":-0.05,"y":0.29},{"duration":3,"tweenEasing":0,"x":0.13,"y":0.17},{"duration":2,"tweenEasing":0,"x":0.08,"y":0.03},{"duration":3,"tweenEasing":0,"x":0.13},{"duration":4,"tweenEasing":0,"x":0.25,"y":-0.14},{"duration":3,"tweenEasing":0,"x":0.24,"y":-0.17},{"duration":4,"tweenEasing":0,"x":0.24,"y":-0.19},{"duration":5,"tweenEasing":0,"x":0.24,"y":-0.16},{"duration":0,"x":0.23,"y":-0.17}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":4.03},{"duration":3,"tweenEasing":0,"rotate":-12.06},{"tweenEasing":0,"rotate":152.64},{"duration":2,"tweenEasing":0,"rotate":130.33},{"duration":10,"tweenEasing":0,"rotate":134.36},{"duration":10,"tweenEasing":0,"rotate":144.41},{"duration":5,"tweenEasing":0,"rotate":90.23},{"duration":2,"tweenEasing":0,"rotate":79.72},{"duration":3,"tweenEasing":0,"rotate":71.89},{"duration":3,"tweenEasing":0,"rotate":59.63},{"duration":2,"tweenEasing":0,"rotate":110.84},{"duration":3,"tweenEasing":0,"rotate":121.36},{"duration":4,"tweenEasing":0,"rotate":146.89},{"duration":3,"tweenEasing":0,"rotate":155.42},{"duration":4,"tweenEasing":0,"rotate":148.64},{"duration":5,"tweenEasing":0,"rotate":148.89},{"duration":0,"rotate":149.89}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.65,"y":0.99},{"tweenEasing":0,"x":0.69},{"duration":2,"tweenEasing":0},{"duration":27,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":12,"x":0.97}]},{"name":"hand_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":-0.12,"y":0.09},{"duration":2,"tweenEasing":0,"x":0.05,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.06},{"tweenEasing":0,"x":0.13},{"duration":2,"tweenEasing":0,"x":0.16,"y":0.02},{"duration":10,"tweenEasing":0,"x":0.16,"y":0.05},{"duration":10,"tweenEasing":0,"x":0.09,"y":0.05},{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.21,"y":0.04},{"duration":3,"tweenEasing":0,"x":0.11,"y":0.11},{"duration":3,"tweenEasing":0,"x":0.06,"y":0.2},{"duration":2,"tweenEasing":0,"x":-1.02,"y":0.24},{"duration":3,"tweenEasing":0,"x":-3.04,"y":0.06},{"duration":4,"tweenEasing":0,"x":-0.37,"y":0.04},{"duration":3,"tweenEasing":0,"x":-0.44,"y":0.03},{"duration":4,"tweenEasing":0,"x":-0.44,"y":0.05},{"duration":5,"tweenEasing":0,"x":-0.19,"y":0.01},{"duration":0,"x":-0.01,"y":0.04}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":3.25},{"duration":2,"tweenEasing":0,"rotate":15.58},{"duration":3,"tweenEasing":0,"rotate":32.47},{"tweenEasing":0,"rotate":59.31},{"duration":2,"tweenEasing":0,"rotate":63.85},{"duration":10,"tweenEasing":0,"rotate":64.64},{"duration":10,"tweenEasing":0,"rotate":35.73},{"duration":5,"tweenEasing":0,"rotate":26.18},{"duration":2,"tweenEasing":0,"rotate":7.62},{"duration":3,"tweenEasing":0,"rotate":4.93},{"duration":3,"tweenEasing":0,"rotate":12.32},{"duration":2,"tweenEasing":0,"rotate":37.9},{"duration":3,"tweenEasing":0,"rotate":48.02},{"duration":4,"tweenEasing":0,"rotate":51.68},{"duration":3,"tweenEasing":0,"rotate":13.57},{"duration":4,"tweenEasing":0,"rotate":27.35},{"duration":5,"tweenEasing":0,"rotate":3.06},{"duration":0,"rotate":-0.06}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":1.01,"y":1.02},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.91},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.92},{"tweenEasing":0,"x":0.98,"y":0.92},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.91},{"duration":10,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":10,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":5,"tweenEasing":0,"x":0.96,"y":0.86},{"duration":2,"tweenEasing":0,"x":0.96,"y":0.83},{"duration":3,"tweenEasing":0,"x":0.96,"y":0.82},{"duration":3,"tweenEasing":0,"x":0.94,"y":0.76},{"duration":2,"tweenEasing":0,"x":0.93,"y":0.75},{"duration":3,"tweenEasing":0,"x":0.94,"y":0.75},{"duration":4,"tweenEasing":0,"y":0.97},{"duration":7,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":5,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0,"x":1.01,"y":1.02}]},{"name":"weapon_hand_l","translateFrame":[{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":10,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":23,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":16,"x":0.01}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":4.42},{"duration":2,"tweenEasing":0,"rotate":24.72},{"duration":3,"tweenEasing":0,"rotate":16.51},{"tweenEasing":0,"rotate":9.6},{"duration":2,"tweenEasing":0,"rotate":9.71},{"duration":10,"tweenEasing":0,"rotate":11.52},{"duration":10,"tweenEasing":0,"rotate":25.31},{"duration":5,"tweenEasing":0,"rotate":20.24},{"duration":2,"tweenEasing":0,"rotate":29.56},{"duration":3,"tweenEasing":0,"rotate":31.39},{"duration":3,"tweenEasing":0,"rotate":27.05},{"duration":2,"tweenEasing":0,"rotate":-4.88},{"duration":3,"tweenEasing":0,"rotate":-52.41},{"duration":4,"tweenEasing":0,"rotate":-105.87},{"duration":3,"tweenEasing":0,"rotate":-81.38},{"duration":4,"tweenEasing":0,"rotate":-80.53},{"duration":5,"tweenEasing":0,"rotate":-79.97},{"duration":0,"rotate":-80.88}]},{"name":"weapon_hand_r","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":16,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":0,"x":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.02},{"duration":3,"tweenEasing":0,"rotate":93.01},{"tweenEasing":0,"rotate":105.4},{"duration":2,"tweenEasing":0,"rotate":104.02},{"duration":27,"tweenEasing":0,"rotate":107.78},{"duration":3,"tweenEasing":0,"rotate":107.78},{"duration":3,"tweenEasing":0,"rotate":121.04},{"duration":2,"tweenEasing":0,"rotate":155.41},{"duration":3,"tweenEasing":0,"rotate":159.93},{"duration":4,"tweenEasing":0,"rotate":-179.75},{"duration":12,"rotate":-159.98}]},{"name":"root","translateFrame":[{"duration":6,"tweenEasing":0,"x":-9.14,"y":0.61},{"duration":4,"tweenEasing":0,"x":-16.58,"y":-0.55},{"duration":2,"tweenEasing":0,"x":-16.78,"y":-1.59},{"duration":10,"tweenEasing":0,"x":-15.62,"y":-0.25},{"duration":10,"tweenEasing":0,"x":-16.44,"y":0.69},{"duration":5,"tweenEasing":0,"x":-13.75,"y":-0.25},{"duration":2,"tweenEasing":0,"x":-5.66,"y":0.3},{"duration":6,"tweenEasing":0,"x":-2.27,"y":6.86},{"duration":5,"tweenEasing":0,"x":0.44,"y":7.93},{"duration":16,"tweenEasing":0,"x":3.54,"y":12.17},{"duration":0,"x":4.14,"y":13.02}]},{"name":"thigh_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.35,"y":-2.89},{"duration":3,"tweenEasing":0,"x":0.66,"y":-3.94},{"tweenEasing":0,"x":0.86,"y":-2.65},{"duration":2,"tweenEasing":0,"x":1.14,"y":-2.48},{"duration":10,"tweenEasing":0,"x":1.27,"y":-2},{"duration":10,"tweenEasing":0,"x":1.19,"y":-2.51},{"duration":5,"tweenEasing":0,"x":1.51,"y":-3.51},{"duration":2,"tweenEasing":0,"x":1.57,"y":-3.25},{"duration":3,"tweenEasing":0,"x":1.55,"y":-2.85},{"duration":3,"tweenEasing":0,"x":0.72,"y":-1.7},{"duration":2,"tweenEasing":0,"x":-0.09,"y":-2.67},{"duration":3,"tweenEasing":0,"x":0.79,"y":-4.22},{"duration":4,"tweenEasing":0,"x":2.11,"y":-4.38},{"duration":3,"tweenEasing":0,"x":0.93,"y":-4.52},{"duration":4,"tweenEasing":0,"x":1.04,"y":-4.38},{"duration":5,"tweenEasing":0,"x":1.3,"y":-4.05},{"duration":0,"x":1.36,"y":-3.69}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-44.61},{"duration":3,"tweenEasing":0,"rotate":-48.38},{"tweenEasing":0,"rotate":-43.86},{"duration":2,"tweenEasing":0,"rotate":-43.35},{"duration":10,"tweenEasing":0,"rotate":-54.15},{"duration":10,"tweenEasing":0,"rotate":-64.69},{"duration":5,"tweenEasing":0,"rotate":-42.6},{"duration":2,"tweenEasing":0,"rotate":-29.05},{"duration":3,"tweenEasing":0,"rotate":-2.5},{"duration":3,"tweenEasing":0,"rotate":2},{"duration":2,"tweenEasing":0,"rotate":14.27},{"duration":3,"tweenEasing":0,"rotate":37.86},{"duration":4,"tweenEasing":0,"rotate":71.48},{"duration":3,"tweenEasing":0,"rotate":61.96},{"duration":4,"tweenEasing":0,"rotate":63.96},{"duration":5,"tweenEasing":0,"rotate":67.22},{"duration":0,"rotate":63.46}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":16,"x":1.02,"y":0.99}]},{"name":"thigh_l","translateFrame":[{"tweenEasing":0,"x":-0.35,"y":2.85},{"duration":5,"tweenEasing":0,"x":-0.32,"y":4.22},{"duration":3,"tweenEasing":0,"x":-0.64,"y":3.87},{"tweenEasing":0,"x":-1.17,"y":3.12},{"duration":2,"tweenEasing":0,"x":-1.12,"y":2.45},{"duration":10,"tweenEasing":0,"x":-1.24,"y":1.98},{"duration":10,"tweenEasing":0,"x":-1.16,"y":2.48},{"duration":5,"tweenEasing":0,"x":-1.47,"y":3.46},{"duration":2,"tweenEasing":0,"x":-1.54,"y":3.21},{"duration":3,"tweenEasing":0,"x":-1.52,"y":2.82},{"duration":3,"tweenEasing":0,"x":-0.02,"y":1.35},{"duration":2,"tweenEasing":0,"x":0.09,"y":2.61},{"duration":3,"tweenEasing":0,"x":-0.91,"y":3.82},{"duration":4,"tweenEasing":0,"x":-2.08,"y":4.29},{"duration":3,"tweenEasing":0,"x":-2.18,"y":3.8},{"duration":4,"tweenEasing":0,"x":-0.69,"y":3.67},{"duration":5,"tweenEasing":0,"x":-0.67,"y":3.66},{"duration":0,"x":-1.32,"y":3.62}],"rotateFrame":[{"tweenEasing":0,"rotate":-23.85},{"duration":5,"tweenEasing":0,"rotate":39},{"duration":3,"tweenEasing":0,"rotate":-6.78},{"tweenEasing":0,"rotate":12.3},{"duration":2,"tweenEasing":0,"rotate":19.83},{"duration":10,"tweenEasing":0,"rotate":16.07},{"duration":10,"tweenEasing":0,"rotate":-1.5},{"duration":5,"tweenEasing":0,"rotate":32.36},{"duration":2,"tweenEasing":0,"rotate":36.86},{"duration":3,"tweenEasing":0,"rotate":49.37},{"duration":3,"tweenEasing":0,"rotate":66.15},{"duration":2,"tweenEasing":0,"rotate":87.74},{"duration":3,"tweenEasing":0,"rotate":100.55},{"duration":4,"tweenEasing":0,"rotate":114.09},{"duration":3,"tweenEasing":0,"rotate":118.87},{"duration":4,"tweenEasing":0,"rotate":120.64},{"duration":5,"tweenEasing":0,"rotate":117.35},{"duration":0,"rotate":116.86}],"scaleFrame":[{"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":0.77,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.91},{"tweenEasing":0,"x":0.9},{"duration":2,"tweenEasing":0,"x":0.89},{"duration":10,"tweenEasing":0,"x":0.87},{"duration":10,"tweenEasing":0,"x":0.9},{"duration":5,"tweenEasing":0,"x":0.86,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.89,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.81,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.91},{"duration":2,"tweenEasing":0,"x":0.93},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":4,"tweenEasing":0,"x":0.92,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.73,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":5,"tweenEasing":0,"x":0.82,"y":1.01},{"duration":0,"x":0.79,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.04},{"tweenEasing":0,"x":-0.03,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":10,"tweenEasing":0,"x":-0.06,"y":-0.02},{"duration":10,"tweenEasing":0,"x":-0.04,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.02},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.04},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.06},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.04},{"duration":4,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.02,"y":-0.06},{"duration":0,"x":0.02,"y":-0.03}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":31.33},{"duration":3,"tweenEasing":0,"rotate":45.37},{"tweenEasing":0,"rotate":32.33},{"duration":2,"tweenEasing":0,"rotate":30.83},{"duration":10,"tweenEasing":0,"rotate":51.13},{"duration":10,"tweenEasing":0,"rotate":64.19},{"duration":5,"tweenEasing":0,"rotate":57.91},{"duration":2,"tweenEasing":0,"rotate":66.96},{"duration":3,"tweenEasing":0,"rotate":78.23},{"duration":3,"tweenEasing":0,"rotate":63.48},{"duration":2,"tweenEasing":0,"rotate":50.96},{"duration":3,"tweenEasing":0,"rotate":43.38},{"duration":4,"tweenEasing":0,"rotate":39.35},{"duration":3,"tweenEasing":0,"rotate":31.56},{"duration":4,"tweenEasing":0,"rotate":15.28},{"duration":5,"tweenEasing":0,"rotate":10.01},{"duration":0,"rotate":16.53}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04},{"tweenEasing":0,"x":1.04,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":10,"tweenEasing":0,"x":1.02},{"duration":10,"tweenEasing":0,"x":1.03},{"duration":5,"tweenEasing":0,"x":1.04},{"duration":2,"tweenEasing":0,"x":1.04},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":4,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.05},{"duration":4,"tweenEasing":0,"x":1.05},{"duration":5,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":0,"x":1.05}]},{"name":"calf_l","translateFrame":[{"tweenEasing":0,"x":-0.04},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.12},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.03},{"tweenEasing":0,"x":0.05,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.05,"y":-0.07},{"duration":10,"tweenEasing":0,"x":0.07,"y":-0.06},{"duration":10,"tweenEasing":0,"x":0.03,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.04,"y":-0.12},{"duration":2,"tweenEasing":0,"x":0.04,"y":-0.06},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.03,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.04,"y":-0.07},{"duration":3,"tweenEasing":0,"x":-0.05,"y":-0.07},{"duration":4,"tweenEasing":0,"x":-0.05,"y":-0.04},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.08},{"duration":4,"tweenEasing":0,"x":-0.04,"y":-0.07},{"duration":5,"tweenEasing":0,"x":-0.06,"y":-0.05},{"duration":0,"x":-0.05,"y":-0.06}],"rotateFrame":[{"tweenEasing":0,"rotate":41.36},{"duration":5,"tweenEasing":0,"rotate":16.91},{"duration":3,"tweenEasing":0,"rotate":40.79},{"tweenEasing":0,"rotate":14.94},{"duration":2,"tweenEasing":0,"rotate":6.91},{"duration":10,"tweenEasing":0,"rotate":24.2},{"duration":10,"tweenEasing":0,"rotate":45.3},{"duration":5,"tweenEasing":0,"rotate":8.15},{"duration":2,"tweenEasing":0,"rotate":22.24},{"duration":3,"tweenEasing":0,"rotate":48.05},{"duration":3,"tweenEasing":0,"rotate":31.31},{"duration":2,"tweenEasing":0,"rotate":16.24},{"duration":3,"tweenEasing":0,"rotate":5.93},{"duration":4,"tweenEasing":0,"rotate":-6.36},{"duration":3,"tweenEasing":0,"rotate":16.85},{"duration":4,"tweenEasing":0,"rotate":10.27},{"duration":5,"tweenEasing":0,"rotate":-5.17},{"duration":0,"rotate":-6.69}],"scaleFrame":[{"tweenEasing":0,"x":0.95},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.99},{"duration":4,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.05,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.05,"y":0.99},{"duration":5,"x":1.03}]},{"name":"foot_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.18,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.21,"y":-0.01},{"tweenEasing":0,"x":-0.21,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.2,"y":-0.01},{"duration":10,"tweenEasing":0,"x":-0.21,"y":-0.06},{"duration":10,"tweenEasing":0,"x":-0.2,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.22},{"duration":2,"tweenEasing":0,"x":-0.21},{"duration":3,"tweenEasing":0,"x":-0.21,"y":0.01},{"duration":3,"tweenEasing":0,"x":-0.25},{"duration":2,"tweenEasing":0,"x":-0.26,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.25,"y":0.02},{"duration":4,"tweenEasing":0,"x":-0.18,"y":0.01},{"duration":3,"tweenEasing":0,"x":-0.19,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.22,"y":0.01},{"duration":5,"tweenEasing":0,"x":-0.22,"y":0.03},{"duration":0,"x":-0.22,"y":0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":13.28},{"duration":3,"tweenEasing":0,"rotate":3.76},{"tweenEasing":0,"rotate":12.78},{"duration":2,"tweenEasing":0,"rotate":14.03},{"duration":10,"tweenEasing":0,"rotate":3.51},{"duration":10,"tweenEasing":0,"rotate":0.75},{"duration":5,"tweenEasing":0,"rotate":-15.05},{"duration":2,"tweenEasing":0,"rotate":48.6},{"duration":3,"tweenEasing":0,"rotate":27.29},{"duration":3,"tweenEasing":0,"rotate":49.32},{"duration":2,"tweenEasing":0,"rotate":65.14},{"duration":3,"tweenEasing":0,"rotate":51.39},{"duration":4,"tweenEasing":0,"rotate":12.5},{"duration":3,"tweenEasing":0,"rotate":53.41},{"duration":4,"tweenEasing":0,"rotate":38.58},{"duration":5,"tweenEasing":0,"rotate":35.06},{"duration":0,"rotate":35.57}],"scaleFrame":[{"duration":32,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.92},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":0,"y":0.99}]},{"name":"foot_l","translateFrame":[{"tweenEasing":0,"x":1.51,"y":-0.15},{"duration":5,"tweenEasing":0,"x":1.38,"y":-0.19},{"duration":3,"tweenEasing":0,"x":1.4,"y":-0.19},{"tweenEasing":0,"x":1.43,"y":-0.18},{"duration":2,"tweenEasing":0,"x":1.44,"y":-0.2},{"duration":10,"tweenEasing":0,"x":1.41,"y":-0.2},{"duration":10,"tweenEasing":0,"x":1.4,"y":-0.2},{"duration":5,"tweenEasing":0,"x":1.4,"y":-0.2},{"duration":2,"tweenEasing":0,"x":1.43,"y":-0.18},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.17},{"duration":3,"tweenEasing":0,"x":1.39,"y":-0.16},{"duration":2,"tweenEasing":0,"x":1.37,"y":-0.13},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.13},{"duration":4,"tweenEasing":0,"x":1.37,"y":-0.14},{"duration":3,"tweenEasing":0,"x":1.42,"y":-0.12},{"duration":4,"tweenEasing":0,"x":1.4,"y":-0.11},{"duration":5,"tweenEasing":0,"x":1.37,"y":-0.12},{"duration":0,"x":1.38,"y":-0.1}],"rotateFrame":[{"tweenEasing":0,"rotate":-17.55},{"duration":5,"tweenEasing":0,"rotate":-55.87},{"duration":3,"tweenEasing":0,"rotate":-34.03},{"tweenEasing":0,"rotate":-27.28},{"duration":2,"tweenEasing":0,"rotate":-26.79},{"duration":10,"tweenEasing":0,"rotate":-40.34},{"duration":10,"tweenEasing":0,"rotate":-43.84},{"duration":5,"tweenEasing":0,"rotate":-40.58},{"duration":2,"tweenEasing":0,"rotate":27.58},{"duration":3,"tweenEasing":0,"rotate":-2.01},{"duration":3,"tweenEasing":0,"rotate":25.82},{"duration":2,"tweenEasing":0,"rotate":8.52},{"duration":3,"tweenEasing":0,"rotate":1.76},{"duration":4,"tweenEasing":0,"rotate":5.03},{"duration":3,"tweenEasing":0,"rotate":-6.71},{"duration":4,"tweenEasing":0,"rotate":13.13},{"duration":5,"tweenEasing":0,"rotate":1.29},{"duration":0,"rotate":2.29}],"scaleFrame":[{"duration":32,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.03},{"duration":8,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":5,"x":1.03,"y":0.99}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":66,"value":-1}]}]},{"duration":14,"fadeInTime":0.2,"name":"Atk1","frame":[{"duration":4},{"duration":0,"sound":"200025"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.01},{"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.29,"y":0.01},{"duration":4,"tweenEasing":0,"y":-0.02},{"duration":0,"x":0.2,"y":-0.1}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-5.75},{"tweenEasing":0,"rotate":0.25},{"duration":2,"tweenEasing":0,"rotate":13.52},{"duration":2,"tweenEasing":0,"rotate":22.3},{"duration":4,"tweenEasing":0,"rotate":24.3},{"duration":0,"rotate":17.78}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":0.99},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0,"x":0.99},{"duration":0,"x":0.96}]},{"name":"chest","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":-0.21},{"tweenEasing":0,"x":-0.16,"y":0.02},{"duration":2,"tweenEasing":0,"x":-0.29,"y":0.58},{"duration":2,"tweenEasing":0,"x":-0.3,"y":0.68},{"duration":4,"tweenEasing":0,"x":-0.3,"y":0.59},{"duration":0,"x":-0.23,"y":0.36}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":5.96},{"tweenEasing":0,"rotate":7.79},{"duration":2,"tweenEasing":0,"rotate":10.03},{"duration":2,"tweenEasing":0,"rotate":1.45},{"duration":4,"tweenEasing":0,"rotate":-0.75},{"duration":0,"rotate":1.89}],"scaleFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"shouder_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":1.25,"y":-0.19},{"duration":3,"tweenEasing":0,"x":1.89,"y":0.04},{"tweenEasing":0,"x":1.32,"y":1.4},{"duration":4,"tweenEasing":0,"x":-0.3,"y":4.43},{"duration":4,"x":-0.3,"y":4.43},{"duration":0,"x":1.2,"y":6.31}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":-129.6},{"duration":3,"tweenEasing":0,"rotate":167.8},{"tweenEasing":0,"rotate":176.6},{"duration":2,"tweenEasing":0,"rotate":-74.75},{"duration":2,"tweenEasing":0,"rotate":-56.5},{"duration":4,"tweenEasing":0,"rotate":-60.7},{"duration":0,"rotate":-54.25}]},{"name":"shouder_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.34,"y":-0.34},{"tweenEasing":0,"x":-1.39,"y":-5.16},{"duration":2,"tweenEasing":0,"x":4.2,"y":-17.25},{"duration":2,"tweenEasing":0,"x":3.45,"y":-17.67},{"duration":4,"x":3.47,"y":-17.23},{"duration":0,"x":3.77,"y":-12.36}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-48.37},{"tweenEasing":0,"rotate":1.39},{"duration":2,"tweenEasing":0,"rotate":24.27},{"duration":2,"tweenEasing":0,"rotate":24.73},{"duration":4,"tweenEasing":0,"rotate":26.04},{"duration":0,"rotate":13.44}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.99},{"tweenEasing":0,"x":0.67},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.06},{"duration":4,"tweenEasing":0,"x":1.06},{"duration":0,"x":1.04}]},{"name":"forearm_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.17,"y":0.16},{"tweenEasing":0,"x":0.24,"y":-0.05},{"duration":2,"tweenEasing":0,"x":0.64,"y":-0.15},{"duration":2,"tweenEasing":0,"x":0.59,"y":-0.05},{"duration":4,"tweenEasing":0,"x":0.59,"y":-0.04},{"duration":0,"x":0.32,"y":1.15}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":12.19},{"tweenEasing":0,"rotate":-34.07},{"duration":2,"tweenEasing":0,"rotate":5.44},{"duration":2,"tweenEasing":0,"rotate":28.28},{"duration":4,"tweenEasing":0,"rotate":24.27},{"duration":0,"rotate":1.22}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.78,"y":1.01},{"tweenEasing":0,"x":0.95,"y":1.01},{"duration":2,"tweenEasing":0,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.25,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.13,"y":1.01},{"duration":0,"x":1.15,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":0.87,"y":0.13},{"duration":3,"tweenEasing":0,"x":0.88,"y":0.13},{"tweenEasing":0,"x":1.07,"y":0.14},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.25},{"duration":2,"tweenEasing":0,"x":1.16,"y":0.19},{"duration":4,"tweenEasing":0,"x":1.08,"y":0.23},{"duration":0,"x":0.2,"y":-0.14}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":12.78},{"duration":3,"tweenEasing":0,"rotate":12.78},{"tweenEasing":0,"rotate":-15.8},{"duration":2,"tweenEasing":0,"rotate":0.41},{"duration":2,"tweenEasing":0,"rotate":-14.66},{"duration":4,"tweenEasing":0,"rotate":14.63},{"duration":0,"rotate":2.97}],"scaleFrame":[{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":1.02},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":0,"x":1.02}]},{"name":"hand_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":0.08,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.07,"y":-0.07},{"tweenEasing":0,"x":0.19,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.06},{"duration":4,"tweenEasing":0,"x":0.07,"y":-0.02},{"duration":0,"x":-0.55,"y":-0.14}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":6.76},{"duration":3,"tweenEasing":0,"rotate":6.75},{"tweenEasing":0,"rotate":-2.5},{"duration":2,"tweenEasing":0,"rotate":76.22},{"duration":2,"tweenEasing":0,"rotate":58.71},{"duration":4,"tweenEasing":0,"rotate":41.93},{"duration":0,"rotate":38.08}],"scaleFrame":[{"duration":2,"tweenEasing":0,"x":1.17},{"duration":3,"tweenEasing":0,"x":1.17},{"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.94},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.17},{"tweenEasing":0,"x":-0.1,"y":0.22},{"duration":2,"tweenEasing":0,"x":-2.59,"y":-0.13},{"duration":2,"tweenEasing":0,"x":-2.74,"y":-0.17},{"duration":4,"tweenEasing":0,"x":-2.7,"y":-0.17},{"duration":0,"x":-3,"y":-0.12}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-2.57},{"tweenEasing":0,"rotate":4.32},{"duration":2,"tweenEasing":0,"rotate":-19.52},{"duration":2,"tweenEasing":0,"rotate":-14.64},{"duration":4,"tweenEasing":0,"rotate":-0.79},{"duration":0,"rotate":14.44}],"scaleFrame":[{"duration":5,"tweenEasing":0,"y":0.96},{"tweenEasing":0,"y":0.96},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.07,"y":1.19},{"duration":4,"tweenEasing":0,"x":1.02,"y":1.05},{"duration":0,"x":1.02,"y":1.03}]},{"name":"weapon_hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01},{"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":0,"x":0.01,"y":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":3.1},{"tweenEasing":0,"rotate":32.41},{"duration":2,"tweenEasing":0,"rotate":6.87},{"duration":2,"tweenEasing":0,"rotate":-13.06},{"duration":4,"tweenEasing":0,"rotate":-13.08},{"duration":0,"rotate":-8.52}]},{"name":"weapon_hand_r","translateFrame":[{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":-96.78},{"duration":3,"tweenEasing":0,"rotate":-156.22},{"tweenEasing":0,"clockwise":1,"rotate":-179.75},{"duration":2,"tweenEasing":0,"rotate":38.81},{"duration":2,"tweenEasing":0,"rotate":39.31},{"duration":4,"tweenEasing":0,"rotate":29.29},{"duration":0,"rotate":15.52}]},{"name":"effect_r","translateFrame":[{"duration":12},{"tweenEasing":0,"x":23.95,"y":-15.22},{"x":40.96,"y":-23.57}],"rotateFrame":[{"duration":12},{"tweenEasing":0,"rotate":-9.42},{"rotate":-15.64}],"scaleFrame":[{"duration":11},{"tweenEasing":0,"x":1.21,"y":1.22},{"tweenEasing":0},{"x":0.7,"y":0.7}]},{"name":"root","translateFrame":[{"duration":5,"tweenEasing":0,"x":3.76,"y":-0.07},{"tweenEasing":0,"x":1.45,"y":3.01},{"duration":4,"tweenEasing":0,"x":0.54,"y":4.31},{"duration":4,"tweenEasing":0,"x":1,"y":4.59},{"duration":0,"x":0.67,"y":3.07}]},{"name":"thigh_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.14,"y":0.38},{"tweenEasing":0,"x":1.11,"y":-3.46},{"duration":2,"tweenEasing":0,"x":2.01,"y":-7.84},{"duration":2,"tweenEasing":0,"x":2.72,"y":-8.01},{"duration":4,"tweenEasing":0,"x":2.67,"y":-7.55},{"duration":0,"x":1.77,"y":-5.04}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":4.5},{"tweenEasing":0,"rotate":-0.5},{"duration":2,"tweenEasing":0,"rotate":27.82},{"duration":2,"tweenEasing":0,"rotate":29.32},{"duration":4,"tweenEasing":0,"rotate":26.56},{"duration":0,"rotate":17.58}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"thigh_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.14,"y":-0.41},{"tweenEasing":0,"x":-1.09,"y":3.38},{"duration":2,"tweenEasing":0,"x":-1.98,"y":7.68},{"duration":2,"tweenEasing":0,"x":-2.11,"y":7.9},{"duration":4,"tweenEasing":0,"x":-2.64,"y":7.4},{"duration":0,"x":-1.77,"y":4.93}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":15.06},{"tweenEasing":0,"rotate":-33.12},{"duration":2,"tweenEasing":0,"rotate":-10.04},{"duration":2,"tweenEasing":0,"rotate":-10.04},{"duration":4,"tweenEasing":0,"rotate":-7.03},{"duration":0,"rotate":-4.75}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.96,"y":1.01},{"tweenEasing":0,"x":1.01,"y":1.01},{"duration":8,"x":0.98,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":-0.01},{"tweenEasing":0,"x":0.01,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":0,"x":0.07,"y":-1.21}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":10.3},{"tweenEasing":0,"rotate":39.9},{"duration":2,"tweenEasing":0,"rotate":19.86},{"duration":2,"tweenEasing":0,"rotate":22.62},{"duration":4,"tweenEasing":0,"rotate":26.38},{"duration":0,"rotate":25.1}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":0.99,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":0.01},{"tweenEasing":0,"x":-0.04,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.03},{"duration":2,"tweenEasing":0,"x":-0.03},{"duration":4,"tweenEasing":0,"x":-0.03,"y":-0.01},{"duration":0,"x":-0.03}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":5.94},{"tweenEasing":0,"rotate":32.87},{"duration":2,"tweenEasing":0,"rotate":-32.11},{"duration":2,"tweenEasing":0,"rotate":-32.11},{"duration":4,"tweenEasing":0,"rotate":-32.1},{"duration":0,"rotate":-21.33}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.96},{"tweenEasing":0,"x":0.93},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0,"x":1.21},{"duration":0,"x":1.14}]},{"name":"foot_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.19,"y":-0.02},{"tweenEasing":0,"x":-0.2,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.22,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.22,"y":0.01},{"duration":4,"tweenEasing":0,"x":-0.22},{"duration":0,"x":-0.27,"y":0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-4.04},{"tweenEasing":0,"rotate":-35.15},{"duration":2,"tweenEasing":0,"rotate":-47.69},{"duration":2,"tweenEasing":0,"rotate":-52.7},{"duration":4,"tweenEasing":0,"rotate":-54.2},{"duration":0,"rotate":-43.45}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":1.01},{"duration":8}]},{"name":"foot_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.07,"y":0.02},{"tweenEasing":0,"x":1.55,"y":-0.04},{"duration":2,"tweenEasing":0,"x":1.47,"y":-0.06},{"duration":2,"tweenEasing":0,"x":1.48,"y":-0.05},{"duration":4,"tweenEasing":0,"x":-0.08,"y":-0.06},{"duration":0,"x":-0.42,"y":-0.31}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-21.05},{"tweenEasing":0,"rotate":0.19},{"duration":2,"tweenEasing":0,"rotate":42.16},{"duration":2,"tweenEasing":0,"rotate":42.15},{"duration":4,"tweenEasing":0,"rotate":39.26},{"duration":0,"rotate":26.17}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":6,"value":-1},{"duration":8}],"colorFrame":[{"duration":6},{"duration":5},{"value":{"aM":62}},{"value":{"aM":23}},{"value":{"aM":6}}]}]},{"duration":48,"fadeInTime":0.2,"name":"Atk3","frame":[{"duration":33},{"sound":"200029"},{"duration":0,"events":[{"name":"onTimeStart"}]}],"bone":[{"name":"pelvis","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"duration":35,"tweenEasing":0,"y":-0.01},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.14},{"duration":3,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":23.05},{"duration":31,"tweenEasing":0,"rotate":7.25},{"duration":2,"tweenEasing":0,"rotate":-22.53},{"duration":2,"tweenEasing":0,"rotate":23.8},{"duration":4,"tweenEasing":0,"rotate":49.66},{"duration":3,"tweenEasing":0,"rotate":39.11},{"duration":3,"tweenEasing":0,"rotate":24.81},{"duration":0,"rotate":12.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":31,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":0,"x":0.99}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.15,"y":0.08},{"duration":31,"tweenEasing":0,"x":-0.04,"y":0.16},{"duration":2,"tweenEasing":0,"x":-0.24,"y":1.07},{"duration":2,"tweenEasing":0,"x":-0.28,"y":-0.38},{"duration":4,"tweenEasing":0,"x":-0.8,"y":-1.94},{"duration":3,"tweenEasing":0,"x":-0.88,"y":-2.45},{"duration":3,"tweenEasing":0,"x":-0.55,"y":-2.06},{"duration":0,"x":-0.14,"y":-1.07}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.69},{"duration":31,"tweenEasing":0,"rotate":-3.4},{"duration":2,"tweenEasing":0,"rotate":1.59},{"duration":2,"tweenEasing":0,"rotate":47.72},{"duration":4,"tweenEasing":0,"rotate":23.57},{"duration":3,"tweenEasing":0,"rotate":30.93},{"duration":3,"tweenEasing":0,"rotate":22.58},{"duration":0,"rotate":11.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":31,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":0,"x":0.99}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-2.16,"y":6.54},{"duration":2,"tweenEasing":0,"x":-0.78,"y":6.22},{"duration":29,"tweenEasing":0,"x":-1.47,"y":6.73},{"duration":2,"tweenEasing":0,"x":-0.62,"y":7.1},{"duration":2,"tweenEasing":0,"x":-3.24,"y":11.37},{"duration":4,"tweenEasing":0,"x":-3.25,"y":11.5},{"duration":3,"tweenEasing":0,"x":-3.43,"y":10.87},{"duration":3,"tweenEasing":0,"x":-1.26,"y":7.59},{"duration":0,"x":-0.88,"y":6.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-32.21},{"duration":2,"tweenEasing":0,"rotate":-26.21},{"duration":29,"tweenEasing":0,"rotate":-56.66},{"duration":2,"tweenEasing":0,"rotate":-179.92},{"duration":2,"tweenEasing":0,"rotate":-100.73},{"duration":4,"tweenEasing":0,"rotate":-102.06},{"duration":3,"tweenEasing":0,"rotate":-113.23},{"duration":3,"tweenEasing":0,"rotate":-70.65},{"duration":0,"rotate":-31.81}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":4.9,"y":-9.52},{"duration":2,"tweenEasing":0,"x":2.89,"y":-7.56},{"duration":29,"tweenEasing":0,"x":2.64,"y":-7.28},{"duration":2,"tweenEasing":0,"x":1.37,"y":-7.87},{"duration":2,"tweenEasing":0,"x":4.56,"y":-11.44},{"duration":4,"tweenEasing":0,"x":3.7,"y":-11.38},{"duration":3,"tweenEasing":0,"x":4.77,"y":-11.2},{"duration":3,"tweenEasing":0,"x":4.44,"y":-9.48},{"duration":0,"x":2.47,"y":-6.28}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-2.11},{"duration":2,"tweenEasing":0,"rotate":-7.16},{"duration":29,"tweenEasing":0,"rotate":-40.37},{"duration":2,"tweenEasing":0,"rotate":-126.51},{"duration":2,"tweenEasing":0,"rotate":-54.13},{"duration":4,"tweenEasing":0,"rotate":-56.46},{"duration":3,"tweenEasing":0,"rotate":-59.88},{"duration":3,"tweenEasing":0,"rotate":-43.84},{"duration":0,"rotate":-21.78}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":29,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.96},{"duration":0,"x":0.99}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.76,"y":-0.15},{"duration":2,"tweenEasing":0,"x":0.81},{"duration":29,"tweenEasing":0,"x":0.79,"y":0.1},{"duration":2,"tweenEasing":0,"x":0.95,"y":-0.19},{"duration":2,"tweenEasing":0,"x":0.75,"y":-0.02},{"duration":4,"tweenEasing":0,"x":0.71,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.71,"y":0.02},{"duration":3,"tweenEasing":0,"x":0.73,"y":-0.01},{"duration":0,"x":0.28}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-10.87},{"duration":2,"tweenEasing":0,"rotate":-22.37},{"duration":29,"tweenEasing":0,"rotate":-31.14},{"duration":2,"tweenEasing":0,"rotate":-41.66},{"duration":2,"tweenEasing":0,"rotate":-36.65},{"duration":4,"tweenEasing":0,"rotate":-42.16},{"duration":3,"tweenEasing":0,"rotate":-37.89},{"duration":3,"tweenEasing":0,"rotate":-5.03},{"duration":0,"rotate":-2.51}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.91,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":29,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":0,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.1,"y":0.18},{"duration":2,"tweenEasing":0,"x":0.85,"y":0.22},{"duration":29,"tweenEasing":0,"x":0.25,"y":0.04},{"duration":2,"tweenEasing":0,"x":1.33,"y":0.2},{"duration":2,"tweenEasing":0,"x":1.22,"y":0.18},{"duration":4,"tweenEasing":0,"x":1.17,"y":0.18},{"duration":3,"tweenEasing":0,"x":1.21,"y":0.16},{"duration":3,"tweenEasing":0,"x":1.24,"y":0.21},{"duration":0,"x":1.03,"y":0.18}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-5.79},{"duration":2,"tweenEasing":0,"rotate":-33.15},{"duration":29,"tweenEasing":0,"rotate":-45.42},{"duration":2,"tweenEasing":0,"rotate":12.03},{"duration":2,"tweenEasing":0,"rotate":-11.34},{"duration":4,"tweenEasing":0,"rotate":-0.79},{"duration":3,"tweenEasing":0,"rotate":6.95},{"duration":3,"tweenEasing":0,"rotate":-7.3},{"duration":0,"rotate":-9.52}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.93,"y":0.99},{"duration":29,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":0,"x":1.02,"y":0.99}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.1,"y":-0.05},{"duration":2,"tweenEasing":0,"x":0.16,"y":-0.24},{"duration":29,"tweenEasing":0,"x":0.37,"y":-0.22},{"duration":2,"tweenEasing":0,"x":0.15,"y":-0.06},{"duration":2,"tweenEasing":0,"x":0.2,"y":-0.07},{"duration":4,"tweenEasing":0,"x":0.17,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.16,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.15,"y":-0.02},{"duration":0,"x":0.09,"y":-0.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":12.01},{"duration":2,"tweenEasing":0,"rotate":18.07},{"duration":29,"tweenEasing":0,"rotate":18.27},{"duration":2,"tweenEasing":0,"rotate":-6.26},{"duration":2,"tweenEasing":0,"rotate":48.15},{"duration":4,"tweenEasing":0,"rotate":37.86},{"duration":3,"tweenEasing":0,"rotate":44.89},{"duration":3,"tweenEasing":0,"rotate":46.12},{"duration":0,"rotate":34.82}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99},{"duration":2,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":29,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":6,"x":0.98}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.07,"y":0.11},{"duration":2,"tweenEasing":0,"x":-0.01,"y":0.19},{"duration":29,"tweenEasing":0,"x":-0.01,"y":0.07},{"duration":2,"tweenEasing":0,"x":0.34,"y":0.28},{"duration":2,"tweenEasing":0,"x":-0.03,"y":0.14},{"duration":4,"tweenEasing":0,"x":-0.04,"y":0.12},{"duration":3,"tweenEasing":0,"x":-0.04,"y":0.13},{"duration":3,"tweenEasing":0,"x":-0.02,"y":0.11},{"duration":0,"y":0.06}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":11.13},{"duration":2,"tweenEasing":0,"rotate":14.81},{"duration":29,"tweenEasing":0,"rotate":13.5},{"duration":2,"tweenEasing":0,"rotate":-0.66},{"duration":2,"tweenEasing":0,"rotate":51.14},{"duration":4,"tweenEasing":0,"rotate":57.16},{"duration":3,"tweenEasing":0,"rotate":59.68},{"duration":3,"tweenEasing":0,"rotate":39.57},{"duration":0,"rotate":19.81}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98,"y":0.93},{"duration":2,"tweenEasing":0,"y":1.01},{"duration":29,"tweenEasing":0,"x":1.01,"y":1.02},{"duration":2,"tweenEasing":0,"x":1.11,"y":1.34},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"y":0.98},{"duration":0,"x":1.01,"y":0.99}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":29,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":4,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":0,"x":0.01,"y":0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.59},{"duration":2,"tweenEasing":0,"rotate":19.03},{"duration":29,"tweenEasing":0,"rotate":16.97},{"duration":2,"tweenEasing":0,"rotate":13.9},{"duration":6,"tweenEasing":0,"rotate":18.48},{"duration":3,"tweenEasing":0,"rotate":18.48},{"duration":3,"tweenEasing":0,"rotate":17.86},{"duration":0,"rotate":9.1}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":-0.01},{"duration":29,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.01},{"duration":0,"y":0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":31.29},{"duration":2,"tweenEasing":0,"rotate":-28.61},{"duration":29,"tweenEasing":0,"rotate":-69.47},{"duration":2,"tweenEasing":0,"rotate":176.49},{"duration":2,"tweenEasing":0,"rotate":21.15},{"duration":4,"tweenEasing":0,"rotate":22.28},{"duration":3,"tweenEasing":0,"rotate":22.28},{"duration":3,"tweenEasing":0,"rotate":28.28},{"duration":0,"rotate":32.29}]},{"name":"effect_r","translateFrame":[{"duration":5,"x":-26.3,"y":-41.21},{"duration":28,"tweenEasing":0,"x":-26.3,"y":-41.21},{"duration":3,"x":-26.78,"y":-51.93},{"duration":4,"tweenEasing":0,"x":-1.03,"y":1.03},{"duration":3,"x":-1.03,"y":1.03},{"tweenEasing":0,"x":10.17,"y":6.63},{"duration":4,"x":30.97,"y":5.03}],"rotateFrame":[{"duration":33,"rotate":35.08},{"duration":3,"rotate":35.08},{"duration":12,"rotate":7.52}],"scaleFrame":[{"duration":33,"x":0.18,"y":0.16},{"duration":3,"x":0.18,"y":0.16},{"duration":4,"tweenEasing":0,"x":1.21,"y":1.09},{"duration":2,"x":1.68,"y":1.51},{"tweenEasing":0,"x":1.87,"y":1.68},{"tweenEasing":0,"x":1.63,"y":1.47},{"duration":4,"x":0.93,"y":0.84}]},{"name":"root","translateFrame":[{"duration":3,"tweenEasing":0,"x":-3.02,"y":5.91},{"duration":31,"tweenEasing":0,"x":6.06,"y":-12.9},{"duration":2,"tweenEasing":0,"x":7.94,"y":-22.23},{"duration":2,"tweenEasing":0,"x":2.9,"y":6.9},{"duration":7,"tweenEasing":0,"x":2.76,"y":6.68},{"duration":3,"tweenEasing":0,"x":2.3,"y":6.53},{"duration":0,"x":1.15,"y":3.27}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.76,"y":-2.17},{"duration":31,"tweenEasing":0,"x":-0.6,"y":-2.49},{"duration":2,"tweenEasing":0,"x":0.34,"y":-3.43},{"duration":2,"tweenEasing":0,"x":1.02,"y":-3.12},{"duration":4,"tweenEasing":0,"x":1.01,"y":-3.39},{"duration":3,"tweenEasing":0,"x":2.54,"y":-3.36},{"duration":3,"tweenEasing":0,"x":0.96,"y":-3.47},{"duration":0,"x":-0.89,"y":-1.82}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-63.19},{"duration":31,"tweenEasing":0,"rotate":-33.31},{"duration":2,"tweenEasing":0,"rotate":-11.76},{"duration":2,"tweenEasing":0,"rotate":-0.5},{"duration":4,"tweenEasing":0,"rotate":1},{"duration":3,"tweenEasing":0,"rotate":-1.59},{"duration":3,"tweenEasing":0,"rotate":5.01},{"duration":0,"rotate":5.51}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":31,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":0.9},{"duration":4,"tweenEasing":0,"x":0.91},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":0,"x":0.92}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.74,"y":2.15},{"duration":2,"tweenEasing":0,"x":0.6,"y":2.43},{"duration":29,"tweenEasing":0,"x":-1.05,"y":1.09},{"duration":2,"tweenEasing":0,"x":-0.33,"y":3.36},{"duration":2,"tweenEasing":0,"x":-1,"y":3.07},{"duration":4,"tweenEasing":0,"x":-0.98,"y":3.3},{"duration":3,"tweenEasing":0,"x":0.2,"y":3.03},{"duration":3,"tweenEasing":0,"x":-0.93,"y":3.4},{"duration":0,"x":-0.48,"y":1.71}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-43.89},{"duration":2,"tweenEasing":0,"rotate":37.86},{"duration":29,"tweenEasing":0,"rotate":-63.16},{"duration":2,"tweenEasing":0,"rotate":-39.39},{"duration":2,"tweenEasing":0,"rotate":-61.15},{"duration":4,"tweenEasing":0,"rotate":-63.15},{"duration":3,"tweenEasing":0,"rotate":-78.7},{"duration":3,"tweenEasing":0,"rotate":-66.92},{"duration":0,"rotate":-33.58}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":29,"tweenEasing":0,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.9,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.97},{"duration":3,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.04},{"duration":31,"tweenEasing":0,"x":0.04,"y":-0.11},{"duration":2,"tweenEasing":0,"x":0.14,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.02},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":0,"x":0.01,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":97.06},{"duration":31,"tweenEasing":0,"rotate":81.5},{"duration":2,"tweenEasing":0,"rotate":11.26},{"duration":2,"tweenEasing":0,"rotate":58.17},{"duration":4,"tweenEasing":0,"rotate":56.18},{"duration":3,"tweenEasing":0,"rotate":65.16},{"duration":3,"tweenEasing":0,"rotate":48.14},{"duration":0,"rotate":13.54}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":31,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":4,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":0,"x":0.95,"y":0.99}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.03,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.07,"y":-0.02},{"duration":29,"tweenEasing":0,"x":0.06,"y":-0.1},{"duration":2,"tweenEasing":0,"x":0.04,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.1},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.08},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.08},{"duration":3,"tweenEasing":0,"y":-0.06},{"duration":0,"x":-0.95}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":17.05},{"duration":2,"tweenEasing":0,"rotate":-17.87},{"duration":29,"tweenEasing":0,"rotate":103.48},{"duration":2,"tweenEasing":0,"rotate":56.4},{"duration":2,"tweenEasing":0,"rotate":68.88},{"duration":4,"tweenEasing":0,"rotate":69.4},{"duration":3,"tweenEasing":0,"rotate":82.2},{"duration":3,"tweenEasing":0,"rotate":71.17},{"duration":0,"rotate":35.8}],"scaleFrame":[{"duration":3,"tweenEasing":0,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":29,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.77},{"duration":4,"tweenEasing":0,"x":0.81},{"duration":3,"tweenEasing":0,"x":0.85},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":0,"x":0.94}]},{"name":"foot_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.02,"y":-0.02},{"duration":31,"tweenEasing":0,"x":-0.06,"y":-0.06},{"duration":2,"tweenEasing":0,"x":-0.02,"y":0.03},{"duration":2,"tweenEasing":0,"x":-0.2},{"duration":4,"tweenEasing":0,"x":-0.2,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.19},{"duration":3,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":0,"x":0.03,"y":-0.04}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-33.88},{"duration":31,"tweenEasing":0,"rotate":13},{"duration":2,"tweenEasing":0,"rotate":43.62},{"duration":2,"tweenEasing":0,"rotate":-56.95},{"duration":4,"tweenEasing":0,"rotate":-56.21},{"duration":3,"tweenEasing":0,"rotate":-62.46},{"duration":3,"tweenEasing":0,"rotate":-51.69},{"duration":0,"rotate":-17.16}],"scaleFrame":[{"duration":3,"tweenEasing":0},{"duration":31,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":12}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":0.02},{"duration":2,"tweenEasing":0,"x":1.61,"y":-0.08},{"duration":29,"tweenEasing":0,"x":1.84,"y":-0.11},{"duration":2,"tweenEasing":0,"x":1.76,"y":-0.03},{"duration":2,"tweenEasing":0,"x":1.61,"y":-0.01},{"duration":4,"tweenEasing":0,"x":1.6,"y":-0.01},{"duration":3,"tweenEasing":0,"x":1.58,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.02},{"duration":0,"x":0.72,"y":-0.03}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":26.83},{"duration":2,"tweenEasing":0,"rotate":8.27},{"duration":29,"tweenEasing":0,"rotate":-20.08},{"duration":2,"tweenEasing":0,"rotate":4.75},{"duration":2,"tweenEasing":0,"rotate":-7.97},{"duration":4,"tweenEasing":0,"rotate":-6.42},{"duration":3,"tweenEasing":0,"rotate":-3.63},{"duration":3,"tweenEasing":0,"rotate":-4.23},{"duration":0,"rotate":-2.27}],"scaleFrame":[{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":0.99},{"duration":29,"tweenEasing":0,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":12}]}],"slot":[{"name":"effect_r","colorFrame":[{"duration":34,"value":{"aM":0}},{"duration":2,"value":{"aM":0}},{"duration":5},{},{"value":{"aM":44}},{"duration":2,"value":{"aM":10}},{"duration":3,"value":{"aM":6}}]}]},{"duration":14,"fadeInTime":0.2,"name":"Atk2","frame":[{"duration":5},{"duration":0,"sound":"200026"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.02},{"tweenEasing":0,"x":0.01,"y":-0.02},{"tweenEasing":0,"x":0.03,"y":0.01},{"duration":7}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-0.25},{"tweenEasing":0,"rotate":-0.25},{"tweenEasing":0,"rotate":-1},{"duration":7,"tweenEasing":0,"rotate":-1.5},{"duration":0,"rotate":-0.25}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.98},{"tweenEasing":0,"x":0.98},{"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":0,"x":1.01}]},{"name":"chest","translateFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":-0.11,"y":0.14},{"duration":7,"tweenEasing":0,"x":-0.13,"y":0.33},{"duration":0,"x":-0.1,"y":0.27}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":10.32},{"tweenEasing":0,"rotate":10.32},{"tweenEasing":0,"rotate":-1.49},{"duration":7,"tweenEasing":0,"rotate":-0.49},{"duration":0,"rotate":-0.3}],"scaleFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0},{"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":0.94},{"duration":0,"x":0.96}]},{"name":"shouder_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.94,"y":-0.76},{"tweenEasing":0,"x":0.16,"y":-0.38},{"tweenEasing":0,"x":-0.99,"y":5.26},{"duration":7,"tweenEasing":0,"x":-0.51,"y":17.06},{"duration":0,"x":-0.41,"y":16.28}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":44.91},{"tweenEasing":0,"rotate":45.66},{"tweenEasing":0,"rotate":61.1},{"duration":7,"tweenEasing":0,"rotate":-91.96},{"duration":0,"rotate":-79.76}]},{"name":"shouder_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.35,"y":-0.86},{"tweenEasing":0,"x":0.45,"y":-0.79},{"tweenEasing":0,"x":1.88,"y":-6.43},{"duration":7,"tweenEasing":0,"x":3.48,"y":-19.49},{"duration":0,"x":3.13,"y":-18.3}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-19.79},{"tweenEasing":0,"rotate":-18.04},{"tweenEasing":0,"rotate":23.73},{"duration":7,"tweenEasing":0,"rotate":44.71},{"duration":0,"rotate":42.09}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.97,"y":1.01},{"tweenEasing":0,"x":0.98},{"tweenEasing":0,"x":0.96},{"duration":7,"tweenEasing":0,"x":1.05},{"duration":0,"x":1.02}]},{"name":"forearm_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.8},{"tweenEasing":0,"x":0.77,"y":0.01},{"tweenEasing":0,"x":0.74,"y":-0.12},{"duration":7,"tweenEasing":0,"x":0.72,"y":-0.07},{"duration":0,"x":0.69,"y":-0.14}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-0.8},{"tweenEasing":0,"rotate":-8.57},{"tweenEasing":0,"rotate":-24.34},{"duration":7,"tweenEasing":0,"rotate":-18.82},{"duration":0,"rotate":-26.6}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":0.93,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.84,"y":1.01},{"duration":0,"x":0.85,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.04},{"tweenEasing":0,"x":0.18,"y":-0.02},{"tweenEasing":0,"x":0.92,"y":0.12},{"duration":7,"tweenEasing":0,"x":1.21,"y":0.22},{"duration":0,"x":1.24,"y":0.19}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-22.9},{"tweenEasing":0,"rotate":-10.41},{"tweenEasing":0,"rotate":-62.21},{"duration":7,"tweenEasing":0,"rotate":3.51},{"duration":0,"rotate":2.22}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03,"y":1.01},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":0,"x":1.02,"y":1.01}]},{"name":"hand_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.03},{"tweenEasing":0,"y":-0.03},{"tweenEasing":0,"x":0.1,"y":-0.02},{"duration":7,"tweenEasing":0,"x":0.19,"y":-0.08},{"duration":0,"x":0.16,"y":-0.04}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-22.03},{"tweenEasing":0,"rotate":-22.3},{"tweenEasing":0,"rotate":3.75},{"duration":7,"tweenEasing":0,"rotate":95.26},{"duration":0,"rotate":83.25}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":0.99},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.99}]},{"name":"hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.04,"y":0.04},{"tweenEasing":0,"x":0.02,"y":0.08},{"tweenEasing":0,"x":0.06,"y":0.16},{"duration":7,"tweenEasing":0,"x":0.3,"y":-0.05},{"duration":0,"x":0.26,"y":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":0.5},{"tweenEasing":0,"rotate":-2.27},{"tweenEasing":0,"rotate":-12.92},{"duration":7,"tweenEasing":0,"rotate":-20.48},{"duration":0,"rotate":-23.94}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01,"y":1.02},{"tweenEasing":0,"x":1.01,"y":1.03},{"tweenEasing":0,"x":0.98,"y":0.92},{"duration":7,"tweenEasing":0,"x":0.94,"y":0.76},{"duration":0,"x":0.96,"y":0.81}]},{"name":"weapon_hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01},{"tweenEasing":0,"x":0.01},{"tweenEasing":0},{"duration":7,"x":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":13.43},{"tweenEasing":0,"rotate":14.56},{"tweenEasing":0,"rotate":26.23},{"duration":7,"tweenEasing":0,"rotate":23.18},{"duration":0,"rotate":32.77}]},{"name":"weapon_hand_r","translateFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"x":-0.01},{"tweenEasing":0},{"duration":7,"y":-0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":19.53},{"tweenEasing":0,"rotate":26.53},{"tweenEasing":0,"rotate":13.24},{"duration":7,"tweenEasing":0,"rotate":19.02},{"duration":0,"rotate":17.77}]},{"name":"root","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.16,"y":1.7},{"duration":2,"tweenEasing":0,"x":0.16,"y":1.7},{"duration":7,"x":-0.86,"y":3.5}]},{"name":"thigh_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.29,"y":-0.03},{"tweenEasing":0,"x":0.29,"y":-0.03},{"tweenEasing":0,"x":0.97,"y":-2.63},{"duration":7,"tweenEasing":0,"x":1.17,"y":-5.6},{"duration":0,"x":0.74,"y":-4.76}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-12.51},{"tweenEasing":0,"rotate":-12.51},{"tweenEasing":0,"rotate":-8.25},{"duration":7,"tweenEasing":0,"rotate":12.27},{"duration":0,"rotate":7.26}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.89},{"tweenEasing":0,"x":0.89},{"tweenEasing":0},{"duration":7,"x":1.02}]},{"name":"thigh_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.28},{"tweenEasing":0,"x":-0.28},{"tweenEasing":0,"x":-0.9,"y":2.62},{"duration":7,"tweenEasing":0,"x":-1.15,"y":5.52},{"duration":0,"x":-0.73,"y":4.7}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-15.06},{"tweenEasing":0,"rotate":-15.06},{"tweenEasing":0,"rotate":-26.1},{"duration":7,"tweenEasing":0,"rotate":-8.29},{"duration":0,"rotate":-31.37}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":1.01},{"tweenEasing":0,"x":1.01,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.95,"y":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.03,"y":-0.02},{"tweenEasing":0,"x":-0.03,"y":-0.02},{"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":7,"x":0.05,"y":-0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":23.5},{"tweenEasing":0,"rotate":23.5},{"tweenEasing":0,"rotate":40.63},{"duration":7,"tweenEasing":0,"rotate":27.65},{"duration":0,"rotate":29.9}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.94,"y":1.01},{"tweenEasing":0,"x":0.94,"y":1.01},{"tweenEasing":0,"x":0.98,"y":1.01},{"duration":7,"tweenEasing":0,"x":1.04,"y":1.01},{"duration":0,"x":1.02,"y":1.01}]},{"name":"calf_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.01,"y":-0.01},{"tweenEasing":0,"x":-0.01,"y":-0.01},{"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":7,"tweenEasing":0},{"duration":0,"x":-0.03,"y":-0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":23.57},{"tweenEasing":0,"rotate":23.57},{"tweenEasing":0,"rotate":17.59},{"duration":7,"tweenEasing":0,"rotate":-32.13},{"duration":0,"rotate":6.8}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.94},{"tweenEasing":0,"x":0.94},{"tweenEasing":0,"x":0.89},{"duration":7,"tweenEasing":0,"x":0.98},{"duration":0,"x":0.94}]},{"name":"foot_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.07},{"tweenEasing":0,"x":0.01,"y":-0.07},{"tweenEasing":0,"x":-0.2,"y":-0.05},{"duration":7,"tweenEasing":0,"x":-0.18,"y":-0.03},{"duration":0,"x":-0.17,"y":-0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-11.03},{"tweenEasing":0,"rotate":-11.03},{"tweenEasing":0,"rotate":-32.38},{"duration":7,"tweenEasing":0,"rotate":-39.91},{"duration":0,"rotate":-37.15}]},{"name":"foot_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03},{"tweenEasing":0,"x":0.03},{"tweenEasing":0,"x":1.55,"y":-0.03},{"duration":7,"tweenEasing":0,"x":1.47,"y":-0.05},{"duration":0,"x":1.51,"y":-0.03}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-8.55},{"tweenEasing":0,"rotate":-8.55},{"tweenEasing":0,"rotate":8.43},{"duration":7,"tweenEasing":0,"rotate":40.37},{"duration":0,"rotate":24.52}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":14,"value":-1}]}]},{"duration":28,"playTimes":0,"fadeInTime":0.2,"name":"Idle2","bone":[{"name":"pelvis","translateFrame":[{"duration":3,"tweenEasing":0},{"duration":11,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6},{"duration":11,"tweenEasing":0,"rotate":-8},{"duration":2,"tweenEasing":0,"rotate":-8.25},{"duration":6,"tweenEasing":0,"rotate":-5.64},{"duration":6,"tweenEasing":0,"rotate":-2.97},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.05,"y":0.31},{"duration":11,"tweenEasing":0,"x":0.03,"y":0.32},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.34},{"duration":6,"tweenEasing":0,"x":0.04,"y":0.32},{"duration":6,"tweenEasing":0,"x":-0.13,"y":0.07},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":2.34},{"duration":11,"tweenEasing":0,"rotate":7.01},{"duration":2,"tweenEasing":0,"rotate":7.26},{"duration":6,"tweenEasing":0,"rotate":5.79},{"duration":6,"tweenEasing":0,"rotate":2.25},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":12}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.43,"y":-0.55},{"duration":11,"tweenEasing":0,"x":2.28,"y":1.52},{"duration":2,"tweenEasing":0,"x":2.28,"y":1.52},{"duration":6,"tweenEasing":0,"x":1.35,"y":0.25},{"duration":6,"tweenEasing":0,"x":0.54,"y":0.14},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":24.66},{"duration":11,"tweenEasing":0,"rotate":-127.17},{"duration":2,"tweenEasing":0,"rotate":-127.17},{"duration":6,"tweenEasing":0,"rotate":-102.81},{"duration":6,"tweenEasing":0,"rotate":-44.58},{"duration":0}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.96,"y":-0.15},{"duration":11,"tweenEasing":0,"x":-0.85,"y":-2.67},{"duration":2,"tweenEasing":0,"x":-0.85,"y":-2.67},{"duration":6,"tweenEasing":0,"x":0.08,"y":-1.12},{"duration":6,"tweenEasing":0,"x":0.17,"y":-0.65},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-24.49},{"duration":11,"tweenEasing":0,"rotate":-7.86},{"duration":2,"tweenEasing":0,"rotate":18.69},{"duration":6,"tweenEasing":0,"rotate":19.28},{"duration":6,"tweenEasing":0,"rotate":9.77},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":0.9},{"duration":2,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.87,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.91},{"duration":0}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01,"y":0.06},{"duration":11,"tweenEasing":0,"x":0.01,"y":0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.09},{"duration":6,"tweenEasing":0,"x":0.06,"y":-0.1},{"duration":6,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":5.94},{"duration":11,"tweenEasing":0,"rotate":9.46},{"duration":2,"tweenEasing":0,"rotate":-12.33},{"duration":6,"tweenEasing":0,"rotate":-14.34},{"duration":6,"tweenEasing":0,"rotate":-8.3},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98},{"duration":11,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.9},{"duration":6,"tweenEasing":0,"x":0.92},{"duration":6,"tweenEasing":0,"x":1.02},{"duration":0}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.18,"y":-0.05},{"duration":11,"tweenEasing":0,"x":0.09,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.09,"y":-0.07},{"duration":6,"tweenEasing":0,"x":0.02},{"duration":6,"tweenEasing":0,"x":1.11,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":16.97},{"duration":11,"tweenEasing":0,"rotate":3.95},{"duration":2,"tweenEasing":0,"rotate":3.95},{"duration":6,"tweenEasing":0,"rotate":-2.5},{"duration":6,"tweenEasing":0,"rotate":-0.84},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"y":0.99},{"duration":11,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.84,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.82,"y":0.99},{"duration":0}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.07,"y":-0.12},{"duration":11,"tweenEasing":0,"x":0.45,"y":-0.23},{"duration":2,"tweenEasing":0,"x":0.45,"y":-0.23},{"duration":6,"tweenEasing":0,"x":0.36,"y":-0.29},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.14},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":0.01},{"duration":11,"tweenEasing":0,"rotate":-3.52},{"duration":2,"tweenEasing":0,"rotate":-3.52},{"duration":6,"tweenEasing":0,"rotate":-4.04},{"duration":6,"tweenEasing":0,"rotate":-3.04},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":11,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.82,"y":0.99},{"duration":0}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":11,"tweenEasing":0,"x":0.03,"y":0.17},{"duration":2,"tweenEasing":0,"x":0.08,"y":0.18},{"duration":6,"tweenEasing":0,"x":0.09,"y":0.19},{"duration":6,"tweenEasing":0,"x":0.04,"y":0.11},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":0.01},{"duration":11,"tweenEasing":0,"rotate":-0.23},{"duration":2,"tweenEasing":0,"rotate":9.23},{"duration":6,"tweenEasing":0,"rotate":8.42},{"duration":6,"tweenEasing":0,"rotate":3.5},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.98},{"duration":11,"tweenEasing":0,"x":0.99,"y":0.98},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":6,"tweenEasing":0,"x":0.98,"y":0.91},{"duration":6}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"y":0.01},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-11.56},{"duration":11,"tweenEasing":0,"rotate":35.02},{"duration":2,"tweenEasing":0,"rotate":34.46},{"duration":6,"tweenEasing":0,"rotate":35.98},{"duration":6,"tweenEasing":0,"rotate":26.72},{"duration":0}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.31,"y":-0.48},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.48},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.31,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.47},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":3.92,"y":-3.23},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":6,"tweenEasing":0,"x":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":72.69},{"tweenEasing":0,"rotate":-95.52},{"tweenEasing":0,"rotate":-151.72},{"tweenEasing":0,"rotate":124.8},{"tweenEasing":0,"rotate":63.15},{"tweenEasing":0,"rotate":5.26},{"tweenEasing":0,"rotate":-57.46},{"tweenEasing":0,"rotate":-116.85},{"tweenEasing":0,"rotate":-174.24},{"tweenEasing":0,"rotate":123.54},{"tweenEasing":0,"rotate":64.15},{"tweenEasing":0,"rotate":6.51},{"tweenEasing":0,"rotate":-55.46},{"tweenEasing":0,"rotate":-104.3},{"duration":6,"tweenEasing":0,"rotate":-96.77},{"duration":6,"tweenEasing":0,"rotate":-55.71},{"duration":0}]},{"name":"root","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.78,"y":2.3},{"duration":11,"tweenEasing":0,"x":1.32,"y":0.3},{"duration":2,"tweenEasing":0,"x":1.32,"y":0.3},{"duration":6,"tweenEasing":0,"x":0.33,"y":1.37},{"duration":6,"tweenEasing":0,"x":0.17,"y":0.69},{"duration":0}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.09,"y":-0.24},{"duration":11,"tweenEasing":0,"x":0.76,"y":-0.66},{"duration":2,"tweenEasing":0,"x":0.78,"y":-0.66},{"duration":6,"tweenEasing":0,"x":0.72,"y":-0.54},{"duration":6,"tweenEasing":0,"x":0.56,"y":-0.15},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-22.27},{"duration":11,"tweenEasing":0,"rotate":3},{"duration":2,"tweenEasing":0,"rotate":2.75},{"duration":6,"tweenEasing":0,"rotate":-11.76},{"duration":6,"tweenEasing":0,"rotate":-8.5},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.84,"y":0.99},{"duration":11,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":6,"tweenEasing":0,"x":0.93},{"duration":6,"tweenEasing":0,"x":0.95},{"duration":0}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.09,"y":0.23},{"duration":11,"tweenEasing":0,"x":-0.74,"y":0.62},{"duration":2,"tweenEasing":0,"x":-0.77,"y":0.62},{"duration":6,"tweenEasing":0,"x":-0.72,"y":0.49},{"duration":6,"tweenEasing":0,"x":-0.24,"y":0.33},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-19.58},{"duration":11,"tweenEasing":0,"rotate":3.01},{"duration":2,"tweenEasing":0,"rotate":3.51},{"duration":6,"tweenEasing":0,"rotate":-9.54},{"duration":6,"tweenEasing":0,"rotate":-6.03},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.01},{"duration":11,"tweenEasing":0,"x":0.98},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":6,"tweenEasing":0,"x":1.01},{"duration":6,"tweenEasing":0,"x":1.01},{"duration":0}]},{"name":"calf_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.04},{"duration":11,"tweenEasing":0,"x":0.03},{"duration":2,"tweenEasing":0,"x":0.03},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":33.01},{"duration":11,"tweenEasing":0,"rotate":9.04},{"duration":2,"tweenEasing":0,"rotate":9.54},{"duration":6,"tweenEasing":0,"rotate":27.29},{"duration":6,"tweenEasing":0,"rotate":17.02},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":6,"tweenEasing":0,"x":0.94},{"duration":6,"tweenEasing":0,"x":0.96},{"duration":0}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.01,"y":-0.06},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":6,"tweenEasing":0,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":20.59},{"duration":11,"tweenEasing":0,"rotate":-0.02},{"duration":2,"tweenEasing":0,"rotate":-0.77},{"duration":6,"tweenEasing":0,"rotate":13.3},{"duration":6,"tweenEasing":0,"rotate":8.28},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.9},{"duration":11,"tweenEasing":0,"x":1.04},{"duration":2,"tweenEasing":0,"x":1.04},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"foot_r","translateFrame":[{"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":11,"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.04},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":6,"tweenEasing":0,"y":-0.02},{"duration":0}],"rotateFrame":[{"tweenEasing":0,"rotate":-10.78},{"duration":2,"tweenEasing":0,"rotate":-11.2},{"duration":11,"tweenEasing":0,"rotate":-12.04},{"duration":2,"tweenEasing":0,"rotate":-12.29},{"duration":6,"tweenEasing":0,"rotate":-15.55},{"duration":6,"tweenEasing":0,"rotate":-8.53},{"duration":0}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02,"y":0.01},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.02},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-1.08},{"duration":11,"tweenEasing":0,"rotate":-2.98},{"duration":2,"tweenEasing":0,"rotate":-2.73},{"duration":6,"tweenEasing":0,"rotate":-3.76},{"duration":6,"tweenEasing":0,"rotate":-2.26},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":28,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Idle1"}]}]}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta
new file mode 100644
index 0000000..ca17de9
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta
@@ -0,0 +1,6 @@
+{
+ "ver": "1.0.0",
+ "uuid": "affcd973-4743-48e5-9bcd-339180a6101b",
+ "dragonBonesJson": "{\"frameRate\":25,\"name\":\"SoldierElf\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":25,\"name\":\"SoldierElf\",\"aabb\":{\"x\":-34.53,\"y\":-104.78,\"width\":86.87,\"height\":105.25},\"bone\":[{\"name\":\"root1\",\"transform\":{\"y\":-11.0128}},{\"inheritScale\":false,\"name\":\"effect_r\",\"parent\":\"root1\",\"transform\":{\"x\":33.28,\"y\":4,\"skX\":-46.2343,\"skY\":-23.9186,\"scX\":2.1416,\"scY\":2.3753}},{\"inheritScale\":false,\"length\":3,\"name\":\"root\",\"parent\":\"root1\",\"transform\":{\"x\":-0.04,\"y\":-15.48,\"skX\":90.2632,\"skY\":90.2632}},{\"inheritScale\":false,\"length\":5,\"name\":\"thigh_l\",\"parent\":\"root\",\"transform\":{\"x\":1.6606,\"y\":-6.4628,\"skX\":-40.9714,\"skY\":-40.9714,\"scX\":0.9869,\"scY\":0.9853}},{\"inheritScale\":false,\"length\":5,\"name\":\"thigh_r\",\"parent\":\"root\",\"transform\":{\"x\":1.3414,\"y\":6.0837,\"skX\":3.567,\"skY\":3.567,\"scX\":0.9859,\"scY\":0.9981}},{\"inheritScale\":false,\"length\":3,\"name\":\"pelvis\",\"parent\":\"root\",\"transform\":{\"x\":-3.2028,\"y\":0.1015,\"skX\":-174.7594,\"skY\":-174.7594,\"scX\":0.9802,\"scY\":0.9952}},{\"inheritScale\":false,\"length\":8,\"name\":\"chest\",\"parent\":\"pelvis\",\"transform\":{\"x\":4,\"y\":-0.0016,\"skX\":-5.2066,\"skY\":-5.2246,\"scX\":0.9979,\"scY\":0.9998}},{\"inheritScale\":false,\"length\":9,\"name\":\"calf_r\",\"parent\":\"thigh_r\",\"transform\":{\"x\":5.704,\"y\":0.0016,\"skX\":16.144,\"skY\":16.1453,\"scX\":0.9955,\"scY\":0.9905}},{\"inheritScale\":false,\"length\":7,\"name\":\"calf_l\",\"parent\":\"thigh_l\",\"transform\":{\"x\":5.6592,\"y\":-0.0016,\"skX\":32.6682,\"skY\":32.6684,\"scX\":0.9945,\"scY\":0.9954}},{\"inheritScale\":false,\"length\":5,\"name\":\"shouder_l\",\"parent\":\"chest\",\"transform\":{\"x\":8.6578,\"y\":9.9632,\"skX\":-164.5031,\"skY\":-164.5031,\"scX\":0.9868,\"scY\":0.9948}},{\"inheritScale\":false,\"length\":5,\"name\":\"shouder_r\",\"parent\":\"chest\",\"transform\":{\"x\":10.4583,\"y\":-13.3897,\"skX\":-147.4808,\"skY\":-147.4808,\"scX\":0.9972,\"scY\":0.9986}},{\"inheritScale\":false,\"name\":\"foot_l\",\"parent\":\"calf_l\",\"transform\":{\"x\":15.2897,\"y\":1.2193,\"skX\":8.0381,\"skY\":8.0381,\"scX\":0.9955}},{\"inheritScale\":false,\"name\":\"foot_r\",\"parent\":\"calf_r\",\"transform\":{\"x\":14.2999,\"y\":-2.3357,\"skX\":-19.9771,\"skY\":-19.9771,\"scX\":0.9955}},{\"inheritScale\":false,\"length\":12,\"name\":\"forearm_r\",\"parent\":\"shouder_r\",\"transform\":{\"x\":6.0016,\"y\":0.0016,\"skX\":-38.0045,\"skY\":-38.0045,\"scX\":0.9973,\"scY\":0.994}},{\"inheritScale\":false,\"length\":7,\"name\":\"forearm_l\",\"parent\":\"shouder_l\",\"transform\":{\"x\":6.0144,\"y\":-0.0016,\"skX\":-42.3089,\"skY\":-42.3089,\"scX\":0.9979,\"scY\":0.987}},{\"inheritScale\":false,\"name\":\"hand_r\",\"parent\":\"forearm_r\",\"transform\":{\"x\":13.7919,\"y\":0.7114,\"skX\":3.3187,\"skY\":3.3187,\"scX\":1.0446,\"scY\":0.9963}},{\"inheritScale\":false,\"name\":\"hand_l\",\"parent\":\"forearm_l\",\"transform\":{\"x\":7.6912,\"y\":-0.0032,\"skX\":119.4238,\"skY\":119.4238,\"scX\":0.9894,\"scY\":0.9954}},{\"inheritScale\":false,\"name\":\"weapon_hand_l\",\"parent\":\"hand_l\",\"transform\":{\"x\":-8.5173,\"y\":-2.6264,\"skX\":139.1066,\"skY\":139.1066,\"scX\":0.9967,\"scY\":0.9984}},{\"inheritRotation\":false,\"inheritScale\":false,\"name\":\"weapon_hand_r\",\"parent\":\"hand_r\",\"transform\":{\"x\":1.4768,\"y\":-3.0184,\"skX\":-17.7744,\"skY\":-17.7744,\"scX\":0.9981,\"scY\":0.999}}],\"slot\":[{\"name\":\"cape\",\"parent\":\"pelvis\"},{\"name\":\"shouder_l\",\"parent\":\"shouder_l\"},{\"name\":\"forearm_l\",\"parent\":\"forearm_l\"},{\"name\":\"hand_l\",\"parent\":\"hand_l\"},{\"name\":\"weapon_hand_l\",\"parent\":\"weapon_hand_l\"},{\"name\":\"thigh_l\",\"parent\":\"thigh_l\"},{\"name\":\"calf_l\",\"parent\":\"calf_l\"},{\"name\":\"foot_l\",\"parent\":\"foot_l\"},{\"name\":\"pelvis\",\"parent\":\"pelvis\"},{\"name\":\"thigh_r\",\"parent\":\"thigh_r\"},{\"name\":\"calf_r\",\"parent\":\"calf_r\"},{\"name\":\"foot_r\",\"parent\":\"foot_r\"},{\"name\":\"shouder_r\",\"parent\":\"shouder_r\"},{\"name\":\"chest\",\"parent\":\"chest\"},{\"name\":\"weapon_hand_r\",\"parent\":\"weapon_hand_r\"},{\"name\":\"forearm_r\",\"parent\":\"forearm_r\"},{\"name\":\"hand_r\",\"parent\":\"hand_r\"},{\"name\":\"effect_r\",\"parent\":\"effect_r\"}],\"skin\":[{\"slot\":[{\"name\":\"forearm_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/forearm_l_2\",\"transform\":{\"x\":5.09,\"y\":0.15,\"skX\":-63.39,\"skY\":-63.39},\"path\":\"forearm_l\"}]},{\"name\":\"effect_r\",\"display\":[{\"name\":\"we_bl_4\",\"transform\":{\"x\":11.39,\"y\":-12.38},\"path\":\"we_bl_4_f_1\"}]},{\"name\":\"shouder_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/shouder_l_1\",\"transform\":{\"x\":0.4,\"y\":0.06,\"skX\":-68.92,\"skY\":-68.56,\"scX\":1.0015,\"scY\":0.9985},\"path\":\"shouder_l\"}]},{\"name\":\"thigh_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/thigh_r_0\",\"transform\":{\"x\":-0.65,\"y\":1.03,\"skX\":-94.6,\"skY\":-94.62,\"scX\":0.9991,\"scY\":0.99},\"path\":\"thigh_r\"}]},{\"name\":\"pelvis\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/pelvis_0\",\"transform\":{\"x\":9.56,\"y\":-1.5,\"skX\":83.65,\"skY\":83.65},\"path\":\"pelvis\"}]},{\"name\":\"weapon_hand_r\",\"display\":[{\"name\":\"weapon_hand_r\",\"transform\":{\"x\":14.2,\"y\":2.01,\"skX\":51,\"skY\":51},\"path\":\"weapon_hand_l\"}]},{\"name\":\"hand_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/hand_r_2\",\"transform\":{\"x\":3.51,\"y\":-2.17,\"skX\":-84.89,\"skY\":-84.89},\"path\":\"hand_r\"}]},{\"name\":\"weapon_hand_l\",\"display\":[{\"name\":\"weapon_hand_l\",\"transform\":{\"x\":12.59,\"y\":1.83,\"skX\":52.1,\"skY\":52.1}}]},{\"name\":\"shouder_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/shouder_r_1\",\"transform\":{\"x\":0.46,\"y\":0.08,\"skX\":-136.05,\"skY\":-136.05},\"path\":\"shouder_r\"}]},{\"name\":\"calf_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/calf_l_0\",\"transform\":{\"x\":7.16,\"y\":0.84,\"skX\":-91.2,\"skY\":-91.2},\"path\":\"calf_l\"}]},{\"name\":\"foot_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/foot_r_0\",\"transform\":{\"x\":1.06,\"y\":-1.31,\"skX\":-85.95,\"skY\":-85.95},\"path\":\"foot_r\"}]},{\"name\":\"foot_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/foot_l_0\",\"transform\":{\"x\":1.82,\"y\":-3.5,\"skX\":-90.37,\"skY\":-90.37},\"path\":\"foot_l\"}]},{\"name\":\"calf_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/calf_r_0\",\"transform\":{\"x\":5.87,\"y\":0.08,\"skX\":-91.22,\"skY\":-91.22},\"path\":\"calf_r\"}]},{\"name\":\"thigh_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/thigh_l_0\",\"transform\":{\"x\":1.19,\"y\":0.3,\"skX\":-66.04,\"skY\":-66.04},\"path\":\"thigh_l\"}]},{\"name\":\"hand_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/hand_l_2\",\"transform\":{\"x\":-5.62,\"y\":-5.3,\"skX\":179.52,\"skY\":179.52},\"path\":\"hand_l\"}]},{\"name\":\"forearm_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/forearm_r_3\",\"transform\":{\"x\":6.7,\"y\":0.41,\"skX\":-87.21,\"skY\":-87.21},\"path\":\"forearm_r\"}]},{\"name\":\"chest\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/chest_0\",\"transform\":{\"x\":42.26,\"y\":-1.48,\"skX\":90.4,\"skY\":90.61},\"path\":\"chest\"}]},{\"name\":\"cape\",\"display\":[{\"name\":\"cape\",\"transform\":{\"x\":10.59,\"y\":-16.32,\"skX\":84.58,\"skY\":84.41,\"scX\":1.0049,\"scY\":1.0201}}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Idle1\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.31},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":0.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.48},{\"duration\":0}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.6,\"y\":-0.22},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":0}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.23,\"y\":0.28},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":0}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.01},{\"duration\":0}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"hand_l\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.92},{\"duration\":0}]},{\"name\":\"weapon_hand_r\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-3.01},{\"duration\":0}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":0}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.45,\"y\":-0.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":7.53},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.75},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-10.55},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":1.03},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.5},{\"duration\":0}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"y\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":3.03},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":58,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Walking\",\"frame\":[{\"duration\":27},{\"duration\":31,\"sound\":\"footstep\"},{\"duration\":0,\"sound\":\"walk\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":17,\"tweenEasing\":0,\"x\":-0.47,\"y\":-0.01},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01},{\"duration\":5,\"tweenEasing\":0},{\"duration\":16,\"tweenEasing\":0,\"x\":-1.06,\"y\":0.03},{\"duration\":0,\"x\":-0.1}],\"rotateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"rotate\":6.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.25},{\"duration\":17,\"tweenEasing\":0,\"rotate\":5},{\"duration\":8,\"tweenEasing\":0,\"rotate\":5.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":16,\"tweenEasing\":0,\"rotate\":5.75},{\"duration\":0,\"rotate\":6.05}],\"scaleFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":1.01},{\"duration\":19,\"tweenEasing\":0,\"x\":0.98},{\"duration\":8,\"tweenEasing\":0,\"x\":0.98},{\"duration\":21}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.06,\"y\":0.19},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.27},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.28},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.29},{\"duration\":7,\"tweenEasing\":0,\"x\":1.11,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.23},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.28,\"y\":0.26},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.25},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.23},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.05,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.69,\"y\":0.13},{\"duration\":0,\"x\":0.33,\"y\":0.17}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.04},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-3.46},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.94},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-3.06},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-4.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.2},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-3.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.62},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-7.66},{\"duration\":0,\"rotate\":-5.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":9,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":32}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-1.74,\"y\":8.78},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.64,\"y\":8.53},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":6.91},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.96,\"y\":6.53},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.54,\"y\":5.36},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.63,\"y\":4.56},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.91,\"y\":5.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-1.15,\"y\":5.24},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.33,\"y\":6.55},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.37,\"y\":6.99},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.4,\"y\":7.48},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.43,\"y\":8.33},{\"duration\":0,\"x\":-1.62,\"y\":8.69}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-17.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-8.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-2.29},{\"duration\":3,\"tweenEasing\":0,\"rotate\":2.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":5,\"tweenEasing\":0,\"rotate\":0.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.48},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-7.27},{\"duration\":0,\"rotate\":-17.54}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":2.41,\"y\":-9.55},{\"duration\":7,\"tweenEasing\":0,\"x\":2.28,\"y\":-9.45},{\"duration\":2,\"tweenEasing\":0,\"x\":1.84,\"y\":-8.13},{\"duration\":7,\"tweenEasing\":0,\"x\":1.7,\"y\":-7.82},{\"duration\":7,\"tweenEasing\":0,\"x\":1.34,\"y\":-6.83},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-6.26},{\"duration\":3,\"tweenEasing\":0,\"x\":1.76,\"y\":-6.59},{\"duration\":5,\"tweenEasing\":0,\"x\":1.99,\"y\":-6.82},{\"duration\":2,\"tweenEasing\":0,\"x\":2.13,\"y\":-7.95},{\"duration\":3,\"tweenEasing\":0,\"x\":2.15,\"y\":-8.36},{\"duration\":7,\"tweenEasing\":0,\"x\":2.16,\"y\":-8.77},{\"duration\":9,\"tweenEasing\":0,\"x\":2.12,\"y\":-9.35},{\"duration\":0,\"x\":2.28,\"y\":-9.54}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.06},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.76},{\"duration\":7,\"tweenEasing\":0,\"rotate\":4.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-0.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.5},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.98},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.98},{\"duration\":7,\"tweenEasing\":0,\"rotate\":1.52},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.27},{\"duration\":0,\"rotate\":9.53}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.85},{\"duration\":7,\"tweenEasing\":0,\"x\":0.87},{\"duration\":2,\"tweenEasing\":0,\"x\":0.91},{\"duration\":7,\"tweenEasing\":0,\"x\":0.91},{\"duration\":7,\"tweenEasing\":0,\"x\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.87},{\"duration\":8,\"tweenEasing\":0,\"x\":0.86},{\"duration\":2,\"tweenEasing\":0,\"x\":0.86},{\"duration\":10,\"tweenEasing\":0,\"x\":0.87},{\"duration\":9,\"tweenEasing\":0,\"x\":0.87},{\"duration\":0,\"x\":0.86}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.82,\"y\":-0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.8,\"y\":-0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.1},{\"duration\":7,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":0.8,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.83,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.08},{\"duration\":7,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.83,\"y\":-0.12},{\"duration\":0,\"x\":0.82,\"y\":-0.13}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.96},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.97},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.24},{\"duration\":7,\"tweenEasing\":0,\"rotate\":7.74},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.73},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.7},{\"duration\":5,\"tweenEasing\":0,\"rotate\":6.69},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.95},{\"duration\":7,\"tweenEasing\":0,\"rotate\":0.44},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.2},{\"duration\":0,\"rotate\":5.68}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.85,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.89,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.95},{\"duration\":7,\"tweenEasing\":0,\"x\":0.96},{\"duration\":3,\"tweenEasing\":0,\"x\":0.95},{\"duration\":3,\"tweenEasing\":0,\"x\":0.95},{\"duration\":5,\"tweenEasing\":0,\"x\":0.94},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":7,\"tweenEasing\":0,\"x\":0.92},{\"duration\":9,\"tweenEasing\":0,\"x\":0.9},{\"duration\":0,\"x\":0.86,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.24,\"y\":0.22},{\"duration\":7,\"tweenEasing\":0,\"x\":1.24,\"y\":0.23},{\"duration\":2,\"tweenEasing\":0,\"x\":1.23,\"y\":0.21},{\"duration\":7,\"tweenEasing\":0,\"x\":1.24,\"y\":0.2},{\"duration\":7,\"tweenEasing\":0,\"x\":1.21,\"y\":0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":0.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.21,\"y\":0.2},{\"duration\":5,\"tweenEasing\":0,\"x\":1.2,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":1.18,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.17,\"y\":0.18},{\"duration\":7,\"tweenEasing\":0,\"x\":1.19,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":1.25,\"y\":0.2},{\"duration\":0,\"x\":1.23,\"y\":0.22}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":5.27},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":10},{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.01},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.53},{\"duration\":0,\"rotate\":7.78}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":16,\"tweenEasing\":0,\"x\":1.03},{\"duration\":7,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":9,\"x\":1.03}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":0.12,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.11,\"y\":-0.05},{\"duration\":7,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11},{\"duration\":5,\"tweenEasing\":0,\"x\":0.12,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.05},{\"duration\":9,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.05},{\"duration\":0,\"x\":0.14,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-4.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5.25},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.25},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-6.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-1.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0,\"rotate\":-4.75}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":9,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0,\"x\":0.98,\"y\":0.99}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.13,\"y\":0.09},{\"duration\":7,\"tweenEasing\":0,\"x\":0.09,\"y\":0.09},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.1},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.13},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":0.14},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06,\"y\":0.15},{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":0.15},{\"duration\":7,\"tweenEasing\":0,\"x\":0.08,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":0.1,\"y\":0.14},{\"duration\":0,\"x\":0.12,\"y\":0.11}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.14},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.82},{\"duration\":7,\"tweenEasing\":0,\"rotate\":9.31},{\"duration\":7,\"tweenEasing\":0,\"rotate\":7.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.05},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.06},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.08},{\"duration\":7,\"tweenEasing\":0,\"rotate\":9.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":9.35},{\"duration\":0,\"rotate\":5.91}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.95},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99,\"y\":0.96},{\"duration\":2,\"tweenEasing\":0,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"y\":0.97},{\"duration\":23,\"tweenEasing\":0,\"x\":0.99,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99,\"y\":0.97},{\"duration\":9,\"tweenEasing\":0,\"y\":0.97},{\"duration\":0,\"y\":0.96}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":0.01},{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0,\"x\":0.02,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.05},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.94},{\"duration\":2,\"tweenEasing\":0,\"rotate\":17.95},{\"duration\":7,\"tweenEasing\":0,\"rotate\":18.42},{\"duration\":7,\"tweenEasing\":0,\"rotate\":20.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.94},{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.36},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.8},{\"duration\":7,\"tweenEasing\":0,\"rotate\":21.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.8},{\"duration\":0,\"rotate\":21.25}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"y\":0.01},{\"duration\":9,\"tweenEasing\":0,\"y\":0.01},{\"duration\":0,\"x\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-3.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.76},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.77},{\"duration\":7,\"tweenEasing\":0,\"rotate\":14.4},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.27},{\"duration\":3,\"tweenEasing\":0,\"rotate\":19.78},{\"duration\":5,\"tweenEasing\":0,\"rotate\":21.53},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.53},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.28},{\"duration\":7,\"tweenEasing\":0,\"rotate\":21.78},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.52},{\"duration\":0,\"rotate\":-0.5}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":-1.63,\"y\":0.96},{\"duration\":19,\"tweenEasing\":0,\"x\":-1.48,\"y\":0.02},{\"duration\":8,\"tweenEasing\":0,\"x\":-1.63,\"y\":1.03},{\"duration\":21,\"tweenEasing\":0,\"x\":-1.79,\"y\":0.99},{\"duration\":0,\"x\":-1.65,\"y\":0.95}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.64,\"y\":-2.98},{\"duration\":2,\"tweenEasing\":0,\"x\":1.2,\"y\":-3.05},{\"duration\":5,\"tweenEasing\":0,\"x\":1.43,\"y\":-3.11},{\"duration\":2,\"tweenEasing\":0,\"x\":1.14,\"y\":-3.22},{\"duration\":7,\"tweenEasing\":0,\"x\":0.73,\"y\":-3.3},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.05,\"y\":-3.55},{\"duration\":3,\"tweenEasing\":0,\"x\":0.51,\"y\":-3.77},{\"duration\":3,\"tweenEasing\":0,\"x\":1.26,\"y\":-3.91},{\"duration\":5,\"tweenEasing\":0,\"x\":1.48,\"y\":-3.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":-3.93},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.23,\"y\":-3.84},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.66,\"y\":-3.51},{\"duration\":0,\"x\":0.16,\"y\":-3.07}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-21.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.53},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-26.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-53.15},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-58.92},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-60.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-72.97},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.19},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-68.71},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-61.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-54.4},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-44.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.31},{\"duration\":0,\"rotate\":-21.52}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":0,\"x\":1.01}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.63,\"y\":2.95},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.37,\"y\":3},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":3.18},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.64,\"y\":3.24},{\"duration\":7,\"tweenEasing\":0,\"x\":-2.57,\"y\":3.46},{\"duration\":3,\"tweenEasing\":0,\"x\":-2,\"y\":3.72},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.22,\"y\":3.86},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.89,\"y\":3.94},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.79,\"y\":3.96},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.99,\"y\":3.91},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.38,\"y\":3.91},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.88,\"y\":3.85},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":3.53},{\"duration\":0,\"x\":-1.12,\"y\":3.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.58},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-21.34},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-5.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":7,\"tweenEasing\":0,\"rotate\":20.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.33},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.83},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-8.29},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-15.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.83},{\"duration\":0,\"rotate\":-19.05}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.02},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.02},{\"duration\":9,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":0,\"x\":0.07,\"y\":-0.06}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.14},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.43},{\"duration\":5,\"tweenEasing\":0,\"rotate\":64.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":80.26},{\"duration\":7,\"tweenEasing\":0,\"rotate\":79.51},{\"duration\":7,\"tweenEasing\":0,\"rotate\":56.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":52.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":42.17},{\"duration\":5,\"tweenEasing\":0,\"rotate\":48.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.66},{\"duration\":3,\"tweenEasing\":0,\"rotate\":43.64},{\"duration\":7,\"tweenEasing\":0,\"rotate\":35.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":32.07},{\"duration\":0,\"rotate\":41.6}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":0.98}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.01},{\"duration\":0,\"x\":-0.03,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":27.35},{\"duration\":2,\"tweenEasing\":0,\"rotate\":23.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.51},{\"duration\":7,\"tweenEasing\":0,\"rotate\":10.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.49},{\"duration\":3,\"tweenEasing\":0,\"rotate\":36.56},{\"duration\":2,\"tweenEasing\":0,\"rotate\":47.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":54.38},{\"duration\":2,\"tweenEasing\":0,\"rotate\":63.92},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":62.92},{\"duration\":9,\"tweenEasing\":0,\"rotate\":43.86},{\"duration\":0,\"rotate\":24.05}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.24,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.23,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.17},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.03},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.02},{\"duration\":0,\"x\":-0.21,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.1},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-16.61},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.35},{\"duration\":2,\"tweenEasing\":0,\"rotate\":10.49},{\"duration\":7,\"tweenEasing\":0,\"rotate\":13.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.03},{\"duration\":5,\"tweenEasing\":0,\"rotate\":20.28},{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":10.78},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.52},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0,\"rotate\":-16.03}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":20,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"x\":0.98}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.53,\"y\":-0.14},{\"duration\":7,\"tweenEasing\":0,\"x\":1.52,\"y\":-0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.09},{\"duration\":7,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":1.49,\"y\":-0.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.5,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":1.52,\"y\":-0.15},{\"duration\":7,\"tweenEasing\":0,\"x\":1.55,\"y\":-0.16},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":-0.1},{\"duration\":0,\"x\":1.54,\"y\":-0.11}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.94},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-7.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-21.75},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-31.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.59},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-49.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-47.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-31.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.56},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-18.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-26.94},{\"duration\":0,\"rotate\":-13.54}],\"scaleFrame\":[{\"duration\":19,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":10,\"tweenEasing\":0,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":58,\"value\":-1}]}]},{\"duration\":66,\"fadeInTime\":0.1,\"name\":\"Dying\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.36,\"y\":-0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.16},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.64,\"y\":-0.33},{\"duration\":9,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.32},{\"duration\":0,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":17.28},{\"duration\":4,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-5.5},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-6},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.51},{\"duration\":2,\"tweenEasing\":0,\"rotate\":20.04},{\"duration\":3,\"tweenEasing\":0,\"rotate\":41.37},{\"duration\":4,\"tweenEasing\":0,\"rotate\":82.99},{\"duration\":3,\"tweenEasing\":0,\"rotate\":84},{\"duration\":9,\"tweenEasing\":0,\"rotate\":87.25},{\"duration\":0,\"rotate\":85}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.04},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":9,\"x\":1.03}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.71},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.28},{\"tweenEasing\":0,\"x\":0.05,\"y\":0.48},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":0.86},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.27,\"y\":0.94},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.54},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.35},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19,\"y\":0.43},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.1,\"y\":0.23},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.1,\"y\":0.26},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.53},{\"duration\":0,\"x\":-0.07,\"y\":0.25}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":44.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.74},{\"tweenEasing\":0,\"rotate\":10.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.29},{\"duration\":10,\"tweenEasing\":0,\"rotate\":4.32},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.32},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.76},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.21},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-25.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.88},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-3.38},{\"duration\":5,\"tweenEasing\":0,\"rotate\":12.65},{\"duration\":0,\"rotate\":15.67}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.93},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0},{\"duration\":5,\"x\":1.01}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-2.6,\"y\":7.58},{\"duration\":3,\"tweenEasing\":0,\"x\":1.4,\"y\":8.29},{\"tweenEasing\":0,\"x\":3.2,\"y\":6.9},{\"duration\":2,\"tweenEasing\":0,\"x\":1.67,\"y\":5.49},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.81,\"y\":4.98},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.99,\"y\":5.37},{\"duration\":5,\"tweenEasing\":0,\"x\":0.57,\"y\":5.79},{\"duration\":2,\"tweenEasing\":0,\"x\":0.83,\"y\":4.7},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":3.96},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":2.83},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.08,\"y\":4.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.24,\"y\":6.75},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.48,\"y\":14.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":13.13},{\"duration\":4,\"tweenEasing\":0,\"x\":-1.45,\"y\":13.55},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.61,\"y\":12.94},{\"duration\":0,\"x\":-0.52,\"y\":12.96}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-81.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":69.12},{\"tweenEasing\":0,\"rotate\":70.36},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.92},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-7.21},{\"duration\":10,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":2,\"tweenEasing\":0,\"rotate\":32.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":78.92},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.95},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-17.09},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.39},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-8.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-68.19},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-62.93},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-55.67},{\"duration\":0,\"rotate\":-55.92}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.86,\"y\":-11.59},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.92,\"y\":-12.92},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.4,\"y\":-12.54},{\"tweenEasing\":0,\"x\":-0.47,\"y\":-9.24},{\"duration\":2,\"tweenEasing\":0,\"x\":0.23,\"y\":-7.51},{\"duration\":10,\"tweenEasing\":0,\"x\":2.02,\"y\":-4.95},{\"duration\":10,\"tweenEasing\":0,\"x\":4.02,\"y\":-5.5},{\"duration\":5,\"tweenEasing\":0,\"x\":1.57,\"y\":-6.9},{\"duration\":2,\"tweenEasing\":0,\"x\":1.38,\"y\":-5.55},{\"duration\":3,\"tweenEasing\":0,\"x\":1.22,\"y\":-4.68},{\"duration\":3,\"tweenEasing\":0,\"x\":2,\"y\":-3.25},{\"duration\":2,\"tweenEasing\":0,\"x\":3.13,\"y\":-4.25},{\"duration\":3,\"tweenEasing\":0,\"x\":1.42,\"y\":-8.87},{\"duration\":4,\"tweenEasing\":0,\"x\":2.96,\"y\":-16.32},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25,\"y\":-14.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.16,\"y\":-14.36},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.56,\"y\":-13.82},{\"duration\":0,\"x\":-0.59,\"y\":-13.92}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-106.06},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-8.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.7},{\"tweenEasing\":0,\"rotate\":16.47},{\"duration\":2,\"tweenEasing\":0,\"rotate\":17.43},{\"duration\":10,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":5,\"tweenEasing\":0,\"rotate\":25.08},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-30.15},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.96},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-20.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.08},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-20.04},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-19.34},{\"duration\":0,\"rotate\":-19.1}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.08,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.09,\"y\":0.99},{\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.86,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":0.81,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.82},{\"duration\":4,\"tweenEasing\":0,\"x\":0.72,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.18},{\"duration\":5,\"tweenEasing\":0,\"x\":1.2},{\"duration\":0,\"x\":1.15}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-0.08,\"y\":0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.21},{\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.26},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.27},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.24},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.07,\"y\":-0.15},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.27},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.22},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":-0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.24,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.23,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.27,\"y\":-0.04},{\"duration\":0,\"x\":-0.24,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-1.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.52},{\"tweenEasing\":0,\"rotate\":-12.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-7.79},{\"duration\":10,\"tweenEasing\":0,\"rotate\":11.55},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.93},{\"duration\":2,\"tweenEasing\":0,\"rotate\":4.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.3},{\"duration\":4,\"tweenEasing\":0,\"rotate\":40.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":36.08},{\"duration\":4,\"tweenEasing\":0,\"rotate\":29.81},{\"duration\":5,\"tweenEasing\":0,\"rotate\":39.09},{\"duration\":0,\"rotate\":40.61}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.87,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.86,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.83},{\"duration\":2,\"tweenEasing\":0,\"x\":0.83},{\"duration\":10,\"tweenEasing\":0,\"x\":0.85},{\"duration\":10,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.82,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.76,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66},{\"duration\":5,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":0,\"x\":0.76,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.11,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.38,\"y\":0.34},{\"tweenEasing\":0,\"x\":-2.98,\"y\":0.44},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.4,\"y\":0.55},{\"duration\":10,\"tweenEasing\":0,\"x\":0.17,\"y\":0.4},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.44},{\"duration\":5,\"tweenEasing\":0,\"x\":0.08,\"y\":0.4},{\"duration\":2,\"tweenEasing\":0,\"x\":0.6,\"y\":0.37},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.3},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.28},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":0.23},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.42,\"y\":0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.78,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.47,\"y\":-0.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-3.04},{\"duration\":0,\"x\":-2.96,\"y\":0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-10.55},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-146.71},{\"tweenEasing\":0,\"rotate\":-125.63},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-48.42},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-26.84},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-54.95},{\"duration\":5,\"tweenEasing\":0,\"rotate\":13.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.41},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.18},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-9.62},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-31.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.85},{\"duration\":4,\"tweenEasing\":0,\"rotate\":12.72},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-9.87},{\"duration\":0,\"rotate\":-12.37}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":0.99},{\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.77,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.9,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.92},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.67},{\"duration\":3,\"tweenEasing\":0,\"x\":0.87,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":4,\"tweenEasing\":0,\"x\":0.74},{\"duration\":3,\"tweenEasing\":0,\"x\":0.77},{\"duration\":4,\"tweenEasing\":0,\"x\":0.74,\"y\":0.99},{\"duration\":5,\"x\":0.72,\"y\":0.99}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":-0.2},{\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.25,\"y\":-0.08},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.07,\"y\":-0.02},{\"duration\":10,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.02,\"y\":0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.05,\"y\":0.29},{\"duration\":3,\"tweenEasing\":0,\"x\":0.13,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":0.25,\"y\":-0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.17},{\"duration\":4,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.19},{\"duration\":5,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.16},{\"duration\":0,\"x\":0.23,\"y\":-0.17}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.06},{\"tweenEasing\":0,\"rotate\":152.64},{\"duration\":2,\"tweenEasing\":0,\"rotate\":130.33},{\"duration\":10,\"tweenEasing\":0,\"rotate\":134.36},{\"duration\":10,\"tweenEasing\":0,\"rotate\":144.41},{\"duration\":5,\"tweenEasing\":0,\"rotate\":90.23},{\"duration\":2,\"tweenEasing\":0,\"rotate\":79.72},{\"duration\":3,\"tweenEasing\":0,\"rotate\":71.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":59.63},{\"duration\":2,\"tweenEasing\":0,\"rotate\":110.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":121.36},{\"duration\":4,\"tweenEasing\":0,\"rotate\":146.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":155.42},{\"duration\":4,\"tweenEasing\":0,\"rotate\":148.64},{\"duration\":5,\"tweenEasing\":0,\"rotate\":148.89},{\"duration\":0,\"rotate\":149.89}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":0.99},{\"tweenEasing\":0,\"x\":0.69},{\"duration\":2,\"tweenEasing\":0},{\"duration\":27,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":12,\"x\":0.97}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.09},{\"duration\":2,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.06},{\"tweenEasing\":0,\"x\":0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":0.02},{\"duration\":10,\"tweenEasing\":0,\"x\":0.16,\"y\":0.05},{\"duration\":10,\"tweenEasing\":0,\"x\":0.09,\"y\":0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.21,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":0.11},{\"duration\":3,\"tweenEasing\":0,\"x\":0.06,\"y\":0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.02,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.04,\"y\":0.06},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.37,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.03},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.19,\"y\":0.01},{\"duration\":0,\"x\":-0.01,\"y\":0.04}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":3.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":15.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.47},{\"tweenEasing\":0,\"rotate\":59.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":63.85},{\"duration\":10,\"tweenEasing\":0,\"rotate\":64.64},{\"duration\":10,\"tweenEasing\":0,\"rotate\":35.73},{\"duration\":5,\"tweenEasing\":0,\"rotate\":26.18},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.62},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.02},{\"duration\":4,\"tweenEasing\":0,\"rotate\":51.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":4,\"tweenEasing\":0,\"rotate\":27.35},{\"duration\":5,\"tweenEasing\":0,\"rotate\":3.06},{\"duration\":0,\"rotate\":-0.06}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.91},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.91},{\"duration\":10,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":10,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96,\"y\":0.86},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96,\"y\":0.83},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":0.82},{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.76},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93,\"y\":0.75},{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.75},{\"duration\":4,\"tweenEasing\":0,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":5,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0,\"x\":1.01,\"y\":1.02}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":23,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":16,\"x\":0.01}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":4.42},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.72},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.51},{\"tweenEasing\":0,\"rotate\":9.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.71},{\"duration\":10,\"tweenEasing\":0,\"rotate\":11.52},{\"duration\":10,\"tweenEasing\":0,\"rotate\":25.31},{\"duration\":5,\"tweenEasing\":0,\"rotate\":20.24},{\"duration\":2,\"tweenEasing\":0,\"rotate\":29.56},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.39},{\"duration\":3,\"tweenEasing\":0,\"rotate\":27.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-52.41},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-105.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-81.38},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-80.53},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-79.97},{\"duration\":0,\"rotate\":-80.88}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":16,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":0,\"x\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":93.01},{\"tweenEasing\":0,\"rotate\":105.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":104.02},{\"duration\":27,\"tweenEasing\":0,\"rotate\":107.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":107.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":121.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":155.41},{\"duration\":3,\"tweenEasing\":0,\"rotate\":159.93},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-179.75},{\"duration\":12,\"rotate\":-159.98}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-9.14,\"y\":0.61},{\"duration\":4,\"tweenEasing\":0,\"x\":-16.58,\"y\":-0.55},{\"duration\":2,\"tweenEasing\":0,\"x\":-16.78,\"y\":-1.59},{\"duration\":10,\"tweenEasing\":0,\"x\":-15.62,\"y\":-0.25},{\"duration\":10,\"tweenEasing\":0,\"x\":-16.44,\"y\":0.69},{\"duration\":5,\"tweenEasing\":0,\"x\":-13.75,\"y\":-0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":-5.66,\"y\":0.3},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.27,\"y\":6.86},{\"duration\":5,\"tweenEasing\":0,\"x\":0.44,\"y\":7.93},{\"duration\":16,\"tweenEasing\":0,\"x\":3.54,\"y\":12.17},{\"duration\":0,\"x\":4.14,\"y\":13.02}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.35,\"y\":-2.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66,\"y\":-3.94},{\"tweenEasing\":0,\"x\":0.86,\"y\":-2.65},{\"duration\":2,\"tweenEasing\":0,\"x\":1.14,\"y\":-2.48},{\"duration\":10,\"tweenEasing\":0,\"x\":1.27,\"y\":-2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.19,\"y\":-2.51},{\"duration\":5,\"tweenEasing\":0,\"x\":1.51,\"y\":-3.51},{\"duration\":2,\"tweenEasing\":0,\"x\":1.57,\"y\":-3.25},{\"duration\":3,\"tweenEasing\":0,\"x\":1.55,\"y\":-2.85},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":-1.7},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.09,\"y\":-2.67},{\"duration\":3,\"tweenEasing\":0,\"x\":0.79,\"y\":-4.22},{\"duration\":4,\"tweenEasing\":0,\"x\":2.11,\"y\":-4.38},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93,\"y\":-4.52},{\"duration\":4,\"tweenEasing\":0,\"x\":1.04,\"y\":-4.38},{\"duration\":5,\"tweenEasing\":0,\"x\":1.3,\"y\":-4.05},{\"duration\":0,\"x\":1.36,\"y\":-3.69}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-44.61},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-48.38},{\"tweenEasing\":0,\"rotate\":-43.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-43.35},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-54.15},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-64.69},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-29.05},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":2},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.27},{\"duration\":3,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":4,\"tweenEasing\":0,\"rotate\":71.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":61.96},{\"duration\":4,\"tweenEasing\":0,\"rotate\":63.96},{\"duration\":5,\"tweenEasing\":0,\"rotate\":67.22},{\"duration\":0,\"rotate\":63.46}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":16,\"x\":1.02,\"y\":0.99}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":-0.35,\"y\":2.85},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.32,\"y\":4.22},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.64,\"y\":3.87},{\"tweenEasing\":0,\"x\":-1.17,\"y\":3.12},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":2.45},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.24,\"y\":1.98},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.16,\"y\":2.48},{\"duration\":5,\"tweenEasing\":0,\"x\":-1.47,\"y\":3.46},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.54,\"y\":3.21},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.52,\"y\":2.82},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":1.35},{\"duration\":2,\"tweenEasing\":0,\"x\":0.09,\"y\":2.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.91,\"y\":3.82},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.08,\"y\":4.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.18,\"y\":3.8},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.69,\"y\":3.67},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.67,\"y\":3.66},{\"duration\":0,\"x\":-1.32,\"y\":3.62}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-23.85},{\"duration\":5,\"tweenEasing\":0,\"rotate\":39},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.78},{\"tweenEasing\":0,\"rotate\":12.3},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.83},{\"duration\":10,\"tweenEasing\":0,\"rotate\":16.07},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":5,\"tweenEasing\":0,\"rotate\":32.36},{\"duration\":2,\"tweenEasing\":0,\"rotate\":36.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":49.37},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":87.74},{\"duration\":3,\"tweenEasing\":0,\"rotate\":100.55},{\"duration\":4,\"tweenEasing\":0,\"rotate\":114.09},{\"duration\":3,\"tweenEasing\":0,\"rotate\":118.87},{\"duration\":4,\"tweenEasing\":0,\"rotate\":120.64},{\"duration\":5,\"tweenEasing\":0,\"rotate\":117.35},{\"duration\":0,\"rotate\":116.86}],\"scaleFrame\":[{\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":0.77,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91},{\"tweenEasing\":0,\"x\":0.9},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89},{\"duration\":10,\"tweenEasing\":0,\"x\":0.87},{\"duration\":10,\"tweenEasing\":0,\"x\":0.9},{\"duration\":5,\"tweenEasing\":0,\"x\":0.86,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.81,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":4,\"tweenEasing\":0,\"x\":0.92,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.73,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.82,\"y\":1.01},{\"duration\":0,\"x\":0.79,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.02},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.04},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.04},{\"duration\":4,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.06},{\"duration\":0,\"x\":0.02,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":45.37},{\"tweenEasing\":0,\"rotate\":32.33},{\"duration\":2,\"tweenEasing\":0,\"rotate\":30.83},{\"duration\":10,\"tweenEasing\":0,\"rotate\":51.13},{\"duration\":10,\"tweenEasing\":0,\"rotate\":64.19},{\"duration\":5,\"tweenEasing\":0,\"rotate\":57.91},{\"duration\":2,\"tweenEasing\":0,\"rotate\":66.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":78.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":63.48},{\"duration\":2,\"tweenEasing\":0,\"rotate\":50.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":43.38},{\"duration\":4,\"tweenEasing\":0,\"rotate\":39.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.56},{\"duration\":4,\"tweenEasing\":0,\"rotate\":15.28},{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.01},{\"duration\":0,\"rotate\":16.53}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":10,\"tweenEasing\":0,\"x\":1.02},{\"duration\":10,\"tweenEasing\":0,\"x\":1.03},{\"duration\":5,\"tweenEasing\":0,\"x\":1.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.04},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05},{\"duration\":5,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":0,\"x\":1.05}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.05,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.07},{\"duration\":10,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.12},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.05,\"y\":-0.07},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.05,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.08},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.07},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.05},{\"duration\":0,\"x\":-0.05,\"y\":-0.06}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":41.36},{\"duration\":5,\"tweenEasing\":0,\"rotate\":16.91},{\"duration\":3,\"tweenEasing\":0,\"rotate\":40.79},{\"tweenEasing\":0,\"rotate\":14.94},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.91},{\"duration\":10,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":10,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":5,\"tweenEasing\":0,\"rotate\":8.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.24},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.05},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":16.24},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.93},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-6.36},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.85},{\"duration\":4,\"tweenEasing\":0,\"rotate\":10.27},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":0,\"rotate\":-6.69}],\"scaleFrame\":[{\"tweenEasing\":0,\"x\":0.95},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":0.99},{\"duration\":5,\"x\":1.03}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.01},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.21},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.21,\"y\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25,\"y\":0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.03},{\"duration\":0,\"x\":-0.22,\"y\":0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.76},{\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.03},{\"duration\":10,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":10,\"tweenEasing\":0,\"rotate\":0.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-15.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":27.29},{\"duration\":3,\"tweenEasing\":0,\"rotate\":49.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":65.14},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.39},{\"duration\":4,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":53.41},{\"duration\":4,\"tweenEasing\":0,\"rotate\":38.58},{\"duration\":5,\"tweenEasing\":0,\"rotate\":35.06},{\"duration\":0,\"rotate\":35.57}],\"scaleFrame\":[{\"duration\":32,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.92},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":0,\"y\":0.99}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":1.51,\"y\":-0.15},{\"duration\":5,\"tweenEasing\":0,\"x\":1.38,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.19},{\"tweenEasing\":0,\"x\":1.43,\"y\":-0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":1.44,\"y\":-0.2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.41,\"y\":-0.2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.2},{\"duration\":5,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.43,\"y\":-0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.39,\"y\":-0.16},{\"duration\":2,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":1.42,\"y\":-0.12},{\"duration\":4,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.11},{\"duration\":5,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.12},{\"duration\":0,\"x\":1.38,\"y\":-0.1}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-17.55},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-55.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-34.03},{\"tweenEasing\":0,\"rotate\":-27.28},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-26.79},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-40.34},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-43.84},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-40.58},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.01},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.82},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":4,\"tweenEasing\":0,\"rotate\":5.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.71},{\"duration\":4,\"tweenEasing\":0,\"rotate\":13.13},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.29},{\"duration\":0,\"rotate\":2.29}],\"scaleFrame\":[{\"duration\":32,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":8,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":5,\"x\":1.03,\"y\":0.99}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]},{\"duration\":14,\"fadeInTime\":0.2,\"name\":\"Atk1\",\"frame\":[{\"duration\":4},{\"duration\":0,\"sound\":\"200025\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.29,\"y\":0.01},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0,\"x\":0.2,\"y\":-0.1}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.75},{\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.3},{\"duration\":4,\"tweenEasing\":0,\"rotate\":24.3},{\"duration\":0,\"rotate\":17.78}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":0.99},{\"duration\":2,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":0.96}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.21},{\"tweenEasing\":0,\"x\":-0.16,\"y\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.29,\"y\":0.58},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.68},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.59},{\"duration\":0,\"x\":-0.23,\"y\":0.36}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.96},{\"tweenEasing\":0,\"rotate\":7.79},{\"duration\":2,\"tweenEasing\":0,\"rotate\":10.03},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.45},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0,\"rotate\":1.89}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.25,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.89,\"y\":0.04},{\"tweenEasing\":0,\"x\":1.32,\"y\":1.4},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.3,\"y\":4.43},{\"duration\":4,\"x\":-0.3,\"y\":4.43},{\"duration\":0,\"x\":1.2,\"y\":6.31}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":-129.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":167.8},{\"tweenEasing\":0,\"rotate\":176.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-74.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-56.5},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-60.7},{\"duration\":0,\"rotate\":-54.25}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.34,\"y\":-0.34},{\"tweenEasing\":0,\"x\":-1.39,\"y\":-5.16},{\"duration\":2,\"tweenEasing\":0,\"x\":4.2,\"y\":-17.25},{\"duration\":2,\"tweenEasing\":0,\"x\":3.45,\"y\":-17.67},{\"duration\":4,\"x\":3.47,\"y\":-17.23},{\"duration\":0,\"x\":3.77,\"y\":-12.36}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-48.37},{\"tweenEasing\":0,\"rotate\":1.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.73},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.04},{\"duration\":0,\"rotate\":13.44}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.99},{\"tweenEasing\":0,\"x\":0.67},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.06},{\"duration\":4,\"tweenEasing\":0,\"x\":1.06},{\"duration\":0,\"x\":1.04}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.16},{\"tweenEasing\":0,\"x\":0.24,\"y\":-0.05},{\"duration\":2,\"tweenEasing\":0,\"x\":0.64,\"y\":-0.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.59,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":0.59,\"y\":-0.04},{\"duration\":0,\"x\":0.32,\"y\":1.15}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":12.19},{\"tweenEasing\":0,\"rotate\":-34.07},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":28.28},{\"duration\":4,\"tweenEasing\":0,\"rotate\":24.27},{\"duration\":0,\"rotate\":1.22}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.78,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.25,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.13,\"y\":1.01},{\"duration\":0,\"x\":1.15,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":0.87,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":0.88,\"y\":0.13},{\"tweenEasing\":0,\"x\":1.07,\"y\":0.14},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":1.16,\"y\":0.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.08,\"y\":0.23},{\"duration\":0,\"x\":0.2,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.78},{\"tweenEasing\":0,\"rotate\":-15.8},{\"duration\":2,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.66},{\"duration\":4,\"tweenEasing\":0,\"rotate\":14.63},{\"duration\":0,\"rotate\":2.97}],\"scaleFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":0,\"x\":1.02}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.07},{\"tweenEasing\":0,\"x\":0.19,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06},{\"duration\":4,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.02},{\"duration\":0,\"x\":-0.55,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.75},{\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":76.22},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.71},{\"duration\":4,\"tweenEasing\":0,\"rotate\":41.93},{\"duration\":0,\"rotate\":38.08}],\"scaleFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.17},{\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.17},{\"tweenEasing\":0,\"x\":-0.1,\"y\":0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.59,\"y\":-0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.74,\"y\":-0.17},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.7,\"y\":-0.17},{\"duration\":0,\"x\":-3,\"y\":-0.12}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-2.57},{\"tweenEasing\":0,\"rotate\":4.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-19.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.64},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.79},{\"duration\":0,\"rotate\":14.44}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"y\":0.96},{\"tweenEasing\":0,\"y\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.07,\"y\":1.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.02,\"y\":1.05},{\"duration\":0,\"x\":1.02,\"y\":1.03}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":0,\"x\":0.01,\"y\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":3.1},{\"tweenEasing\":0,\"rotate\":32.41},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-13.06},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-13.08},{\"duration\":0,\"rotate\":-8.52}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":-96.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-156.22},{\"tweenEasing\":0,\"clockwise\":1,\"rotate\":-179.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":38.81},{\"duration\":2,\"tweenEasing\":0,\"rotate\":39.31},{\"duration\":4,\"tweenEasing\":0,\"rotate\":29.29},{\"duration\":0,\"rotate\":15.52}]},{\"name\":\"effect_r\",\"translateFrame\":[{\"duration\":12},{\"tweenEasing\":0,\"x\":23.95,\"y\":-15.22},{\"x\":40.96,\"y\":-23.57}],\"rotateFrame\":[{\"duration\":12},{\"tweenEasing\":0,\"rotate\":-9.42},{\"rotate\":-15.64}],\"scaleFrame\":[{\"duration\":11},{\"tweenEasing\":0,\"x\":1.21,\"y\":1.22},{\"tweenEasing\":0},{\"x\":0.7,\"y\":0.7}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":3.76,\"y\":-0.07},{\"tweenEasing\":0,\"x\":1.45,\"y\":3.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.54,\"y\":4.31},{\"duration\":4,\"tweenEasing\":0,\"x\":1,\"y\":4.59},{\"duration\":0,\"x\":0.67,\"y\":3.07}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.14,\"y\":0.38},{\"tweenEasing\":0,\"x\":1.11,\"y\":-3.46},{\"duration\":2,\"tweenEasing\":0,\"x\":2.01,\"y\":-7.84},{\"duration\":2,\"tweenEasing\":0,\"x\":2.72,\"y\":-8.01},{\"duration\":4,\"tweenEasing\":0,\"x\":2.67,\"y\":-7.55},{\"duration\":0,\"x\":1.77,\"y\":-5.04}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":4.5},{\"tweenEasing\":0,\"rotate\":-0.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.82},{\"duration\":2,\"tweenEasing\":0,\"rotate\":29.32},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.56},{\"duration\":0,\"rotate\":17.58}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.14,\"y\":-0.41},{\"tweenEasing\":0,\"x\":-1.09,\"y\":3.38},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.98,\"y\":7.68},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.11,\"y\":7.9},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.64,\"y\":7.4},{\"duration\":0,\"x\":-1.77,\"y\":4.93}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":15.06},{\"tweenEasing\":0,\"rotate\":-33.12},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.04},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-7.03},{\"duration\":0,\"rotate\":-4.75}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.96,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":8,\"x\":0.98,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":0,\"x\":0.07,\"y\":-1.21}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.3},{\"tweenEasing\":0,\"rotate\":39.9},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.62},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":0,\"rotate\":25.1}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":0.01},{\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.01},{\"duration\":0,\"x\":-0.03}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.94},{\"tweenEasing\":0,\"rotate\":32.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-32.11},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-32.11},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-32.1},{\"duration\":0,\"rotate\":-21.33}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"tweenEasing\":0,\"x\":0.93},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.21},{\"duration\":0,\"x\":1.14}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.02},{\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.22},{\"duration\":0,\"x\":-0.27,\"y\":0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-4.04},{\"tweenEasing\":0,\"rotate\":-35.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-47.69},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-52.7},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-54.2},{\"duration\":0,\"rotate\":-43.45}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":1.01},{\"duration\":8}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.07,\"y\":0.02},{\"tweenEasing\":0,\"x\":1.55,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.06},{\"duration\":0,\"x\":-0.42,\"y\":-0.31}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-21.05},{\"tweenEasing\":0,\"rotate\":0.19},{\"duration\":2,\"tweenEasing\":0,\"rotate\":42.16},{\"duration\":2,\"tweenEasing\":0,\"rotate\":42.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":39.26},{\"duration\":0,\"rotate\":26.17}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":8}],\"colorFrame\":[{\"duration\":6},{\"duration\":5},{\"value\":{\"aM\":62}},{\"value\":{\"aM\":23}},{\"value\":{\"aM\":6}}]}]},{\"duration\":48,\"fadeInTime\":0.2,\"name\":\"Atk3\",\"frame\":[{\"duration\":33},{\"sound\":\"200029\"},{\"duration\":0,\"events\":[{\"name\":\"onTimeStart\"}]}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":35,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.14},{\"duration\":3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.05},{\"duration\":31,\"tweenEasing\":0,\"rotate\":7.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.53},{\"duration\":2,\"tweenEasing\":0,\"rotate\":23.8},{\"duration\":4,\"tweenEasing\":0,\"rotate\":49.66},{\"duration\":3,\"tweenEasing\":0,\"rotate\":39.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.81},{\"duration\":0,\"rotate\":12.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":0,\"x\":0.99}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.08},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.16},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.24,\"y\":1.07},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.28,\"y\":-0.38},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.8,\"y\":-1.94},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.88,\"y\":-2.45},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":-2.06},{\"duration\":0,\"x\":-0.14,\"y\":-1.07}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.69},{\"duration\":31,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.59},{\"duration\":2,\"tweenEasing\":0,\"rotate\":47.72},{\"duration\":4,\"tweenEasing\":0,\"rotate\":23.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":30.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.58},{\"duration\":0,\"rotate\":11.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":0,\"x\":0.99}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-2.16,\"y\":6.54},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.78,\"y\":6.22},{\"duration\":29,\"tweenEasing\":0,\"x\":-1.47,\"y\":6.73},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.62,\"y\":7.1},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.24,\"y\":11.37},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.25,\"y\":11.5},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.43,\"y\":10.87},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.26,\"y\":7.59},{\"duration\":0,\"x\":-0.88,\"y\":6.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-32.21},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-26.21},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-56.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-179.92},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-100.73},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-102.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-113.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-70.65},{\"duration\":0,\"rotate\":-31.81}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":4.9,\"y\":-9.52},{\"duration\":2,\"tweenEasing\":0,\"x\":2.89,\"y\":-7.56},{\"duration\":29,\"tweenEasing\":0,\"x\":2.64,\"y\":-7.28},{\"duration\":2,\"tweenEasing\":0,\"x\":1.37,\"y\":-7.87},{\"duration\":2,\"tweenEasing\":0,\"x\":4.56,\"y\":-11.44},{\"duration\":4,\"tweenEasing\":0,\"x\":3.7,\"y\":-11.38},{\"duration\":3,\"tweenEasing\":0,\"x\":4.77,\"y\":-11.2},{\"duration\":3,\"tweenEasing\":0,\"x\":4.44,\"y\":-9.48},{\"duration\":0,\"x\":2.47,\"y\":-6.28}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.11},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7.16},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-40.37},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-126.51},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-54.13},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-56.46},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-59.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-43.84},{\"duration\":0,\"rotate\":-21.78}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96},{\"duration\":0,\"x\":0.99}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.76,\"y\":-0.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.81},{\"duration\":29,\"tweenEasing\":0,\"x\":0.79,\"y\":0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":-0.19},{\"duration\":2,\"tweenEasing\":0,\"x\":0.75,\"y\":-0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.71,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.71,\"y\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.73,\"y\":-0.01},{\"duration\":0,\"x\":0.28}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.37},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-31.14},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-41.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-36.65},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-42.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-37.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.03},{\"duration\":0,\"rotate\":-2.51}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":29,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.1,\"y\":0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":0.85,\"y\":0.22},{\"duration\":29,\"tweenEasing\":0,\"x\":0.25,\"y\":0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.33,\"y\":0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.22,\"y\":0.18},{\"duration\":4,\"tweenEasing\":0,\"x\":1.17,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.21,\"y\":0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":1.24,\"y\":0.21},{\"duration\":0,\"x\":1.03,\"y\":0.18}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.79},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-33.15},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-45.42},{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.95},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.3},{\"duration\":0,\"rotate\":-9.52}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":0,\"x\":1.02,\"y\":0.99}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.05},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.24},{\"duration\":29,\"tweenEasing\":0,\"x\":0.37,\"y\":-0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":0.2,\"y\":-0.07},{\"duration\":4,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.02},{\"duration\":0,\"x\":0.09,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":18.07},{\"duration\":29,\"tweenEasing\":0,\"rotate\":18.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-6.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":44.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":46.12},{\"duration\":0,\"rotate\":34.82}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"x\":0.98}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.19},{\"duration\":29,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.34,\"y\":0.28},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.14},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":0.11},{\"duration\":0,\"y\":0.06}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":11.13},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.81},{\"duration\":29,\"tweenEasing\":0,\"rotate\":13.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":51.14},{\"duration\":4,\"tweenEasing\":0,\"rotate\":57.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":59.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":39.57},{\"duration\":0,\"rotate\":19.81}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.93},{\"duration\":2,\"tweenEasing\":0,\"y\":1.01},{\"duration\":29,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.11,\"y\":1.34},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"y\":0.98},{\"duration\":0,\"x\":1.01,\"y\":0.99}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":29,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":4,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0,\"x\":0.01,\"y\":0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.59},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.03},{\"duration\":29,\"tweenEasing\":0,\"rotate\":16.97},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.9},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":0,\"rotate\":9.1}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":29,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":0,\"y\":0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.29},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-28.61},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-69.47},{\"duration\":2,\"tweenEasing\":0,\"rotate\":176.49},{\"duration\":2,\"tweenEasing\":0,\"rotate\":21.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":22.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":28.28},{\"duration\":0,\"rotate\":32.29}]},{\"name\":\"effect_r\",\"translateFrame\":[{\"duration\":5,\"x\":-26.3,\"y\":-41.21},{\"duration\":28,\"tweenEasing\":0,\"x\":-26.3,\"y\":-41.21},{\"duration\":3,\"x\":-26.78,\"y\":-51.93},{\"duration\":4,\"tweenEasing\":0,\"x\":-1.03,\"y\":1.03},{\"duration\":3,\"x\":-1.03,\"y\":1.03},{\"tweenEasing\":0,\"x\":10.17,\"y\":6.63},{\"duration\":4,\"x\":30.97,\"y\":5.03}],\"rotateFrame\":[{\"duration\":33,\"rotate\":35.08},{\"duration\":3,\"rotate\":35.08},{\"duration\":12,\"rotate\":7.52}],\"scaleFrame\":[{\"duration\":33,\"x\":0.18,\"y\":0.16},{\"duration\":3,\"x\":0.18,\"y\":0.16},{\"duration\":4,\"tweenEasing\":0,\"x\":1.21,\"y\":1.09},{\"duration\":2,\"x\":1.68,\"y\":1.51},{\"tweenEasing\":0,\"x\":1.87,\"y\":1.68},{\"tweenEasing\":0,\"x\":1.63,\"y\":1.47},{\"duration\":4,\"x\":0.93,\"y\":0.84}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-3.02,\"y\":5.91},{\"duration\":31,\"tweenEasing\":0,\"x\":6.06,\"y\":-12.9},{\"duration\":2,\"tweenEasing\":0,\"x\":7.94,\"y\":-22.23},{\"duration\":2,\"tweenEasing\":0,\"x\":2.9,\"y\":6.9},{\"duration\":7,\"tweenEasing\":0,\"x\":2.76,\"y\":6.68},{\"duration\":3,\"tweenEasing\":0,\"x\":2.3,\"y\":6.53},{\"duration\":0,\"x\":1.15,\"y\":3.27}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.76,\"y\":-2.17},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.6,\"y\":-2.49},{\"duration\":2,\"tweenEasing\":0,\"x\":0.34,\"y\":-3.43},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":-3.12},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":2.54,\"y\":-3.36},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":-3.47},{\"duration\":0,\"x\":-0.89,\"y\":-1.82}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-63.19},{\"duration\":31,\"tweenEasing\":0,\"rotate\":-33.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.76},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.5},{\"duration\":4,\"tweenEasing\":0,\"rotate\":1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.59},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.01},{\"duration\":0,\"rotate\":5.51}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":0.91},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":0,\"x\":0.92}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.74,\"y\":2.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.6,\"y\":2.43},{\"duration\":29,\"tweenEasing\":0,\"x\":-1.05,\"y\":1.09},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.33,\"y\":3.36},{\"duration\":2,\"tweenEasing\":0,\"x\":-1,\"y\":3.07},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.98,\"y\":3.3},{\"duration\":3,\"tweenEasing\":0,\"x\":0.2,\"y\":3.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.93,\"y\":3.4},{\"duration\":0,\"x\":-0.48,\"y\":1.71}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-43.89},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-63.16},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-39.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-61.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-63.15},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-78.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-66.92},{\"duration\":0,\"rotate\":-33.58}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":29,\"tweenEasing\":0,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.04},{\"duration\":31,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":0,\"x\":0.01,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":97.06},{\"duration\":31,\"tweenEasing\":0,\"rotate\":81.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":11.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.17},{\"duration\":4,\"tweenEasing\":0,\"rotate\":56.18},{\"duration\":3,\"tweenEasing\":0,\"rotate\":65.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.14},{\"duration\":0,\"rotate\":13.54}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":31,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":0,\"x\":0.95,\"y\":0.99}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.02},{\"duration\":29,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.1},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":0,\"x\":-0.95}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-17.87},{\"duration\":29,\"tweenEasing\":0,\"rotate\":103.48},{\"duration\":2,\"tweenEasing\":0,\"rotate\":56.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":68.88},{\"duration\":4,\"tweenEasing\":0,\"rotate\":69.4},{\"duration\":3,\"tweenEasing\":0,\"rotate\":82.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":71.17},{\"duration\":0,\"rotate\":35.8}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":29,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.77},{\"duration\":4,\"tweenEasing\":0,\"x\":0.81},{\"duration\":3,\"tweenEasing\":0,\"x\":0.85},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":0,\"x\":0.94}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.02},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.02,\"y\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":0,\"x\":0.03,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":31,\"tweenEasing\":0,\"rotate\":13},{\"duration\":2,\"tweenEasing\":0,\"rotate\":43.62},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-56.95},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-56.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.46},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-51.69},{\"duration\":0,\"rotate\":-17.16}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":31,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":12}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.61,\"y\":-0.08},{\"duration\":29,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":1.76,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.61,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.6,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.58,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0,\"x\":0.72,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.83},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.27},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-20.08},{\"duration\":2,\"tweenEasing\":0,\"rotate\":4.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7.97},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-6.42},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-3.63},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.23},{\"duration\":0,\"rotate\":-2.27}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect_r\",\"colorFrame\":[{\"duration\":34,\"value\":{\"aM\":0}},{\"duration\":2,\"value\":{\"aM\":0}},{\"duration\":5},{},{\"value\":{\"aM\":44}},{\"duration\":2,\"value\":{\"aM\":10}},{\"duration\":3,\"value\":{\"aM\":6}}]}]},{\"duration\":14,\"fadeInTime\":0.2,\"name\":\"Atk2\",\"frame\":[{\"duration\":5},{\"duration\":0,\"sound\":\"200026\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.03,\"y\":0.01},{\"duration\":7}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-0.25},{\"tweenEasing\":0,\"rotate\":-0.25},{\"tweenEasing\":0,\"rotate\":-1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0,\"rotate\":-0.25}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":1.01}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.11,\"y\":0.14},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.33},{\"duration\":0,\"x\":-0.1,\"y\":0.27}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.32},{\"tweenEasing\":0,\"rotate\":10.32},{\"tweenEasing\":0,\"rotate\":-1.49},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-0.49},{\"duration\":0,\"rotate\":-0.3}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.94},{\"duration\":0,\"x\":0.96}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":-0.76},{\"tweenEasing\":0,\"x\":0.16,\"y\":-0.38},{\"tweenEasing\":0,\"x\":-0.99,\"y\":5.26},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.51,\"y\":17.06},{\"duration\":0,\"x\":-0.41,\"y\":16.28}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":44.91},{\"tweenEasing\":0,\"rotate\":45.66},{\"tweenEasing\":0,\"rotate\":61.1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-91.96},{\"duration\":0,\"rotate\":-79.76}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.35,\"y\":-0.86},{\"tweenEasing\":0,\"x\":0.45,\"y\":-0.79},{\"tweenEasing\":0,\"x\":1.88,\"y\":-6.43},{\"duration\":7,\"tweenEasing\":0,\"x\":3.48,\"y\":-19.49},{\"duration\":0,\"x\":3.13,\"y\":-18.3}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-19.79},{\"tweenEasing\":0,\"rotate\":-18.04},{\"tweenEasing\":0,\"rotate\":23.73},{\"duration\":7,\"tweenEasing\":0,\"rotate\":44.71},{\"duration\":0,\"rotate\":42.09}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0,\"x\":0.96},{\"duration\":7,\"tweenEasing\":0,\"x\":1.05},{\"duration\":0,\"x\":1.02}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.8},{\"tweenEasing\":0,\"x\":0.77,\"y\":0.01},{\"tweenEasing\":0,\"x\":0.74,\"y\":-0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.72,\"y\":-0.07},{\"duration\":0,\"x\":0.69,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-0.8},{\"tweenEasing\":0,\"rotate\":-8.57},{\"tweenEasing\":0,\"rotate\":-24.34},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-18.82},{\"duration\":0,\"rotate\":-26.6}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.93,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.84,\"y\":1.01},{\"duration\":0,\"x\":0.85,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.04},{\"tweenEasing\":0,\"x\":0.18,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.92,\"y\":0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":1.21,\"y\":0.22},{\"duration\":0,\"x\":1.24,\"y\":0.19}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-22.9},{\"tweenEasing\":0,\"rotate\":-10.41},{\"tweenEasing\":0,\"rotate\":-62.21},{\"duration\":7,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":0,\"rotate\":2.22}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":0,\"x\":1.02,\"y\":1.01}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.03},{\"tweenEasing\":0,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.1,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.19,\"y\":-0.08},{\"duration\":0,\"x\":0.16,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-22.03},{\"tweenEasing\":0,\"rotate\":-22.3},{\"tweenEasing\":0,\"rotate\":3.75},{\"duration\":7,\"tweenEasing\":0,\"rotate\":95.26},{\"duration\":0,\"rotate\":83.25}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.99}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":0.04},{\"tweenEasing\":0,\"x\":0.02,\"y\":0.08},{\"tweenEasing\":0,\"x\":0.06,\"y\":0.16},{\"duration\":7,\"tweenEasing\":0,\"x\":0.3,\"y\":-0.05},{\"duration\":0,\"x\":0.26,\"y\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":0.5},{\"tweenEasing\":0,\"rotate\":-2.27},{\"tweenEasing\":0,\"rotate\":-12.92},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-20.48},{\"duration\":0,\"rotate\":-23.94}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.03},{\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"duration\":7,\"tweenEasing\":0,\"x\":0.94,\"y\":0.76},{\"duration\":0,\"x\":0.96,\"y\":0.81}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0},{\"duration\":7,\"x\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":13.43},{\"tweenEasing\":0,\"rotate\":14.56},{\"tweenEasing\":0,\"rotate\":26.23},{\"duration\":7,\"tweenEasing\":0,\"rotate\":23.18},{\"duration\":0,\"rotate\":32.77}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":-0.01},{\"tweenEasing\":0},{\"duration\":7,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":19.53},{\"tweenEasing\":0,\"rotate\":26.53},{\"tweenEasing\":0,\"rotate\":13.24},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.02},{\"duration\":0,\"rotate\":17.77}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.16,\"y\":1.7},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":1.7},{\"duration\":7,\"x\":-0.86,\"y\":3.5}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.29,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.29,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.97,\"y\":-2.63},{\"duration\":7,\"tweenEasing\":0,\"x\":1.17,\"y\":-5.6},{\"duration\":0,\"x\":0.74,\"y\":-4.76}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.51},{\"tweenEasing\":0,\"rotate\":-12.51},{\"tweenEasing\":0,\"rotate\":-8.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":12.27},{\"duration\":0,\"rotate\":7.26}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.89},{\"tweenEasing\":0,\"x\":0.89},{\"tweenEasing\":0},{\"duration\":7,\"x\":1.02}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.28},{\"tweenEasing\":0,\"x\":-0.28},{\"tweenEasing\":0,\"x\":-0.9,\"y\":2.62},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.15,\"y\":5.52},{\"duration\":0,\"x\":-0.73,\"y\":4.7}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-15.06},{\"tweenEasing\":0,\"rotate\":-15.06},{\"tweenEasing\":0,\"rotate\":-26.1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-8.29},{\"duration\":0,\"rotate\":-31.37}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":7,\"x\":0.05,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.5},{\"tweenEasing\":0,\"rotate\":23.5},{\"tweenEasing\":0,\"rotate\":40.63},{\"duration\":7,\"tweenEasing\":0,\"rotate\":27.65},{\"duration\":0,\"rotate\":29.9}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.98,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":0,\"x\":1.02,\"y\":1.01}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0},{\"duration\":0,\"x\":-0.03,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.57},{\"tweenEasing\":0,\"rotate\":23.57},{\"tweenEasing\":0,\"rotate\":17.59},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-32.13},{\"duration\":0,\"rotate\":6.8}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94},{\"tweenEasing\":0,\"x\":0.94},{\"tweenEasing\":0,\"x\":0.89},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0,\"x\":0.94}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.07},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.07},{\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.05},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.03},{\"duration\":0,\"x\":-0.17,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-11.03},{\"tweenEasing\":0,\"rotate\":-11.03},{\"tweenEasing\":0,\"rotate\":-32.38},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-39.91},{\"duration\":0,\"rotate\":-37.15}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03},{\"tweenEasing\":0,\"x\":0.03},{\"tweenEasing\":0,\"x\":1.55,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.05},{\"duration\":0,\"x\":1.51,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-8.55},{\"tweenEasing\":0,\"rotate\":-8.55},{\"tweenEasing\":0,\"rotate\":8.43},{\"duration\":7,\"tweenEasing\":0,\"rotate\":40.37},{\"duration\":0,\"rotate\":24.52}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":14,\"value\":-1}]}]},{\"duration\":28,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Idle2\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":11,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-8.25},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.64},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.97},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.31},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03,\"y\":0.32},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.34},{\"duration\":6,\"tweenEasing\":0,\"x\":0.04,\"y\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.07},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":2.34},{\"duration\":11,\"tweenEasing\":0,\"rotate\":7.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":6,\"tweenEasing\":0,\"rotate\":5.79},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.25},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":12}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.43,\"y\":-0.55},{\"duration\":11,\"tweenEasing\":0,\"x\":2.28,\"y\":1.52},{\"duration\":2,\"tweenEasing\":0,\"x\":2.28,\"y\":1.52},{\"duration\":6,\"tweenEasing\":0,\"x\":1.35,\"y\":0.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.54,\"y\":0.14},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.66},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-127.17},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-127.17},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-102.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-44.58},{\"duration\":0}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.96,\"y\":-0.15},{\"duration\":11,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.67},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.67},{\"duration\":6,\"tweenEasing\":0,\"x\":0.08,\"y\":-1.12},{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.65},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-24.49},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-7.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":18.69},{\"duration\":6,\"tweenEasing\":0,\"rotate\":19.28},{\"duration\":6,\"tweenEasing\":0,\"rotate\":9.77},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":0.9},{\"duration\":2,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.87,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.91},{\"duration\":0}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.06},{\"duration\":11,\"tweenEasing\":0,\"x\":0.01,\"y\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.09},{\"duration\":6,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.1},{\"duration\":6,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.94},{\"duration\":11,\"tweenEasing\":0,\"rotate\":9.46},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.33},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-14.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.3},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":11,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":0.92},{\"duration\":6,\"tweenEasing\":0,\"x\":1.02},{\"duration\":0}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.05},{\"duration\":11,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.07},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":1.11,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.97},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3.95},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.84},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.84,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":0}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.12},{\"duration\":11,\"tweenEasing\":0,\"x\":0.45,\"y\":-0.23},{\"duration\":2,\"tweenEasing\":0,\"x\":0.45,\"y\":-0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.36,\"y\":-0.29},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.14},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-3.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-3.52},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-4.04},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-3.04},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":0}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":0.18},{\"duration\":6,\"tweenEasing\":0,\"x\":0.09,\"y\":0.19},{\"duration\":6,\"tweenEasing\":0,\"x\":0.04,\"y\":0.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-0.23},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.23},{\"duration\":6,\"tweenEasing\":0,\"rotate\":8.42},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.98},{\"duration\":11,\"tweenEasing\":0,\"x\":0.99,\"y\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":6,\"tweenEasing\":0,\"x\":0.98,\"y\":0.91},{\"duration\":6}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.01},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.56},{\"duration\":11,\"tweenEasing\":0,\"rotate\":35.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":34.46},{\"duration\":6,\"tweenEasing\":0,\"rotate\":35.98},{\"duration\":6,\"tweenEasing\":0,\"rotate\":26.72},{\"duration\":0}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.31,\"y\":-0.48},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.48},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.31,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.47},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":3.92,\"y\":-3.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":72.69},{\"tweenEasing\":0,\"rotate\":-95.52},{\"tweenEasing\":0,\"rotate\":-151.72},{\"tweenEasing\":0,\"rotate\":124.8},{\"tweenEasing\":0,\"rotate\":63.15},{\"tweenEasing\":0,\"rotate\":5.26},{\"tweenEasing\":0,\"rotate\":-57.46},{\"tweenEasing\":0,\"rotate\":-116.85},{\"tweenEasing\":0,\"rotate\":-174.24},{\"tweenEasing\":0,\"rotate\":123.54},{\"tweenEasing\":0,\"rotate\":64.15},{\"tweenEasing\":0,\"rotate\":6.51},{\"tweenEasing\":0,\"rotate\":-55.46},{\"tweenEasing\":0,\"rotate\":-104.3},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-96.77},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-55.71},{\"duration\":0}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.78,\"y\":2.3},{\"duration\":11,\"tweenEasing\":0,\"x\":1.32,\"y\":0.3},{\"duration\":2,\"tweenEasing\":0,\"x\":1.32,\"y\":0.3},{\"duration\":6,\"tweenEasing\":0,\"x\":0.33,\"y\":1.37},{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":0.69},{\"duration\":0}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.24},{\"duration\":11,\"tweenEasing\":0,\"x\":0.76,\"y\":-0.66},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"x\":0.72,\"y\":-0.54},{\"duration\":6,\"tweenEasing\":0,\"x\":0.56,\"y\":-0.15},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-22.27},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3},{\"duration\":2,\"tweenEasing\":0,\"rotate\":2.75},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-11.76},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.93},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95},{\"duration\":0}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.23},{\"duration\":11,\"tweenEasing\":0,\"x\":-0.74,\"y\":0.62},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.77,\"y\":0.62},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.72,\"y\":0.49},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.24,\"y\":0.33},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.58},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-9.54},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.03},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":11,\"tweenEasing\":0,\"x\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":33.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":9.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.54},{\"duration\":6,\"tweenEasing\":0,\"rotate\":27.29},{\"duration\":6,\"tweenEasing\":0,\"rotate\":17.02},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"tweenEasing\":0,\"x\":0.94},{\"duration\":6,\"tweenEasing\":0,\"x\":0.96},{\"duration\":0}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.06},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.59},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.77},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":6,\"tweenEasing\":0,\"rotate\":8.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.9},{\"duration\":11,\"tweenEasing\":0,\"x\":1.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.04},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":11,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-10.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.2},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-15.55},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.53},{\"duration\":0}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":0.01},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.08},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-2.98},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.73},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-3.76},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.26},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":28,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Idle1\"}]}]}",
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json
new file mode 100644
index 0000000..376c728
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json
@@ -0,0 +1 @@
+{"width":128,"SubTexture":[{"frameWidth":34,"y":1,"frameHeight":45,"width":34,"frameX":0,"height":44,"name":"cape","frameY":0,"x":70},{"width":10,"y":107,"height":14,"name":"shouder_l","x":74},{"width":11,"y":107,"height":14,"name":"forearm_l","x":61},{"width":15,"y":93,"height":16,"name":"hand_l","x":1},{"width":30,"y":61,"height":30,"name":"weapon_hand_l","x":1},{"width":8,"y":88,"height":11,"name":"thigh_l","x":77},{"width":12,"y":93,"height":17,"name":"calf_l","x":18},{"width":20,"y":113,"height":8,"name":"foot_l","x":39},{"width":28,"y":61,"height":31,"name":"pelvis","x":33},{"width":8,"y":101,"height":11,"name":"thigh_r","x":86},{"width":12,"y":88,"height":17,"name":"calf_r","x":63},{"width":20,"y":113,"height":8,"name":"foot_r","x":17},{"width":13,"y":94,"height":12,"name":"shouder_r","x":45},{"width":67,"y":1,"height":58,"name":"chest","x":1},{"width":11,"y":94,"height":17,"name":"forearm_r","x":32},{"width":14,"y":111,"height":13,"name":"hand_r","x":1},{"frameWidth":36,"y":47,"frameHeight":39,"width":34,"frameX":-2,"height":39,"name":"we_bl_4_f_1","frameY":0,"x":70}],"height":128,"name":"SoldierElf","imagePath":"SoldierElf_tex.png"}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta
new file mode 100644
index 0000000..2e948a9
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta
@@ -0,0 +1,7 @@
+{
+ "ver": "1.0.0",
+ "uuid": "24d7bb8f-577c-4e5d-b730-56613ca8685d",
+ "atlasJson": "{\"width\":128,\"SubTexture\":[{\"frameWidth\":34,\"y\":1,\"frameHeight\":45,\"width\":34,\"frameX\":0,\"height\":44,\"name\":\"cape\",\"frameY\":0,\"x\":70},{\"width\":10,\"y\":107,\"height\":14,\"name\":\"shouder_l\",\"x\":74},{\"width\":11,\"y\":107,\"height\":14,\"name\":\"forearm_l\",\"x\":61},{\"width\":15,\"y\":93,\"height\":16,\"name\":\"hand_l\",\"x\":1},{\"width\":30,\"y\":61,\"height\":30,\"name\":\"weapon_hand_l\",\"x\":1},{\"width\":8,\"y\":88,\"height\":11,\"name\":\"thigh_l\",\"x\":77},{\"width\":12,\"y\":93,\"height\":17,\"name\":\"calf_l\",\"x\":18},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_l\",\"x\":39},{\"width\":28,\"y\":61,\"height\":31,\"name\":\"pelvis\",\"x\":33},{\"width\":8,\"y\":101,\"height\":11,\"name\":\"thigh_r\",\"x\":86},{\"width\":12,\"y\":88,\"height\":17,\"name\":\"calf_r\",\"x\":63},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_r\",\"x\":17},{\"width\":13,\"y\":94,\"height\":12,\"name\":\"shouder_r\",\"x\":45},{\"width\":67,\"y\":1,\"height\":58,\"name\":\"chest\",\"x\":1},{\"width\":11,\"y\":94,\"height\":17,\"name\":\"forearm_r\",\"x\":32},{\"width\":14,\"y\":111,\"height\":13,\"name\":\"hand_r\",\"x\":1},{\"frameWidth\":36,\"y\":47,\"frameHeight\":39,\"width\":34,\"frameX\":-2,\"height\":39,\"name\":\"we_bl_4_f_1\",\"frameY\":0,\"x\":70}],\"height\":128,\"name\":\"SoldierElf\",\"imagePath\":\"SoldierElf_tex.png\"}",
+ "texture": "050fb016-1a1f-4341-8367-283bfeddc4a8",
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png
new file mode 100644
index 0000000..7e5058b
Binary files /dev/null and b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png differ
diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png.meta b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png.meta
new file mode 100644
index 0000000..c70bac4
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png.meta
@@ -0,0 +1,34 @@
+{
+ "ver": "2.3.3",
+ "uuid": "050fb016-1a1f-4341-8367-283bfeddc4a8",
+ "type": "sprite",
+ "wrapMode": "clamp",
+ "filterMode": "bilinear",
+ "premultiplyAlpha": false,
+ "genMipmaps": false,
+ "packable": true,
+ "platformSettings": {},
+ "subMetas": {
+ "SoldierElf_tex": {
+ "ver": "1.0.4",
+ "uuid": "c62e1779-f92b-40d3-bf4f-7ab747e33d6e",
+ "rawTextureUuid": "050fb016-1a1f-4341-8367-283bfeddc4a8",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": -11.5,
+ "offsetY": 1.5,
+ "trimX": 1,
+ "trimY": 1,
+ "width": 103,
+ "height": 123,
+ "rawWidth": 128,
+ "rawHeight": 128,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "subMetas": {}
+ }
+ }
+}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierFireGhost.meta b/frontend/assets/resources/animation/SoldierFireGhost.meta
new file mode 100644
index 0000000..58a5d5f
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierFireGhost.meta
@@ -0,0 +1,7 @@
+{
+ "ver": "1.0.1",
+ "uuid": "f1176719-d1d6-4af5-89c6-ddff16ab85fd",
+ "isSubpackage": false,
+ "subpackageName": "",
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json
new file mode 100644
index 0000000..f2c523b
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json
@@ -0,0 +1 @@
+{"frameRate":60,"name":"SoldierFireGhost","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":60,"name":"SoldierFireGhost","aabb":{"x":-34.2,"y":-91.74,"width":77.68,"height":94.31},"bone":[{"name":"root"},{"inheritScale":false,"length":13,"name":"leftShoulder","parent":"root","transform":{"x":-11.2185,"y":-56.7863,"skX":156.8918,"skY":156.8918}},{"inheritScale":false,"name":"backLight","parent":"root","transform":{"x":0.2,"y":-46.0924,"scX":3,"scY":3}},{"inheritScale":false,"length":17,"name":"rightArm","parent":"root","transform":{"x":13.5908,"y":-53.6036,"skX":46.9769,"skY":46.9769}},{"inheritScale":false,"name":"effect4","parent":"root","transform":{"x":12.64,"y":-42.7787,"skX":-9.349,"skY":-9.349}},{"inheritScale":false,"name":"effect7","parent":"root"},{"inheritScale":false,"name":"effect3","parent":"root","transform":{"x":11.5,"y":-54.7347}},{"inheritScale":false,"length":17,"name":"leg","parent":"root","transform":{"x":-0.9105,"y":-2.8201,"skX":-85.7242,"skY":-85.7242}},{"inheritScale":false,"length":22,"name":"body","parent":"root","transform":{"x":2.0039,"y":-24.7902,"skX":-82.2714,"skY":-82.2714}},{"inheritScale":false,"length":12,"name":"rightShoulder","parent":"root","transform":{"x":18.2082,"y":-52.6804,"skX":22.0857,"skY":22.0857}},{"inheritScale":false,"length":11,"name":"head","parent":"root","transform":{"x":8.206,"y":-62.581,"skX":-83.4757,"skY":-83.4757}},{"inheritScale":false,"length":10,"name":"leftArm","parent":"root","transform":{"x":-13.0118,"y":-53.6185,"skX":122.5397,"skY":122.5397}},{"inheritScale":false,"name":"effect2","parent":"root","transform":{"x":-10.0286,"y":-56.4408,"skX":-79.3059,"skY":-79.3059}},{"inheritScale":false,"name":"effect5","parent":"root","transform":{"x":-30.0572,"y":-33.1972,"skX":-72.4737,"skY":-72.4737}},{"inheritScale":false,"name":"effect6","parent":"root","transform":{"x":26.5689,"y":-30.0747}},{"inheritScale":false,"name":"rightFrontArm","parent":"rightArm","transform":{"x":17.6467,"y":1.3208,"skX":10.7237,"skY":10.7237}},{"inheritScale":false,"name":"leftFrontArm","parent":"leftArm","transform":{"x":14.7447,"y":3.5738,"skX":-39.1583,"skY":-39.1583}},{"inheritScale":false,"name":"rightHand","parent":"rightFrontArm","transform":{"x":10.7292,"y":-5.7822,"skX":21.9835,"skY":21.9835}},{"inheritScale":false,"name":"leftHand","parent":"leftFrontArm","transform":{"x":14.7808,"y":2.8582,"skX":-25.7356,"skY":-25.7356}}],"slot":[{"name":"backLight","parent":"backLight"},{"name":"rightArm","parent":"rightArm"},{"name":"leg","parent":"leg"},{"name":"body","parent":"body"},{"name":"rightShoulder","parent":"rightShoulder"},{"name":"rightFrontArm","parent":"rightFrontArm"},{"name":"rightHand","parent":"rightHand"},{"name":"leftArm","parent":"leftArm"},{"name":"leftShoulder","parent":"leftShoulder"},{"name":"leftFrontArm","parent":"leftFrontArm"},{"name":"head","parent":"head"},{"name":"leftHand","parent":"leftHand"},{"name":"effect2","parent":"effect2"},{"name":"effect3","parent":"effect3"},{"name":"effect4","parent":"effect4"},{"name":"effect5","parent":"effect5"},{"name":"effect6","parent":"effect6"},{"displayIndex":-1,"name":"effect7","parent":"effect7"}],"skin":[{"slot":[{"name":"body","display":[{"name":"yinmo02","transform":{"x":12.81,"y":-2.38,"skX":82.27,"skY":82.27},"path":"body"}]},{"name":"leftFrontArm","display":[{"name":"yinmo06","transform":{"x":6.29,"y":0.98,"skX":-76.83,"skY":-76.83},"path":"leftFrontArm"}]},{"name":"rightArm","display":[{"name":"yinmo08","transform":{"x":9.07,"y":-0.39,"skX":-54.4,"skY":-54.4},"path":"rightArm"}]},{"name":"leftArm","display":[{"name":"yinmo05","transform":{"x":6.91,"y":0.09,"skX":-112.43,"skY":-112.43},"path":"leftArm"}]},{"name":"effect4","display":[{"name":"huomiao01"}]},{"name":"rightFrontArm","display":[{"name":"yinmo09","transform":{"x":3.74,"y":-1.19,"skX":-60.14,"skY":-60.14},"path":"rightFrontArm"}]},{"name":"effect2","display":[{"name":"huomiao01"}]},{"name":"effect6","display":[{"name":"huomiao01"}]},{"name":"effect5","display":[{"name":"huomiao01"}]},{"name":"head","display":[{"name":"yinmo01","transform":{"x":13.01,"y":-2.08,"skX":82.3,"skY":82.3,"scX":1.5,"scY":1.5},"path":"head"},{"name":"head2","transform":{"x":13.28,"y":-2.44,"skX":83.48,"skY":83.48}}]},{"name":"leg","display":[{"name":"yinmoqe00","transform":{"x":10.63,"y":-0.15,"skX":85.72,"skY":85.72}}]},{"name":"leftShoulder","display":[{"name":"yinmo03","transform":{"x":4.79,"y":-0.12,"skX":-154.62,"skY":-154.62},"path":"leftShoulder"}]},{"name":"backLight","display":[{"name":"biu"}]},{"name":"rightHand","display":[{"name":"yinmo10","transform":{"x":5.38,"y":-0.23,"skX":-63.84,"skY":-63.84},"path":"rightHand"}]},{"name":"effect3","display":[{"name":"huomiao01"}]},{"name":"rightShoulder","display":[{"name":"yinmo04","transform":{"x":3.42,"y":-0.82,"skX":-28.61,"skY":-28.61},"path":"rightShoulder"}]},{"name":"leftHand","display":[{"name":"yinmo07","transform":{"x":4.09,"y":-0.34,"skX":-66.8,"skY":-66.8},"path":"leftHand"}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"Walking","bone":[{"name":"effect5","translateFrame":[{"duration":12,"tweenEasing":0,"x":44.16,"y":14.08},{"duration":12,"tweenEasing":0,"x":44.16,"y":14.08},{"duration":15,"tweenEasing":0,"x":31.04,"y":15.36},{"duration":15,"tweenEasing":0,"x":22.08,"y":-0.64},{"duration":6,"x":-10.24,"y":-23.36}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":21,"rotate":7.3}]},{"name":"effect4","translateFrame":[{"duration":6,"tweenEasing":0,"x":7.36,"y":-2.48},{"duration":9,"tweenEasing":0,"x":7.36,"y":-2.48},{"duration":15,"tweenEasing":0,"x":-2,"y":-15.76},{"duration":12,"tweenEasing":0,"x":-14.48,"y":-20.48},{"duration":12,"tweenEasing":0,"x":-14.64,"y":-36.8},{"duration":6,"x":-40.56,"y":-53.04}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":12,"tweenEasing":0,"rotate":-84.92},{"duration":12,"tweenEasing":0,"rotate":-11.77},{"duration":6,"rotate":-28.57}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-14.8,"y":25.6},{"duration":12,"tweenEasing":0,"x":-14.8,"y":25.6},{"duration":18,"tweenEasing":0,"x":-29.2,"y":17.6},{"duration":12,"tweenEasing":0,"x":-38,"y":9.2},{"duration":9,"tweenEasing":0,"x":-56.4,"y":4.4},{"duration":3,"x":-68.8,"y":4}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-59.23},{"duration":12,"tweenEasing":0,"rotate":-36.85},{"duration":9,"tweenEasing":0,"rotate":-66.48},{"duration":3,"rotate":-111.5}]},{"name":"effect2","translateFrame":[{"duration":3,"tweenEasing":0,"x":10.56,"y":11.2},{"duration":12,"tweenEasing":0,"x":10.56,"y":11.2},{"duration":15,"tweenEasing":0,"x":-1.6,"y":1.6},{"duration":18,"tweenEasing":0,"x":-19.84,"y":3.2},{"duration":9,"tweenEasing":0,"x":-29.76,"y":-6.72},{"duration":3,"x":-39.68,"y":-24}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-61.22},{"duration":9,"tweenEasing":0,"rotate":0.48},{"duration":3,"rotate":27.59}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":11.3},{"duration":15,"tweenEasing":0,"rotate":15.68},{"duration":15,"tweenEasing":0,"rotate":-5.06},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":0.15,"y":1.19},{"duration":15,"tweenEasing":0,"x":0.46,"y":-1.06},{"duration":15,"tweenEasing":0,"x":-0.33,"y":-2.07},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-4.65},{"duration":15,"tweenEasing":0,"rotate":12.03},{"duration":15,"tweenEasing":0,"rotate":23.96},{"duration":15,"tweenEasing":0,"rotate":16.54},{"duration":0,"rotate":-4.65}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":5.76},{"duration":15,"tweenEasing":0,"x":5.14,"y":1.94},{"duration":15,"tweenEasing":0,"x":8.29,"y":-0.16},{"duration":15,"tweenEasing":0,"x":7.36,"y":2.19},{"duration":0,"x":5.76}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":20.1},{"duration":15,"tweenEasing":0,"rotate":-5.43},{"duration":15,"tweenEasing":0,"rotate":10.13},{"duration":15,"tweenEasing":0,"rotate":-2.7},{"duration":0,"rotate":20.1}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":3.84,"y":-0.96},{"duration":15,"tweenEasing":0,"x":7.18,"y":1.44},{"duration":15,"tweenEasing":0,"x":13.26,"y":3.09},{"duration":15,"tweenEasing":0,"x":11.89,"y":3.87},{"duration":0,"x":3.84,"y":-0.96}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":26.91},{"duration":15,"tweenEasing":0,"rotate":-35.34},{"duration":15,"tweenEasing":0,"rotate":-70.51},{"duration":15,"tweenEasing":0,"rotate":-30.69},{"duration":0,"rotate":26.91}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":5.44,"y":1.28},{"duration":15,"tweenEasing":0,"x":4.96,"y":4.88},{"duration":15,"tweenEasing":0,"x":7.29,"y":0.64},{"duration":15,"tweenEasing":0,"x":7.59,"y":5.42},{"duration":0,"x":5.44,"y":1.28}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":0,"rotate":0.59}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":3.41,"y":1.17},{"duration":15,"tweenEasing":0,"x":1.71,"y":2.68},{"duration":15,"tweenEasing":0,"x":3.89,"y":0.18},{"duration":15,"tweenEasing":0,"x":5.61,"y":3.87},{"duration":0,"x":3.41,"y":1.17}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":10.12},{"duration":15,"tweenEasing":0,"rotate":-14.23},{"duration":15,"tweenEasing":0,"rotate":5.57},{"duration":15,"tweenEasing":0,"rotate":-13.84},{"duration":0,"rotate":10.12}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"y":2.72},{"duration":15,"tweenEasing":0,"x":0.96,"y":-0.18},{"duration":15,"tweenEasing":0,"x":1.42,"y":3.34},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.24},{"duration":15,"tweenEasing":0,"rotate":13},{"duration":15,"tweenEasing":0,"rotate":16.36},{"duration":15,"tweenEasing":0,"rotate":14.15},{"duration":0,"rotate":11.24}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.96},{"duration":6,"tweenEasing":0,"x":-0.8},{"duration":6,"tweenEasing":0,"x":-0.96},{"duration":6,"tweenEasing":0,"x":-0.96},{"duration":12,"tweenEasing":0,"x":0.64},{"duration":6,"tweenEasing":0,"x":0.64},{"duration":6,"tweenEasing":0,"x":-0.32},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":1.02},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-0.52},{"duration":6}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":6,"tweenEasing":0,"y":1.1},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"y":0.9}]},{"name":"rightHand","translateFrame":[{"duration":60,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-8},{"duration":15,"tweenEasing":0,"rotate":-1.89},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":0.14},{"duration":0,"rotate":-8}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.19,"y":-1.7},{"duration":15,"tweenEasing":0,"x":0.81,"y":-2.06},{"duration":15,"tweenEasing":0,"x":0.11,"y":-0.1},{"duration":3,"tweenEasing":0,"x":0.11,"y":-0.1},{"duration":6,"tweenEasing":0,"x":-0.08,"y":-2.55},{"duration":6,"tweenEasing":0,"y":-2.64},{"duration":0,"x":-0.19,"y":-1.7}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-43.73},{"duration":15,"tweenEasing":0,"rotate":-66.02},{"duration":15,"tweenEasing":0,"rotate":-6.47},{"duration":3,"tweenEasing":0,"rotate":-62.6},{"duration":6,"tweenEasing":0,"rotate":-58.82},{"duration":6,"tweenEasing":0,"rotate":-51.28},{"duration":0,"rotate":-43.73}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":4.32,"y":4.08},{"duration":15,"tweenEasing":0,"x":4.96,"y":2.34},{"duration":15,"tweenEasing":0,"x":-8.37,"y":-4.26},{"duration":15,"tweenEasing":0,"x":4.21,"y":3.38},{"duration":0,"x":4.32,"y":4.08}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.28},{"duration":15,"tweenEasing":0,"rotate":63.1},{"duration":15,"tweenEasing":0,"rotate":74.64},{"duration":15,"tweenEasing":0,"rotate":55.11},{"duration":0,"rotate":11.28}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":12,"value":-1},{"duration":45},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":6,"value":-1},{"duration":51},{"duration":3,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":27,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":54},{"duration":0,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":60},{"duration":0,"value":-1}],"colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":33,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":174,"name":"Atk2","bone":[{"name":"effect5","translateFrame":[{"duration":18,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":26.6,"y":-37.6},{"duration":12,"tweenEasing":0,"x":29.6,"y":-47},{"duration":24,"tweenEasing":0,"x":22.4,"y":-63.2},{"duration":12,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":26.6,"y":-37.6},{"duration":12,"tweenEasing":0,"x":29.6,"y":-47},{"duration":24,"tweenEasing":0,"x":22.4,"y":-63.2},{"duration":12,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":26.6,"y":-37.6},{"duration":9,"tweenEasing":0,"x":29.6,"y":-47},{"duration":3,"x":22.4,"y":-63.2}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":9,"tweenEasing":0,"rotate":11.57},{"duration":3,"rotate":61.88}]},{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":15,"tweenEasing":0,"x":8.69,"y":-11.2},{"duration":12,"tweenEasing":0,"x":-3.89,"y":-32.46},{"duration":21,"tweenEasing":0,"x":5.03,"y":-47.77},{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":15,"tweenEasing":0,"x":8.69,"y":-11.2},{"duration":12,"tweenEasing":0,"x":-3.89,"y":-32.46},{"duration":21,"tweenEasing":0,"x":5.03,"y":-47.77},{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":12,"tweenEasing":0,"x":8.69,"y":-11.2},{"duration":12,"tweenEasing":0,"x":-3.89,"y":-32.46},{"duration":6,"x":5.03,"y":-47.77}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":6,"rotate":-53.65}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"y":15.09},{"duration":15,"tweenEasing":0,"y":15.09},{"duration":15,"tweenEasing":0,"x":-12.57,"y":-18.51},{"duration":12,"tweenEasing":0,"x":-24.23,"y":-35.89},{"duration":18,"tweenEasing":0,"x":-37.94,"y":-42.74},{"duration":15,"tweenEasing":0,"y":15.09},{"duration":15,"tweenEasing":0,"x":-12.57,"y":-18.51},{"duration":12,"tweenEasing":0,"x":-24.23,"y":-35.89},{"duration":18,"tweenEasing":0,"x":-37.94,"y":-42.74},{"duration":15,"tweenEasing":0,"y":15.09},{"duration":12,"tweenEasing":0,"x":-12.57,"y":-18.51},{"duration":12,"tweenEasing":0,"x":-24.23,"y":-35.89},{"duration":6,"x":-37.94,"y":-42.74}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":6,"rotate":-111.08}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":9,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":15,"tweenEasing":0,"x":-3.2,"y":-0.46},{"duration":15,"tweenEasing":0,"x":-28.57,"y":-8.23},{"duration":15,"tweenEasing":0,"x":-27.43,"y":-20.57},{"duration":15,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":15,"tweenEasing":0,"x":-3.2,"y":-0.46},{"duration":15,"tweenEasing":0,"x":-28.57,"y":-8.23},{"duration":15,"tweenEasing":0,"x":-27.43,"y":-20.57},{"duration":15,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":15,"tweenEasing":0,"x":-3.2,"y":-0.46},{"duration":15,"tweenEasing":0,"x":-28.57,"y":-8.23},{"duration":9,"x":-27.43,"y":-20.57}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":9,"rotate":57.19}]},{"name":"leftHand","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":3,"tweenEasing":0,"x":0.7,"y":0.08},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.44,"y":0.2},{"duration":12,"tweenEasing":0,"x":0.12,"y":0.59},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":3,"tweenEasing":0,"x":0.7,"y":0.08},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.44,"y":0.2},{"duration":12,"tweenEasing":0,"x":0.12,"y":0.59},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":3,"tweenEasing":0,"x":0.7,"y":0.08},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.44,"y":0.2},{"duration":12,"tweenEasing":0,"x":0.12,"y":0.59},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.96,"y":-1.21},{"duration":3,"tweenEasing":0,"x":0.28,"y":0.35},{"duration":15,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.65,"y":-3},{"duration":12,"tweenEasing":0,"x":0.49,"y":-0.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.96,"y":-1.21},{"duration":3,"tweenEasing":0,"x":0.28,"y":0.35},{"duration":15,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.65,"y":-3},{"duration":12,"tweenEasing":0,"x":0.49,"y":-0.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.96,"y":-1.21},{"duration":3,"tweenEasing":0,"x":0.28,"y":0.35},{"duration":15,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.65,"y":-3},{"duration":12,"tweenEasing":0,"x":0.49,"y":-0.89},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":10.32,"y":5.25},{"duration":3,"tweenEasing":0,"x":15.99,"y":2.07},{"duration":15,"tweenEasing":0,"x":-14.24,"y":3.29},{"duration":3,"tweenEasing":0,"x":-20.77,"y":-0.8},{"duration":3,"tweenEasing":0,"x":-7.4,"y":-0.01},{"duration":12,"tweenEasing":0,"x":9.35,"y":3.21},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":10.32,"y":5.25},{"duration":3,"tweenEasing":0,"x":15.99,"y":2.07},{"duration":15,"tweenEasing":0,"x":-14.24,"y":3.29},{"duration":3,"tweenEasing":0,"x":-20.77,"y":-0.8},{"duration":3,"tweenEasing":0,"x":-7.4,"y":-0.01},{"duration":12,"tweenEasing":0,"x":9.35,"y":3.21},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":10.32,"y":5.25},{"duration":3,"tweenEasing":0,"x":15.99,"y":2.07},{"duration":15,"tweenEasing":0,"x":-14.24,"y":3.29},{"duration":3,"tweenEasing":0,"x":-20.77,"y":-0.8},{"duration":3,"tweenEasing":0,"x":-7.4,"y":-0.01},{"duration":12,"tweenEasing":0,"x":9.35,"y":3.21},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":8.51,"y":-1.26},{"duration":3,"tweenEasing":0,"x":15.88,"y":0.43},{"duration":15,"tweenEasing":0,"x":-0.36,"y":1.05},{"duration":3,"tweenEasing":0,"x":-5.81,"y":-1.2},{"duration":3,"tweenEasing":0,"x":3.44,"y":2.61},{"duration":12,"tweenEasing":0,"x":9.85,"y":0.52},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":8.51,"y":-1.26},{"duration":3,"tweenEasing":0,"x":15.88,"y":0.43},{"duration":15,"tweenEasing":0,"x":-0.36,"y":1.05},{"duration":3,"tweenEasing":0,"x":-5.81,"y":-1.2},{"duration":3,"tweenEasing":0,"x":3.44,"y":2.61},{"duration":12,"tweenEasing":0,"x":9.85,"y":0.52},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":8.51,"y":-1.26},{"duration":3,"tweenEasing":0,"x":15.88,"y":0.43},{"duration":15,"tweenEasing":0,"x":-0.36,"y":1.05},{"duration":3,"tweenEasing":0,"x":-5.81,"y":-1.2},{"duration":3,"tweenEasing":0,"x":3.44,"y":2.61},{"duration":12,"tweenEasing":0,"x":9.85,"y":0.52},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":15}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":11.17,"y":11.95},{"duration":3,"tweenEasing":0,"x":17.87,"y":16.22},{"duration":15,"tweenEasing":0,"x":-17.67,"y":1.23},{"duration":3,"tweenEasing":0,"x":-18.56,"y":-2},{"duration":3,"tweenEasing":0,"x":-8.49,"y":-0.72},{"duration":12,"tweenEasing":0,"x":9.18,"y":7.81},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":11.17,"y":11.95},{"duration":3,"tweenEasing":0,"x":17.87,"y":16.22},{"duration":15,"tweenEasing":0,"x":-17.67,"y":1.23},{"duration":3,"tweenEasing":0,"x":-18.56,"y":-2},{"duration":3,"tweenEasing":0,"x":-8.49,"y":-0.72},{"duration":12,"tweenEasing":0,"x":9.18,"y":7.81},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":11.17,"y":11.95},{"duration":3,"tweenEasing":0,"x":17.87,"y":16.22},{"duration":15,"tweenEasing":0,"x":-17.67,"y":1.23},{"duration":3,"tweenEasing":0,"x":-18.56,"y":-2},{"duration":3,"tweenEasing":0,"x":-8.49,"y":-0.72},{"duration":12,"tweenEasing":0,"x":9.18,"y":7.81},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":7.13,"y":4.46},{"duration":3,"tweenEasing":0,"x":10.32,"y":7.06},{"duration":15,"tweenEasing":0,"x":-22.31,"y":-2.2},{"duration":3,"tweenEasing":0,"x":-20.91,"y":-5.68},{"duration":3,"tweenEasing":0,"x":-8.89,"y":-0.87},{"duration":12,"tweenEasing":0,"x":6.95,"y":5.43},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":7.13,"y":4.46},{"duration":3,"tweenEasing":0,"x":10.32,"y":7.06},{"duration":15,"tweenEasing":0,"x":-22.31,"y":-2.2},{"duration":3,"tweenEasing":0,"x":-20.91,"y":-5.68},{"duration":3,"tweenEasing":0,"x":-8.89,"y":-0.87},{"duration":12,"tweenEasing":0,"x":6.95,"y":5.43},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":7.13,"y":4.46},{"duration":3,"tweenEasing":0,"x":10.32,"y":7.06},{"duration":15,"tweenEasing":0,"x":-22.31,"y":-2.2},{"duration":3,"tweenEasing":0,"x":-20.91,"y":-5.68},{"duration":3,"tweenEasing":0,"x":-8.89,"y":-0.87},{"duration":12,"tweenEasing":0,"x":6.95,"y":5.43},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":0}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.89,"y":3.28},{"duration":3,"tweenEasing":0,"x":0.05,"y":2.17},{"duration":9,"tweenEasing":0,"x":-2.88,"y":-1.42},{"duration":6,"tweenEasing":0,"x":-3.36,"y":-0.99},{"duration":3,"tweenEasing":0,"x":-3.68,"y":-0.7},{"duration":3,"tweenEasing":0,"x":-1.23,"y":-0.74},{"duration":12,"tweenEasing":0,"x":0.1,"y":2.23},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.89,"y":3.28},{"duration":3,"tweenEasing":0,"x":0.05,"y":2.17},{"duration":9,"tweenEasing":0,"x":-2.88,"y":-1.42},{"duration":6,"tweenEasing":0,"x":-3.36,"y":-0.99},{"duration":3,"tweenEasing":0,"x":-3.68,"y":-0.7},{"duration":3,"tweenEasing":0,"x":-1.23,"y":-0.74},{"duration":12,"tweenEasing":0,"x":0.1,"y":2.23},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.89,"y":3.28},{"duration":3,"tweenEasing":0,"x":0.05,"y":2.17},{"duration":9,"tweenEasing":0,"x":-2.88,"y":-1.42},{"duration":6,"tweenEasing":0,"x":-3.36,"y":-0.99},{"duration":3,"tweenEasing":0,"x":-3.68,"y":-0.7},{"duration":3,"tweenEasing":0,"x":-1.23,"y":-0.74},{"duration":12,"tweenEasing":0,"x":0.1,"y":2.23},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.48},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.64},{"duration":3,"tweenEasing":0,"y":-0.64},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.48},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.64},{"duration":3,"tweenEasing":0,"y":-0.64},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.48},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.64},{"duration":3,"tweenEasing":0,"y":-0.64},{"duration":15}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":15}]},{"name":"rightHand","translateFrame":[{"duration":15,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":3,"tweenEasing":0,"x":-2.61,"y":-1.24},{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":12,"tweenEasing":0,"x":-2.41,"y":-0.33},{"duration":6,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":15,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":3,"tweenEasing":0,"x":-2.61,"y":-1.24},{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":12,"tweenEasing":0,"x":-2.41,"y":-0.33},{"duration":6,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":15,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":3,"tweenEasing":0,"x":-2.61,"y":-1.24},{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":12,"tweenEasing":0,"x":-2.41,"y":-0.33},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-30.35},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":3,"tweenEasing":0,"x":3.12,"y":-3.07},{"duration":15,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":12,"tweenEasing":0,"x":1.24,"y":-3.23},{"duration":6,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":3,"tweenEasing":0,"x":3.12,"y":-3.07},{"duration":15,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":12,"tweenEasing":0,"x":1.24,"y":-3.23},{"duration":6,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":3,"tweenEasing":0,"x":3.12,"y":-3.07},{"duration":15,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":12,"tweenEasing":0,"x":1.24,"y":-3.23},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-42.6},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":0,"rotate":21.7}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":7.03,"y":0.57},{"duration":3,"tweenEasing":0,"x":8.46,"y":4.38},{"duration":15,"tweenEasing":0,"x":-9.94,"y":-5.59},{"duration":3,"tweenEasing":0,"x":-10.56,"y":-6.78},{"duration":3,"tweenEasing":0,"x":-7.33,"y":-0.7},{"duration":12,"tweenEasing":0,"x":4.31,"y":3.25},{"duration":6,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":15,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":7.03,"y":0.57},{"duration":3,"tweenEasing":0,"x":8.46,"y":4.38},{"duration":15,"tweenEasing":0,"x":-9.94,"y":-5.59},{"duration":3,"tweenEasing":0,"x":-10.56,"y":-6.78},{"duration":3,"tweenEasing":0,"x":-7.33,"y":-0.7},{"duration":12,"tweenEasing":0,"x":4.31,"y":3.25},{"duration":6,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":15,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":7.03,"y":0.57},{"duration":3,"tweenEasing":0,"x":8.46,"y":4.38},{"duration":15,"tweenEasing":0,"x":-9.94,"y":-5.59},{"duration":3,"tweenEasing":0,"x":-10.56,"y":-6.78},{"duration":3,"tweenEasing":0,"x":-7.33,"y":-0.7},{"duration":12,"tweenEasing":0,"x":4.31,"y":3.25},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":0,"rotate":-6.67}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":12}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":18,"value":-1},{"duration":156},{"duration":0,"value":-1}],"colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":159},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":9,"value":-1},{"duration":162},{"duration":3,"value":-1}],"colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":162},{"duration":6,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"rightHand","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"rightFrontArm","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"backLight","displayFrame":[{"duration":174,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":174,"value":-1}]}]},{"duration":60,"name":"Atk1","bone":[{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":-18.2,"y":13.4},{"duration":12,"tweenEasing":0,"x":-18.2,"y":13.4},{"duration":15,"tweenEasing":0,"x":-35.6,"y":3.6},{"duration":12,"tweenEasing":0,"x":-48,"y":0.8},{"duration":9,"x":-61.2}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-105.08},{"duration":12,"tweenEasing":0,"rotate":-105.08},{"duration":15,"tweenEasing":0,"rotate":-96.73},{"duration":12,"tweenEasing":0,"rotate":-69.9},{"duration":9,"rotate":-94.04}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-29.33,"y":21.33},{"duration":9,"tweenEasing":0,"x":-29.33,"y":21.33},{"duration":15,"tweenEasing":0,"x":-46.13,"y":12},{"duration":15,"tweenEasing":0,"x":-53.87,"y":18.93},{"duration":15,"x":-62.13,"y":14.67}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-108.91},{"duration":15,"tweenEasing":0,"rotate":-108.91},{"duration":15,"tweenEasing":0,"rotate":-127.09},{"duration":15,"rotate":-108.09}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":-9.07,"y":26.4},{"duration":12,"tweenEasing":0,"x":-9.07,"y":26.4},{"duration":15,"tweenEasing":0,"x":-27.2,"y":5.6},{"duration":9,"tweenEasing":0,"x":-46.93,"y":-8.53},{"duration":18,"x":-54.93,"y":-10.93}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":31.2},{"duration":12,"tweenEasing":0,"rotate":31.2},{"duration":15,"tweenEasing":0,"rotate":-0.05},{"duration":9,"tweenEasing":0,"rotate":-26.91},{"duration":18,"rotate":-24.71}]},{"name":"leftHand","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.03,"y":0.14},{"duration":15,"tweenEasing":0,"x":0.03,"y":0.14},{"duration":12,"tweenEasing":0,"x":0.21,"y":0.98},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-12.3},{"duration":12,"tweenEasing":0,"rotate":18.53},{"duration":15,"tweenEasing":0,"rotate":-9},{"duration":12,"tweenEasing":0,"rotate":9.5},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.43,"y":0.09},{"duration":12,"tweenEasing":0,"x":0.37,"y":0.24},{"duration":15,"tweenEasing":0,"x":1.38,"y":-1.56},{"duration":12,"tweenEasing":0,"x":0.39,"y":0.48},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":13.83},{"duration":12,"tweenEasing":0,"rotate":25.06},{"duration":15,"tweenEasing":0,"rotate":17.69},{"duration":12,"tweenEasing":0,"rotate":12.39},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-5.77,"y":-1.21},{"duration":12,"tweenEasing":0,"x":16.81,"y":-1.49},{"duration":15,"tweenEasing":0,"x":16.01,"y":-1.17},{"duration":12,"tweenEasing":0,"x":2.27,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":40},{"duration":12,"tweenEasing":0,"rotate":-12.39},{"duration":15,"tweenEasing":0,"rotate":4.99},{"duration":12,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.85,"y":-3.89},{"duration":12,"tweenEasing":0,"x":25.9,"y":0.2},{"duration":15,"tweenEasing":0,"x":24.94,"y":0.84},{"duration":12,"tweenEasing":0,"x":2.99,"y":-4.37},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":66.79},{"duration":12,"tweenEasing":0,"rotate":-95.1},{"duration":15,"tweenEasing":0,"rotate":-98.37},{"duration":12,"tweenEasing":0,"rotate":-44.89},{"duration":0}]},{"name":"head","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-8.35,"y":0.91},{"duration":12,"tweenEasing":0,"x":18.7,"y":3.66},{"duration":15,"tweenEasing":0,"x":17.58,"y":4.46},{"duration":12,"tweenEasing":0,"x":2.45,"y":1.81},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":15.73},{"duration":12,"tweenEasing":0,"rotate":2.95},{"duration":15,"tweenEasing":0,"rotate":2.83},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-7.25,"y":-1.47},{"duration":12,"tweenEasing":0,"x":12.57,"y":4.07},{"duration":15,"tweenEasing":0,"x":12.25,"y":4.55},{"duration":12,"tweenEasing":0,"x":0.8,"y":0.69},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-11.02},{"duration":12,"tweenEasing":0,"rotate":-27.15},{"duration":15,"tweenEasing":0,"rotate":-15.36},{"duration":12,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"body","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.93,"y":-2.03},{"duration":12,"tweenEasing":0,"x":2.55,"y":-0.18},{"duration":15,"tweenEasing":0,"x":2.87,"y":0.46},{"duration":12,"tweenEasing":0,"y":0.8},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-11.15},{"duration":12,"tweenEasing":0,"rotate":29.43},{"duration":15,"tweenEasing":0,"rotate":30.7},{"duration":12,"tweenEasing":0,"rotate":1.09},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":12,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":24,"tweenEasing":0,"y":-0.05},{"duration":6,"tweenEasing":0,"y":-0.05},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":0}],"scaleFrame":[{"duration":12,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.1,"y":1.3},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":12,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":6,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-0.39},{"duration":15,"tweenEasing":0,"x":-1.95,"y":-0.39},{"duration":12,"tweenEasing":0,"x":-1.08,"y":-0.33},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-34.26},{"duration":12,"tweenEasing":0,"rotate":-8.09},{"duration":15,"tweenEasing":0,"rotate":-36.51},{"duration":12,"tweenEasing":0,"rotate":-12.04},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":18,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.4,"y":0.36},{"duration":12,"tweenEasing":0,"x":-0.68,"y":0.24},{"duration":15,"tweenEasing":0,"x":-0.88,"y":0.14},{"duration":12,"tweenEasing":0,"x":0.62,"y":0.51},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-36.51},{"duration":12,"tweenEasing":0,"rotate":-41.51},{"duration":15,"tweenEasing":0,"rotate":-50.9},{"duration":12,"tweenEasing":0,"rotate":-42.18},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":18,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":-5.92,"y":-0.64},{"duration":12,"tweenEasing":0,"x":2.79,"y":7.74},{"duration":15,"tweenEasing":0,"x":2.95,"y":8.38},{"duration":12,"tweenEasing":0,"x":-7.65,"y":-6.15},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":8.81},{"duration":12,"tweenEasing":0,"rotate":7.26},{"duration":15,"tweenEasing":0,"rotate":15.7},{"duration":12,"tweenEasing":0,"rotate":25.83},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":42},{"duration":6,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":42},{"duration":12,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":39},{"duration":15,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":18,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":18,"name":"Atked1","bone":[{"name":"effect6","translateFrame":[{"duration":6,"tweenEasing":0,"x":-5.03,"y":3.43},{"duration":3,"tweenEasing":0,"x":-1.32,"y":-0.45},{"duration":6,"tweenEasing":0,"x":6.49,"y":-2.74},{"duration":3,"x":9.6,"y":-12.57}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"rotate":-20.99}]},{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-9,"y":7.6},{"duration":3,"tweenEasing":0,"x":-9,"y":7.6},{"duration":3,"tweenEasing":0,"x":-20.26,"y":-2.26},{"duration":9,"tweenEasing":0,"x":-23.68,"y":-12.6},{"duration":0,"x":-48,"y":-32.6}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-12.21},{"duration":9,"rotate":-14.93}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-7.36,"y":10.88},{"duration":3,"tweenEasing":0,"x":-1.52,"y":-14.48},{"duration":6,"tweenEasing":0,"x":3.68,"y":-18.72},{"duration":3,"x":13.12,"y":-27.2}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-20.49},{"duration":6,"tweenEasing":0,"rotate":-21.44},{"duration":3,"rotate":-23.34}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":5.44,"y":1.92},{"duration":3,"tweenEasing":0,"x":-12.08,"y":-14.48},{"duration":9,"tweenEasing":0,"x":-13.46,"y":-17.74},{"duration":0,"x":-18.88,"y":-27.52}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":55.47},{"duration":9,"tweenEasing":0,"rotate":51.89},{"duration":0,"rotate":41.14}]},{"name":"leftHand","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.01,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-26.56},{"duration":9,"tweenEasing":0,"rotate":-11.41},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":6.05},{"duration":9,"tweenEasing":0,"rotate":-2.27},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.31,"y":4.6},{"duration":9,"tweenEasing":0,"x":-7.03,"y":3.4},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":22.93},{"duration":9,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.32,"y":2.11},{"duration":9,"tweenEasing":0,"x":-4.59,"y":0.88},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-15.21},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0}]},{"name":"head","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-5.95,"y":5.81},{"duration":9,"tweenEasing":0,"x":-4.61,"y":1.44},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":20.08},{"duration":9,"tweenEasing":0,"rotate":-25.26},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.05,"y":0.53},{"duration":9,"tweenEasing":0,"x":-5.11,"y":-0.59},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-17.61},{"duration":9,"tweenEasing":0,"rotate":-22.45},{"duration":0}]},{"name":"body","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-4.19,"y":2.37},{"duration":9,"tweenEasing":0,"x":0.8,"y":1.76},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-5.23},{"duration":9,"tweenEasing":0,"rotate":-13.28},{"duration":0}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.28,"y":0.24},{"duration":9,"tweenEasing":0,"x":0.64,"y":-0.08},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":6,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":13.63},{"duration":9,"tweenEasing":0,"rotate":6.92},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.44,"y":-0.72},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-6.33},{"duration":9,"tweenEasing":0,"rotate":14.55},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":-4.96,"y":5.17},{"duration":9,"tweenEasing":0,"x":-3.87,"y":1.92},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":-17.02},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":66}},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":49}},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":18,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":18,"value":-1}]}]},{"duration":78,"name":"Dying","bone":[{"name":"effect5","translateFrame":[{"duration":24,"tweenEasing":0,"x":14.4,"y":3.43},{"duration":18,"tweenEasing":0,"x":14.4,"y":3.43},{"duration":15,"tweenEasing":0,"x":6.4,"y":-10.29},{"duration":15,"tweenEasing":0,"x":8.46,"y":-23.09},{"duration":6,"x":1.14,"y":-32.46}],"rotateFrame":[{"duration":42,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":46.89},{"duration":6,"rotate":26.37}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0,"x":-3.2,"y":1.6},{"duration":15,"tweenEasing":0,"x":-3.2,"y":1.6},{"duration":18,"tweenEasing":0,"x":0.23,"y":-24.23},{"duration":18,"tweenEasing":0,"x":-8.69,"y":-39.54},{"duration":9,"x":-11.61,"y":-48.32}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":20.94},{"duration":15,"tweenEasing":0,"rotate":20.94},{"duration":18,"tweenEasing":0,"rotate":-3.4},{"duration":18,"tweenEasing":0,"rotate":-10.49},{"duration":9,"rotate":-4.63}]},{"name":"effect3","translateFrame":[{"duration":27,"tweenEasing":0,"x":-6.13,"y":22.4},{"duration":12,"tweenEasing":0,"x":-6.13,"y":22.4},{"duration":18,"tweenEasing":0,"x":-2.76,"y":-4.89},{"duration":12,"tweenEasing":0,"x":8.89,"y":-19.64},{"duration":9,"x":22.49,"y":-23.38}],"rotateFrame":[{"duration":27,"tweenEasing":0,"rotate":31.61},{"duration":12,"tweenEasing":0,"rotate":31.61},{"duration":18,"tweenEasing":0,"rotate":-12.51},{"duration":12,"tweenEasing":0,"rotate":-13.38},{"duration":9,"rotate":9.35}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0,"x":4,"y":6.13},{"duration":9,"tweenEasing":0,"x":4,"y":6.13},{"duration":9,"tweenEasing":0,"x":1.07,"y":-7.73},{"duration":15,"tweenEasing":0,"x":-13.07,"y":-20.27},{"duration":24,"x":-40.53,"y":-29.6}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":29.59},{"duration":15,"tweenEasing":0,"rotate":2.18},{"duration":24,"rotate":-22.33}]},{"name":"leftHand","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":6,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":9,"tweenEasing":0,"x":0.3,"y":-0.43},{"duration":3,"tweenEasing":0,"x":0.3,"y":-0.43},{"duration":42,"x":-0.66,"y":-0.09}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":3.01},{"duration":6,"tweenEasing":0,"rotate":3.01},{"duration":9,"tweenEasing":0,"rotate":-18.54},{"duration":3,"tweenEasing":0,"rotate":-18.54},{"duration":24,"tweenEasing":0,"rotate":6.38},{"duration":6,"tweenEasing":0,"rotate":6.38},{"duration":12,"rotate":11.01}]},{"name":"leftFrontArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.36,"y":-1.9},{"duration":6,"tweenEasing":0,"x":1.36,"y":-1.9},{"duration":9,"tweenEasing":0,"x":1.29,"y":-2.29},{"duration":3,"tweenEasing":0,"x":1.29,"y":-2.29},{"duration":15,"tweenEasing":0,"x":0.3,"y":0.3},{"duration":9,"tweenEasing":0,"x":-1.66,"y":1.87},{"duration":6,"tweenEasing":0,"x":1.28,"y":-7.25},{"duration":12,"x":0.98,"y":-8.17}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-33.88},{"duration":3,"tweenEasing":0,"rotate":-26.38},{"duration":6,"tweenEasing":0,"rotate":-26.38},{"duration":9,"tweenEasing":0,"rotate":-47.87},{"duration":3,"tweenEasing":0,"rotate":-65.3},{"duration":15,"tweenEasing":0,"rotate":46.32},{"duration":9,"tweenEasing":0,"rotate":15},{"duration":6,"tweenEasing":0,"rotate":113.18},{"duration":12,"rotate":106.03}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"leftShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":7.84,"y":0.44},{"duration":3,"tweenEasing":0,"x":7.31,"y":-0.39},{"duration":6,"tweenEasing":0,"x":7.31,"y":0.09},{"duration":9,"tweenEasing":0,"x":10.95,"y":1.85},{"duration":3,"tweenEasing":0,"x":10.69,"y":-1.88},{"duration":15,"tweenEasing":0,"x":-2.01,"y":-11.67},{"duration":9,"tweenEasing":0,"x":-9.21,"y":-16.87},{"duration":6,"tweenEasing":0,"x":-0.41,"y":38.01},{"duration":12,"tweenEasing":0,"x":-3.29,"y":34.33},{"duration":0,"x":-3.29,"y":37.53}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":13.57},{"duration":3,"tweenEasing":0,"rotate":24.2},{"duration":6,"tweenEasing":0,"rotate":16.88},{"duration":9,"tweenEasing":0,"rotate":10.9},{"duration":3,"tweenEasing":0,"rotate":16.99},{"duration":15,"tweenEasing":0,"rotate":-5.17},{"duration":9,"tweenEasing":0,"rotate":-12.82},{"duration":6,"tweenEasing":0,"rotate":-8.56},{"duration":12,"tweenEasing":0,"rotate":-2.65},{"duration":0,"rotate":-7.04}]},{"name":"leftArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":6.76,"y":-4.62},{"duration":3,"tweenEasing":0,"x":6.76,"y":-5.1},{"duration":6,"tweenEasing":0,"x":6.76,"y":-4.62},{"duration":9,"tweenEasing":0,"x":12.09,"y":-1.76},{"duration":3,"tweenEasing":0,"x":11.83,"y":-5.49},{"duration":15,"tweenEasing":0,"x":0.87,"y":-11.81},{"duration":9,"tweenEasing":0,"x":2.47,"y":-1.81},{"duration":6,"tweenEasing":0,"x":2.87,"y":28.27},{"duration":12,"tweenEasing":0,"x":1.27,"y":25.87},{"duration":0,"x":1.59,"y":27.47}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":0.58},{"duration":3,"tweenEasing":0,"rotate":4.94},{"duration":6,"tweenEasing":0,"rotate":4.94},{"duration":9,"tweenEasing":0,"rotate":10.19},{"duration":3,"tweenEasing":0,"rotate":25.77},{"duration":15,"tweenEasing":0,"rotate":-11.12},{"duration":9,"tweenEasing":0,"rotate":-2.99},{"duration":18,"rotate":-14.6}]},{"name":"head","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":8.19,"y":6.12},{"duration":3,"tweenEasing":0,"x":7.71,"y":5.8},{"duration":6,"tweenEasing":0,"x":7.71,"y":6.28},{"duration":9,"tweenEasing":0,"x":8.92,"y":10.46},{"duration":3,"tweenEasing":0,"x":9.58,"y":11.39},{"duration":15,"tweenEasing":0,"x":-2.71,"y":-14.39},{"duration":9,"tweenEasing":0,"x":-1.24,"y":-22.13},{"duration":6,"tweenEasing":0,"x":-2.2,"y":36.6},{"duration":12,"tweenEasing":0,"x":-5.08,"y":33.88},{"duration":0,"x":0.04,"y":42.84}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":29.23},{"duration":3,"tweenEasing":0,"rotate":8.49},{"duration":6,"tweenEasing":0,"rotate":13.15},{"duration":9,"tweenEasing":0,"rotate":15.69},{"duration":3,"tweenEasing":0,"rotate":15.69},{"duration":15,"tweenEasing":0,"rotate":-29.7},{"duration":9,"tweenEasing":0,"rotate":-25.43},{"duration":6,"tweenEasing":0,"rotate":-25.43},{"duration":12,"tweenEasing":0,"rotate":11.43},{"duration":0,"rotate":-13.96}]},{"name":"rightShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":6.06,"y":1.67},{"duration":3,"tweenEasing":0,"x":6.06,"y":1.19},{"duration":6,"tweenEasing":0,"x":6.06,"y":1.67},{"duration":9,"tweenEasing":0,"x":6.79,"y":3.11},{"duration":3,"tweenEasing":0,"x":6.52,"y":-1.69},{"duration":15,"tweenEasing":0,"x":-5.18,"y":-17.07},{"duration":9,"tweenEasing":0,"x":-0.38,"y":-13.87},{"duration":6,"tweenEasing":0,"x":-2.38,"y":32.61},{"duration":12,"tweenEasing":0,"x":-0.46,"y":33.73},{"duration":0,"x":-0.46,"y":38.53}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-2.21},{"duration":3,"tweenEasing":0,"rotate":-17.5},{"duration":6,"tweenEasing":0,"rotate":-5.8},{"duration":9,"tweenEasing":0,"rotate":7.6},{"duration":3,"tweenEasing":0,"rotate":-0.59},{"duration":15,"tweenEasing":0,"rotate":-0.22},{"duration":9,"tweenEasing":0,"rotate":-16.47},{"duration":6,"tweenEasing":0,"rotate":20.03},{"duration":12,"rotate":10.97}]},{"name":"body","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.18,"y":0.49},{"duration":3,"tweenEasing":0,"x":-0.34,"y":0.17},{"duration":6,"tweenEasing":0,"x":-0.34,"y":0.65},{"duration":9,"tweenEasing":0,"x":-0.18,"y":2.25},{"duration":3,"tweenEasing":0,"x":-0.44,"y":-1.48},{"duration":15,"tweenEasing":0,"x":2.36,"y":-14.52},{"duration":9,"tweenEasing":0,"x":3.29,"y":-8.39},{"duration":6,"tweenEasing":0,"x":9.96,"y":24.76},{"duration":12,"tweenEasing":0,"x":10.6,"y":19.16},{"duration":0,"x":10.92,"y":21.4}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.08},{"duration":6,"tweenEasing":0,"rotate":18.08},{"duration":9,"tweenEasing":0,"rotate":21.06},{"duration":3,"tweenEasing":0,"rotate":22.64},{"duration":15,"tweenEasing":0,"rotate":-10.59},{"duration":9,"tweenEasing":0,"rotate":-22.36},{"duration":6,"tweenEasing":0,"rotate":-49.93},{"duration":12,"tweenEasing":0,"rotate":-57.44},{"duration":0,"rotate":-66.41}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.16},{"duration":15,"tweenEasing":0},{"duration":27,"y":0.9}]},{"name":"leg","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-0.84},{"duration":9,"tweenEasing":0,"x":-0.84},{"duration":3,"tweenEasing":0,"x":-0.52,"y":-0.64},{"duration":15,"tweenEasing":0,"x":-0.52,"y":-3.84},{"duration":6,"tweenEasing":0,"x":-0.52,"y":-5.28},{"duration":21,"x":-0.52,"y":-3.52}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.25},{"duration":6,"tweenEasing":0,"x":0.95,"y":0.85},{"duration":9,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.25,"y":1.05},{"duration":15,"tweenEasing":0,"x":1.85,"y":1.05},{"duration":6,"tweenEasing":0,"x":2.15,"y":1.05},{"duration":21,"x":1.55,"y":1.05}]},{"name":"rightHand","translateFrame":[{"duration":9,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":9,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":6,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":27,"tweenEasing":0,"x":-2.24,"y":-1.59},{"duration":9,"tweenEasing":0,"x":-2.24,"y":-1.59},{"duration":18,"x":-1.03,"y":-1.63}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":11.7},{"duration":6,"tweenEasing":0,"rotate":23.26},{"duration":3,"tweenEasing":0,"rotate":-19.83},{"duration":6,"tweenEasing":0,"rotate":-19.83},{"duration":9,"tweenEasing":0,"rotate":23.75},{"duration":3,"tweenEasing":0,"rotate":20.82},{"duration":15,"tweenEasing":0,"rotate":-5.18},{"duration":9,"tweenEasing":0,"rotate":22.15},{"duration":6,"tweenEasing":0,"rotate":-22.3},{"duration":12,"tweenEasing":0,"rotate":-45.66},{"duration":0,"rotate":-37}]},{"name":"rightFrontArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":6,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":12,"tweenEasing":0,"x":-1.32,"y":-0.29},{"duration":15,"tweenEasing":0,"x":-1.32,"y":-0.29},{"duration":9,"tweenEasing":0,"x":-2.93,"y":-3.06},{"duration":6,"tweenEasing":0,"x":-6.42,"y":3.56},{"duration":12,"tweenEasing":0,"x":-5.56,"y":4.61},{"duration":0,"x":-7.53,"y":5.06}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":21.7},{"duration":6,"tweenEasing":0,"rotate":59.44},{"duration":3,"tweenEasing":0,"rotate":75.81},{"duration":6,"tweenEasing":0,"rotate":75.81},{"duration":9,"tweenEasing":0,"rotate":75.52},{"duration":3,"tweenEasing":0,"rotate":94.88},{"duration":15,"tweenEasing":0,"rotate":-2.28},{"duration":9,"tweenEasing":0,"rotate":12.05},{"duration":6,"tweenEasing":0,"rotate":12.5},{"duration":12,"tweenEasing":0,"rotate":17.33},{"duration":0,"rotate":11.94}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"rightArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":6,"tweenEasing":0,"x":7.79,"y":1.43},{"duration":3,"tweenEasing":0,"x":6.83,"y":0.79},{"duration":6,"tweenEasing":0,"x":6.83,"y":1.27},{"duration":9,"tweenEasing":0,"x":6.51,"y":2.87},{"duration":3,"tweenEasing":0,"x":6.24,"y":-0.86},{"duration":15,"tweenEasing":0,"x":-1.89,"y":-11.77},{"duration":9,"tweenEasing":0,"x":0.11,"y":0.9},{"duration":6,"tweenEasing":0,"x":-4.52,"y":42.14},{"duration":12,"tweenEasing":0,"x":-6.12,"y":39.74},{"duration":0,"x":-5.8,"y":41.34}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":-6.67},{"duration":6,"tweenEasing":0,"rotate":2.1},{"duration":3,"tweenEasing":0,"rotate":1.1},{"duration":6,"tweenEasing":0,"rotate":1.1},{"duration":9,"tweenEasing":0,"rotate":-6.84},{"duration":3,"tweenEasing":0,"rotate":-18.94},{"duration":15,"tweenEasing":0,"rotate":15.53},{"duration":9,"tweenEasing":0,"rotate":-13.72},{"duration":18,"rotate":-52.69}]},{"name":"backLight","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"y":-7.31},{"duration":9,"tweenEasing":0,"y":-12.8},{"duration":6,"tweenEasing":0,"y":-12.8},{"duration":27,"x":0.8,"y":-41.6}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.69,"y":0.5},{"duration":9,"tweenEasing":0,"x":1.56,"y":1.71},{"duration":6,"tweenEasing":0,"x":0.6,"y":2.57},{"duration":27,"x":0.11,"y":2.79}]}],"slot":[{"name":"effect5","colorFrame":[{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"leftArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"head","displayFrame":[{"duration":78,"value":1}]},{"name":"rightArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"backLight","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":27,"value":{"aM":0}}]},{"name":"effect6","displayFrame":[{"duration":78,"value":-1}]}]},{"duration":72,"playTimes":0,"name":"Atked2","bone":[{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-18.49,"y":6.76},{"duration":18,"tweenEasing":0,"x":-18.49,"y":6.76},{"duration":21,"tweenEasing":0,"x":-16,"y":-10.13},{"duration":21,"tweenEasing":0,"x":-24.71,"y":-24.36},{"duration":9,"x":-24.53,"y":-37.69}],"rotateFrame":[{"duration":3,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-28.4},{"duration":21,"tweenEasing":0,"rotate":-16.18},{"duration":9,"rotate":-31.27}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"x":-1.87,"y":10.67},{"duration":24,"tweenEasing":0,"x":-1.87,"y":10.67},{"duration":21,"tweenEasing":0,"x":3.25,"y":-16.21},{"duration":18,"tweenEasing":0,"x":0.69,"y":-29.17},{"duration":0,"x":1.17,"y":-34.61}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-39.38},{"duration":18,"rotate":-22.72}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":4,"y":-17},{"duration":24,"tweenEasing":0,"x":1,"y":-29.2},{"duration":3,"x":-0.2,"y":-39.8}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":29.43},{"duration":24,"tweenEasing":0,"rotate":65.43},{"duration":24,"tweenEasing":0,"rotate":44.46},{"duration":3,"rotate":60}]},{"name":"leftHand","rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":15.92},{"duration":24,"tweenEasing":0,"rotate":12.42},{"duration":24,"tweenEasing":0,"rotate":-2.24},{"duration":0,"rotate":15.92}]},{"name":"leftFrontArm","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.6,"y":0.39},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.06},{"duration":24,"tweenEasing":0,"rotate":26.02},{"duration":24,"tweenEasing":0,"rotate":16.87},{"duration":0,"rotate":29.06}]},{"name":"leftShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":4.11,"y":-1.6},{"duration":24,"tweenEasing":0,"x":5.47,"y":-1.28},{"duration":24,"tweenEasing":0,"x":6.08,"y":-1.98},{"duration":0,"x":4.11,"y":-1.6}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-12.27},{"duration":24,"tweenEasing":0,"rotate":-15.89},{"duration":24,"tweenEasing":0,"rotate":-12.23},{"duration":0,"rotate":-12.27}]},{"name":"leftArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":4.8,"y":0.91},{"duration":24,"tweenEasing":0,"x":4.8,"y":0.91},{"duration":24,"tweenEasing":0,"x":5.07,"y":1.29},{"duration":0,"x":4.8,"y":0.91}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-23.09},{"duration":24,"tweenEasing":0,"rotate":-31.16},{"duration":24,"tweenEasing":0,"rotate":-21.98},{"duration":0,"rotate":-23.09}]},{"name":"head","translateFrame":[{"duration":24,"tweenEasing":0,"x":4.19,"y":4.72},{"duration":24,"tweenEasing":0,"x":6.33,"y":5.71},{"duration":24,"tweenEasing":0,"x":6.14,"y":5.69},{"duration":0,"x":4.19,"y":4.72}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":27.28},{"duration":24,"tweenEasing":0,"rotate":21.12},{"duration":24,"tweenEasing":0,"rotate":18.96},{"duration":0,"rotate":27.28}]},{"name":"rightShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":3.43,"y":0.23},{"duration":24,"tweenEasing":0,"x":5.46,"y":1.26},{"duration":24,"tweenEasing":0,"x":5.41,"y":0.45},{"duration":0,"x":3.43,"y":0.23}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.3},{"duration":24,"tweenEasing":0,"rotate":9.28},{"duration":24,"tweenEasing":0,"rotate":14.42},{"duration":0,"rotate":13.3}]},{"name":"body","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":0.23,"y":0.23},{"duration":24,"tweenEasing":0,"x":0.5,"y":-0.57},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.71},{"duration":24,"tweenEasing":0,"rotate":17.86},{"duration":24,"tweenEasing":0,"rotate":16.11},{"duration":0,"rotate":13.71}]},{"name":"leg","scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":18,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":6,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":72,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":11.7},{"duration":24,"tweenEasing":0,"rotate":1.26},{"duration":24,"tweenEasing":0,"rotate":-11.03},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":72,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":1.98},{"duration":24,"tweenEasing":0,"rotate":-1.3},{"duration":24,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":1.98}]},{"name":"rightArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":6.56,"y":3.17},{"duration":24,"tweenEasing":0,"x":6.56,"y":3.17},{"duration":24,"tweenEasing":0,"x":7.09,"y":2.9},{"duration":0,"x":6.56,"y":3.17}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.2},{"duration":24,"tweenEasing":0,"rotate":11.66},{"duration":24,"tweenEasing":0,"rotate":23.61},{"duration":0,"rotate":29.2}]}],"slot":[{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":72,"value":-1}]}]},{"duration":102,"playTimes":0,"name":"Idle2","bone":[{"name":"effect6","translateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":6.4,"y":-11.2},{"duration":24,"tweenEasing":0,"x":6.4,"y":-23.8},{"duration":0,"x":14,"y":-30.2}],"rotateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-27.23},{"duration":24,"tweenEasing":0,"rotate":-17.6},{"duration":0,"rotate":-35.03}]},{"name":"effect5","translateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-10.4,"y":-18.24},{"duration":21,"tweenEasing":0,"x":-10.08,"y":-32.8},{"duration":12,"x":-12.8,"y":-39.68}],"rotateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":22.39},{"duration":21,"tweenEasing":0,"rotate":39.5},{"duration":12,"rotate":22.14}]},{"name":"effect4","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":8.8,"y":-12.2},{"duration":24,"tweenEasing":0,"x":11,"y":-27.6},{"duration":24,"x":12.2,"y":-38.6}],"rotateFrame":[{"duration":33,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-24.94},{"duration":24,"rotate":-14.84}]},{"name":"effect3","translateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":4.8,"y":-11.2},{"duration":18,"tweenEasing":0,"x":7.6,"y":-22.2},{"duration":9,"x":8.6,"y":-30.4}],"rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-17.53},{"duration":18,"tweenEasing":0,"rotate":-36.39},{"duration":9,"rotate":-23.84}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-4.53,"y":-13.33},{"duration":18,"tweenEasing":0,"x":-3.47,"y":-21.07},{"duration":33,"x":-6.13,"y":-34.93}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":20.36},{"duration":18,"tweenEasing":0,"rotate":68.81},{"duration":33,"rotate":27.88}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":18,"tweenEasing":0,"rotate":-14.11},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":18,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":6.55},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-0.86},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":9,"tweenEasing":0,"rotate":3.34},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":18,"tweenEasing":0,"rotate":-2.77},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0,"x":-2.4,"y":0.27},{"duration":9,"tweenEasing":0,"x":-0.31,"y":-0.92},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-1.27},{"duration":9,"tweenEasing":0,"x":0.01,"y":-2.2},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-1.27},{"duration":9,"tweenEasing":0,"x":0.01,"y":-2.2},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-1.27},{"duration":9,"tweenEasing":0,"x":0.01,"y":-2.2},{"duration":18,"tweenEasing":0,"x":-0.19,"y":-1.43},{"duration":0,"x":-2.4,"y":0.27}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":31.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":37.04},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":35.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":18,"tweenEasing":0,"rotate":31.61},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-2.4,"y":0.27},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-2.35},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-4.39},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-3.63},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-4.39},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-3.63},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-4.39},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-3.63},{"duration":18,"tweenEasing":0,"x":-0.53,"y":-4.55},{"duration":0,"x":-2.4,"y":0.27}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":30.08},{"duration":9,"tweenEasing":0,"rotate":22.76},{"duration":9,"tweenEasing":0,"rotate":19.34},{"duration":9,"tweenEasing":0,"rotate":25.64},{"duration":9,"tweenEasing":0,"rotate":20.36},{"duration":9,"tweenEasing":0,"rotate":26.38},{"duration":9,"tweenEasing":0,"rotate":18.94},{"duration":18,"tweenEasing":0,"rotate":22.76},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0,"x":-2.13,"y":0.27},{"duration":9,"tweenEasing":0,"x":-0.29,"y":0.61},{"duration":9,"tweenEasing":0,"x":0.57,"y":-1.49},{"duration":9,"tweenEasing":0,"x":0.67,"y":-0.35},{"duration":9,"tweenEasing":0,"x":0.57,"y":-1.49},{"duration":9,"tweenEasing":0,"x":0.67,"y":0.13},{"duration":9,"tweenEasing":0,"x":0.57,"y":-2.13},{"duration":9,"tweenEasing":0,"x":0.67,"y":0.61},{"duration":18,"tweenEasing":0,"x":0.57,"y":-2.13},{"duration":0,"x":-2.13,"y":0.27}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-4.1},{"duration":9,"tweenEasing":0,"rotate":0.06},{"duration":54,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"rotate":-4.1}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":-0.72},{"duration":9,"tweenEasing":0,"x":1.72,"y":-2.61},{"duration":9,"tweenEasing":0,"x":1.33,"y":-2},{"duration":9,"tweenEasing":0,"x":1.72,"y":-2.61},{"duration":9,"tweenEasing":0,"x":1.33,"y":-2},{"duration":9,"tweenEasing":0,"x":1.72,"y":-2.77},{"duration":9,"tweenEasing":0,"x":1.33,"y":-2},{"duration":18,"tweenEasing":0,"x":1.72,"y":-3.73},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-38.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-39.74},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-45.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":18,"tweenEasing":0,"rotate":-38.24},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":-0.32,"y":0.32},{"duration":9,"tweenEasing":0,"y":-0.99},{"duration":9,"tweenEasing":0,"y":-0.96},{"duration":9,"tweenEasing":0,"y":-1.47},{"duration":9,"tweenEasing":0,"y":-1.12},{"duration":9,"tweenEasing":0,"y":-1.95},{"duration":9,"tweenEasing":0,"y":-0.96},{"duration":18,"tweenEasing":0,"y":-2.11},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.48},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":0.41},{"duration":0,"rotate":-6.48}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":18,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.12},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.12},{"duration":30}],"scaleFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":30}]},{"name":"rightHand","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":18,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":9,"tweenEasing":0,"x":-0.33,"y":0.31},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":9,"tweenEasing":0,"x":-0.33,"y":0.31},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":9,"tweenEasing":0,"x":-0.33,"y":0.31},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":18,"tweenEasing":0,"x":-0.41,"y":0.01},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":45.22},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":46.54},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":18,"tweenEasing":0,"rotate":48.89},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":9,"tweenEasing":0,"x":1.52,"y":0.77},{"duration":9,"tweenEasing":0,"x":2.26,"y":-1.5},{"duration":9,"tweenEasing":0,"x":1.84,"y":-0.51},{"duration":9,"tweenEasing":0,"x":2.26,"y":-1.5},{"duration":9,"tweenEasing":0,"x":1.84,"y":-0.51},{"duration":9,"tweenEasing":0,"x":2.26,"y":-1.5},{"duration":9,"tweenEasing":0,"x":1.84,"y":-0.99},{"duration":18,"tweenEasing":0,"x":2.26,"y":-2.14},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":9,"tweenEasing":0,"rotate":-30.66},{"duration":9,"tweenEasing":0,"rotate":-31.48},{"duration":9,"tweenEasing":0,"rotate":-27.88},{"duration":9,"tweenEasing":0,"rotate":-34.28},{"duration":9,"tweenEasing":0,"rotate":-25.77},{"duration":9,"tweenEasing":0,"rotate":-35.22},{"duration":9,"tweenEasing":0,"rotate":-23.55},{"duration":18,"tweenEasing":0,"rotate":-31.48},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":39,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":36,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":33,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":102,"value":-1}]}]},{"duration":66,"playTimes":0,"name":"Idle1","bone":[{"name":"effect6","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":6.93,"y":-13.69},{"duration":0,"x":10.84,"y":-19.73}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"rotate":-10.38}]},{"name":"effect5","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-8,"y":-6.63},{"duration":15,"tweenEasing":0,"x":-10.06,"y":-17.83},{"duration":9,"x":-10.74,"y":-24.69}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":27.97},{"duration":15,"tweenEasing":0,"rotate":-3.77},{"duration":9,"rotate":-10.94}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":7.77,"y":-12.8},{"duration":21,"tweenEasing":0,"x":13.49,"y":-21.94},{"duration":9,"x":13.03,"y":-26.74}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":19.87},{"duration":21,"tweenEasing":0,"rotate":-1.94},{"duration":9,"rotate":-29.35}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":6.8,"y":-15.73},{"duration":18,"tweenEasing":0,"x":6.27,"y":-28.27},{"duration":0,"x":7.33,"y":-35.73}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-25.82},{"duration":18,"tweenEasing":0,"rotate":-13.32},{"duration":0,"rotate":-23.08}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-4.64,"y":-11.84},{"duration":21,"tweenEasing":0,"x":-11.68,"y":-18.88},{"duration":6,"x":-15.04,"y":-24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":35.13},{"duration":21,"tweenEasing":0,"rotate":-4.98},{"duration":6,"rotate":29.58}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.58,"y":0.86},{"duration":24,"tweenEasing":0,"x":0.58,"y":0.86},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-4.45},{"duration":24,"tweenEasing":0,"rotate":-6.58},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.06,"y":0.45},{"duration":24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-3.35},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.16,"y":-1.12},{"duration":24,"tweenEasing":0,"x":-0.16,"y":-1.12},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":13.8},{"duration":24,"tweenEasing":0,"rotate":4.52},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.2,"y":-1.99},{"duration":24,"tweenEasing":0,"x":0.36,"y":-1.83},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":16.02},{"duration":24,"tweenEasing":0,"rotate":12.08},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.32,"y":-1.37},{"duration":24,"tweenEasing":0,"y":-0.89},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.64,"y":-3.79},{"duration":24,"tweenEasing":0,"x":0.64,"y":-1.55},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-10.95},{"duration":24,"tweenEasing":0,"rotate":-8.38},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"y":-1.44},{"duration":24,"tweenEasing":0,"x":0.16,"y":-0.64},{"duration":0}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":24,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":66,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":21,"tweenEasing":0,"rotate":16.12},{"duration":24,"tweenEasing":0,"rotate":15.51},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":21,"tweenEasing":0,"x":-0.17,"y":1.03},{"duration":24,"tweenEasing":0,"x":-0.13,"y":0.26},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":21,"tweenEasing":0,"rotate":45.3},{"duration":24,"tweenEasing":0,"rotate":32.17},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":21,"tweenEasing":0,"x":1.49,"y":0.92},{"duration":24,"tweenEasing":0,"x":2.13,"y":1.4},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":21,"tweenEasing":0,"rotate":-26.33},{"duration":24,"tweenEasing":0,"rotate":-19.75},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":66,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Walking"}]}]}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta
new file mode 100644
index 0000000..7fa4279
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta
@@ -0,0 +1,6 @@
+{
+ "ver": "1.0.0",
+ "uuid": "36230012-8df3-4e85-afad-76ec47d0e4d7",
+ "dragonBonesJson": "{\"frameRate\":60,\"name\":\"SoldierFireGhost\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"SoldierFireGhost\",\"aabb\":{\"x\":-34.2,\"y\":-91.74,\"width\":77.68,\"height\":94.31},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"length\":13,\"name\":\"leftShoulder\",\"parent\":\"root\",\"transform\":{\"x\":-11.2185,\"y\":-56.7863,\"skX\":156.8918,\"skY\":156.8918}},{\"inheritScale\":false,\"name\":\"backLight\",\"parent\":\"root\",\"transform\":{\"x\":0.2,\"y\":-46.0924,\"scX\":3,\"scY\":3}},{\"inheritScale\":false,\"length\":17,\"name\":\"rightArm\",\"parent\":\"root\",\"transform\":{\"x\":13.5908,\"y\":-53.6036,\"skX\":46.9769,\"skY\":46.9769}},{\"inheritScale\":false,\"name\":\"effect4\",\"parent\":\"root\",\"transform\":{\"x\":12.64,\"y\":-42.7787,\"skX\":-9.349,\"skY\":-9.349}},{\"inheritScale\":false,\"name\":\"effect7\",\"parent\":\"root\"},{\"inheritScale\":false,\"name\":\"effect3\",\"parent\":\"root\",\"transform\":{\"x\":11.5,\"y\":-54.7347}},{\"inheritScale\":false,\"length\":17,\"name\":\"leg\",\"parent\":\"root\",\"transform\":{\"x\":-0.9105,\"y\":-2.8201,\"skX\":-85.7242,\"skY\":-85.7242}},{\"inheritScale\":false,\"length\":22,\"name\":\"body\",\"parent\":\"root\",\"transform\":{\"x\":2.0039,\"y\":-24.7902,\"skX\":-82.2714,\"skY\":-82.2714}},{\"inheritScale\":false,\"length\":12,\"name\":\"rightShoulder\",\"parent\":\"root\",\"transform\":{\"x\":18.2082,\"y\":-52.6804,\"skX\":22.0857,\"skY\":22.0857}},{\"inheritScale\":false,\"length\":11,\"name\":\"head\",\"parent\":\"root\",\"transform\":{\"x\":8.206,\"y\":-62.581,\"skX\":-83.4757,\"skY\":-83.4757}},{\"inheritScale\":false,\"length\":10,\"name\":\"leftArm\",\"parent\":\"root\",\"transform\":{\"x\":-13.0118,\"y\":-53.6185,\"skX\":122.5397,\"skY\":122.5397}},{\"inheritScale\":false,\"name\":\"effect2\",\"parent\":\"root\",\"transform\":{\"x\":-10.0286,\"y\":-56.4408,\"skX\":-79.3059,\"skY\":-79.3059}},{\"inheritScale\":false,\"name\":\"effect5\",\"parent\":\"root\",\"transform\":{\"x\":-30.0572,\"y\":-33.1972,\"skX\":-72.4737,\"skY\":-72.4737}},{\"inheritScale\":false,\"name\":\"effect6\",\"parent\":\"root\",\"transform\":{\"x\":26.5689,\"y\":-30.0747}},{\"inheritScale\":false,\"name\":\"rightFrontArm\",\"parent\":\"rightArm\",\"transform\":{\"x\":17.6467,\"y\":1.3208,\"skX\":10.7237,\"skY\":10.7237}},{\"inheritScale\":false,\"name\":\"leftFrontArm\",\"parent\":\"leftArm\",\"transform\":{\"x\":14.7447,\"y\":3.5738,\"skX\":-39.1583,\"skY\":-39.1583}},{\"inheritScale\":false,\"name\":\"rightHand\",\"parent\":\"rightFrontArm\",\"transform\":{\"x\":10.7292,\"y\":-5.7822,\"skX\":21.9835,\"skY\":21.9835}},{\"inheritScale\":false,\"name\":\"leftHand\",\"parent\":\"leftFrontArm\",\"transform\":{\"x\":14.7808,\"y\":2.8582,\"skX\":-25.7356,\"skY\":-25.7356}}],\"slot\":[{\"name\":\"backLight\",\"parent\":\"backLight\"},{\"name\":\"rightArm\",\"parent\":\"rightArm\"},{\"name\":\"leg\",\"parent\":\"leg\"},{\"name\":\"body\",\"parent\":\"body\"},{\"name\":\"rightShoulder\",\"parent\":\"rightShoulder\"},{\"name\":\"rightFrontArm\",\"parent\":\"rightFrontArm\"},{\"name\":\"rightHand\",\"parent\":\"rightHand\"},{\"name\":\"leftArm\",\"parent\":\"leftArm\"},{\"name\":\"leftShoulder\",\"parent\":\"leftShoulder\"},{\"name\":\"leftFrontArm\",\"parent\":\"leftFrontArm\"},{\"name\":\"head\",\"parent\":\"head\"},{\"name\":\"leftHand\",\"parent\":\"leftHand\"},{\"name\":\"effect2\",\"parent\":\"effect2\"},{\"name\":\"effect3\",\"parent\":\"effect3\"},{\"name\":\"effect4\",\"parent\":\"effect4\"},{\"name\":\"effect5\",\"parent\":\"effect5\"},{\"name\":\"effect6\",\"parent\":\"effect6\"},{\"displayIndex\":-1,\"name\":\"effect7\",\"parent\":\"effect7\"}],\"skin\":[{\"slot\":[{\"name\":\"body\",\"display\":[{\"name\":\"yinmo02\",\"transform\":{\"x\":12.81,\"y\":-2.38,\"skX\":82.27,\"skY\":82.27},\"path\":\"body\"}]},{\"name\":\"leftFrontArm\",\"display\":[{\"name\":\"yinmo06\",\"transform\":{\"x\":6.29,\"y\":0.98,\"skX\":-76.83,\"skY\":-76.83},\"path\":\"leftFrontArm\"}]},{\"name\":\"rightArm\",\"display\":[{\"name\":\"yinmo08\",\"transform\":{\"x\":9.07,\"y\":-0.39,\"skX\":-54.4,\"skY\":-54.4},\"path\":\"rightArm\"}]},{\"name\":\"leftArm\",\"display\":[{\"name\":\"yinmo05\",\"transform\":{\"x\":6.91,\"y\":0.09,\"skX\":-112.43,\"skY\":-112.43},\"path\":\"leftArm\"}]},{\"name\":\"effect4\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightFrontArm\",\"display\":[{\"name\":\"yinmo09\",\"transform\":{\"x\":3.74,\"y\":-1.19,\"skX\":-60.14,\"skY\":-60.14},\"path\":\"rightFrontArm\"}]},{\"name\":\"effect2\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"effect6\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"effect5\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"head\",\"display\":[{\"name\":\"yinmo01\",\"transform\":{\"x\":13.01,\"y\":-2.08,\"skX\":82.3,\"skY\":82.3,\"scX\":1.5,\"scY\":1.5},\"path\":\"head\"},{\"name\":\"head2\",\"transform\":{\"x\":13.28,\"y\":-2.44,\"skX\":83.48,\"skY\":83.48}}]},{\"name\":\"leg\",\"display\":[{\"name\":\"yinmoqe00\",\"transform\":{\"x\":10.63,\"y\":-0.15,\"skX\":85.72,\"skY\":85.72}}]},{\"name\":\"leftShoulder\",\"display\":[{\"name\":\"yinmo03\",\"transform\":{\"x\":4.79,\"y\":-0.12,\"skX\":-154.62,\"skY\":-154.62},\"path\":\"leftShoulder\"}]},{\"name\":\"backLight\",\"display\":[{\"name\":\"biu\"}]},{\"name\":\"rightHand\",\"display\":[{\"name\":\"yinmo10\",\"transform\":{\"x\":5.38,\"y\":-0.23,\"skX\":-63.84,\"skY\":-63.84},\"path\":\"rightHand\"}]},{\"name\":\"effect3\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightShoulder\",\"display\":[{\"name\":\"yinmo04\",\"transform\":{\"x\":3.42,\"y\":-0.82,\"skX\":-28.61,\"skY\":-28.61},\"path\":\"rightShoulder\"}]},{\"name\":\"leftHand\",\"display\":[{\"name\":\"yinmo07\",\"transform\":{\"x\":4.09,\"y\":-0.34,\"skX\":-66.8,\"skY\":-66.8},\"path\":\"leftHand\"}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Walking\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":44.16,\"y\":14.08},{\"duration\":12,\"tweenEasing\":0,\"x\":44.16,\"y\":14.08},{\"duration\":15,\"tweenEasing\":0,\"x\":31.04,\"y\":15.36},{\"duration\":15,\"tweenEasing\":0,\"x\":22.08,\"y\":-0.64},{\"duration\":6,\"x\":-10.24,\"y\":-23.36}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":21,\"rotate\":7.3}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":7.36,\"y\":-2.48},{\"duration\":9,\"tweenEasing\":0,\"x\":7.36,\"y\":-2.48},{\"duration\":15,\"tweenEasing\":0,\"x\":-2,\"y\":-15.76},{\"duration\":12,\"tweenEasing\":0,\"x\":-14.48,\"y\":-20.48},{\"duration\":12,\"tweenEasing\":0,\"x\":-14.64,\"y\":-36.8},{\"duration\":6,\"x\":-40.56,\"y\":-53.04}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-84.92},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-11.77},{\"duration\":6,\"rotate\":-28.57}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-14.8,\"y\":25.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-14.8,\"y\":25.6},{\"duration\":18,\"tweenEasing\":0,\"x\":-29.2,\"y\":17.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-38,\"y\":9.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-56.4,\"y\":4.4},{\"duration\":3,\"x\":-68.8,\"y\":4}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-59.23},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-36.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-66.48},{\"duration\":3,\"rotate\":-111.5}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":10.56,\"y\":11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":10.56,\"y\":11.2},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":1.6},{\"duration\":18,\"tweenEasing\":0,\"x\":-19.84,\"y\":3.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-29.76,\"y\":-6.72},{\"duration\":3,\"x\":-39.68,\"y\":-24}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-61.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.48},{\"duration\":3,\"rotate\":27.59}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.68},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.06},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":0.15,\"y\":1.19},{\"duration\":15,\"tweenEasing\":0,\"x\":0.46,\"y\":-1.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.33,\"y\":-2.07},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-4.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":23.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.54},{\"duration\":0,\"rotate\":-4.65}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":5.76},{\"duration\":15,\"tweenEasing\":0,\"x\":5.14,\"y\":1.94},{\"duration\":15,\"tweenEasing\":0,\"x\":8.29,\"y\":-0.16},{\"duration\":15,\"tweenEasing\":0,\"x\":7.36,\"y\":2.19},{\"duration\":0,\"x\":5.76}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.7},{\"duration\":0,\"rotate\":20.1}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":3.84,\"y\":-0.96},{\"duration\":15,\"tweenEasing\":0,\"x\":7.18,\"y\":1.44},{\"duration\":15,\"tweenEasing\":0,\"x\":13.26,\"y\":3.09},{\"duration\":15,\"tweenEasing\":0,\"x\":11.89,\"y\":3.87},{\"duration\":0,\"x\":3.84,\"y\":-0.96}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-35.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-70.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.69},{\"duration\":0,\"rotate\":26.91}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":5.44,\"y\":1.28},{\"duration\":15,\"tweenEasing\":0,\"x\":4.96,\"y\":4.88},{\"duration\":15,\"tweenEasing\":0,\"x\":7.29,\"y\":0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":7.59,\"y\":5.42},{\"duration\":0,\"x\":5.44,\"y\":1.28}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":0,\"rotate\":0.59}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":3.41,\"y\":1.17},{\"duration\":15,\"tweenEasing\":0,\"x\":1.71,\"y\":2.68},{\"duration\":15,\"tweenEasing\":0,\"x\":3.89,\"y\":0.18},{\"duration\":15,\"tweenEasing\":0,\"x\":5.61,\"y\":3.87},{\"duration\":0,\"x\":3.41,\"y\":1.17}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.12},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-14.23},{\"duration\":15,\"tweenEasing\":0,\"rotate\":5.57},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-13.84},{\"duration\":0,\"rotate\":10.12}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"y\":2.72},{\"duration\":15,\"tweenEasing\":0,\"x\":0.96,\"y\":-0.18},{\"duration\":15,\"tweenEasing\":0,\"x\":1.42,\"y\":3.34},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.24},{\"duration\":15,\"tweenEasing\":0,\"rotate\":13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":15,\"tweenEasing\":0,\"rotate\":14.15},{\"duration\":0,\"rotate\":11.24}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.96},{\"duration\":12,\"tweenEasing\":0,\"x\":0.64},{\"duration\":6,\"tweenEasing\":0,\"x\":0.64},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.32},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.02},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.52},{\"duration\":6}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"y\":0.9}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":60,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-1.89},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.14},{\"duration\":0,\"rotate\":-8}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.7},{\"duration\":15,\"tweenEasing\":0,\"x\":0.81,\"y\":-2.06},{\"duration\":15,\"tweenEasing\":0,\"x\":0.11,\"y\":-0.1},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":-0.1},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.08,\"y\":-2.55},{\"duration\":6,\"tweenEasing\":0,\"y\":-2.64},{\"duration\":0,\"x\":-0.19,\"y\":-1.7}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-43.73},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-66.02},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.47},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.6},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-58.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-51.28},{\"duration\":0,\"rotate\":-43.73}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":4.32,\"y\":4.08},{\"duration\":15,\"tweenEasing\":0,\"x\":4.96,\"y\":2.34},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.37,\"y\":-4.26},{\"duration\":15,\"tweenEasing\":0,\"x\":4.21,\"y\":3.38},{\"duration\":0,\"x\":4.32,\"y\":4.08}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.28},{\"duration\":15,\"tweenEasing\":0,\"rotate\":63.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":74.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":55.11},{\"duration\":0,\"rotate\":11.28}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":45},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":51},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":27,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":54},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":60},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":33,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":174,\"name\":\"Atk2\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":26.6,\"y\":-37.6},{\"duration\":12,\"tweenEasing\":0,\"x\":29.6,\"y\":-47},{\"duration\":24,\"tweenEasing\":0,\"x\":22.4,\"y\":-63.2},{\"duration\":12,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":26.6,\"y\":-37.6},{\"duration\":12,\"tweenEasing\":0,\"x\":29.6,\"y\":-47},{\"duration\":24,\"tweenEasing\":0,\"x\":22.4,\"y\":-63.2},{\"duration\":12,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":26.6,\"y\":-37.6},{\"duration\":9,\"tweenEasing\":0,\"x\":29.6,\"y\":-47},{\"duration\":3,\"x\":22.4,\"y\":-63.2}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":3,\"rotate\":61.88}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":15,\"tweenEasing\":0,\"x\":8.69,\"y\":-11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.89,\"y\":-32.46},{\"duration\":21,\"tweenEasing\":0,\"x\":5.03,\"y\":-47.77},{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":15,\"tweenEasing\":0,\"x\":8.69,\"y\":-11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.89,\"y\":-32.46},{\"duration\":21,\"tweenEasing\":0,\"x\":5.03,\"y\":-47.77},{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":12,\"tweenEasing\":0,\"x\":8.69,\"y\":-11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.89,\"y\":-32.46},{\"duration\":6,\"x\":5.03,\"y\":-47.77}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":6,\"rotate\":-53.65}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"y\":15.09},{\"duration\":15,\"tweenEasing\":0,\"y\":15.09},{\"duration\":15,\"tweenEasing\":0,\"x\":-12.57,\"y\":-18.51},{\"duration\":12,\"tweenEasing\":0,\"x\":-24.23,\"y\":-35.89},{\"duration\":18,\"tweenEasing\":0,\"x\":-37.94,\"y\":-42.74},{\"duration\":15,\"tweenEasing\":0,\"y\":15.09},{\"duration\":15,\"tweenEasing\":0,\"x\":-12.57,\"y\":-18.51},{\"duration\":12,\"tweenEasing\":0,\"x\":-24.23,\"y\":-35.89},{\"duration\":18,\"tweenEasing\":0,\"x\":-37.94,\"y\":-42.74},{\"duration\":15,\"tweenEasing\":0,\"y\":15.09},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.57,\"y\":-18.51},{\"duration\":12,\"tweenEasing\":0,\"x\":-24.23,\"y\":-35.89},{\"duration\":6,\"x\":-37.94,\"y\":-42.74}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":6,\"rotate\":-111.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":9,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":-0.46},{\"duration\":15,\"tweenEasing\":0,\"x\":-28.57,\"y\":-8.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-27.43,\"y\":-20.57},{\"duration\":15,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":-0.46},{\"duration\":15,\"tweenEasing\":0,\"x\":-28.57,\"y\":-8.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-27.43,\"y\":-20.57},{\"duration\":15,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":-0.46},{\"duration\":15,\"tweenEasing\":0,\"x\":-28.57,\"y\":-8.23},{\"duration\":9,\"x\":-27.43,\"y\":-20.57}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":9,\"rotate\":57.19}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":0.08},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.44,\"y\":0.2},{\"duration\":12,\"tweenEasing\":0,\"x\":0.12,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":0.08},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.44,\"y\":0.2},{\"duration\":12,\"tweenEasing\":0,\"x\":0.12,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":0.08},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.44,\"y\":0.2},{\"duration\":12,\"tweenEasing\":0,\"x\":0.12,\"y\":0.59},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":2.96,\"y\":-1.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.28,\"y\":0.35},{\"duration\":15,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-3},{\"duration\":12,\"tweenEasing\":0,\"x\":0.49,\"y\":-0.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":2.96,\"y\":-1.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.28,\"y\":0.35},{\"duration\":15,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-3},{\"duration\":12,\"tweenEasing\":0,\"x\":0.49,\"y\":-0.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":2.96,\"y\":-1.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.28,\"y\":0.35},{\"duration\":15,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-3},{\"duration\":12,\"tweenEasing\":0,\"x\":0.49,\"y\":-0.89},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":5.25},{\"duration\":3,\"tweenEasing\":0,\"x\":15.99,\"y\":2.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.24,\"y\":3.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.77,\"y\":-0.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.4,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":9.35,\"y\":3.21},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":5.25},{\"duration\":3,\"tweenEasing\":0,\"x\":15.99,\"y\":2.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.24,\"y\":3.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.77,\"y\":-0.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.4,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":9.35,\"y\":3.21},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":5.25},{\"duration\":3,\"tweenEasing\":0,\"x\":15.99,\"y\":2.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.24,\"y\":3.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.77,\"y\":-0.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.4,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":9.35,\"y\":3.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":8.51,\"y\":-1.26},{\"duration\":3,\"tweenEasing\":0,\"x\":15.88,\"y\":0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.36,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.81,\"y\":-1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":3.44,\"y\":2.61},{\"duration\":12,\"tweenEasing\":0,\"x\":9.85,\"y\":0.52},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":8.51,\"y\":-1.26},{\"duration\":3,\"tweenEasing\":0,\"x\":15.88,\"y\":0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.36,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.81,\"y\":-1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":3.44,\"y\":2.61},{\"duration\":12,\"tweenEasing\":0,\"x\":9.85,\"y\":0.52},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":8.51,\"y\":-1.26},{\"duration\":3,\"tweenEasing\":0,\"x\":15.88,\"y\":0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.36,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.81,\"y\":-1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":3.44,\"y\":2.61},{\"duration\":12,\"tweenEasing\":0,\"x\":9.85,\"y\":0.52},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":15}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":11.17,\"y\":11.95},{\"duration\":3,\"tweenEasing\":0,\"x\":17.87,\"y\":16.22},{\"duration\":15,\"tweenEasing\":0,\"x\":-17.67,\"y\":1.23},{\"duration\":3,\"tweenEasing\":0,\"x\":-18.56,\"y\":-2},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.49,\"y\":-0.72},{\"duration\":12,\"tweenEasing\":0,\"x\":9.18,\"y\":7.81},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":11.17,\"y\":11.95},{\"duration\":3,\"tweenEasing\":0,\"x\":17.87,\"y\":16.22},{\"duration\":15,\"tweenEasing\":0,\"x\":-17.67,\"y\":1.23},{\"duration\":3,\"tweenEasing\":0,\"x\":-18.56,\"y\":-2},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.49,\"y\":-0.72},{\"duration\":12,\"tweenEasing\":0,\"x\":9.18,\"y\":7.81},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":11.17,\"y\":11.95},{\"duration\":3,\"tweenEasing\":0,\"x\":17.87,\"y\":16.22},{\"duration\":15,\"tweenEasing\":0,\"x\":-17.67,\"y\":1.23},{\"duration\":3,\"tweenEasing\":0,\"x\":-18.56,\"y\":-2},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.49,\"y\":-0.72},{\"duration\":12,\"tweenEasing\":0,\"x\":9.18,\"y\":7.81},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":7.13,\"y\":4.46},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":7.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-22.31,\"y\":-2.2},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.91,\"y\":-5.68},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.89,\"y\":-0.87},{\"duration\":12,\"tweenEasing\":0,\"x\":6.95,\"y\":5.43},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":7.13,\"y\":4.46},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":7.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-22.31,\"y\":-2.2},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.91,\"y\":-5.68},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.89,\"y\":-0.87},{\"duration\":12,\"tweenEasing\":0,\"x\":6.95,\"y\":5.43},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":7.13,\"y\":4.46},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":7.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-22.31,\"y\":-2.2},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.91,\"y\":-5.68},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.89,\"y\":-0.87},{\"duration\":12,\"tweenEasing\":0,\"x\":6.95,\"y\":5.43},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":3.28},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":2.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.88,\"y\":-1.42},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.36,\"y\":-0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.68,\"y\":-0.7},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.23,\"y\":-0.74},{\"duration\":12,\"tweenEasing\":0,\"x\":0.1,\"y\":2.23},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":3.28},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":2.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.88,\"y\":-1.42},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.36,\"y\":-0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.68,\"y\":-0.7},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.23,\"y\":-0.74},{\"duration\":12,\"tweenEasing\":0,\"x\":0.1,\"y\":2.23},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":3.28},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":2.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.88,\"y\":-1.42},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.36,\"y\":-0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.68,\"y\":-0.7},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.23,\"y\":-0.74},{\"duration\":12,\"tweenEasing\":0,\"x\":0.1,\"y\":2.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":15}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":15}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.61,\"y\":-1.24},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.41,\"y\":-0.33},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.61,\"y\":-1.24},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.41,\"y\":-0.33},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.61,\"y\":-1.24},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.41,\"y\":-0.33},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-3.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":1.24,\"y\":-3.23},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-3.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":1.24,\"y\":-3.23},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-3.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":1.24,\"y\":-3.23},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":0,\"rotate\":21.7}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":7.03,\"y\":0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":8.46,\"y\":4.38},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.94,\"y\":-5.59},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.56,\"y\":-6.78},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.33,\"y\":-0.7},{\"duration\":12,\"tweenEasing\":0,\"x\":4.31,\"y\":3.25},{\"duration\":6,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":15,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":7.03,\"y\":0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":8.46,\"y\":4.38},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.94,\"y\":-5.59},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.56,\"y\":-6.78},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.33,\"y\":-0.7},{\"duration\":12,\"tweenEasing\":0,\"x\":4.31,\"y\":3.25},{\"duration\":6,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":15,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":7.03,\"y\":0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":8.46,\"y\":4.38},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.94,\"y\":-5.59},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.56,\"y\":-6.78},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.33,\"y\":-0.7},{\"duration\":12,\"tweenEasing\":0,\"x\":4.31,\"y\":3.25},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":0,\"rotate\":-6.67}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1},{\"duration\":156},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":159},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":9,\"value\":-1},{\"duration\":162},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":162},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]}]},{\"duration\":60,\"name\":\"Atk1\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":-18.2,\"y\":13.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-18.2,\"y\":13.4},{\"duration\":15,\"tweenEasing\":0,\"x\":-35.6,\"y\":3.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-48,\"y\":0.8},{\"duration\":9,\"x\":-61.2}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-96.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-69.9},{\"duration\":9,\"rotate\":-94.04}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-29.33,\"y\":21.33},{\"duration\":9,\"tweenEasing\":0,\"x\":-29.33,\"y\":21.33},{\"duration\":15,\"tweenEasing\":0,\"x\":-46.13,\"y\":12},{\"duration\":15,\"tweenEasing\":0,\"x\":-53.87,\"y\":18.93},{\"duration\":15,\"x\":-62.13,\"y\":14.67}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-127.09},{\"duration\":15,\"rotate\":-108.09}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-9.07,\"y\":26.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-9.07,\"y\":26.4},{\"duration\":15,\"tweenEasing\":0,\"x\":-27.2,\"y\":5.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-46.93,\"y\":-8.53},{\"duration\":18,\"x\":-54.93,\"y\":-10.93}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-26.91},{\"duration\":18,\"rotate\":-24.71}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.03,\"y\":0.14},{\"duration\":15,\"tweenEasing\":0,\"x\":0.03,\"y\":0.14},{\"duration\":12,\"tweenEasing\":0,\"x\":0.21,\"y\":0.98},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.53},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-9},{\"duration\":12,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.43,\"y\":0.09},{\"duration\":12,\"tweenEasing\":0,\"x\":0.37,\"y\":0.24},{\"duration\":15,\"tweenEasing\":0,\"x\":1.38,\"y\":-1.56},{\"duration\":12,\"tweenEasing\":0,\"x\":0.39,\"y\":0.48},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.83},{\"duration\":12,\"tweenEasing\":0,\"rotate\":25.06},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.69},{\"duration\":12,\"tweenEasing\":0,\"rotate\":12.39},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.77,\"y\":-1.21},{\"duration\":12,\"tweenEasing\":0,\"x\":16.81,\"y\":-1.49},{\"duration\":15,\"tweenEasing\":0,\"x\":16.01,\"y\":-1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":2.27,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":40},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.39},{\"duration\":15,\"tweenEasing\":0,\"rotate\":4.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":8.69},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.85,\"y\":-3.89},{\"duration\":12,\"tweenEasing\":0,\"x\":25.9,\"y\":0.2},{\"duration\":15,\"tweenEasing\":0,\"x\":24.94,\"y\":0.84},{\"duration\":12,\"tweenEasing\":0,\"x\":2.99,\"y\":-4.37},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.79},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-95.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-98.37},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.89},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.35,\"y\":0.91},{\"duration\":12,\"tweenEasing\":0,\"x\":18.7,\"y\":3.66},{\"duration\":15,\"tweenEasing\":0,\"x\":17.58,\"y\":4.46},{\"duration\":12,\"tweenEasing\":0,\"x\":2.45,\"y\":1.81},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":2.95},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.83},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.25,\"y\":-1.47},{\"duration\":12,\"tweenEasing\":0,\"x\":12.57,\"y\":4.07},{\"duration\":15,\"tweenEasing\":0,\"x\":12.25,\"y\":4.55},{\"duration\":12,\"tweenEasing\":0,\"x\":0.8,\"y\":0.69},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.02},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-27.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-15.36},{\"duration\":12,\"tweenEasing\":0,\"rotate\":3.41},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.93,\"y\":-2.03},{\"duration\":12,\"tweenEasing\":0,\"x\":2.55,\"y\":-0.18},{\"duration\":15,\"tweenEasing\":0,\"x\":2.87,\"y\":0.46},{\"duration\":12,\"tweenEasing\":0,\"y\":0.8},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.7},{\"duration\":12,\"tweenEasing\":0,\"rotate\":1.09},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":12,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":0}],\"scaleFrame\":[{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1,\"y\":1.3},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":12,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-0.39},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-0.39},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.08,\"y\":-0.33},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-34.26},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-8.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.4,\"y\":0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.68,\"y\":0.24},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.88,\"y\":0.14},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":0.51},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-41.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-50.9},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.18},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.92,\"y\":-0.64},{\"duration\":12,\"tweenEasing\":0,\"x\":2.79,\"y\":7.74},{\"duration\":15,\"tweenEasing\":0,\"x\":2.95,\"y\":8.38},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.65,\"y\":-6.15},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.81},{\"duration\":12,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.7},{\"duration\":12,\"tweenEasing\":0,\"rotate\":25.83},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":42},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":42},{\"duration\":12,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":39},{\"duration\":15,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":18,\"name\":\"Atked1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-5.03,\"y\":3.43},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.32,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0,\"x\":6.49,\"y\":-2.74},{\"duration\":3,\"x\":9.6,\"y\":-12.57}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"rotate\":-20.99}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-9,\"y\":7.6},{\"duration\":3,\"tweenEasing\":0,\"x\":-9,\"y\":7.6},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.26,\"y\":-2.26},{\"duration\":9,\"tweenEasing\":0,\"x\":-23.68,\"y\":-12.6},{\"duration\":0,\"x\":-48,\"y\":-32.6}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.21},{\"duration\":9,\"rotate\":-14.93}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-7.36,\"y\":10.88},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.52,\"y\":-14.48},{\"duration\":6,\"tweenEasing\":0,\"x\":3.68,\"y\":-18.72},{\"duration\":3,\"x\":13.12,\"y\":-27.2}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-21.44},{\"duration\":3,\"rotate\":-23.34}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":5.44,\"y\":1.92},{\"duration\":3,\"tweenEasing\":0,\"x\":-12.08,\"y\":-14.48},{\"duration\":9,\"tweenEasing\":0,\"x\":-13.46,\"y\":-17.74},{\"duration\":0,\"x\":-18.88,\"y\":-27.52}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":55.47},{\"duration\":9,\"tweenEasing\":0,\"rotate\":51.89},{\"duration\":0,\"rotate\":41.14}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.56},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-11.41},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.27},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.31,\"y\":4.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-7.03,\"y\":3.4},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.93},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.8},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.32,\"y\":2.11},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.59,\"y\":0.88},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-15.21},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.95,\"y\":5.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.61,\"y\":1.44},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.26},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.05,\"y\":0.53},{\"duration\":9,\"tweenEasing\":0,\"x\":-5.11,\"y\":-0.59},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.45},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.19,\"y\":2.37},{\"duration\":9,\"tweenEasing\":0,\"x\":0.8,\"y\":1.76},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.23},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.28,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.64,\"y\":-0.08},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.63},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.92},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.44,\"y\":-0.72},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.33},{\"duration\":9,\"tweenEasing\":0,\"rotate\":14.55},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.96,\"y\":5.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-3.87,\"y\":1.92},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.02},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":66}},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":49}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]}]},{\"duration\":78,\"name\":\"Dying\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":14.4,\"y\":3.43},{\"duration\":18,\"tweenEasing\":0,\"x\":14.4,\"y\":3.43},{\"duration\":15,\"tweenEasing\":0,\"x\":6.4,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":8.46,\"y\":-23.09},{\"duration\":6,\"x\":1.14,\"y\":-32.46}],\"rotateFrame\":[{\"duration\":42,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.89},{\"duration\":6,\"rotate\":26.37}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-3.2,\"y\":1.6},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":1.6},{\"duration\":18,\"tweenEasing\":0,\"x\":0.23,\"y\":-24.23},{\"duration\":18,\"tweenEasing\":0,\"x\":-8.69,\"y\":-39.54},{\"duration\":9,\"x\":-11.61,\"y\":-48.32}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-10.49},{\"duration\":9,\"rotate\":-4.63}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"x\":-6.13,\"y\":22.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.13,\"y\":22.4},{\"duration\":18,\"tweenEasing\":0,\"x\":-2.76,\"y\":-4.89},{\"duration\":12,\"tweenEasing\":0,\"x\":8.89,\"y\":-19.64},{\"duration\":9,\"x\":22.49,\"y\":-23.38}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-12.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-13.38},{\"duration\":9,\"rotate\":9.35}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":4,\"y\":6.13},{\"duration\":9,\"tweenEasing\":0,\"x\":4,\"y\":6.13},{\"duration\":9,\"tweenEasing\":0,\"x\":1.07,\"y\":-7.73},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.07,\"y\":-20.27},{\"duration\":24,\"x\":-40.53,\"y\":-29.6}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":29.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.18},{\"duration\":24,\"rotate\":-22.33}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":6,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":9,\"tweenEasing\":0,\"x\":0.3,\"y\":-0.43},{\"duration\":3,\"tweenEasing\":0,\"x\":0.3,\"y\":-0.43},{\"duration\":42,\"x\":-0.66,\"y\":-0.09}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":24,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":12,\"rotate\":11.01}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.36,\"y\":-1.9},{\"duration\":6,\"tweenEasing\":0,\"x\":1.36,\"y\":-1.9},{\"duration\":9,\"tweenEasing\":0,\"x\":1.29,\"y\":-2.29},{\"duration\":3,\"tweenEasing\":0,\"x\":1.29,\"y\":-2.29},{\"duration\":15,\"tweenEasing\":0,\"x\":0.3,\"y\":0.3},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.66,\"y\":1.87},{\"duration\":6,\"tweenEasing\":0,\"x\":1.28,\"y\":-7.25},{\"duration\":12,\"x\":0.98,\"y\":-8.17}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-47.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":113.18},{\"duration\":12,\"rotate\":106.03}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":7.84,\"y\":0.44},{\"duration\":3,\"tweenEasing\":0,\"x\":7.31,\"y\":-0.39},{\"duration\":6,\"tweenEasing\":0,\"x\":7.31,\"y\":0.09},{\"duration\":9,\"tweenEasing\":0,\"x\":10.95,\"y\":1.85},{\"duration\":3,\"tweenEasing\":0,\"x\":10.69,\"y\":-1.88},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.01,\"y\":-11.67},{\"duration\":9,\"tweenEasing\":0,\"x\":-9.21,\"y\":-16.87},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.41,\"y\":38.01},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.29,\"y\":34.33},{\"duration\":0,\"x\":-3.29,\"y\":37.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":16.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.99},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.56},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-2.65},{\"duration\":0,\"rotate\":-7.04}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":6.76,\"y\":-4.62},{\"duration\":3,\"tweenEasing\":0,\"x\":6.76,\"y\":-5.1},{\"duration\":6,\"tweenEasing\":0,\"x\":6.76,\"y\":-4.62},{\"duration\":9,\"tweenEasing\":0,\"x\":12.09,\"y\":-1.76},{\"duration\":3,\"tweenEasing\":0,\"x\":11.83,\"y\":-5.49},{\"duration\":15,\"tweenEasing\":0,\"x\":0.87,\"y\":-11.81},{\"duration\":9,\"tweenEasing\":0,\"x\":2.47,\"y\":-1.81},{\"duration\":6,\"tweenEasing\":0,\"x\":2.87,\"y\":28.27},{\"duration\":12,\"tweenEasing\":0,\"x\":1.27,\"y\":25.87},{\"duration\":0,\"x\":1.59,\"y\":27.47}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":0.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.77},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-11.12},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":18,\"rotate\":-14.6}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":8.19,\"y\":6.12},{\"duration\":3,\"tweenEasing\":0,\"x\":7.71,\"y\":5.8},{\"duration\":6,\"tweenEasing\":0,\"x\":7.71,\"y\":6.28},{\"duration\":9,\"tweenEasing\":0,\"x\":8.92,\"y\":10.46},{\"duration\":3,\"tweenEasing\":0,\"x\":9.58,\"y\":11.39},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.71,\"y\":-14.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.24,\"y\":-22.13},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.2,\"y\":36.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-5.08,\"y\":33.88},{\"duration\":0,\"x\":0.04,\"y\":42.84}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":29.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.15},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-29.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.43},{\"duration\":0,\"rotate\":-13.96}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":6.06,\"y\":1.67},{\"duration\":3,\"tweenEasing\":0,\"x\":6.06,\"y\":1.19},{\"duration\":6,\"tweenEasing\":0,\"x\":6.06,\"y\":1.67},{\"duration\":9,\"tweenEasing\":0,\"x\":6.79,\"y\":3.11},{\"duration\":3,\"tweenEasing\":0,\"x\":6.52,\"y\":-1.69},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.18,\"y\":-17.07},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.38,\"y\":-13.87},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.38,\"y\":32.61},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.46,\"y\":33.73},{\"duration\":0,\"x\":-0.46,\"y\":38.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-16.47},{\"duration\":6,\"tweenEasing\":0,\"rotate\":20.03},{\"duration\":12,\"rotate\":10.97}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.65},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.18,\"y\":2.25},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":-1.48},{\"duration\":15,\"tweenEasing\":0,\"x\":2.36,\"y\":-14.52},{\"duration\":9,\"tweenEasing\":0,\"x\":3.29,\"y\":-8.39},{\"duration\":6,\"tweenEasing\":0,\"x\":9.96,\"y\":24.76},{\"duration\":12,\"tweenEasing\":0,\"x\":10.6,\"y\":19.16},{\"duration\":0,\"x\":10.92,\"y\":21.4}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.59},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.36},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-49.93},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-57.44},{\"duration\":0,\"rotate\":-66.41}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.16},{\"duration\":15,\"tweenEasing\":0},{\"duration\":27,\"y\":0.9}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.84},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.52,\"y\":-0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.52,\"y\":-3.84},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.52,\"y\":-5.28},{\"duration\":21,\"x\":-0.52,\"y\":-3.52}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95,\"y\":0.85},{\"duration\":9,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.25,\"y\":1.05},{\"duration\":15,\"tweenEasing\":0,\"x\":1.85,\"y\":1.05},{\"duration\":6,\"tweenEasing\":0,\"x\":2.15,\"y\":1.05},{\"duration\":21,\"x\":1.55,\"y\":1.05}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":27,\"tweenEasing\":0,\"x\":-2.24,\"y\":-1.59},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.24,\"y\":-1.59},{\"duration\":18,\"x\":-1.03,\"y\":-1.63}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":23.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":9,\"tweenEasing\":0,\"rotate\":23.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.82},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.18},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-22.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-45.66},{\"duration\":0,\"rotate\":-37}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.32,\"y\":-0.29},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.32,\"y\":-0.29},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.93,\"y\":-3.06},{\"duration\":6,\"tweenEasing\":0,\"x\":-6.42,\"y\":3.56},{\"duration\":12,\"tweenEasing\":0,\"x\":-5.56,\"y\":4.61},{\"duration\":0,\"x\":-7.53,\"y\":5.06}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":59.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":9,\"tweenEasing\":0,\"rotate\":75.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":94.88},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.33},{\"duration\":0,\"rotate\":11.94}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":6,\"tweenEasing\":0,\"x\":7.79,\"y\":1.43},{\"duration\":3,\"tweenEasing\":0,\"x\":6.83,\"y\":0.79},{\"duration\":6,\"tweenEasing\":0,\"x\":6.83,\"y\":1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":6.51,\"y\":2.87},{\"duration\":3,\"tweenEasing\":0,\"x\":6.24,\"y\":-0.86},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.89,\"y\":-11.77},{\"duration\":9,\"tweenEasing\":0,\"x\":0.11,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":-4.52,\"y\":42.14},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.12,\"y\":39.74},{\"duration\":0,\"x\":-5.8,\"y\":41.34}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.72},{\"duration\":18,\"rotate\":-52.69}]},{\"name\":\"backLight\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"y\":-7.31},{\"duration\":9,\"tweenEasing\":0,\"y\":-12.8},{\"duration\":6,\"tweenEasing\":0,\"y\":-12.8},{\"duration\":27,\"x\":0.8,\"y\":-41.6}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.69,\"y\":0.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":1.71},{\"duration\":6,\"tweenEasing\":0,\"x\":0.6,\"y\":2.57},{\"duration\":27,\"x\":0.11,\"y\":2.79}]}],\"slot\":[{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"leftArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"head\",\"displayFrame\":[{\"duration\":78,\"value\":1}]},{\"name\":\"rightArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"backLight\",\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":27,\"value\":{\"aM\":0}}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":78,\"value\":-1}]}]},{\"duration\":72,\"playTimes\":0,\"name\":\"Atked2\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-18.49,\"y\":6.76},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.49,\"y\":6.76},{\"duration\":21,\"tweenEasing\":0,\"x\":-16,\"y\":-10.13},{\"duration\":21,\"tweenEasing\":0,\"x\":-24.71,\"y\":-24.36},{\"duration\":9,\"x\":-24.53,\"y\":-37.69}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-28.4},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-16.18},{\"duration\":9,\"rotate\":-31.27}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-1.87,\"y\":10.67},{\"duration\":24,\"tweenEasing\":0,\"x\":-1.87,\"y\":10.67},{\"duration\":21,\"tweenEasing\":0,\"x\":3.25,\"y\":-16.21},{\"duration\":18,\"tweenEasing\":0,\"x\":0.69,\"y\":-29.17},{\"duration\":0,\"x\":1.17,\"y\":-34.61}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-39.38},{\"duration\":18,\"rotate\":-22.72}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":4,\"y\":-17},{\"duration\":24,\"tweenEasing\":0,\"x\":1,\"y\":-29.2},{\"duration\":3,\"x\":-0.2,\"y\":-39.8}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":65.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":44.46},{\"duration\":3,\"rotate\":60}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.92},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.42},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-2.24},{\"duration\":0,\"rotate\":15.92}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.6,\"y\":0.39},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.06},{\"duration\":24,\"tweenEasing\":0,\"rotate\":26.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.87},{\"duration\":0,\"rotate\":29.06}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":4.11,\"y\":-1.6},{\"duration\":24,\"tweenEasing\":0,\"x\":5.47,\"y\":-1.28},{\"duration\":24,\"tweenEasing\":0,\"x\":6.08,\"y\":-1.98},{\"duration\":0,\"x\":4.11,\"y\":-1.6}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.27},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-15.89},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.23},{\"duration\":0,\"rotate\":-12.27}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":4.8,\"y\":0.91},{\"duration\":24,\"tweenEasing\":0,\"x\":4.8,\"y\":0.91},{\"duration\":24,\"tweenEasing\":0,\"x\":5.07,\"y\":1.29},{\"duration\":0,\"x\":4.8,\"y\":0.91}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-23.09},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-31.16},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-21.98},{\"duration\":0,\"rotate\":-23.09}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":4.19,\"y\":4.72},{\"duration\":24,\"tweenEasing\":0,\"x\":6.33,\"y\":5.71},{\"duration\":24,\"tweenEasing\":0,\"x\":6.14,\"y\":5.69},{\"duration\":0,\"x\":4.19,\"y\":4.72}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":21.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":0,\"rotate\":27.28}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":3.43,\"y\":0.23},{\"duration\":24,\"tweenEasing\":0,\"x\":5.46,\"y\":1.26},{\"duration\":24,\"tweenEasing\":0,\"x\":5.41,\"y\":0.45},{\"duration\":0,\"x\":3.43,\"y\":0.23}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":9.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":14.42},{\"duration\":0,\"rotate\":13.3}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":0.23,\"y\":0.23},{\"duration\":24,\"tweenEasing\":0,\"x\":0.5,\"y\":-0.57},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.71},{\"duration\":24,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.11},{\"duration\":0,\"rotate\":13.71}]},{\"name\":\"leg\",\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":18,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":72,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-11.03},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":72,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-1.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":1.98}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":6.56,\"y\":3.17},{\"duration\":24,\"tweenEasing\":0,\"x\":6.56,\"y\":3.17},{\"duration\":24,\"tweenEasing\":0,\"x\":7.09,\"y\":2.9},{\"duration\":0,\"x\":6.56,\"y\":3.17}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.2},{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.66},{\"duration\":24,\"tweenEasing\":0,\"rotate\":23.61},{\"duration\":0,\"rotate\":29.2}]}],\"slot\":[{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]}]},{\"duration\":102,\"playTimes\":0,\"name\":\"Idle2\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":6.4,\"y\":-11.2},{\"duration\":24,\"tweenEasing\":0,\"x\":6.4,\"y\":-23.8},{\"duration\":0,\"x\":14,\"y\":-30.2}],\"rotateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-27.23},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-17.6},{\"duration\":0,\"rotate\":-35.03}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-10.4,\"y\":-18.24},{\"duration\":21,\"tweenEasing\":0,\"x\":-10.08,\"y\":-32.8},{\"duration\":12,\"x\":-12.8,\"y\":-39.68}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":22.39},{\"duration\":21,\"tweenEasing\":0,\"rotate\":39.5},{\"duration\":12,\"rotate\":22.14}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":8.8,\"y\":-12.2},{\"duration\":24,\"tweenEasing\":0,\"x\":11,\"y\":-27.6},{\"duration\":24,\"x\":12.2,\"y\":-38.6}],\"rotateFrame\":[{\"duration\":33,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-24.94},{\"duration\":24,\"rotate\":-14.84}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":4.8,\"y\":-11.2},{\"duration\":18,\"tweenEasing\":0,\"x\":7.6,\"y\":-22.2},{\"duration\":9,\"x\":8.6,\"y\":-30.4}],\"rotateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-17.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-36.39},{\"duration\":9,\"rotate\":-23.84}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.53,\"y\":-13.33},{\"duration\":18,\"tweenEasing\":0,\"x\":-3.47,\"y\":-21.07},{\"duration\":33,\"x\":-6.13,\"y\":-34.93}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":18,\"tweenEasing\":0,\"rotate\":68.81},{\"duration\":33,\"rotate\":27.88}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.55},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.86},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":3.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-2.4,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.31,\"y\":-0.92},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-2.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-2.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-2.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.43},{\"duration\":0,\"x\":-2.4,\"y\":0.27}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":37.04},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":35.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":18,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-2.4,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.35},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-3.63},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-3.63},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-3.63},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.55},{\"duration\":0,\"x\":-2.4,\"y\":0.27}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":9,\"tweenEasing\":0,\"rotate\":19.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":25.64},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-2.13,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.29,\"y\":0.61},{\"duration\":9,\"tweenEasing\":0,\"x\":0.57,\"y\":-1.49},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-0.35},{\"duration\":9,\"tweenEasing\":0,\"x\":0.57,\"y\":-1.49},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":0.13},{\"duration\":9,\"tweenEasing\":0,\"x\":0.57,\"y\":-2.13},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":0.61},{\"duration\":18,\"tweenEasing\":0,\"x\":0.57,\"y\":-2.13},{\"duration\":0,\"x\":-2.13,\"y\":0.27}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.06},{\"duration\":54,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"rotate\":-4.1}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":-0.72},{\"duration\":9,\"tweenEasing\":0,\"x\":1.72,\"y\":-2.61},{\"duration\":9,\"tweenEasing\":0,\"x\":1.33,\"y\":-2},{\"duration\":9,\"tweenEasing\":0,\"x\":1.72,\"y\":-2.61},{\"duration\":9,\"tweenEasing\":0,\"x\":1.33,\"y\":-2},{\"duration\":9,\"tweenEasing\":0,\"x\":1.72,\"y\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"x\":1.33,\"y\":-2},{\"duration\":18,\"tweenEasing\":0,\"x\":1.72,\"y\":-3.73},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-39.74},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-45.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.32,\"y\":0.32},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.99},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.96},{\"duration\":9,\"tweenEasing\":0,\"y\":-1.47},{\"duration\":9,\"tweenEasing\":0,\"y\":-1.12},{\"duration\":9,\"tweenEasing\":0,\"y\":-1.95},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.96},{\"duration\":18,\"tweenEasing\":0,\"y\":-2.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":0,\"rotate\":-6.48}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":18,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.12},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.12},{\"duration\":30}],\"scaleFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":30}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":18,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.33,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.33,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.33,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.41,\"y\":0.01},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":45.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":46.54},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":9,\"tweenEasing\":0,\"x\":1.52,\"y\":0.77},{\"duration\":9,\"tweenEasing\":0,\"x\":2.26,\"y\":-1.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.51},{\"duration\":9,\"tweenEasing\":0,\"x\":2.26,\"y\":-1.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.51},{\"duration\":9,\"tweenEasing\":0,\"x\":2.26,\"y\":-1.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.99},{\"duration\":18,\"tweenEasing\":0,\"x\":2.26,\"y\":-2.14},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.66},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-27.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-34.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-35.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-23.55},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":39,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":33,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":102,\"value\":-1}]}]},{\"duration\":66,\"playTimes\":0,\"name\":\"Idle1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":6.93,\"y\":-13.69},{\"duration\":0,\"x\":10.84,\"y\":-19.73}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"rotate\":-10.38}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-8,\"y\":-6.63},{\"duration\":15,\"tweenEasing\":0,\"x\":-10.06,\"y\":-17.83},{\"duration\":9,\"x\":-10.74,\"y\":-24.69}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":27.97},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-3.77},{\"duration\":9,\"rotate\":-10.94}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":7.77,\"y\":-12.8},{\"duration\":21,\"tweenEasing\":0,\"x\":13.49,\"y\":-21.94},{\"duration\":9,\"x\":13.03,\"y\":-26.74}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":19.87},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-1.94},{\"duration\":9,\"rotate\":-29.35}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":6.8,\"y\":-15.73},{\"duration\":18,\"tweenEasing\":0,\"x\":6.27,\"y\":-28.27},{\"duration\":0,\"x\":7.33,\"y\":-35.73}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-25.82},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-13.32},{\"duration\":0,\"rotate\":-23.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-4.64,\"y\":-11.84},{\"duration\":21,\"tweenEasing\":0,\"x\":-11.68,\"y\":-18.88},{\"duration\":6,\"x\":-15.04,\"y\":-24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":35.13},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.98},{\"duration\":6,\"rotate\":29.58}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.58,\"y\":0.86},{\"duration\":24,\"tweenEasing\":0,\"x\":0.58,\"y\":0.86},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.45},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-6.58},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.06,\"y\":0.45},{\"duration\":24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-3.35},{\"duration\":24,\"tweenEasing\":0,\"rotate\":7.11},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.16,\"y\":-1.12},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.16,\"y\":-1.12},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":13.8},{\"duration\":24,\"tweenEasing\":0,\"rotate\":4.52},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.2,\"y\":-1.99},{\"duration\":24,\"tweenEasing\":0,\"x\":0.36,\"y\":-1.83},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.08},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.32,\"y\":-1.37},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.89},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.64,\"y\":-3.79},{\"duration\":24,\"tweenEasing\":0,\"x\":0.64,\"y\":-1.55},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-10.95},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-8.38},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"y\":-1.44},{\"duration\":24,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.64},{\"duration\":0}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":66,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.51},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.17,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.26},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":32.17},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":21,\"tweenEasing\":0,\"x\":1.49,\"y\":0.92},{\"duration\":24,\"tweenEasing\":0,\"x\":2.13,\"y\":1.4},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-26.33},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-19.75},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Walking\"}]}]}",
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json
new file mode 100644
index 0000000..86bffe5
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json
@@ -0,0 +1 @@
+{"width":128,"SubTexture":[{"frameWidth":23,"y":44,"frameHeight":22,"width":22,"frameX":-1,"height":22,"name":"biu","frameY":0,"x":53},{"width":9,"y":68,"height":14,"name":"rightArm","x":76},{"frameWidth":29,"y":35,"frameHeight":32,"width":26,"frameX":-1,"height":32,"name":"yinmoqe00","frameY":0,"x":89},{"width":34,"y":1,"height":41,"name":"body","x":53},{"width":9,"y":44,"height":13,"name":"rightShoulder","x":77},{"width":19,"y":50,"height":18,"name":"rightFrontArm","x":23},{"width":14,"y":70,"height":14,"name":"rightHand","x":23},{"width":12,"y":68,"height":12,"name":"leftArm","x":62},{"width":13,"y":73,"height":12,"name":"leftShoulder","x":1},{"width":20,"y":50,"height":21,"name":"leftFrontArm","x":1},{"width":33,"y":1,"height":32,"name":"head","x":89},{"width":50,"y":1,"height":47,"name":"head2","x":1},{"width":16,"y":68,"height":14,"name":"leftHand","x":44},{"frameWidth":8,"y":59,"frameHeight":8,"width":4,"frameX":-1,"height":4,"name":"huomiao01","frameY":-2,"x":77}],"height":128,"name":"SoldierFireGhost","imagePath":"SoldierFireGhost_tex.png"}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta
new file mode 100644
index 0000000..465cb42
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta
@@ -0,0 +1,7 @@
+{
+ "ver": "1.0.0",
+ "uuid": "4a9187d5-a9ad-4464-a03c-d2f3cc277051",
+ "atlasJson": "{\"width\":128,\"SubTexture\":[{\"frameWidth\":23,\"y\":44,\"frameHeight\":22,\"width\":22,\"frameX\":-1,\"height\":22,\"name\":\"biu\",\"frameY\":0,\"x\":53},{\"width\":9,\"y\":68,\"height\":14,\"name\":\"rightArm\",\"x\":76},{\"frameWidth\":29,\"y\":35,\"frameHeight\":32,\"width\":26,\"frameX\":-1,\"height\":32,\"name\":\"yinmoqe00\",\"frameY\":0,\"x\":89},{\"width\":34,\"y\":1,\"height\":41,\"name\":\"body\",\"x\":53},{\"width\":9,\"y\":44,\"height\":13,\"name\":\"rightShoulder\",\"x\":77},{\"width\":19,\"y\":50,\"height\":18,\"name\":\"rightFrontArm\",\"x\":23},{\"width\":14,\"y\":70,\"height\":14,\"name\":\"rightHand\",\"x\":23},{\"width\":12,\"y\":68,\"height\":12,\"name\":\"leftArm\",\"x\":62},{\"width\":13,\"y\":73,\"height\":12,\"name\":\"leftShoulder\",\"x\":1},{\"width\":20,\"y\":50,\"height\":21,\"name\":\"leftFrontArm\",\"x\":1},{\"width\":33,\"y\":1,\"height\":32,\"name\":\"head\",\"x\":89},{\"width\":50,\"y\":1,\"height\":47,\"name\":\"head2\",\"x\":1},{\"width\":16,\"y\":68,\"height\":14,\"name\":\"leftHand\",\"x\":44},{\"frameWidth\":8,\"y\":59,\"frameHeight\":8,\"width\":4,\"frameX\":-1,\"height\":4,\"name\":\"huomiao01\",\"frameY\":-2,\"x\":77}],\"height\":128,\"name\":\"SoldierFireGhost\",\"imagePath\":\"SoldierFireGhost_tex.png\"}",
+ "texture": "700d963b-2192-4219-a066-8be5b3db7453",
+ "subMetas": {}
+}
\ No newline at end of file
diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png
new file mode 100644
index 0000000..962fd0e
Binary files /dev/null and b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png differ
diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png.meta
new file mode 100644
index 0000000..362b035
--- /dev/null
+++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png.meta
@@ -0,0 +1,34 @@
+{
+ "ver": "2.3.3",
+ "uuid": "700d963b-2192-4219-a066-8be5b3db7453",
+ "type": "sprite",
+ "wrapMode": "clamp",
+ "filterMode": "bilinear",
+ "premultiplyAlpha": false,
+ "genMipmaps": false,
+ "packable": true,
+ "platformSettings": {},
+ "subMetas": {
+ "SoldierFireGhost_tex": {
+ "ver": "1.0.4",
+ "uuid": "8ef8a6b3-0bac-4cf1-bba0-ab090f4d9e52",
+ "rawTextureUuid": "700d963b-2192-4219-a066-8be5b3db7453",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": -2.5,
+ "offsetY": 21,
+ "trimX": 1,
+ "trimY": 1,
+ "width": 121,
+ "height": 84,
+ "rawWidth": 128,
+ "rawHeight": 128,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "subMetas": {}
+ }
+ }
+}
\ No newline at end of file
diff --git a/frontend/assets/resources/map/dungeon/map.tmx b/frontend/assets/resources/map/dungeon/map.tmx
index a2856de..3f6bc43 100644
--- a/frontend/assets/resources/map/dungeon/map.tmx
+++ b/frontend/assets/resources/map/dungeon/map.tmx
@@ -1,5 +1,5 @@
-