huanying01.json
132 KB
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
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
{
"skeleton": { "hash": "Ts+KfrkRcIHDHo4aSMKUbol/6/U", "spine": "3.4.02", "width": 478.67, "height": 267.28 },
"bones": [
{ "name": "root", "x": 95.47, "scaleX": 0.8, "scaleY": 0.8 },
{ "name": "bg5/_0004_001", "parent": "root", "y": -92.62, "scaleX": 2, "scaleY": 2 },
{ "name": "yao01", "parent": "root", "length": 31.18, "rotation": 91.44, "x": 6.9, "y": 168.12 },
{ "name": "xiaoyao", "parent": "yao01", "length": 23.05, "rotation": 21.42, "x": 29.45, "y": -1.09 },
{ "name": "xiong", "parent": "xiaoyao", "length": 66.16, "rotation": 44.77, "x": 17.13, "y": -5.76 },
{ "name": "bozi", "parent": "xiong", "length": 21.82, "rotation": 28.77, "x": 60.85, "y": -6.62 },
{ "name": "bone", "parent": "bozi", "length": 21.3, "rotation": 8.32, "x": 21.82 },
{ "name": "tou", "parent": "bone", "length": 22.08, "rotation": -33.51, "x": 17.46, "y": 8.23 },
{ "name": "tougu", "parent": "tou", "length": 22.5, "rotation": -89.11, "x": 16.15, "y": -18.85 },
{ "name": "toufa", "parent": "tougu", "x": 32.82, "y": 12.24 },
{ "name": "toufa2", "parent": "toufa", "length": 28.23, "rotation": -51.24, "x": 1.01, "y": -2.64 },
{ "name": "bone2", "parent": "toufa2", "length": 30.19, "rotation": -19.84, "x": 28.23 },
{ "name": "bone3", "parent": "bone2", "length": 23.88, "rotation": -31.1, "x": 30.19 },
{ "name": "bone4", "parent": "bone3", "length": 23.19, "rotation": -9.22, "x": 23.88 },
{ "name": "bone5", "parent": "bone4", "length": 23.02, "rotation": 0.52, "x": 23.19 },
{ "name": "bone6", "parent": "bone5", "length": 24.57, "rotation": 11.06, "x": 23.02 },
{ "name": "bone7", "parent": "bone6", "length": 22.77, "rotation": 20.14, "x": 24.57 },
{ "name": "bone8", "parent": "bone7", "length": 21.38, "rotation": 14.85, "x": 22.77 },
{ "name": "bone9", "parent": "bone8", "length": 16.71, "rotation": 14.66, "x": 21.38 },
{ "name": "bone10", "parent": "bone9", "length": 15.04, "rotation": 18.62, "x": 16.71 },
{ "name": "kua", "parent": "yao01", "rotation": 0.45, "x": 11.2, "y": -1.96 },
{ "name": "kua2", "parent": "kua", "length": 19.52, "rotation": 139.52, "x": -7.52, "y": 7.87 },
{ "name": "bone11", "parent": "kua2", "length": 19.44, "rotation": -8.52, "x": 19.52 },
{ "name": "bone12", "parent": "bone11", "length": 19.74, "rotation": -0.8, "x": 19.44 },
{ "name": "bone13", "parent": "bone12", "length": 23.88, "rotation": -2.2, "x": 19.74 },
{ "name": "kua3", "parent": "kua", "length": 16.6, "rotation": -148.53, "x": -5.96, "y": -11.43 },
{ "name": "bone14", "parent": "kua3", "length": 17.39, "rotation": 1.53, "x": 16.6 },
{ "name": "bone15", "parent": "bone14", "length": 18.42, "rotation": -2.16, "x": 17.39 },
{ "name": "bone16", "parent": "bone15", "length": 19.68, "rotation": 3.4, "x": 18.42 },
{ "name": "circle", "parent": "root", "x": 381.68, "y": -238.86 },
{ "name": "dao", "parent": "root", "length": 193.6, "rotation": -0.63, "x": 509.92, "y": 347.92 },
{ "name": "zuoshoudabi", "parent": "xiong", "length": 105.08, "rotation": -175.75, "x": 65.31, "y": -18.1 },
{ "name": "zuoxiaobi", "parent": "zuoshoudabi", "length": 81.67, "rotation": -96.49, "x": 116.45, "y": 0.1 },
{ "name": "zuoshou01", "parent": "zuoxiaobi", "length": 27.06, "rotation": -0.41, "x": 81.02, "y": -4.2 },
{ "name": "dao2", "parent": "zuoshou01", "length": 193.6, "rotation": 94.6, "x": 20.07, "y": -6.39 },
{ "name": "youshoudabi", "parent": "xiong", "length": 108.47, "rotation": 64.99, "x": 65.49, "y": 2.82 },
{ "name": "youxiaobi", "parent": "youshoudabi", "length": 79.96, "rotation": -127.41, "x": 111.08, "y": 6.16 },
{ "name": "youshou01", "parent": "youxiaobi", "length": 30.28, "rotation": -8.49, "x": 84.25, "y": -4.12 },
{ "name": "dao3", "parent": "youshou01", "length": 193.6, "rotation": -91.08, "x": 20.72, "y": 6.14 },
{ "name": "dg1/1_00002", "parent": "root", "x": -328.85, "y": 78.35 },
{ "name": "dg1/1_2", "parent": "root", "x": -327.53, "y": 115.37 },
{ "name": "dg2/1_00002", "parent": "root", "x": -400.91 },
{ "name": "dg6/1_00034", "parent": "root", "y": -200.36, "scaleX": -1 },
{ "name": "dg7/_0004_01", "parent": "root", "x": 282.23, "y": -71.67 },
{ "name": "eff/01", "parent": "root", "y": -50.58, "scaleX": -1 },
{ "name": "eff/02", "parent": "root", "x": 755.43, "y": 1.43 },
{ "name": "eff/hui01", "parent": "root", "y": 36.48 },
{ "name": "yan/1_00005", "parent": "root", "x": -684.9, "y": -116.27 },
{ "name": "yan/1_5", "parent": "root", "x": -282.19, "y": -116.27, "scaleX": -1 },
{ "name": "yan/1_00034", "parent": "root", "y": -118.7, "scaleX": 2, "scaleY": 1.6 },
{ "name": "yaodai01", "parent": "yao01", "x": 8.05, "y": -2.82 },
{ "name": "youjiao", "parent": "root", "x": 127.26, "y": 9.09 },
{ "name": "zuodatui", "parent": "yao01", "length": 95.57, "rotation": -163.4, "x": -1.11, "y": -3.89 },
{ "name": "zuodatui2", "parent": "yao01", "length": 95.57, "rotation": 110.76, "x": -19.07, "y": -0.1 },
{ "name": "zuojiao", "parent": "root", "x": -117.09, "y": 7.15 },
{ "name": "zuoxiaotui2", "parent": "zuodatui2", "length": 76.95, "rotation": 76.71, "x": 92.86, "y": 3.43 },
{ "name": "zuojiao2", "parent": "zuoxiaotui2", "length": 33.88, "rotation": -48.89, "x": 79.81, "y": 4.35 },
{ "name": "zuojiao01", "parent": "zuojiao2", "length": 29.7, "rotation": -45.1, "x": 35.71, "y": 0.95 },
{ "name": "zuoxiaotui02", "parent": "zuodatui", "length": 76.95, "rotation": 48.59, "x": 93.27, "y": 1.32 },
{ "name": "zuojiao02", "parent": "zuoxiaotui02", "length": 33.88, "rotation": -50.08, "x": 84.86, "y": -3.78 },
{ "name": "zuojiao1", "parent": "zuojiao02", "length": 29.7, "rotation": -101.53, "x": 37.28, "y": 1.41 }
],
"slots": [
{ "name": "bg5/_0004_001", "bone": "bg5/_0004_001" },
{ "name": "dg2/1_00002", "bone": "dg2/1_00002" },
{ "name": "dg1/1_2", "bone": "dg1/1_2" },
{ "name": "dao3", "bone": "dao3", "attachment": "dao" },
{ "name": "youshou01", "bone": "youshou01", "attachment": "youshou01" },
{ "name": "youshoudabi", "bone": "youshoudabi", "attachment": "youshoudabi" },
{ "name": "zuodatui", "bone": "zuodatui", "attachment": "zuodatui" },
{ "name": "zuodatui2", "bone": "zuodatui2", "attachment": "zuodatui" },
{ "name": "youxiaobi", "bone": "youxiaobi", "attachment": "youxiaobi" },
{ "name": "bozi", "bone": "bozi", "attachment": "bozi" },
{ "name": "kua", "bone": "kua3", "attachment": "kua" },
{ "name": "dao", "bone": "dao" },
{ "name": "toufa", "bone": "toufa2", "color": "5e0d04ff", "attachment": "toufa" },
{ "name": "tougu", "bone": "tougu", "attachment": "tougu" },
{ "name": "tou", "bone": "tou", "attachment": "tou" },
{ "name": "xiong", "bone": "xiong", "attachment": "xiong2" },
{ "name": "xiaoyao", "bone": "xiaoyao", "attachment": "xiaoyao" },
{ "name": "yao01", "bone": "yao01", "attachment": "yao01" },
{ "name": "yaodai01", "bone": "yaodai01", "attachment": "yaodai01" },
{ "name": "zuojiao01", "bone": "zuojiao01", "attachment": "zuojiao01" },
{ "name": "zuojiao1", "bone": "zuojiao1", "attachment": "zuojiao01" },
{ "name": "zuoxiaotui02", "bone": "zuoxiaotui02", "attachment": "zuoxiaotui02" },
{ "name": "zuojiao02", "bone": "zuojiao02", "attachment": "zuojiao02" },
{ "name": "zuoxiaobi", "bone": "zuoxiaobi", "attachment": "zuoxiaobi" },
{ "name": "zuoxiaotui2", "bone": "zuoxiaotui2", "attachment": "zuoxiaotui02" },
{ "name": "zuojiao2", "bone": "zuojiao2", "attachment": "zuojiao02" },
{ "name": "dao2", "bone": "dao2", "attachment": "dao" },
{ "name": "zuoshou01", "bone": "zuoshou01", "attachment": "zuoshou01" },
{ "name": "zuoshoudabi", "bone": "zuoshoudabi", "attachment": "zuoshoudabi" },
{ "name": "dg1/1_00002", "bone": "dg1/1_00002" },
{ "name": "eff/01", "bone": "eff/01" },
{ "name": "yan/1_00005", "bone": "yan/1_00005" },
{ "name": "yan/1_5", "bone": "yan/1_5" },
{ "name": "yan/1_00034", "bone": "yan/1_00034" },
{ "name": "dg6/1_00034", "bone": "dg6/1_00034" },
{ "name": "circle", "bone": "circle", "blend": "screen" },
{ "name": "dg7/_0004_01", "bone": "dg7/_0004_01" },
{ "name": "eff/hui01", "bone": "eff/hui01" },
{ "name": "eff/02", "bone": "eff/02" }
],
"ik": [
{
"name": "youjiao",
"bones": [ "zuoxiaotui02", "zuojiao02" ],
"target": "youjiao",
"bendPositive": false
},
{
"name": "zuojiao",
"bones": [ "zuoxiaotui2", "zuojiao2" ],
"target": "zuojiao",
"bendPositive": false
}
],
"skins": {
"default": {
"bg5/_0004_001": {
"bg5/_0000_005": { "width": 200, "height": 137 },
"bg5/_0001_004": { "width": 200, "height": 137 },
"bg5/_0002_003": { "width": 200, "height": 137 },
"bg5/_0003_002": { "width": 200, "height": 137 },
"bg5/_0004_001": { "width": 200, "height": 137 }
},
"bozi": {
"bozi": {
"type": "mesh",
"uvs": [ 0.76173, 0.02328, 0.52865, 0.12994, 0.29182, 0.19875, 0.11514, 0.22628, 0.05123, 0.3123, 0.03243, 0.5669, 0.03243, 0.81119, 0.08506, 1, 0.22416, 0.94538, 0.37453, 0.83872, 0.61888, 0.77334, 0.85947, 0.74582, 0.95721, 0.60819, 0.96849, 0.37767, 0.95721, 0.10242, 0.86699, 0.0164, 0.23167, 0.53594, 0.50234, 0.46024, 0.7918, 0.41207 ],
"triangles": [ 7, 6, 8, 8, 6, 9, 6, 16, 9, 9, 17, 10, 9, 16, 17, 6, 5, 16, 5, 4, 16, 4, 3, 16, 16, 2, 17, 16, 3, 2, 10, 17, 18, 12, 18, 13, 17, 1, 18, 17, 2, 1, 1, 0, 18, 18, 14, 13, 14, 0, 15, 14, 18, 0, 10, 18, 11, 11, 18, 12 ],
"vertices": [ 3, 4, 78.11, -24.73, 1.5E-4, 5, 6.41, -24.18, 0.99171, 6, -18.75, -21.69, 0.00812, 3, 4, 87.36, -14.12, 3.0E-5, 5, 19.62, -19.33, 0.84871, 6, -4.96999, -18.81, 0.15125, 3, 4, 97.64, -5.5, 0, 5, 32.79, -16.71999, 0.31798, 6, 8.42, -18.14, 0.68201, 2, 5, 42.45, -16.18, 0.07131, 6, 18.06, -18.99, 0.92867, 2, 5, 46.45, -11.52, 0.02477, 6, 22.69, -14.96, 0.97522, 1, 6, 27.49, -0.69, 1, 2, 4, 96.85, 33.23, 7.2E-4, 6, 31.16, 13.23, 0.99927, 1, 6, 31.25, 24.73, 1, 2, 4, 84.26, 36.62, 0.02067, 6, 23.16, 23.52, 0.97932, 2, 4, 79.15, 27.71, 0.15962, 6, 13.71, 19.51, 0.84037, 3, 4, 68.41, 19.12, 0.69355, 5, 19.03, 18.93, 4.4E-4, 6, -0.02, 19.12999, 0.306, 2, 4, 57.01, 12.68, 0.97317, 6, -13, 20.87, 0.02682, 2, 4, 55.22, 3.16, 0.9992, 6, -20.17, 14.36, 7.9E-4, 1, 5, -2.33, -2.15, 1, 2, 4, 66.57, -24.43, 2.2E-4, 5, -3.55, -18.36, 0.99977, 3, 4, 73.01, -27.27, 1.9E-4, 5, 0.72, -23.94, 0.99798, 6, -24.35, -20.64, 0.00182, 1, 6, 16.62, 0.27, 1, 2, 5, 23.21, -0.12, 0.5, 6, 1.35, -0.32, 0.5, 1, 5, 7.36, -1.2, 1 ],
"hull": 16
}
},
"circle": {
"circle": { "width": 736, "height": 736 }
},
"dao": {
"dao": { "x": 146.24, "y": 0.04, "scaleY": -1, "rotation": 0.63, "width": 459, "height": 45 }
},
"dao2": {
"dao": { "x": 146.24, "y": 0.04, "rotation": 0.63, "width": 459, "height": 45 }
},
"dao3": {
"dao": { "x": 146.24, "y": 0.04, "rotation": 0.63, "width": 459, "height": 45 }
},
"dg1/1_00002": {
"dg1/1_00002": { "width": 479, "height": 200 },
"dg1/1_00003": { "x": -9.5, "width": 479, "height": 200 },
"dg1/1_00004": { "x": -9.5, "width": 479, "height": 200 },
"dg1/1_00005": { "x": -9.5, "width": 479, "height": 200 },
"dg1/1_00006": { "x": -9.5, "width": 479, "height": 200 }
},
"dg1/1_2": {
"dg1/1_00002": { "width": 479, "height": 200 },
"dg1/1_00003": { "x": -9.5, "width": 479, "height": 200 },
"dg1/1_00004": { "x": -9.5, "width": 479, "height": 200 },
"dg1/1_00005": { "x": -9.5, "width": 479, "height": 200 },
"dg1/1_00006": { "x": -9.5, "width": 479, "height": 200 }
},
"dg2/1_00002": {
"dg2/1_00002": { "width": 375, "height": 366 },
"dg2/1_00003": { "width": 375, "height": 366 },
"dg2/1_00004": { "width": 375, "height": 366 },
"dg2/1_00005": { "width": 375, "height": 366 },
"dg2/1_00006": { "width": 375, "height": 366 },
"dg2/1_00007": { "width": 375, "height": 366 },
"dg2/1_00008": { "width": 375, "height": 366 }
},
"dg6/1_00034": {
"dg6/1_00034": { "width": 571, "height": 321 },
"dg6/1_00035": { "width": 571, "height": 321 },
"dg6/1_00036": { "width": 571, "height": 321 },
"dg6/1_00037": { "width": 571, "height": 321 },
"dg6/1_00038": { "width": 571, "height": 321 }
},
"dg7/_0004_01": {
"dg7/_0000_05": { "width": 214, "height": 341 },
"dg7/_0001_04": { "width": 214, "height": 341 },
"dg7/_0002_03": { "width": 214, "height": 341 },
"dg7/_0003_02": { "width": 214, "height": 341 },
"dg7/_0004_01": { "width": 214, "height": 341 }
},
"eff/01": {
"eff/01": { "x": -13.98, "y": 18.21, "width": 275, "height": 535 }
},
"eff/02": {
"eff/02": { "x": -10.08, "y": 166.68, "scaleX": -1, "width": 263, "height": 330 }
},
"eff/hui01": {
"eff/hui01": { "width": 383, "height": 76 },
"eff/hui02": { "width": 383, "height": 76 },
"eff/hui03": { "width": 383, "height": 76 },
"eff/hui04": { "width": 383, "height": 76 },
"eff/hui05": { "width": 383, "height": 76 },
"eff/hui06": { "width": 383, "height": 76 },
"eff/hui07": { "width": 383, "height": 76 }
},
"kua": {
"kua": {
"type": "mesh",
"uvs": [ 0.64038, 0.00871, 0.54844, 0.03765, 0.44905, 0.12929, 0.40183, 0.22576, 0.30244, 0.33671, 0.18068, 0.45729, 0.06886, 0.58753, 0.00177, 0.65506, 0.10862, 0.77082, 0.23038, 0.85765, 0.34965, 0.91553, 0.44656, 0.95412, 0.52856, 1, 0.64038, 0.95894, 0.77208, 0.88176, 0.89632, 0.81906, 1, 0.75635, 0.92614, 0.57788, 0.86153, 0.37529, 0.79941, 0.21129, 0.72983, 0.06659, 0.69008, 0, 0.56335, 0.12447, 0.52856, 0.25471, 0.45898, 0.42835, 0.36704, 0.59235, 0.30244, 0.73706, 0.63292, 0.10518, 0.65777, 0.24506, 0.67517, 0.38494, 0.71244, 0.58271, 0.7348, 0.75635, 0.54844, 0.75635, 0.54844, 0.59718, 0.56583, 0.40906, 0.58571, 0.24506 ],
"triangles": [ 13, 31, 14, 13, 32, 31, 14, 31, 15, 16, 15, 17, 15, 31, 17, 31, 30, 17, 32, 30, 31, 32, 33, 30, 33, 34, 30, 30, 18, 17, 30, 29, 18, 34, 29, 30, 34, 35, 29, 35, 28, 29, 29, 19, 18, 29, 28, 19, 28, 35, 27, 28, 27, 20, 28, 20, 19, 20, 27, 0, 0, 21, 20, 27, 1, 0, 9, 26, 10, 32, 10, 26, 9, 8, 26, 7, 6, 8, 8, 6, 26, 26, 6, 25, 25, 6, 5, 13, 12, 32, 12, 11, 32, 11, 10, 32, 32, 25, 33, 26, 25, 32, 5, 4, 25, 25, 4, 24, 25, 24, 33, 33, 24, 34, 4, 3, 24, 24, 3, 23, 24, 23, 34, 34, 23, 35, 3, 2, 23, 23, 22, 35, 23, 2, 22, 35, 22, 27, 2, 1, 22, 22, 1, 27 ],
"vertices": [ 3, 21, -17.46999, 8.52, 0.00818, 24, -77.11, -0.82, 0, 25, -6.05, 1.96, 0.99181, 3, 21, -6, -1.7, 0.87852, 24, -63.83, -8.55, 0, 25, -12.22, -12.1, 0.12147, 3, 21, 10.37, -9.53, 0.85622, 22, -7.64, -10.78, 0.14376, 24, -46.21, -12.95, 0, 3, 21, 21.64, -10.42, 0.30946, 22, 3.63, -9.99, 0.68524, 23, -15.66, -10.21, 0.00529, 3, 22, 22.1, -14.1, 0.33478, 23, 2.85, -14.06, 0.61942, 24, -16.33, -14.7, 0.04579, 2, 23, 24.68, -19.74, 0.26045, 24, 5.69, -19.54, 0.73953, 6, 22, 64.93, -24.37, 0, 23, 45.82, -23.73, 0.0011, 24, 26.97, -22.71, 0.99888, 26, -35.34, -103.02, 0, 27, -48.82, -104.94, 1.0E-5, 28, -73.35, -100.76, 0, 5, 22, 76.97, -27.6, 0, 24, 39.16999, -25.3, 0.99997, 26, -36.87, -115.4, 0, 27, -49.88, -117.36, 1.0E-5, 28, -75.14, -113.1, 0, 4, 24, 31.8, -6.5, 0.99997, 26, -18.79, -106.42, 0, 27, -32.14, -107.71, 1.0E-5, 28, -56.87, -104.52, 0, 5, 23, 41.16, 11.13, 0.01967, 24, 20.96999, 11.95, 0.97381, 26, -1.34, -94.03, 6.6E-4, 27, -15.17, -94.67, 0.00405, 28, -39.16, -92.51, 0.00179, 6, 22, 49.55, 27.46, 0.0583, 23, 29.72, 27.88, 0.35174, 24, 8.89, 28.24, 0.50125, 26, 13.84, -80.58, 0.01497, 27, -0.51, -80.65, 0.04844, 28, -23.68, -79.39, 0.02527, 6, 22, 39.96, 40.66999, 0.16226, 23, 19.95, 40.96, 0.40221, 24, -1.37, 40.93, 0.19356, 26, 25.59, -69.25, 0.04025, 27, 10.8, -68.89, 0.12488, 28, -11.69, -68.31, 0.0768, 6, 22, 32.61, 52.68, 0.19493, 23, 12.43, 52.86, 0.32988, 24, -9.34, 52.54, 0.08292, 26, 36.46, -60.29, 0.05556, 27, 21.32, -59.53, 0.19412, 28, -0.64, -59.6, 0.14255, 6, 22, 16.64, 62.55, 0.16398, 23, -3.67, 62.51, 0.19912, 24, -25.81, 61.56, 0.02058, 26, 44.01, -43.1, 0.05669, 27, 28.22, -42.07, 0.27112, 28, 7.28, -42.57, 0.28848, 6, 22, -3.82, 72.37, 0.05369, 23, -24.27, 72.04, 0.05174, 24, -46.76, 70.29, 3.6E-4, 26, 50.89, -21.47, 0.01004, 27, 34.28, -20.19, 0.19359, 28, 14.62, -21.1, 0.69054, 4, 21, 9.43, 84.71, 0, 24, -65.98, 79.19999, 0, 26, 58.09, -1.55, 1.0E-5, 28, 22.25, -1.34, 0.99998, 4, 21, -5.48, 94.64, 0, 24, -82.58, 85.94, 0, 26, 63.37, 15.56, 4.0E-5, 28, 27.9, 15.66, 0.99995, 4, 21, -9.58, 75.62, 0, 24, -82.8, 66.49, 0, 27, 26.01, 15.08, 0.19352, 28, 8.47, 14.61, 0.80647, 5, 21, -16.25, 56.49, 0, 24, -85.5, 46.42, 0, 26, 23.73, 15.04, 0.25, 27, 5.76, 15.27, 0.69718, 28, -11.73, 15.99, 0.05281, 5, 21, -20.62, 39.75, 0, 24, -86.44, 29.14, 0, 25, 22.65, 14.63, 0.19878, 26, 6.44, 14.47, 0.71411, 27, -11.49, 14.04, 0.0871, 3, 24, -85.38, 12.35, 0, 25, 6.09, 11.68, 0.89546, 26, -10.18999, 11.96, 0.10453, 3, 24, -83.91, 3.81, 0, 25, -2.22, 9.25, 0.99996, 27, -36.31, 8.38, 3.0E-5, 4, 21, -1.82, 4.85, 0.68467, 24, -61.04, -1.29, 0, 25, -4.69, -14.05, 0.30754, 26, -21.66, -13.47, 0.00778, 7, 21, 10.38, 7.36, 0.73571, 22, -10.13, 5.93, 0.15489, 23, -29.65, 5.51, 0.00207, 25, 1.47, -24.88, 0.05121, 26, -15.78, -24.47, 0.04773, 27, -32.23, -25.7, 0.00819, 28, -52.1, -22.65, 1.7E-4, 7, 21, 29.08, 7.74, 0.18224, 22, 8.29, 9.07, 0.68077, 23, -11.27, 8.92, 0.06116, 25, 7.63, -42.54, 0.00597, 26, -10.1, -42.28, 0.0419, 27, -25.88, -43.29, 0.02342, 28, -46.8, -40.58, 0.00451, 6, 22, 28.9, 9.12, 0.21563, 23, 9.32, 9.26, 0.66671, 24, -10.76, 8.85, 0.0705, 26, -7.18, -62.68, 0.01418, 27, -22.2, -63.56, 0.02352, 28, -44.33, -61.04, 0.00942, 6, 22, 45.06, 11.01, 0.01302, 23, 25.46, 11.37, 0.23792, 24, 5.27, 11.58, 0.71685, 26, -3.07, -78.42, 0.00518, 27, -17.49, -79.14, 0.01826, 28, -40.55, -76.87, 0.00875, 3, 21, -10.32, 12.73, 0.21129, 24, -70.94999, 4.71999, 0, 25, 0.16, -3.52, 0.7887, 7, 21, -3.67, 23.41, 0.08355, 22, -26.42, 19.70999, 0.01159, 23, -46.13, 19.06, 6.7E-4, 24, -66.56, 16.51, 0, 25, 12.37, -6.54, 0.66218, 26, -4.4, -6.42, 0.24071, 27, -21.54, -7.24, 0.00127, 7, 21, 3.75, 33.12, 0.04652, 22, -20.51, 30.42, 0.04073, 23, -40.38, 29.86, 0.01122, 25, 23.91, -10.58, 0.05218, 26, 7.02, -10.78, 0.67849, 27, -9.96, -11.16, 0.16882, 28, -29, -9.46, 0.00198, 6, 21, 12.93, 48.49, 0.01072, 22, -13.71, 46.97, 0.05676, 23, -33.81, 46.51, 0.03664, 26, 24.36, -15.21, 0.12596, 27, 7.53, -14.94, 0.56567, 28, -11.75, -14.26, 0.20421, 7, 21, 22.07, 60.65, 0.00151, 22, -6.47, 60.36, 0.04853, 23, -26.76, 59.99, 0.0417, 24, -48.78, 58.15, 1.3E-4, 26, 38.62, -20.52, 0.02269, 27, 21.98, -19.7, 0.31605, 28, 2.38, -19.87999, 0.56935, 7, 21, 41.43999, 36.77, 0.01718, 22, 16.20999, 39.61, 0.25538, 23, -3.77, 39.56, 0.27717, 24, -25.03, 38.62, 0.04134, 26, 21.23, -45.88, 0.09548, 27, 5.56, -45.7, 0.19907, 28, -15.55, -44.85, 0.11433, 8, 21, 30.93, 28.24, 0.07904, 22, 7.08, 29.62, 0.30609, 23, -12.76, 29.45, 0.17129, 24, -33.62, 28.17, 0.00884, 25, 27.69, -37.93999, 0.0084, 26, 10.07, -38.22, 0.17253, 27, -5.87, -38.47, 0.18798, 28, -26.54, -36.96, 0.06578, 7, 21, 16.7, 20.4, 0.30838, 22, -5.81, 19.76, 0.24586, 23, -25.53, 19.4, 0.04177, 25, 15.83, -26.84, 0.09495, 26, -1.48, -26.81, 0.2223, 27, -17.86, -27.51, 0.07709, 28, -37.84999, -25.31, 0.00961, 7, 21, 3.81, 14.17, 0.58964, 22, -17.64, 11.68, 0.06374, 23, -37.24, 11.16, 0.00252, 24, -57.38, 8.96, 0, 25, 5.91, -16.52, 0.23112, 26, -11.12, -16.23, 0.10261, 27, -27.89, -17.29, 0.01033 ],
"hull": 22
}
},
"tou": {
"tou": { "x": 18.49, "y": 3.22, "rotation": -161.23, "width": 47, "height": 75 },
"tou2": { "x": 23.05, "y": 5.51, "rotation": -161.23, "width": 48, "height": 78 }
},
"toufa": {
"toufa": {
"type": "mesh",
"uvs": [ 0, 0.25649, 0, 0.35849, 0.03556, 0.49532, 0.10034, 0.52766, 0.16318, 0.47293, 0.22796, 0.46298, 0.28017, 0.47791, 0.34108, 0.53015, 0.41069, 0.63215, 0.4803, 0.74659, 0.55764, 0.866, 0.63789, 0.95805, 0.71814, 0.99288, 0.81192, 0.98293, 0.89313, 0.91825, 0.95694, 0.79137, 1, 0.66698, 0.96081, 0.71922, 0.91923, 0.80132, 0.86509, 0.8262, 0.79838, 0.83615, 0.722, 0.8262, 0.65046, 0.77893, 0.60502, 0.73415, 0.53637, 0.57742, 0.48803, 0.40327, 0.44259, 0.24903, 0.37395, 0.11718, 0.2937, 0.03508, 0.22022, 0.00771, 0.13321, 0.02015, 0.0665, 0.09727, 0.02492, 0.17937, 0.06787, 0.34587, 0.12201, 0.27578, 0.18582, 0.2407, 0.26994, 0.24293, 0.35405, 0.32461, 0.41109, 0.46383, 0.4691, 0.58572, 0.52711, 0.70016, 0.57932, 0.79221, 0.63153, 0.85938, 0.68954, 0.89919, 0.75625, 0.90665, 0.83263, 0.89421, 0.89064, 0.85938 ],
"triangles": [ 15, 17, 16, 15, 18, 17, 46, 19, 18, 45, 19, 46, 15, 14, 46, 45, 46, 14, 15, 46, 18, 45, 20, 19, 44, 21, 20, 44, 20, 45, 13, 44, 45, 13, 45, 14, 12, 44, 13, 42, 22, 21, 43, 42, 21, 43, 21, 44, 11, 42, 43, 12, 43, 44, 11, 43, 12, 41, 40, 23, 41, 23, 22, 42, 41, 22, 10, 9, 41, 10, 41, 42, 10, 42, 11, 40, 39, 24, 24, 23, 40, 8, 39, 40, 9, 8, 40, 9, 40, 41, 37, 26, 25, 38, 37, 25, 7, 6, 38, 38, 25, 24, 39, 38, 24, 7, 38, 39, 8, 7, 39, 27, 36, 28, 36, 27, 26, 37, 36, 26, 5, 36, 37, 6, 5, 37, 38, 6, 37, 35, 30, 29, 35, 29, 28, 36, 35, 28, 31, 30, 35, 5, 35, 36, 34, 35, 5, 5, 4, 34, 32, 31, 35, 34, 0, 32, 35, 34, 32, 33, 0, 34, 1, 0, 33, 4, 33, 34, 2, 1, 33, 2, 33, 4, 3, 2, 4 ],
"vertices": [ 1, 10, 1.09, 9.79, 1, 3, 10, -1.95, 1.78, 0.99999, 11, -29, -8.56, 0, 14, -86.8, -47.87, 0, 2, 10, 1.04999, -11.37, 0.99999, 12, -34.15, -43.86, 0, 3, 10, 12.88, -18.70999, 0.90783, 11, -8.08, -22.82, 0.09216, 14, -61.61, -45.43, 0, 4, 10, 26.87, -19.25, 0.44648, 11, 5.25, -18.57, 0.54574, 12, -11.76, -28.78, 0.00777, 14, -54.08, -33.63, 0, 4, 10, 39.93, -23.36, 0.03945, 11, 18.93, -18, 0.74329, 12, -0.34, -21.23, 0.21723, 14, -43.93, -24.44, 1.0E-5, 4, 11, 29.92, -19.42, 0.29374, 12, 9.79, -16.77, 0.67483, 13, -11.21, -18.81, 0.03138, 14, -34.58, -18.49, 2.0E-5, 3, 11, 42.69, -23.94, 0.00928, 12, 23.06, -14.04, 0.47003, 13, 1.44, -13.99, 0.52067, 4, 11, 57.23, -32.56, 2.0E-5, 12, 39.97, -13.92, 0.00112, 13, 18.1, -11.16, 0.83623, 14, -5.17999, -11.11, 0.1626, 4, 11, 71.74, -42.21, 0, 13, 35.41, -9.12, 0.00266, 14, 12.13, -9.22999, 0.98835, 15, -12.45, -6.97, 0.00897, 3, 11, 87.88, -52.29, 0, 14, 30.99, -6.65, 0.11226, 15, 6.54, -8.06, 0.88773, 3, 11, 104.68, -60.15, 0, 15, 25.04, -6.87, 0.56201, 16, -1.92, -6.61, 0.43798, 3, 11, 121.55, -63.31, 0, 16, 15.23, -7.22, 0.9666, 17, -9.13, -5.04, 0.03339, 1, 17, 10.59, -6.75, 1, 1, 18, 5.71, -5.29, 1, 2, 18, 22.09, -0.68, 0.03116, 19, 4.88, -2.35999, 0.96883, 1, 19, 18.41, -0.52999, 1, 2, 11, 173.15, -41.79, 0, 19, 9.34, 1.59, 1, 4, 11, 164.26, -48.37, 0, 17, 34.93999, 5.13, 2.6E-4, 18, 14.41, 1.53, 0.73545, 19, -1.69, 2.19, 0.26427, 4, 11, 152.8, -50.2, 0, 17, 23.35, 4.56, 0.27587, 18, 3.05, 3.92, 0.72313, 19, -11.69, 8.07, 9.8E-4, 4, 11, 138.71, -50.76, 0, 16, 30.32, 7.74, 8.3E-4, 17, 9.28, 5.54, 0.99914, 19, -22.91, 16.62, 2.0E-5, 4, 11, 122.62, -49.66, 0, 16, 14.24, 6.43, 0.95006, 17, -6.59, 8.39999, 0.04991, 18, -24.94, 15.21, 1.0E-5, 3, 15, 20.56, 7.36, 0.66715, 16, -1.22, 8.29, 0.33278, 17, -21.07, 14.17, 6.0E-5, 4, 14, 32.00999, 8.03, 0.03266, 15, 10.35999, 6.15, 0.9647, 16, -11.21, 10.67, 0.00261, 17, -30.11, 19.03, 0, 3, 13, 35.79, 9.1, 0.02853, 14, 12.67, 8.97999, 0.95144, 15, -8.42, 10.8, 0.02001, 5, 10, 92.94, -38.34, 1.0E-5, 11, 73.87999, -14.09, 0, 12, 44.69, 10.49, 0.01372, 13, 18.85, 13.69, 0.78708, 14, -4.21, 13.73, 0.19917, 3, 10, 88.49, -23.1, 2.1E-4, 12, 30.05, 16.62999, 0.3747, 13, 3.42, 17.41, 0.62506, 4, 10, 78.81, -7.84, 0.00107, 11, 50.24, 9.79, 0.04115, 12, 12.1, 18.73, 0.89201, 13, -14.63, 16.6, 0.06573, 2, 11, 33.43, 16.82, 0.5829, 12, -5.92, 16.08, 0.41709, 3, 10, 51.71, 12.1, 0.0051, 11, 17.96999, 19.35, 0.96799, 12, -20.45999, 10.25, 0.02689, 2, 10, 34.18999, 17.69, 0.33235, 11, -0.4, 18.66, 0.66764, 2, 10, 18.78, 16.79, 0.862, 11, -14.59, 12.59, 0.13799, 2, 10, 8.18999, 13.63, 0.99503, 11, -23.48, 6.02, 0.00496, 3, 10, 11.83, -2.23, 0.99999, 12, -34.45, -29.74, 0, 14, -76.36, -38.00999, 0, 3, 10, 24.54, -0.97, 0.80405, 11, -3.14, -2.16, 0.19594, 14, -71.03, -26.4, 0, 1, 11, 10.37, 0.44, 1, 2, 11, 28.11, -0.07, 0.5, 12, -1.74, -1.14, 0.5, 1, 12, 16.98, 1.92, 1, 1, 13, 9.43, -0.42, 1, 2, 13, 25.23, -0.41, 0.5, 14, 2.03, -0.43, 0.5, 1, 14, 17.45, -0.08, 1, 1, 15, 7.78, -0.57, 1, 2, 15, 20.09, -0.33, 0.71822, 16, -4.32, 1.23, 0.28177, 1, 16, 8.24, -0.39, 1, 2, 16, 22.27, 0.84, 0.5, 17, -0.26, 0.94, 0.5, 1, 17, 15.85, -0.09, 1, 1, 18, 7.03, -0.61, 1 ],
"hull": 33
}
},
"tougu": {
"tougu": { "x": 15.8, "y": 0.9, "rotation": -72.12, "width": 23, "height": 35 }
},
"xiaoyao": {
"xiaoyao": { "x": 15.98, "y": -3.12, "rotation": -112.86, "width": 40, "height": 44 }
},
"xiong": {
"xiong": {
"type": "mesh",
"uvs": [ 0.3172, 0.0045, 0.15621, 0.12881, 0.13807, 0.36769, 0.08365, 0.58219, 0, 0.67969, 0.05871, 0.843, 0.22196, 0.91368, 0.3308, 1, 0.55528, 0.93075, 0.77295, 0.90881, 0.94755, 0.77475, 1, 0.50662, 0.92941, 0.31894, 0.81377, 0.258, 0.75255, 0.12637, 0.67092, 0.11906, 0.6165, 0.03131, 0.45324, 0.01181, 0.28001, 0.71988, 0.18252, 0.64783, 0.3912, 0.73626, 0.58009, 0.71825, 0.77811, 0.66748, 0.29829, 0.40221, 0.45975, 0.43823, 0.60903, 0.45133, 0.76135, 0.4497, 0.7187, 0.34326, 0.58923, 0.2532, 0.40339, 0.16477 ],
"triangles": [ 29, 0, 17, 1, 0, 29, 16, 29, 17, 28, 16, 15, 28, 29, 16, 27, 15, 14, 27, 14, 13, 28, 15, 27, 23, 2, 1, 29, 23, 1, 24, 23, 29, 28, 24, 29, 26, 27, 13, 26, 13, 12, 25, 28, 27, 25, 27, 26, 24, 28, 25, 26, 12, 11, 23, 3, 2, 19, 3, 23, 22, 26, 11, 21, 24, 25, 25, 26, 22, 21, 25, 22, 18, 19, 23, 18, 23, 24, 20, 18, 24, 21, 20, 24, 10, 22, 11, 19, 5, 4, 19, 4, 3, 5, 19, 18, 9, 21, 22, 9, 22, 10, 6, 5, 18, 6, 18, 20, 8, 20, 21, 8, 21, 9, 7, 6, 20, 8, 7, 20 ],
"vertices": [ 70.3, -32.54, 79.32, -18.08, 73.49, 0.18, 71.29, 17.83, 74.98, 27.78, 65.33999, 37.93999, 50.2, 37.83, 38.91999, 40.65, 23.17, 28.19, 6.53, 19.44, -3.27, 3.81, 0.71, -17.73, 12.03, -29.31, 23.09, -30.03, 31.96, -37.77, 38.68, -35.64, 45.67, -40.34999, 59.25, -36.45, 51.48, 21.59, 61.43, 19.45, 42.14, 19.16, 27.66, 11.65, 13.46, 1.42, 59.7, -2.5, 45.76, -5.12, 33.49, -9.03, 21.42, -14.14, 28.05, -20.62, 41.09, -23.04, 58.56, -23.51 ],
"hull": 18
},
"xiong2": {
"type": "mesh",
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
"triangles": [ 1, 2, 3, 1, 3, 0 ],
"vertices": [ -17.27, -29.95, -0.75, 47.3, 79.42, 30.16, 62.91, -47.09 ],
"hull": 4
}
},
"yan/1_00005": {
"yan/1_00005": { "width": 450, "height": 133 },
"yan/1_00006": { "width": 450, "height": 133 },
"yan/1_00007": { "width": 450, "height": 133 },
"yan/1_00008": { "width": 450, "height": 133 }
},
"yan/1_00034": {
"yan/1_00034": { "width": 245, "height": 165 },
"yan/1_00035": { "width": 245, "height": 165 },
"yan/1_00036": { "width": 245, "height": 165 },
"yan/1_00037": { "width": 245, "height": 165 },
"yan/1_00038": { "width": 245, "height": 165 }
},
"yan/1_5": {
"yan/1_00005": { "width": 450, "height": 133 },
"yan/1_00006": { "width": 450, "height": 133 },
"yan/1_00007": { "width": 450, "height": 133 },
"yan/1_00008": { "width": 450, "height": 133 }
},
"yao01": {
"yao01": {
"type": "mesh",
"uvs": [ 0.53198, 0.04599, 0.2774, 0.16735, 0.0626, 0.49198, 0.02282, 0.72559, 0, 0.90155, 0.17795, 0.9956, 0.51606, 0.95009, 0.89793, 0.8166, 0.9934, 0.50411, 1, 0.23106, 0.83031, 0.03082, 0.34502, 0.37972, 0.349, 0.59209, 0.31718, 0.80447 ],
"triangles": [ 11, 1, 0, 2, 1, 11, 9, 0, 10, 8, 12, 11, 2, 11, 12, 3, 2, 12, 13, 3, 12, 9, 11, 0, 9, 8, 11, 7, 12, 8, 6, 13, 12, 5, 4, 3, 7, 6, 12, 13, 5, 3, 5, 13, 6 ],
"vertices": [ 51.33, -1.97, 44.46, 9.64999, 25.56, 19.79999, 11.82, 21.94, 1.47, 23.23, -4.27, 15.36, -1.97, 0.08, 5.46, -17.28, 23.78, -22.04, 39.88, -22.75, 51.88, -15.41, 31.86, 6.93, 19.33, 7.07, 6.84, 8.81 ],
"hull": 11
},
"yao02": { "x": 24.84, "y": -0.62, "rotation": -91.44, "width": 45, "height": 56 }
},
"yaodai01": {
"yaodai01": {
"type": "mesh",
"uvs": [ 0.027, 0.57571, 0.28813, 0.49525, 0.46113, 0.41881, 0.68962, 0.18948, 0.94096, 0.01246, 0.95075, 0.33834, 1, 0.59583, 0.75164, 0.70043, 0.50683, 0.75676, 0.30118, 0.82918, 0.12166, 0.99413, 0.01068, 0.99413, 0.01394, 0.77688, 0.28813, 0.65618, 0.49703, 0.57974, 0.73532, 0.45502 ],
"triangles": [ 3, 4, 5, 15, 3, 5, 2, 3, 15, 14, 2, 15, 1, 2, 14, 15, 5, 6, 13, 1, 14, 0, 1, 13, 7, 15, 6, 14, 15, 7, 8, 14, 7, 13, 14, 8, 12, 0, 13, 9, 13, 8, 12, 13, 9, 10, 11, 12, 9, 10, 12 ],
"vertices": [ 1.07, 28.12, 4.17999, 14.2, 7.24, 4.94999, 16.79, -7.4, 24.06, -20.91, 10.04, -21.07, -1.08, -23.4, -5.25, -10.13, -7.34, 2.89, -10.18, 13.87, -17.03, 23.56, -16.87999, 29.44, -7.55, 29.03, -2.73, 14.37, 0.27, 3.22, 5.31, -9.53 ],
"hull": 13
},
"yaodai02": { "x": 7.11, "y": 1.58, "rotation": -91.44, "width": 54, "height": 36 }
},
"youshou01": {
"youshou01": { "x": 19.92, "y": -1.68, "rotation": -100.73, "width": 38, "height": 43 },
"youshou02": { "x": 21.62, "y": 2.04, "rotation": -100.73, "width": 37, "height": 37 }
},
"youshoudabi": {
"youshoudabi": { "x": 55.07, "y": 0.41, "rotation": 125.57, "width": 90, "height": 104 }
},
"youxiaobi": {
"youxiaobi": { "x": 36.38, "y": 4.45, "rotation": -108.75, "width": 48, "height": 112 }
},
"zuodatui": {
"zuodatui": { "x": 49.2, "y": -3.09, "rotation": 155.91, "width": 100, "height": 67 }
},
"zuodatui2": {
"zuodatui": { "x": 49.2, "y": -3.09, "rotation": 155.91, "width": 100, "height": 67 }
},
"zuojiao01": {
"zuojiao01": { "x": 12.7, "y": -3.99, "rotation": 174.42, "width": 39, "height": 19 }
},
"zuojiao02": {
"zuojiao02": { "x": 9.01, "y": 2.67, "rotation": 101, "width": 26, "height": 51 },
"zuojiao03": { "x": 15.54, "y": 3.02, "scaleY": 1.059, "rotation": 101, "width": 25, "height": 50 }
},
"zuojiao1": {
"zuojiao01": { "x": 12.7, "y": -3.99, "rotation": 174.42, "width": 39, "height": 19 }
},
"zuojiao2": {
"zuojiao02": { "x": 9.01, "y": 2.67, "rotation": 101, "width": 26, "height": 51 }
},
"zuoshou01": {
"youshou02": { "x": 14.26, "y": 1.99, "rotation": 105.46, "width": 37, "height": 37 },
"zuoshou01": { "x": 16.74, "y": -1.68, "rotation": 105.46, "width": 38, "height": 38 },
"zuoshou02": { "x": 25.48, "y": -3.21, "rotation": 118.35, "width": 56, "height": 53 }
},
"zuoshoudabi": {
"zuoshoudabi": { "x": 54.06, "y": -1.24, "rotation": 18.11, "width": 123, "height": 60 }
},
"zuoxiaobi": {
"zuoxiaobi": { "x": 38.57, "y": -1.22, "rotation": 114.6, "width": 64, "height": 110 }
},
"zuoxiaotui02": {
"zuoxiaotui01": { "x": 23.98, "y": -0.3, "rotation": 90.89, "width": 31, "height": 121 },
"zuoxiaotui02": { "x": 29.51, "y": -7.71, "rotation": 59.6, "width": 77, "height": 86 }
},
"zuoxiaotui2": {
"zuoxiaotui02": { "x": 29.51, "y": -7.71, "rotation": 59.6, "width": 77, "height": 86 }
}
}
},
"events": {
"special": {}
},
"animations": {
"special": {
"slots": {
"bg5/_0004_001": {
"color": [
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"bozi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"circle": {
"color": [
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"dao": {
"color": [
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"dao2": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"dao3": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"dg1/1_2": {
"color": [
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"dg1/1_00002": {
"color": [
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"dg2/1_00002": {
"color": [
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"dg6/1_00034": {
"color": [
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.6, "name": "dg6/1_00034" },
{ "time": 0.6333, "name": "dg6/1_00035" },
{ "time": 0.6666, "name": "dg6/1_00036" },
{ "time": 0.7, "name": "dg6/1_00037" },
{ "time": 0.7333, "name": "dg6/1_00038" },
{ "time": 0.7666, "name": null }
]
},
"dg7/_0004_01": {
"color": [
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"eff/01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.4666, "color": "ffffffff" },
{ "time": 0.5333, "color": "ffffff00", "curve": "stepped" },
{ "time": 0.9, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.4666, "name": "eff/01" }
]
},
"eff/02": {
"color": [
{ "time": 0, "color": "ffffff80" },
{ "time": 0.1, "color": "ffffffff" }
],
"attachment": [
{ "time": 0, "name": "eff/02" },
{ "time": 0.2, "name": null }
]
},
"eff/hui01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "b8b8b8ff" },
{ "time": 0.6, "color": "000000ff", "curve": "stepped" },
{ "time": 0.9, "color": "000000ff" },
{ "time": 1.3333, "color": "00000000" }
],
"attachment": [
{ "time": 0.6, "name": "eff/hui01" },
{ "time": 0.6333, "name": "eff/hui02" },
{ "time": 0.6666, "name": "eff/hui03" },
{ "time": 0.7, "name": "eff/hui04" },
{ "time": 0.7333, "name": "eff/hui05" },
{ "time": 0.7666, "name": "eff/hui06" },
{ "time": 0.8, "name": "eff/hui07" },
{ "time": 0.8333, "name": null }
]
},
"kua": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"tou": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.2, "name": "tou2" },
{ "time": 0.6, "name": "tou" }
]
},
"toufa": {
"color": [
{ "time": 0, "color": "5e0d0400" },
{ "time": 0.1666, "color": "5e0d04ff", "curve": "stepped" },
{ "time": 0.9, "color": "5e0d04ff" },
{ "time": 1.3333, "color": "5e0d0400" }
]
},
"tougu": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"xiaoyao": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"xiong": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.2, "name": "xiong2" },
{ "time": 0.6, "name": "xiong" }
]
},
"yan/1_5": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"yan/1_00005": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"yan/1_00034": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"yao01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"yaodai01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"youshou01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.2, "name": "youshou02" },
{ "time": 0.6, "name": "youshou01" }
]
},
"youshoudabi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"youxiaobi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"zuodatui": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"zuodatui2": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"zuojiao01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"zuojiao1": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.2, "name": null },
{ "time": 0.3666, "name": "zuojiao01" },
{ "time": 0.4, "name": "zuojiao01" }
]
},
"zuojiao02": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.2, "name": "zuojiao03" },
{ "time": 0.3666, "name": "zuojiao02" },
{ "time": 0.4, "name": "zuojiao02" }
]
},
"zuojiao2": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"zuoshou01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"zuoshoudabi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"zuoxiaobi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
},
"zuoxiaotui02": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.2, "name": "zuoxiaotui01" },
{ "time": 0.4666, "name": "zuoxiaotui02" },
{ "time": 0.5, "name": "zuoxiaotui02" }
]
},
"zuoxiaotui2": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.1666, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.9, "color": "ffffffff" },
{ "time": 1.3333, "color": "ffffff00" }
]
}
},
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0 },
{ "time": 0.2333, "x": 0, "y": -10.39 },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0 },
{ "time": 0.5, "x": 2.13, "y": -5.89 },
{ "time": 0.5666, "x": 2.13, "y": 27.99 },
{ "time": 0.6, "x": -2.13, "y": 2.23 },
{ "time": 0.6333, "x": 5.15, "y": -10.98 },
{ "time": 0.6666, "x": 3.28, "y": 6.98 },
{ "time": 0.7, "x": 1.42, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 1.42, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 1.42, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 1.42, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"yao01": {
"rotate": [
{ "time": 0, "angle": -10.75, "curve": "stepped" },
{ "time": 0.2, "angle": -10.75 },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0 },
{ "time": 0.6, "angle": 12.87 },
{ "time": 0.7, "angle": 30.77, "curve": "stepped" },
{ "time": 0.8, "angle": 30.77, "curve": "stepped" },
{ "time": 0.9, "angle": 30.77, "curve": "stepped" },
{ "time": 1.3333, "angle": 30.77 }
],
"translate": [
{ "time": 0, "x": -0.22, "y": 57.49, "curve": "stepped" },
{ "time": 0.2, "x": -0.22, "y": 57.49 },
{ "time": 0.3666, "x": 1.26, "y": -50.17, "curve": "stepped" },
{ "time": 0.4, "x": 1.26, "y": -50.17 },
{ "time": 0.4333, "x": -4.77, "y": 189.23 },
{ "time": 0.5, "x": -8.72, "y": 345.9, "curve": "stepped" },
{ "time": 0.5666, "x": -8.72, "y": 345.9 },
{ "time": 0.6, "x": 1.05, "y": -42, "curve": "stepped" },
{ "time": 0.7, "x": 1.05, "y": -42, "curve": "stepped" },
{ "time": 0.8, "x": 1.05, "y": -42, "curve": "stepped" },
{ "time": 0.9, "x": 1.05, "y": -42, "curve": "stepped" },
{ "time": 1.3333, "x": 1.05, "y": -42 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"yaodai01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"xiaoyao": {
"rotate": [
{ "time": 0, "angle": -25.49, "curve": "stepped" },
{ "time": 0.2, "angle": -25.49 },
{ "time": 0.3666, "angle": 34.67, "curve": "stepped" },
{ "time": 0.4, "angle": 34.67 },
{ "time": 0.4333, "angle": -36.07, "curve": "stepped" },
{ "time": 0.5, "angle": -36.07, "curve": "stepped" },
{ "time": 0.5666, "angle": -36.07 },
{ "time": 0.6, "angle": 13.33, "curve": "stepped" },
{ "time": 0.7, "angle": 13.33, "curve": "stepped" },
{ "time": 0.8, "angle": 13.33, "curve": "stepped" },
{ "time": 0.9, "angle": 13.33, "curve": "stepped" },
{ "time": 1.3333, "angle": 13.33 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"xiong": {
"rotate": [
{ "time": 0, "angle": -16.19, "curve": "stepped" },
{ "time": 0.2, "angle": -16.19, "curve": "stepped" },
{ "time": 0.3666, "angle": -16.19, "curve": "stepped" },
{ "time": 0.4, "angle": -16.19, "curve": "stepped" },
{ "time": 0.4333, "angle": -16.19, "curve": "stepped" },
{ "time": 0.5, "angle": -16.19, "curve": "stepped" },
{ "time": 0.5666, "angle": -16.19, "curve": "stepped" },
{ "time": 0.7, "angle": -16.19, "curve": "stepped" },
{ "time": 0.8, "angle": -16.19, "curve": "stepped" },
{ "time": 0.9, "angle": -16.19, "curve": "stepped" },
{ "time": 1.3333, "angle": -16.19 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bozi": {
"rotate": [
{ "time": 0, "angle": -16.16, "curve": "stepped" },
{ "time": 0.2, "angle": -16.16, "curve": "stepped" },
{ "time": 0.3666, "angle": -16.16, "curve": "stepped" },
{ "time": 0.4, "angle": -16.16, "curve": "stepped" },
{ "time": 0.4333, "angle": -16.16, "curve": "stepped" },
{ "time": 0.5, "angle": -16.16, "curve": "stepped" },
{ "time": 0.5666, "angle": -16.16, "curve": "stepped" },
{ "time": 0.7, "angle": -16.16, "curve": "stepped" },
{ "time": 0.8, "angle": -16.16, "curve": "stepped" },
{ "time": 0.9, "angle": -16.16, "curve": "stepped" },
{ "time": 1.3333, "angle": -16.16 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": -13.51, "y": -1.97, "curve": "stepped" },
{ "time": 0.2, "x": -13.51, "y": -1.97, "curve": "stepped" },
{ "time": 0.3666, "x": -13.51, "y": -1.97, "curve": "stepped" },
{ "time": 0.4, "x": -13.51, "y": -1.97, "curve": "stepped" },
{ "time": 0.4333, "x": -13.51, "y": -1.97, "curve": "stepped" },
{ "time": 0.5, "x": -13.51, "y": -1.97, "curve": "stepped" },
{ "time": 0.5666, "x": -13.51, "y": -1.97, "curve": "stepped" },
{ "time": 0.7, "x": -13.51, "y": -1.97, "curve": "stepped" },
{ "time": 0.8, "x": -13.51, "y": -1.97, "curve": "stepped" },
{ "time": 0.9, "x": -13.51, "y": -1.97, "curve": "stepped" },
{ "time": 1.3333, "x": -13.51, "y": -1.97 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"tou": {
"rotate": [
{ "time": 0, "angle": -3.51, "curve": "stepped" },
{ "time": 0.2, "angle": -3.51 },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuoshoudabi": {
"rotate": [
{ "time": 0, "angle": -24.3 },
{ "time": 0.1333, "angle": 335.69, "curve": "stepped" },
{ "time": 0.2, "angle": 335.69 },
{ "time": 0.3666, "angle": -124.1, "curve": "stepped" },
{ "time": 0.4, "angle": -124.1 },
{ "time": 0.4333, "angle": -157.47 },
{ "time": 0.5, "angle": 137.92, "curve": "stepped" },
{ "time": 0.5666, "angle": 137.92 },
{ "time": 0.6, "angle": 266.44 },
{ "time": 0.7, "angle": 286.55, "curve": "stepped" },
{ "time": 0.8, "angle": 286.55, "curve": "stepped" },
{ "time": 0.9, "angle": 286.55, "curve": "stepped" },
{ "time": 1.3333, "angle": 286.55 }
],
"translate": [
{ "time": 0, "x": -2.98, "y": 33.05, "curve": "stepped" },
{ "time": 0.2, "x": -2.98, "y": 33.05, "curve": "stepped" },
{ "time": 0.3666, "x": -2.98, "y": 33.05, "curve": "stepped" },
{ "time": 0.4, "x": -2.98, "y": 33.05, "curve": "stepped" },
{ "time": 0.4333, "x": -2.98, "y": 33.05, "curve": "stepped" },
{ "time": 0.5, "x": -2.98, "y": 33.05, "curve": "stepped" },
{ "time": 0.5666, "x": -2.98, "y": 33.05 },
{ "time": 0.7, "x": -2.77, "y": 15.21, "curve": "stepped" },
{ "time": 0.8, "x": -2.77, "y": 15.21, "curve": "stepped" },
{ "time": 0.9, "x": -2.77, "y": 15.21, "curve": "stepped" },
{ "time": 1.3333, "x": -2.77, "y": 15.21 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuoxiaobi": {
"rotate": [
{ "time": 0, "angle": 3.54, "curve": "stepped" },
{ "time": 0.2, "angle": 3.54 },
{ "time": 0.3666, "angle": 12.39, "curve": "stepped" },
{ "time": 0.4, "angle": 12.39 },
{ "time": 0.4333, "angle": 95.97, "curve": "stepped" },
{ "time": 0.5, "angle": 95.97, "curve": "stepped" },
{ "time": 0.5666, "angle": 95.97 },
{ "time": 0.6, "angle": 38.19 },
{ "time": 0.7, "angle": 6.39, "curve": "stepped" },
{ "time": 0.8, "angle": 6.39, "curve": "stepped" },
{ "time": 0.9, "angle": 6.39, "curve": "stepped" },
{ "time": 1.3333, "angle": 6.39 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuoshou01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0 },
{ "time": 0.4333, "angle": -0.54 },
{ "time": 0.5, "angle": 62.09 },
{ "time": 0.5666, "angle": 13.97 },
{ "time": 0.6, "angle": 55.36, "curve": "stepped" },
{ "time": 0.7, "angle": 55.36, "curve": "stepped" },
{ "time": 0.8, "angle": 55.36, "curve": "stepped" },
{ "time": 0.9, "angle": 55.36, "curve": "stepped" },
{ "time": 1.3333, "angle": 55.36 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"dao2": {
"rotate": [
{ "time": 0, "angle": 178.28, "curve": "stepped" },
{ "time": 0.2, "angle": 178.28, "curve": "stepped" },
{ "time": 0.3666, "angle": 178.28, "curve": "stepped" },
{ "time": 0.4, "angle": 178.28, "curve": "stepped" },
{ "time": 0.4333, "angle": 178.28, "curve": "stepped" },
{ "time": 0.5, "angle": 178.28, "curve": "stepped" },
{ "time": 0.5666, "angle": 178.28 },
{ "time": 0.6, "angle": -170.2 },
{ "time": 0.7, "angle": -176.19, "curve": "stepped" },
{ "time": 0.8, "angle": -176.19, "curve": "stepped" },
{ "time": 0.9, "angle": -176.19, "curve": "stepped" },
{ "time": 1.3333, "angle": -176.19 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1 },
{ "time": 0.4333, "x": 1, "y": -1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": -1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": -1 },
{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"youshoudabi": {
"rotate": [
{ "time": 0, "angle": -165.22, "curve": "stepped" },
{ "time": 0.1333, "angle": -165.22 },
{ "time": 0.2, "angle": 176.79 },
{ "time": 0.3666, "angle": 96.69, "curve": "stepped" },
{ "time": 0.4, "angle": 96.69 },
{ "time": 0.4333, "angle": -127.8 },
{ "time": 0.5, "angle": -108.39, "curve": "stepped" },
{ "time": 0.5666, "angle": -108.39 },
{ "time": 0.6, "angle": 37.49 },
{ "time": 0.7, "angle": 50.94, "curve": "stepped" },
{ "time": 0.8, "angle": 50.94, "curve": "stepped" },
{ "time": 0.9, "angle": 50.94, "curve": "stepped" },
{ "time": 1.3333, "angle": 50.94 }
],
"translate": [
{ "time": 0, "x": -12.91, "y": -21.43, "curve": "stepped" },
{ "time": 0.2, "x": -12.91, "y": -21.43, "curve": "stepped" },
{ "time": 0.3666, "x": -12.91, "y": -21.43, "curve": "stepped" },
{ "time": 0.4, "x": -12.91, "y": -21.43, "curve": "stepped" },
{ "time": 0.4333, "x": -12.91, "y": -21.43, "curve": "stepped" },
{ "time": 0.5, "x": -12.91, "y": -21.43, "curve": "stepped" },
{ "time": 0.5666, "x": -12.91, "y": -21.43 },
{ "time": 0.6, "x": -12.25, "y": 8.14 },
{ "time": 0.7, "x": -7.08, "y": -2.49, "curve": "stepped" },
{ "time": 0.8, "x": -7.08, "y": -2.49, "curve": "stepped" },
{ "time": 0.9, "x": -7.08, "y": -2.49, "curve": "stepped" },
{ "time": 1.3333, "x": -7.08, "y": -2.49 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"youxiaobi": {
"rotate": [
{ "time": 0, "angle": -149.98 },
{ "time": 0.1333, "angle": 210.01 },
{ "time": 0.2, "angle": -96.27, "curve": "stepped" },
{ "time": 0.3666, "angle": -96.27, "curve": "stepped" },
{ "time": 0.4, "angle": -96.27 },
{ "time": 0.4333, "angle": 138.58, "curve": "stepped" },
{ "time": 0.5, "angle": 138.58, "curve": "stepped" },
{ "time": 0.5666, "angle": 138.58 },
{ "time": 0.6, "angle": 62.92 },
{ "time": 0.7, "angle": 39.68, "curve": "stepped" },
{ "time": 0.8, "angle": 39.68, "curve": "stepped" },
{ "time": 0.9, "angle": 39.68, "curve": "stepped" },
{ "time": 1.3333, "angle": 39.68 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"youshou01": {
"rotate": [
{ "time": 0, "angle": 42.58, "curve": "stepped" },
{ "time": 0.1333, "angle": 42.58 },
{ "time": 0.2, "angle": 1.18, "curve": "stepped" },
{ "time": 0.3666, "angle": 1.18, "curve": "stepped" },
{ "time": 0.4, "angle": 1.18 },
{ "time": 0.4333, "angle": 38.82 },
{ "time": 0.5, "angle": -25.32, "curve": "stepped" },
{ "time": 0.5666, "angle": -25.32 },
{ "time": 0.6, "angle": 57.63, "curve": "stepped" },
{ "time": 0.7, "angle": 57.63, "curve": "stepped" },
{ "time": 0.8, "angle": 57.63, "curve": "stepped" },
{ "time": 0.9, "angle": 57.63, "curve": "stepped" },
{ "time": 1.3333, "angle": 57.63 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"tougu": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"toufa": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"toufa2": {
"rotate": [
{ "time": 0, "angle": -3.86 },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0 },
{ "time": 0.4333, "angle": 20.08 },
{ "time": 0.5, "angle": 25.68 },
{ "time": 0.5666, "angle": 51.75 },
{ "time": 0.6, "angle": 48.02 },
{ "time": 0.6333, "angle": 63.31 },
{ "time": 0.7, "angle": -2.54 },
{ "time": 0.8, "angle": 10.29 },
{ "time": 0.9, "angle": -2.54, "curve": "stepped" },
{ "time": 1.3333, "angle": -2.54 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone2": {
"rotate": [
{ "time": 0, "angle": -3.86 },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0 },
{ "time": 0.4333, "angle": 20.08 },
{ "time": 0.5, "angle": 25.68 },
{ "time": 0.5666, "angle": 51.75 },
{ "time": 0.6, "angle": 48.02 },
{ "time": 0.7, "angle": -2.54 },
{ "time": 0.8, "angle": 10.29 },
{ "time": 0.9, "angle": -2.54, "curve": "stepped" },
{ "time": 1.3333, "angle": -2.54 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone3": {
"rotate": [
{ "time": 0, "angle": -3.86 },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0 },
{ "time": 0.6333, "angle": 21.54 },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone4": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0 },
{ "time": 0.6333, "angle": 21.54 },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone5": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0 },
{ "time": 0.5666, "angle": -37.74 },
{ "time": 0.6333, "angle": -5.06 },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone6": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0 },
{ "time": 0.5666, "angle": -37.74 },
{ "time": 0.6333, "angle": -5.06 },
{ "time": 0.7, "angle": 0 },
{ "time": 0.8, "angle": -38.93 },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone7": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0 },
{ "time": 0.5666, "angle": -37.74 },
{ "time": 0.6333, "angle": -5.06 },
{ "time": 0.7, "angle": 0 },
{ "time": 0.8, "angle": -19.73 },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone8": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0 },
{ "time": 0.8, "angle": -19.73 },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone9": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0 },
{ "time": 0.8, "angle": -41.44 },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone10": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.4666, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0 },
{ "time": 0.8, "angle": -21.7 },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"dao3": {
"rotate": [
{ "time": 0, "angle": -34.72, "curve": "stepped" },
{ "time": 0.2, "angle": -34.72, "curve": "stepped" },
{ "time": 0.3666, "angle": -34.72, "curve": "stepped" },
{ "time": 0.4, "angle": -34.72 },
{ "time": 0.4333, "angle": -0.5 },
{ "time": 0.5, "angle": 93.87 },
{ "time": 0.5666, "angle": 44.77 },
{ "time": 0.6, "angle": 15.13 },
{ "time": 0.7, "angle": 7.62, "curve": "stepped" },
{ "time": 0.8, "angle": 7.62, "curve": "stepped" },
{ "time": 0.9, "angle": 7.62, "curve": "stepped" },
{ "time": 1.3333, "angle": 7.62 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": -1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": -1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": -1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": -1, "y": 1 },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"kua": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"kua2": {
"rotate": [
{ "time": 0, "angle": -0.1, "curve": "stepped" },
{ "time": 0.2, "angle": -0.1 },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0 },
{ "time": 0.4333, "angle": 10.24, "curve": "stepped" },
{ "time": 0.5, "angle": 10.24 },
{ "time": 0.5666, "angle": -30.16 },
{ "time": 0.6333, "angle": -50.95 },
{ "time": 0.7, "angle": -56.98, "curve": "stepped" },
{ "time": 0.8, "angle": -56.98, "curve": "stepped" },
{ "time": 0.9, "angle": -56.98, "curve": "stepped" },
{ "time": 1.3333, "angle": -56.98 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone11": {
"rotate": [
{ "time": 0, "angle": -0.1, "curve": "stepped" },
{ "time": 0.2, "angle": -0.1 },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0 },
{ "time": 0.4333, "angle": 10.24, "curve": "stepped" },
{ "time": 0.5, "angle": 10.24, "curve": "stepped" },
{ "time": 0.5666, "angle": 10.24 },
{ "time": 0.6333, "angle": -22.32 },
{ "time": 0.7, "angle": -6.96 },
{ "time": 0.8, "angle": 10.24, "curve": "stepped" },
{ "time": 0.9, "angle": 10.24, "curve": "stepped" },
{ "time": 1.3333, "angle": 10.24 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone12": {
"rotate": [
{ "time": 0, "angle": -0.1, "curve": "stepped" },
{ "time": 0.2, "angle": -0.1 },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0 },
{ "time": 0.4333, "angle": 10.24, "curve": "stepped" },
{ "time": 0.5, "angle": 10.24, "curve": "stepped" },
{ "time": 0.5666, "angle": 10.24 },
{ "time": 0.6333, "angle": -22.32 },
{ "time": 0.7, "angle": -6.96 },
{ "time": 0.8, "angle": 10.24, "curve": "stepped" },
{ "time": 0.9, "angle": 10.24, "curve": "stepped" },
{ "time": 1.3333, "angle": 10.24 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone13": {
"rotate": [
{ "time": 0, "angle": -0.1, "curve": "stepped" },
{ "time": 0.2, "angle": -0.1 },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0 },
{ "time": 0.4333, "angle": 10.24, "curve": "stepped" },
{ "time": 0.5, "angle": 10.24, "curve": "stepped" },
{ "time": 0.5666, "angle": 10.24 },
{ "time": 0.6333, "angle": -22.32 },
{ "time": 0.7, "angle": -6.96 },
{ "time": 0.8, "angle": 10.24, "curve": "stepped" },
{ "time": 0.9, "angle": 10.24, "curve": "stepped" },
{ "time": 1.3333, "angle": 10.24 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"kua3": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone14": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone15": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone16": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuodatui": {
"rotate": [
{ "time": 0, "angle": -8.19, "curve": "stepped" },
{ "time": 0.2, "angle": -8.19 },
{ "time": 0.2333, "angle": 309.62 },
{ "time": 0.3666, "angle": -78.65, "curve": "stepped" },
{ "time": 0.4, "angle": -78.65 },
{ "time": 0.4333, "angle": -24.24, "curve": "stepped" },
{ "time": 0.5, "angle": -24.24 },
{ "time": 0.5666, "angle": 295.88 },
{ "time": 0.6, "angle": 334.81 },
{ "time": 0.7, "angle": 341.72, "curve": "stepped" },
{ "time": 0.8, "angle": 341.72, "curve": "stepped" },
{ "time": 0.9, "angle": 341.72, "curve": "stepped" },
{ "time": 1.3333, "angle": 341.72 }
],
"translate": [
{ "time": 0, "x": -0.93, "y": -10.42, "curve": "stepped" },
{ "time": 0.2, "x": -0.93, "y": -10.42, "curve": "stepped" },
{ "time": 0.3666, "x": -0.93, "y": -10.42, "curve": "stepped" },
{ "time": 0.4, "x": -0.93, "y": -10.42, "curve": "stepped" },
{ "time": 0.4333, "x": -0.93, "y": -10.42, "curve": "stepped" },
{ "time": 0.5, "x": -0.93, "y": -10.42, "curve": "stepped" },
{ "time": 0.5666, "x": -0.93, "y": -10.42, "curve": "stepped" },
{ "time": 0.7, "x": -0.93, "y": -10.42, "curve": "stepped" },
{ "time": 0.8, "x": -0.93, "y": -10.42, "curve": "stepped" },
{ "time": 0.9, "x": -0.93, "y": -10.42, "curve": "stepped" },
{ "time": 1.3333, "x": -0.93, "y": -10.42 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuodatui2": {
"rotate": [
{ "time": 0, "angle": 16.58, "curve": "stepped" },
{ "time": 0.2, "angle": 16.58 },
{ "time": 0.2666, "angle": 20.35 },
{ "time": 0.3666, "angle": 28.27, "curve": "stepped" },
{ "time": 0.4, "angle": 28.27 },
{ "time": 0.4333, "angle": 52.67, "curve": "stepped" },
{ "time": 0.5, "angle": 52.67 },
{ "time": 0.5666, "angle": -4.05 },
{ "time": 0.6, "angle": -17.03 },
{ "time": 0.7, "angle": -55.02, "curve": "stepped" },
{ "time": 0.8, "angle": -55.02, "curve": "stepped" },
{ "time": 0.9, "angle": -55.02, "curve": "stepped" },
{ "time": 1.3333, "angle": -55.02 }
],
"translate": [
{ "time": 0, "x": 14.48, "y": 7.07, "curve": "stepped" },
{ "time": 0.2, "x": 14.48, "y": 7.07 },
{ "time": 0.3666, "x": 3.65, "y": -2.19, "curve": "stepped" },
{ "time": 0.4, "x": 3.65, "y": -2.19 },
{ "time": 0.4333, "x": 8.24, "y": 13.25, "curve": "stepped" },
{ "time": 0.5, "x": 8.24, "y": 13.25, "curve": "stepped" },
{ "time": 0.5666, "x": 8.24, "y": 13.25, "curve": "stepped" },
{ "time": 0.7, "x": 8.24, "y": 13.25, "curve": "stepped" },
{ "time": 0.8, "x": 8.24, "y": 13.25, "curve": "stepped" },
{ "time": 0.9, "x": 8.24, "y": 13.25, "curve": "stepped" },
{ "time": 1.3333, "x": 8.24, "y": 13.25 }
],
"scale": [
{ "time": 0, "x": 0.879, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 0.879, "y": 1 },
{ "time": 0.3666, "x": 0.577, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 0.577, "y": 1 },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"youjiao": {
"rotate": [
{ "time": 0, "angle": -6.9, "curve": "stepped" },
{ "time": 0.2, "angle": -6.9 },
{ "time": 0.2666, "angle": -13.81, "curve": "stepped" },
{ "time": 0.3666, "angle": -13.81, "curve": "stepped" },
{ "time": 0.4, "angle": -13.81, "curve": "stepped" },
{ "time": 0.4333, "angle": -13.81, "curve": "stepped" },
{ "time": 0.6666, "angle": -13.81, "curve": "stepped" },
{ "time": 0.7, "angle": -13.81, "curve": "stepped" },
{ "time": 0.8, "angle": -13.81, "curve": "stepped" },
{ "time": 0.9, "angle": -13.81, "curve": "stepped" },
{ "time": 1.3333, "angle": -13.81 }
],
"translate": [
{ "time": 0, "x": -102.46, "y": 1.5, "curve": "stepped" },
{ "time": 0.2, "x": -102.46, "y": 1.5 },
{ "time": 0.2333, "x": -105.78, "y": 0.44 },
{ "time": 0.2666, "x": -108.37, "y": 1.08 },
{ "time": 0.3666, "x": -107.67, "y": 1.08, "curve": "stepped" },
{ "time": 0.4, "x": -107.67, "y": 1.08, "curve": "stepped" },
{ "time": 0.4333, "x": -107.67, "y": 1.08 },
{ "time": 0.5, "x": -27.9, "y": -0.25, "curve": "stepped" },
{ "time": 0.5666, "x": -27.9, "y": -0.25 },
{ "time": 0.6333, "x": -7.29, "y": 8.69 },
{ "time": 0.6666, "x": -5.73, "y": -6.08 },
{ "time": 0.7, "x": 7.5, "y": 1.6, "curve": "stepped" },
{ "time": 0.8, "x": 7.5, "y": 1.6, "curve": "stepped" },
{ "time": 0.9, "x": 7.5, "y": 1.6, "curve": "stepped" },
{ "time": 1.3333, "x": 7.5, "y": 1.6 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuoxiaotui02": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuojiao02": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuojiao": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.4666, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 155.31, "y": 39.95, "curve": "stepped" },
{ "time": 0.2, "x": 155.31, "y": 39.95 },
{ "time": 0.2666, "x": 168.15, "y": 15.75 },
{ "time": 0.3666, "x": 170.23, "y": -3.09, "curve": "stepped" },
{ "time": 0.4, "x": 170.23, "y": -3.09 },
{ "time": 0.4333, "x": 115.15, "y": 14.05 },
{ "time": 0.4666, "x": 109.33, "y": 27.86 },
{ "time": 0.5, "x": 133.69, "y": 43.52, "curve": "stepped" },
{ "time": 0.5666, "x": 133.69, "y": 43.52 },
{ "time": 0.6, "x": 67.74, "y": -1.72 },
{ "time": 0.7, "x": -28.25, "y": -10.1, "curve": "stepped" },
{ "time": 0.8, "x": -28.25, "y": -10.1, "curve": "stepped" },
{ "time": 0.9, "x": -28.25, "y": -10.1, "curve": "stepped" },
{ "time": 1.3333, "x": -28.25, "y": -10.1 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuoxiaotui2": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuojiao2": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuojiao01": {
"rotate": [
{ "time": 0, "angle": -28.18, "curve": "stepped" },
{ "time": 0.2, "angle": -28.18 },
{ "time": 0.2666, "angle": -45.35 },
{ "time": 0.3666, "angle": -23.33, "curve": "stepped" },
{ "time": 0.4, "angle": -23.33 },
{ "time": 0.4333, "angle": 23.5, "curve": "stepped" },
{ "time": 0.5, "angle": 23.5, "curve": "stepped" },
{ "time": 0.5666, "angle": 23.5 },
{ "time": 0.6, "angle": 0.84 },
{ "time": 0.7, "angle": -12.84, "curve": "stepped" },
{ "time": 0.8, "angle": -12.84, "curve": "stepped" },
{ "time": 0.9, "angle": -12.84, "curve": "stepped" },
{ "time": 1.3333, "angle": -12.84 }
],
"translate": [
{ "time": 0, "x": -0.59, "y": -0.98, "curve": "stepped" },
{ "time": 0.2, "x": -0.59, "y": -0.98, "curve": "stepped" },
{ "time": 0.3666, "x": -0.59, "y": -0.98, "curve": "stepped" },
{ "time": 0.4, "x": -0.59, "y": -0.98, "curve": "stepped" },
{ "time": 0.4333, "x": -0.59, "y": -0.98, "curve": "stepped" },
{ "time": 0.5, "x": -0.59, "y": -0.98, "curve": "stepped" },
{ "time": 0.5666, "x": -0.59, "y": -0.98, "curve": "stepped" },
{ "time": 0.7, "x": -0.59, "y": -0.98, "curve": "stepped" },
{ "time": 0.8, "x": -0.59, "y": -0.98, "curve": "stepped" },
{ "time": 0.9, "x": -0.59, "y": -0.98, "curve": "stepped" },
{ "time": 1.3333, "x": -0.59, "y": -0.98 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"zuojiao1": {
"rotate": [
{ "time": 0, "angle": 38.38, "curve": "stepped" },
{ "time": 0.2, "angle": 38.38 },
{ "time": 0.3666, "angle": 25, "curve": "stepped" },
{ "time": 0.4, "angle": 25 },
{ "time": 0.4333, "angle": 103.44, "curve": "stepped" },
{ "time": 0.5, "angle": 103.44, "curve": "stepped" },
{ "time": 0.5666, "angle": 103.44 },
{ "time": 0.6, "angle": 33.26 },
{ "time": 0.6333, "angle": 33.6 },
{ "time": 0.6666, "angle": 51.24 },
{ "time": 0.7, "angle": 49.31, "curve": "stepped" },
{ "time": 0.8, "angle": 49.31, "curve": "stepped" },
{ "time": 0.9, "angle": 49.31, "curve": "stepped" },
{ "time": 1.3333, "angle": 49.31 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"eff/01": {
"translate": [
{ "time": 0.4666, "x": 135.05, "y": 397.05 },
{ "time": 0.5333, "x": 135.05, "y": 479.82 }
],
"scale": [
{ "time": 0.4666, "x": 1.684, "y": 1.445 }
]
},
"dg6/1_00034": {
"translate": [
{ "time": 0.6, "x": -194.04, "y": 416.41 }
],
"scale": [
{ "time": 0.6, "x": 1.368, "y": 1.534 }
]
},
"eff/hui01": {
"rotate": [
{ "time": 0.6, "angle": 0 },
{ "time": 0.6333, "angle": 0.15 },
{ "time": 0.6666, "angle": 0.94 },
{ "time": 0.7, "angle": -0.07 },
{ "time": 0.7333, "angle": -0.15 },
{ "time": 0.7666, "angle": -0.11 },
{ "time": 0.8, "angle": 0.3 }
],
"translate": [
{ "time": 0.6, "x": 0, "y": -4.14 },
{ "time": 0.6333, "x": -0.39, "y": 11.12 },
{ "time": 0.6666, "x": -1, "y": -11.94 },
{ "time": 0.7, "x": -1.61, "y": -2.92 },
{ "time": 0.7333, "x": -1.97, "y": -1.77 },
{ "time": 0.7666, "x": -2.59, "y": -2.3 },
{ "time": 0.8, "x": -3.28, "y": -3.23 }
],
"scale": [
{ "time": 0.6, "x": 1.5, "y": 1 }
]
},
"eff/02": {
"translate": [
{ "time": 0, "x": -751.56, "y": 0 },
{ "time": 0.0333, "x": -771.7, "y": 0 },
{ "time": 0.0666, "x": -754.25, "y": 0 },
{ "time": 0.1, "x": -771.7, "y": 0 },
{ "time": 0.1333, "x": -740.82, "y": 0 },
{ "time": 0.1666, "x": -762.3, "y": 0 },
{ "time": 0.2, "x": -747.54, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1.857, "y": 1.849 }
]
}
},
"events": [
{ "time": 0.6, "name": "special" }
]
}
}
}