Blame view

res/spine/pet_agu.json 48.9 KB
97b4ab5d   suhongyang   auto package
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
  {
  "skeleton": { "hash": "YtzhLVZ9jI5Bmd3hq8l89yQpwBw", "spine": "3.4.02", "width": 81.96, "height": 53.41 },
  "bones": [
  	{ "name": "root", "scaleX": 0.55, "scaleY": 0.55 },
  	{ "name": "agu_0003_mogudunzi", "parent": "root", "length": 28.48, "rotation": 88.23, "x": 1.44, "y": 0.58 },
  	{ "name": "agu_0000_moguyan", "parent": "agu_0003_mogudunzi", "x": 19.08, "y": -3.32 },
  	{ "name": "agu_0002_mogumaozi", "parent": "agu_0003_mogudunzi", "x": 80.41, "y": -1.37 },
  	{ "name": "agu_0001_mizhijiegou", "parent": "agu_0002_mogumaozi", "x": -10.55, "y": 0.66 },
  	{ "name": "agu_0002_mogumaozi2", "parent": "agu_0002_mogumaozi", "length": 14, "rotation": 124.86, "x": -19.48, "y": 26.88 },
  	{ "name": "agu_0002_mogumaozi3", "parent": "agu_0002_mogumaozi", "length": 13.01, "rotation": -128.83, "x": -13.41, "y": -20.96 },
  	{ "name": "bone", "parent": "agu_0002_mogumaozi2", "length": 15.94, "rotation": -5.99, "x": 19.58, "y": -1.17 },
  	{ "name": "bone2", "parent": "bone", "length": 15.88, "rotation": 9.17, "x": 19.11, "y": 0.72 },
  	{ "name": "bone3", "parent": "agu_0002_mogumaozi3", "length": 19.33, "rotation": 19.18, "x": 13.55, "y": 0.45 },
  	{ "name": "bone4", "parent": "bone3", "length": 14.62, "rotation": 1.66, "x": 20.12, "y": -0.07 }
  ],
  "slots": [
  	{ "name": "agu_0003_mogudunzi", "bone": "agu_0003_mogudunzi", "attachment": "agu_0003_mogudunzi" },
  	{ "name": "agu_0000_moguyan", "bone": "agu_0000_moguyan", "attachment": "agu_0000_moguyan" },
  	{ "name": "agu_0002_mogumaozi", "bone": "agu_0002_mogumaozi3", "attachment": "agu_0002_mogumaozi" },
  	{ "name": "agu_0001_mizhijiegou", "bone": "agu_0001_mizhijiegou", "attachment": "agu_0001_mizhijiegou" }
  ],
  "skins": {
  	"default": {
  		"agu_0000_moguyan": {
  			"agu_0000_moguyan": { "x": 5, "y": 3.21, "rotation": -88.23, "width": 45, "height": 13 }
  		},
  		"agu_0001_mizhijiegou": {
  			"agu_0001_mizhijiegou": { "x": 12.07, "y": 4.93, "rotation": -88.23, "width": 66, "height": 27 }
  		},
  		"agu_0002_mogumaozi": {
  			"agu_0002_mogumaozi": {
  				"type": "mesh",
  				"uvs": [ 0.53635, 0.01418, 0.4179, 0.10404, 0.28996, 0.31584, 0.16203, 0.47629, 0.0341, 0.57256, 0, 0.68167, 0, 0.82287, 0.11228, 0.98333, 0.25917, 1, 0.39184, 0.98975, 0.53398, 0.91915, 0.6477, 0.89989, 0.78037, 0.90631, 0.92963, 0.82929, 0.99833, 0.63033, 0.99359, 0.40569, 0.93437, 0.40569, 0.80643, 0.35435, 0.74721, 0.23882, 0.64296, 0.00135, 0.12412, 0.83571, 0.14308, 0.69451, 0.26627, 0.87422, 0.27338, 0.71377, 0.3871, 0.84855, 0.51977, 0.80362, 0.63586, 0.76511, 0.76853, 0.77153, 0.88225, 0.70735, 0.91541, 0.52764, 0.81828, 0.55973, 0.74247, 0.59824, 0.64533, 0.59824, 0.51029, 0.656, 0.3871, 0.67526, 0.52925, 0.18747, 0.4179, 0.3736, 0.30892, 0.55331, 0.50555, 0.49555, 0.63112, 0.43136, 0.71167, 0.39927, 0.61927, 0.21315 ],
  				"triangles": [ 27, 28, 13, 13, 28, 14, 28, 29, 14, 14, 29, 15, 29, 16, 15, 28, 30, 29, 29, 17, 16, 11, 27, 12, 12, 27, 13, 11, 26, 27, 27, 26, 31, 27, 31, 28, 31, 30, 28, 31, 40, 30, 40, 17, 30, 30, 17, 29, 25, 26, 11, 26, 32, 31, 26, 33, 32, 38, 39, 32, 32, 39, 31, 39, 40, 31, 39, 36, 41, 39, 41, 40, 40, 18, 17, 40, 41, 18, 41, 19, 18, 41, 35, 19, 19, 35, 0, 8, 7, 22, 7, 20, 22, 7, 6, 20, 22, 20, 23, 20, 21, 23, 20, 6, 21, 6, 5, 21, 5, 4, 21, 23, 21, 37, 21, 4, 3, 8, 22, 9, 22, 23, 24, 21, 3, 37, 22, 24, 9, 9, 24, 10, 24, 25, 10, 10, 25, 11, 23, 34, 24, 24, 34, 25, 34, 33, 25, 25, 33, 26, 34, 23, 37, 33, 34, 38, 34, 37, 38, 33, 38, 32, 3, 2, 37, 37, 36, 38, 37, 2, 36, 41, 36, 35, 36, 39, 38, 35, 36, 1, 36, 2, 1, 35, 1, 0 ],
  				"vertices": [ 2, 5, -30.05, 0.09, 0.41325, 6, -25.23, -5.81, 0.58674, 2, 5, -12.62, -5.58, 0.84078, 6, -35.41, -21.05, 0.15921, 1, 5, 9.68999, -6.46, 1, 1, 7, 11.69, -7.33, 1, 3, 5, 49.24, -15.86, 0, 7, 31.03, -11.5, 0.00435, 8, 9.81, -13.97, 0.99564, 2, 5, 58.95, -10.45, 0, 8, 19.79999, -9.12, 0.99999, 2, 5, 61.11, -7.22, 0, 8, 22.13, -6.01, 0.99999, 3, 7, 31.22, 13.9, 0.01135, 8, 14.04, 11.08, 0.98864, 10, -100.05, -62.92, 0, 6, 5, 34.38, 22.3, 0.21293, 7, 12.27, 24.89, 0.46608, 8, -2.9, 24.94, 0.31224, 6, -21.3, -73.86, 0.00782, 9, -57.35, -58.73, 8.9E-4, 10, -79.14, -56.38, 0, 6, 5, 17.62, 32.79, 0.6354, 7, -5.49, 33.58, 0.22808, 8, -19.06, 36.34999, 0.03237, 6, -6.66, -60.57, 0.08694, 9, -39.15, -50.99, 0.0172, 10, -60.73, -49.18, 0, 5, 5, -2.15, 41.31, 0.55275, 7, -26.05, 39.99, 0.03145, 6, 6.89, -43.83, 0.30651, 9, -20.85, -39.64, 0.10926, 10, -42.1, -38.36, 0, 6, 5, -16.83, 49.83, 0.25938, 7, -41.54, 46.92, 0.00141, 8, -52.52, 55.27, 0, 6, 19.06, -32, 0.38678, 9, -5.46, -32.47, 0.35197, 10, -26.51, -31.64, 4.3E-4, 5, 5, -33.09, 61.09, 0.04964, 8, -68.12, 67.42, 0, 6, 34.3, -19.41, 0.13491, 9, 13.06, -25.58, 0.70736, 10, -7.79, -25.3, 0.10807, 3, 8, -88.46, 77.37, 0, 9, 32.22, -13.52, 0.21265, 10, 11.7, -13.8, 0.78734, 1, 10, 17.64, -0.04, 1, 1, 10, 12.8, 11.34, 1, 2, 9, 24.37, 8.42, 0.09725, 10, 4.48999, 8.35999, 0.90274, 2, 6, 17.49, 6.16, 0.06045, 9, 5.59, 4.09, 0.93954, 3, 6, 6.66, 5.23999, 0.94999, 9, -4.92999, 6.78, 0.05, 10, -24.84, 7.58, 0, 2, 5, -43.66, 8.32, 0.11706, 6, -13.63, 5.05, 0.88293, 2, 8, 7.76, 5.64, 1, 10, -101.13, -54.68, 0, 1, 8, 0.84, 1.12, 1, 6, 5, 29.66, 17.12999, 0.22395, 7, 8.10999, 19.26, 0.51604, 8, -7.9, 20.04999, 0.25108, 6, -25, -67.92, 0.00795, 9, -58.88, -51.91, 9.3E-4, 10, -80.48, -49.52, 0, 6, 5, 23.88, 10.37, 0.3115, 7, 3.07, 11.93, 0.63607, 8, -14.04, 13.62, 0.04515, 6, -29.94, -60.53, 0.00646, 9, -61.12, -43.3, 8.0E-4, 10, -82.47, -40.84999, 0, 6, 5, 13.9, 25.94, 0.6683, 7, -8.47, 26.37, 0.21984, 8, -23.15, 29.72, 0.02661, 6, -12.25, -55.13, 0.07233, 9, -42.64, -44.02, 0.0129, 10, -64.01999, -42.1, 0, 5, 5, -3.91, 34.84999, 0.54606, 7, -27.12, 33.37, 0.02687, 6, 1.14, -40.39, 0.31801, 9, -25.14, -34.5, 0.10905, 10, -46.24, -33.09999, 0, 5, 5, -19.48, 42.68, 0.2982, 7, -43.42, 39.54, 0.00209, 8, -55.56, 48.29, 0, 6, 12.9, -27.52, 0.44533, 9, -9.81, -26.21, 0.25436, 5, 5, -35.73, 53.94, 0.06341, 8, -71.16, 60.43, 0, 6, 28.14, -14.93, 0.18267, 9, 8.71, -19.33, 0.69196, 10, -11.96, -18.92, 0.06194, 4, 5, -51.79, 60.4, 6.9E-4, 8, -86.83, 67.76999, 0, 9, 23.2, -9.85, 0.30425, 10, 2.79, -9.87, 0.69504, 1, 10, 4.1, 1.09, 1, 5, 5, -48.36, 48.36, 0.00334, 8, -84.08, 55.56, 0, 6, 26.18, -1.26, 0.00378, 9, 11.36, -5.78, 0.94488, 10, -8.91, -5.45, 0.04798, 5, 5, -37.79, 43.86, 0.04656, 8, -73.76999, 50.47, 0, 6, 18.99, -10.22, 0.35429, 9, 1.62, -11.87, 0.59797, 10, -18.83, -11.26, 0.00116, 5, 5, -25.74, 35.83, 0.20823, 7, -48.94, 32.07, 1.2E-4, 8, -62.19, 41.79, 0, 6, 8, -19.64, 0.52723, 9, -11.85, -17.15, 0.26439, 5, 5, -7.24, 27.31, 0.6085, 7, -29.65, 25.53, 0.01582, 6, -5.19999, -35.14, 0.32115, 9, -29.42, -27.46, 0.0545, 10, -50.32, -25.94, 0, 6, 5, 8.60999, 18.01, 0.79916, 7, -12.9, 17.94, 0.0913, 8, -28.87, 22.09, 0.0037, 6, -18.45, -47.89, 0.09231, 9, -46.12, -35.15, 0.01351, 10, -67.24, -33.13, 0, 4, 5, -23.88, 7.44, 0.5016, 6, -19.83, -13.74, 0.49595, 9, -36.2, -2.44, 0.00243, 10, -56.37, -0.73, 0, 5, 5, -4.4, 6.75, 0.84652, 7, -24.68, 5.38, 1.8E-4, 6, -25.76, -32.31, 0.14959, 9, -47.9, -18.02, 0.00369, 10, -68.51999, -15.97, 0, 6, 5, 14.58, 5.97, 0.73287, 7, -5.71, 6.58, 0.25023, 8, -23.58, 9.74, 0.00719, 6, -31.66, -50.38, 0.00858, 9, -59.41, -33.15, 0.0011, 10, -80.47, -30.76, 0, 5, 5, -11.55, 19.58, 0.62004, 7, -33.12, 17.39, 0.00515, 6, -11.48, -28.9, 0.34233, 9, -33.3, -19.5, 0.03247, 10, -53.96, -17.87, 0, 5, 5, -29.07, 27.02, 0.21779, 8, -66.01, 33.18, 0, 6, 0.42, -14.05, 0.71077, 9, -17.17, -9.38, 0.07143, 10, -37.55, -8.22, 0, 4, 5, -40.04, 32.21, 0.05839, 8, -76.67, 38.97, 0, 6, 8.38, -4.9, 0.79129, 9, -6.64, -3.36, 0.1503, 3, 5, -34.25999, 16.04999, 0.17898, 6, -8.72, -6.08, 0.82048, 9, -23.19, 1.14, 5.3E-4 ],
  				"hull": 20
  			}
  		},
  		"agu_0003_mogudunzi": {
  			"agu_0003_mogudunzi": {
  				"type": "mesh",
  				"uvs": [ 0.42134, 0.03123, 0.25934, 0.10907, 0.13034, 0.2327, 0.02834, 0.48912, 0, 0.71349, 0.01334, 0.92412, 0.10334, 1, 0.28334, 1, 0.48434, 1, 0.64334, 1, 0.85334, 1, 0.94934, 0.97907, 1, 0.77302, 0.99434, 0.52576, 0.93434, 0.26476, 0.84434, 0.09533, 0.67034, 0.01291, 0.51134, 0.00834, 0.26234, 0.76386, 0.28634, 0.51731, 0.48434, 0.79133, 0.71303, 0.79591, 0.87332, 0.78218, 0.83121, 0.54407, 0.75081, 0.26476, 0.36134, 0.24014, 0.55281, 0.51695, 0.55307, 0.26159 ],
  				"triangles": [ 25, 1, 0, 2, 1, 25, 27, 17, 16, 24, 27, 16, 0, 17, 27, 25, 0, 27, 15, 24, 16, 14, 24, 15, 26, 25, 27, 26, 27, 24, 19, 2, 25, 19, 25, 26, 3, 2, 19, 23, 24, 14, 23, 14, 13, 26, 24, 23, 19, 4, 3, 18, 4, 19, 22, 23, 13, 12, 22, 13, 20, 19, 26, 18, 19, 20, 21, 26, 23, 21, 23, 22, 20, 26, 21, 5, 4, 18, 11, 22, 12, 6, 5, 18, 7, 18, 20, 6, 18, 7, 9, 8, 20, 7, 20, 8, 21, 9, 20, 10, 21, 22, 10, 22, 11, 9, 21, 10 ],
  				"vertices": [ 53.59, 10.52, 48.46, 24.46, 41.07, 35.46, 26.19, 43.88, 13.33, 45.96, 1.36, 44.43, -2.71, 36.47, -2.23, 20.81, -1.69, 3.34, -1.16, -13.87, -0.7, -28.74, 0.74, -37.05, 12.61, -41.09999, 26.68, -40.16999, 41.39, -34.5, 50.81, -26.37, 55.04, -11.1, 54.87, 2.73, 11.16, 23.05, 25.31, 21.4, 10.18999, 3.7, 10.55, -16.37999, 11.75, -30.19, 25.21, -26.12, 40.9, -18.58, 41.43, 15.37, 26.03, -1.81, 40.64, -1.36 ],
  				"hull": 18
  			}
  		}
  	}
  },
  "events": {
  	"skillA1": {}
  },
  "animations": {
  	"idle1": {
  		"bones": {
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0003_mogudunzi": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.5, "x": 0.931, "y": 1 },
  					{ "time": 0.6666, "x": 0.909, "y": 1 },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.4, "angle": 4.24 },
  					{ "time": 0.6666, "angle": -1.26 },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.4, "x": -0.02, "y": 1.05 },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			},
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0001_mizhijiegou": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -2.82 },
  					{ "time": 0.4, "angle": 2.12 },
  					{ "time": 0.4666, "angle": -0.37 },
  					{ "time": 0.5333, "angle": 0.93 },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0000_moguyan": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1 },
  					{ "time": 0.5, "x": 0.262, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0.262, "y": 1 },
  					{ "time": 1, "x": 1, "y": 1 }
  				]
  			}
  		}
  	},
  	"move": {
  		"bones": {
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": -9.15 },
  					{ "time": 0.1666, "angle": 16.13 },
  					{ "time": 0.2333, "angle": -19.68 },
  					{ "time": 0.4666, "angle": -9.15 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": -14.83 },
  					{ "time": 0.1666, "angle": 3.66 },
  					{ "time": 0.2333, "angle": -32.16 },
  					{ "time": 0.4666, "angle": -14.83 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.1666, "angle": -25.69 },
  					{ "time": 0.2333, "angle": 20.7 },
  					{ "time": 0.4666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0000_moguyan": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 },
  					{ "time": 0.2333, "x": 0.416, "y": 1 },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0001_mizhijiegou": {
  				"rotate": [
  					{ "time": 0, "angle": 9, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 9 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.1666, "x": 4.16, "y": 3.27 },
  					{ "time": 0.4666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 14.29 },
  					{ "time": 0.1666, "angle": -24.03 },
  					{ "time": 0.2333, "angle": 22.37 },
  					{ "time": 0.4666, "angle": 14.29 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0003_mogudunzi": {
  				"rotate": [
  					{ "time": 0, "angle": 4.98, "curve": "stepped" },
  					{ "time": 0.0333, "angle": 4.98 },
  					{ "time": 0.1333, "angle": -0.64 },
  					{ "time": 0.1666, "angle": 2.65, "curve": "stepped" },
  					{ "time": 0.2333, "angle": 2.65 },
  					{ "time": 0.3333, "angle": 12.61 },
  					{ "time": 0.4666, "angle": 4.98 }
  				],
  				"translate": [
  					{ "time": 0, "x": -1.49, "y": 61.65 },
  					{ "time": 0.1666, "x": -1.5, "y": 1.86 },
  					{ "time": 0.2333, "x": -1.16, "y": 1.46 },
  					{ "time": 0.4666, "x": -1.49, "y": 61.65 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.1333, "x": 1.038, "y": 0.962 },
  					{ "time": 0.1666, "x": 1, "y": 1 },
  					{ "time": 0.2333, "x": 0.574, "y": 1 },
  					{ "time": 0.3666, "x": 0.957, "y": 0.924 },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			},
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi": {
  				"rotate": [
  					{ "time": 0, "angle": -14.65 },
  					{ "time": 0.1666, "angle": 1.91 },
  					{ "time": 0.4666, "angle": -14.65 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0.06, "y": -10.7 },
  					{ "time": 0.1666, "x": 2.51, "y": 1.63 },
  					{ "time": 0.4666, "x": 0.06, "y": -10.7 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1 }
  				]
  			}
  		},
  		"deform": {
  			"default": {
  				"agu_0002_mogumaozi": {
  					"agu_0002_mogumaozi": [
  						{ "time": 0 },
  						{
  							"time": 0.2333,
  							"offset": 32,
  							"vertices": [ 2.40597, 4.31419, 3.52505, 3.46044, 4.78033, 1.24468, 3.46599, -3.5196, 4.1677, -2.65155, 4.78357, -1.23207, 0.9964, 1.07711, 1.25973, 0.75234, 1.46708, 0.02486, 0.75432, -1.25855, 1.01763, -1.05706, 1.29474, -0.69036, 4.31899, 4.97724, 5.5474, 3.55702, 3.56576, -5.54181, 4.71896, -4.59973, 5.91051, -2.9141, 4.50467, 5.45211, 5.85946, 3.96022, 7.0535, 0.51524, 3.96946, -5.85327, 5.18225, -4.81258, 6.41693, -2.97317, 3.98948, 5.23782, 6.54248, 0.73924, 3.90832, -5.29864, 4.99819, -4.28582, 6.07891, -2.52925 ]
  						},
  						{ "time": 0.4666 }
  					]
  				},
  				"agu_0003_mogudunzi": {
  					"agu_0003_mogudunzi": [
  						{
  							"time": 0,
  							"offset": 14,
  							"vertices": [ -2.61678, 0.1806, -4.43489, -0.13646, -4.44291, 0.12443, -2.84555, -0.87091 ]
  						},
  						{
  							"time": 0.1666,
  							"offset": 14,
  							"vertices": [ -0.64528, 0.24126, -1.47343, -0.18257, -2.14468, -0.24046, -2.84555, -0.87091 ]
  						},
  						{
  							"time": 0.3333,
  							"offset": 10,
  							"vertices": [ 3.04081, -0.13182, 2.19514, 0.01615, -1.74056, 0.20756, -3.11869, -0.15695, -8.23967, -4.19868, -9.85379, -0.84541, -5.58657, 1.57817, -2.70784, 0.67408 ]
  						},
  						{
  							"time": 0.4666,
  							"offset": 14,
  							"vertices": [ -2.61678, 0.1806, -4.43489, -0.13646, -4.44291, 0.12443, -2.84555, -0.87091 ]
  						}
  					]
  				}
  			}
  		}
  	},
  	"moveend": {
  		"bones": {
  			"agu_0003_mogudunzi": {
  				"rotate": [
  					{ "time": 0, "angle": 4.98 },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": -1.49, "y": 61.65 },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0000_moguyan": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			},
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": -14.83 },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 14.29 },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0001_mizhijiegou": {
  				"rotate": [
  					{ "time": 0, "angle": 9 },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi": {
  				"rotate": [
  					{ "time": 0, "angle": -14.65 },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0.06, "y": -10.7 },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			},
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": -9.15 },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1 }
  				]
  			}
  		},
  		"deform": {
  			"default": {
  				"agu_0002_mogumaozi": {
  					"agu_0002_mogumaozi": [
  						{ "time": 0 }
  					]
  				},
  				"agu_0003_mogudunzi": {
  					"agu_0003_mogudunzi": [
  						{
  							"time": 0,
  							"offset": 14,
  							"vertices": [ -2.61678, 0.1806, -4.43489, -0.13646, -4.44291, 0.12443, -2.84555, -0.87091 ]
  						}
  					]
  				}
  			}
  		}
  	},
  	"scare": {
  		"slots": {
  			"agu_0000_moguyan": {
  				"attachment": [
  					{ "time": 0.5, "name": null }
  				]
  			},
  			"agu_0003_mogudunzi": {
  				"attachment": [
  					{ "time": 0.5, "name": null }
  				]
  			}
  		},
  		"bones": {
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.0666, "angle": -19.68, "curve": "stepped" },
  					{ "time": 0.1333, "angle": -19.68, "curve": "stepped" },
  					{ "time": 0.5, "angle": -19.68 },
  					{ "time": 0.6, "angle": -0.77, "curve": "stepped" },
  					{ "time": 0.7666, "angle": -0.77 },
  					{ "time": 0.9, "angle": -11.76, "curve": "stepped" },
  					{ "time": 3, "angle": -11.76 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 3, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 3, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.0666, "angle": -32.16, "curve": "stepped" },
  					{ "time": 0.1333, "angle": -32.16, "curve": "stepped" },
  					{ "time": 0.5, "angle": -32.16 },
  					{ "time": 0.6, "angle": -13.25, "curve": "stepped" },
  					{ "time": 0.7666, "angle": -13.25 },
  					{ "time": 0.9, "angle": -24.23, "curve": "stepped" },
  					{ "time": 3, "angle": -24.23 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 3, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 3, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.0666, "angle": 20.7, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 20.7, "curve": "stepped" },
  					{ "time": 0.5, "angle": 20.7 },
  					{ "time": 0.6, "angle": -2.92, "curve": "stepped" },
  					{ "time": 0.7666, "angle": -2.92 },
  					{ "time": 0.9, "angle": 7.94, "curve": "stepped" },
  					{ "time": 3, "angle": 7.94 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 3, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 3, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5, "angle": 0 },
  					{ "time": 0.6, "angle": -23.62, "curve": "stepped" },
  					{ "time": 0.7666, "angle": -23.62 },
  					{ "time": 0.9, "angle": -12.76, "curve": "stepped" },
  					{ "time": 3, "angle": -12.76 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 3, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 3, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5, "angle": 0 },
  					{ "time": 0.6, "angle": 18.9, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 18.9 },
  					{ "time": 0.9, "angle": 7.92, "curve": "stepped" },
  					{ "time": 3, "angle": 7.92 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 3, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 3, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0000_moguyan": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.9, "angle": 0, "curve": "stepped" },
  					{ "time": 3, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 3, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.0666, "x": 0.416, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0.416, "y": 1 },
  					{ "time": 0.2, "x": 0.695, "y": 1, "curve": "stepped" },
  					{ "time": 0.9, "x": 0.695, "y": 1, "curve": "stepped" },
  					{ "time": 3, "x": 0.695, "y": 1 }
  				]
  			},
  			"agu_0001_mizhijiegou": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.0666, "angle": 9, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 9, "curve": "stepped" },
  					{ "time": 0.9, "angle": 9, "curve": "stepped" },
  					{ "time": 3, "angle": 9 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.0666, "x": 3.23, "y": 2.54, "curve": "stepped" },
  					{ "time": 0.1333, "x": 3.23, "y": 2.54, "curve": "stepped" },
  					{ "time": 0.9, "x": 3.23, "y": 2.54, "curve": "stepped" },
  					{ "time": 3, "x": 3.23, "y": 2.54 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 3, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.0666, "angle": 22.37, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 22.37, "curve": "stepped" },
  					{ "time": 0.5, "angle": 22.37 },
  					{ "time": 0.6, "angle": -1.25, "curve": "stepped" },
  					{ "time": 0.7666, "angle": -1.25 },
  					{ "time": 0.9, "angle": 9.6, "curve": "stepped" },
  					{ "time": 3, "angle": 9.6 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 3, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 3, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0003_mogudunzi": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.0666, "angle": 2.65, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 2.65 },
  					{ "time": 0.2, "angle": 0.23 },
  					{ "time": 0.2333, "angle": 2 },
  					{ "time": 0.2666, "angle": -0.34 },
  					{ "time": 0.3, "angle": 1.16 },
  					{ "time": 0.3333, "angle": -0.52 },
  					{ "time": 0.3666, "angle": 1.51, "curve": "stepped" },
  					{ "time": 0.9, "angle": 1.51, "curve": "stepped" },
  					{ "time": 3, "angle": 1.51 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.0666, "x": -1.16, "y": 1.46, "curve": "stepped" },
  					{ "time": 0.1333, "x": -1.16, "y": 1.46, "curve": "stepped" },
  					{ "time": 0.3666, "x": -1.16, "y": 1.46, "curve": "stepped" },
  					{ "time": 0.9, "x": -1.16, "y": 1.46, "curve": "stepped" },
  					{ "time": 3, "x": -1.16, "y": 1.46 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.0666, "x": 0.574, "y": 1 },
  					{ "time": 0.1333, "x": 0.451, "y": 1 },
  					{ "time": 0.2, "x": 0.936, "y": 1, "curve": "stepped" },
  					{ "time": 0.3666, "x": 0.936, "y": 1 },
  					{ "time": 0.4666, "x": 2.01, "y": 0.934 },
  					{ "time": 0.5, "x": 0.46, "y": 0.934, "curve": "stepped" },
  					{ "time": 0.9, "x": 0.46, "y": 0.934, "curve": "stepped" },
  					{ "time": 3, "x": 0.46, "y": 0.934 }
  				]
  			},
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.9, "angle": 0, "curve": "stepped" },
  					{ "time": 3, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 3, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 3, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.0666, "angle": -1.76, "curve": "stepped" },
  					{ "time": 0.1333, "angle": -1.76, "curve": "stepped" },
  					{ "time": 0.5, "angle": -1.76 },
  					{ "time": 0.6, "angle": 12.6 },
  					{ "time": 0.7, "angle": -13.41 },
  					{ "time": 0.7666, "angle": 0.59, "curve": "stepped" },
  					{ "time": 0.9, "angle": 0.59, "curve": "stepped" },
  					{ "time": 3, "angle": 0.59 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.0666, "x": 1.96, "y": -1.1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1.96, "y": -1.1, "curve": "stepped" },
  					{ "time": 0.5, "x": 1.96, "y": -1.1 },
  					{ "time": 0.6, "x": -7.98, "y": -5.23 },
  					{ "time": 0.7, "x": -31.3, "y": -5.69 },
  					{ "time": 0.7666, "x": -43.8, "y": -5.3, "curve": "stepped" },
  					{ "time": 0.9, "x": -43.8, "y": -5.3, "curve": "stepped" },
  					{ "time": 3, "x": -43.8, "y": -5.3 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 3, "x": 1, "y": 1 }
  				]
  			}
  		},
  		"deform": {
  			"default": {
  				"agu_0002_mogumaozi": {
  					"agu_0002_mogumaozi": [
  						{ "time": 0.1333 }
  					]
  				}
  			}
  		}
  	},
  	"skillA1": {
  		"bones": {
  			"agu_0002_mogumaozi": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.1, "angle": -1.76, "curve": "stepped" },
  					{ "time": 0.1666, "angle": -1.76, "curve": "stepped" },
  					{ "time": 0.5666, "angle": -1.76 },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.1, "x": 1.96, "y": -1.1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1.96, "y": -1.1, "curve": "stepped" },
  					{ "time": 0.5666, "x": 1.96, "y": -1.1 },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.1, "angle": -32.16, "curve": "stepped" },
  					{ "time": 0.1666, "angle": -32.16 },
  					{ "time": 0.4666, "angle": 39.64 },
  					{ "time": 0.5666, "angle": -47.26 },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0003_mogudunzi": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.1, "angle": 2.65, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 2.65 },
  					{ "time": 0.2333, "angle": 9.46 },
  					{ "time": 0.3, "angle": 65.69 },
  					{ "time": 0.3666, "angle": -200.32 },
  					{ "time": 0.4333, "angle": -67.84 },
  					{ "time": 0.5, "angle": -0.03 },
  					{ "time": 0.5666, "angle": 2.65 },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.1, "x": -1.16, "y": 1.46, "curve": "stepped" },
  					{ "time": 0.1666, "x": -1.16, "y": 1.46 },
  					{ "time": 0.2333, "x": 2, "y": 297.49 },
  					{ "time": 0.3, "x": 19.85, "y": 316.11 },
  					{ "time": 0.3666, "x": 9.57, "y": 362.48 },
  					{ "time": 0.4333, "x": -24.18, "y": 315.81 },
  					{ "time": 0.5, "x": -4.97, "y": 280.59 },
  					{ "time": 0.5666, "x": -1.16, "y": 1.46 },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.1, "x": 0.574, "y": 1 },
  					{ "time": 0.1666, "x": 0.451, "y": 1 },
  					{ "time": 0.2333, "x": 0.905, "y": 1 },
  					{ "time": 0.5666, "x": 0.574, "y": 1 },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			},
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.1, "angle": -19.68, "curve": "stepped" },
  					{ "time": 0.1666, "angle": -19.68 },
  					{ "time": 0.4666, "angle": 52.11 },
  					{ "time": 0.5666, "angle": -34.79 },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0000_moguyan": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.1, "x": 0.416, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0.416, "y": 1 },
  					{ "time": 0.2333, "x": 0.757, "y": 1 },
  					{ "time": 0.5666, "x": 0.416, "y": 1 },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			},
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0001_mizhijiegou": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.1, "angle": 9, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 9, "curve": "stepped" },
  					{ "time": 0.5666, "angle": 9 },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.1, "x": 3.23, "y": 2.54, "curve": "stepped" },
  					{ "time": 0.1666, "x": 3.23, "y": 2.54, "curve": "stepped" },
  					{ "time": 0.5666, "x": 3.23, "y": 2.54 },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.1, "angle": 20.7, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 20.7 },
  					{ "time": 0.4666, "angle": -32.46 },
  					{ "time": 0.5666, "angle": 30.75 },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.1, "angle": 22.37, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 22.37 },
  					{ "time": 0.4666, "angle": -30.79 },
  					{ "time": 0.5666, "angle": 32.42 },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1 }
  				]
  			}
  		},
  		"deform": {
  			"default": {
  				"agu_0002_mogumaozi": {
  					"agu_0002_mogumaozi": [
  						{ "time": 0, "curve": "stepped" },
  						{ "time": 0.1666, "curve": "stepped" },
  						{ "time": 0.6666 }
  					]
  				}
  			}
  		},
  		"events": [
  			{ "time": 0.2333, "name": "skillA1" }
  		]
  	},
  	"skillAidle1": {
  		"bones": {
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0003_mogudunzi": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi2": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0002_mogumaozi3": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			},
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0001_mizhijiegou": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			},
  			"agu_0000_moguyan": {
  				"rotate": [
  					{ "time": 0, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 }
  				]
  			}
  		}
  	}
  }
  }