Blame view

res/spineEff/niutouhuanying.json 158 KB
860da849   zhaolu   auto package
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
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
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
  {
  "skeleton": { "hash": "HGNQho7dyhqjfXVkSIZNSGg9Q6Q", "spine": "3.4.02", "width": 411.38, "height": 478.67 },
  "bones": [
  	{ "name": "root", "scaleX": 0.65, "scaleY": 0.65 },
  	{ "name": "body", "parent": "root", "length": 196.76, "rotation": 81.49, "x": 18.34, "y": 164.95 },
  	{ "name": "backHair", "parent": "body", "length": 56.85, "rotation": 174.56, "x": 258.14, "y": 122.6 },
  	{ "name": "bone", "parent": "body", "length": 75.08, "rotation": 32.2, "x": 252.36, "y": 27.31 },
  	{ "name": "hair", "parent": "body", "length": 42.75, "rotation": -169.21, "x": 231.31, "y": 49.21 },
  	{ "name": "bone19", "parent": "hair", "length": 50.17, "x": 42.75, "y": 0.16 },
  	{ "name": "bone20", "parent": "bone19", "length": 48.28, "rotation": -2.27, "x": 50.17, "y": -0.13 },
  	{ "name": "bone21", "parent": "bone20", "length": 37.19, "rotation": -2.72, "x": 48.28 },
  	{ "name": "bone22", "parent": "bone21", "length": 48.28, "rotation": 2.27, "x": 37.19, "y": -0.11 },
  	{ "name": "bone25", "parent": "backHair", "length": 53.51, "rotation": 7.23, "x": 56.85, "y": -0.09 },
  	{ "name": "bone26", "parent": "bone25", "length": 53.77, "rotation": -1.35, "x": 53.51, "y": 0.34 },
  	{ "name": "bone27", "parent": "bone26", "length": 49.4, "rotation": 3.15, "x": 53.76, "y": -0.35 },
  	{ "name": "bone28", "parent": "bone27", "length": 88.73, "rotation": 7.18, "x": 49.4, "y": 0.29 },
  	{ "name": "tou", "parent": "root", "length": 201.82, "rotation": -63.07, "x": 65.2, "y": 412.15 },
  	{ "name": "eye", "parent": "tou", "x": 123.7, "y": -10.76 },
  	{ "name": "eyelight", "parent": "root", "x": -122.66, "y": 661.35 },
  	{ "name": "images/niujiao003", "parent": "tou", "length": 31.53, "rotation": 89.63, "x": 46.6, "y": -30.68 },
  	{ "name": "kucha", "parent": "root", "x": 18.34, "y": 131.21 },
  	{ "name": "youdabi", "parent": "body", "length": 145.88, "rotation": 157.18, "x": 194.15, "y": 146.93 },
  	{ "name": "youdatui", "parent": "root", "length": 57.65, "rotation": -100.7, "x": -33.33, "y": 147.43 },
  	{ "name": "youjianjia", "parent": "body", "length": 129.32, "rotation": 110.7, "x": 214.99, "y": 133.15 },
  	{ "name": "youjiao", "parent": "root", "x": -71.46, "y": 10.9 },
  	{ "name": "youxiaobi", "parent": "youdabi", "length": 132.07, "rotation": 27.81, "x": 150.36, "y": -4.15 },
  	{ "name": "youshou", "parent": "youxiaobi", "length": 59.69, "rotation": 8.5, "x": 167.62, "y": -2.75 },
  	{ "name": "youxiaotui", "parent": "youdatui", "length": 59.9, "rotation": -8.06, "x": 65.06, "y": -6.49 },
  	{ "name": "zuodabi", "parent": "body", "length": 153.71, "rotation": -159.69, "x": 228.61, "y": -95.78 },
  	{ "name": "zuodatui", "parent": "root", "length": 69.86, "rotation": -63.97, "x": 55.22, "y": 137.59 },
  	{ "name": "zuojiao", "parent": "root", "x": 62.6, "y": 7.21 },
  	{ "name": "zuoxiaobi", "parent": "zuodabi", "length": 127.94, "rotation": -20.7, "x": 172.28, "y": -1.87 },
  	{ "name": "zuoshou", "parent": "zuoxiaobi", "length": 43.07, "rotation": 1.35, "x": 146.56, "y": 0.36 },
  	{ "name": "zuoxiaotui", "parent": "zuodatui", "length": 51.91, "rotation": -62.53, "x": 80.36, "y": -3.65 }
  ],
  "slots": [
  	{ "name": "images/zuoshou001", "bone": "zuoshou", "color": "ffffff7e", "attachment": "images/zuoshou001" },
  	{ "name": "images/zuoxiaobi001", "bone": "zuoxiaobi", "color": "ffffff7e", "attachment": "images/zuoxiaobi001" },
  	{ "name": "images/zuoshangbi001", "bone": "zuodabi", "color": "ffffff7e", "attachment": "images/zuoshangbi001" },
  	{ "name": "images/hair003", "bone": "backHair", "color": "ffffff82", "attachment": "images/hair003" },
  	{ "name": "images/zuofoot001", "bone": "zuojiao", "color": "ffffff7f", "attachment": "images/zuofoot001" },
  	{ "name": "images/zuoxiaotui", "bone": "zuoxiaotui", "color": "ffffff84", "attachment": "images/zuoxiaotui" },
  	{ "name": "images/zuodatui001", "bone": "zuodatui", "color": "ffffff80", "attachment": "images/zuodatui001" },
  	{ "name": "images/body003", "bone": "body", "color": "ffffff80", "attachment": "images/body002" },
  	{ "name": "images/houbeitoufa003", "bone": "bone", "color": "ffffff7e", "attachment": "images/houbeitoufa003" },
  	{ "name": "images/dangbu002", "bone": "kucha", "color": "ffffff84", "attachment": "images/dangbu002" },
  	{ "name": "images/youfoot", "bone": "youjiao", "color": "ffffff88", "attachment": "images/youfoot" },
  	{ "name": "images/youdatui001", "bone": "youdatui", "color": "ffffff82", "attachment": "images/youdatui001" },
  	{ "name": "images/touHair002", "bone": "hair", "color": "ffffff79", "attachment": "images/touHair002" },
  	{ "name": "images/head003", "bone": "tou", "color": "ffffff80", "attachment": "images/head002" },
  	{ "name": "images/youxiaotui", "bone": "youxiaotui", "color": "ffffff84", "attachment": "images/youxiaotui" },
  	{ "name": "images/niujiao003", "bone": "images/niujiao003", "color": "ffffff82", "attachment": "images/niujiao003" },
  	{ "name": "images/eye", "bone": "eye", "color": "ffffff84", "attachment": "images/eye" },
  	{ "name": "images/hand004", "bone": "youshou", "color": "ffffff7d", "attachment": "images/hand004" },
  	{ "name": "images/youshangbi001", "bone": "youdabi", "color": "ffffff80", "attachment": "images/youshangbi001" },
  	{ "name": "images/jianjia004", "bone": "youjianjia", "color": "ffffff80", "attachment": "images/jianjia004" },
  	{ "name": "images/youshoubi003", "bone": "youxiaobi", "color": "ffffff83", "attachment": "images/youshoubi003" },
  	{ "name": "images/eyelight", "bone": "eyelight", "attachment": "images/eyelight", "blend": "screen" }
  ],
  "skins": {
  	"default": {
  		"images/body003": {
  			"images/body001": { "x": 116.9, "y": 19.18, "rotation": -81.49, "width": 251, "height": 303 },
  			"images/body002": { "x": 116.9, "y": 19.18, "rotation": -81.49, "width": 252, "height": 327 },
  			"images/body003": { "x": 116.9, "y": 19.18, "rotation": -81.49, "width": 289, "height": 307 }
  		},
  		"images/dangbu002": {
  			"images/dangbu002": { "x": -14.53, "y": -24.7, "width": 168, "height": 132 }
  		},
  		"images/eye": {
  			"images/eye": { "x": -4.52, "y": 6.8, "rotation": 63.07, "width": 27, "height": 32 }
  		},
  		"images/eyelight": {
  			"images/eyelight": { "x": 1.71, "y": -4.09, "width": 535, "height": 155 }
  		},
  		"images/hair003": {
  			"images/hair003": {
  				"type": "mesh",
  				"uvs": [ 0, 0, 0.16666, 0, 0.33333, 0, 0.5, 0, 0.66666, 0, 0.83333, 0, 1, 0, 1, 0.16666, 1, 0.33333, 1, 0.5, 1, 0.66666, 1, 0.83333, 1, 1, 0.83333, 1, 0.66666, 1, 0.5, 1, 0.33333, 1, 0.16666, 1, 0, 1, 0, 0.83333, 0, 0.66666, 0, 0.5, 0, 0.33333, 0, 0.16666, 0.16666, 0.16666, 0.16666, 0.33333, 0.16666, 0.5, 0.16666, 0.66666, 0.16666, 0.83333, 0.33333, 0.16666, 0.33333, 0.33333, 0.33333, 0.5, 0.33333, 0.66666, 0.33333, 0.83333, 0.5, 0.16666, 0.5, 0.33333, 0.5, 0.5, 0.5, 0.66666, 0.5, 0.83333, 0.66666, 0.16666, 0.66666, 0.33333, 0.66666, 0.5, 0.66666, 0.66666, 0.66666, 0.83333, 0.83333, 0.16666, 0.83333, 0.33333, 0.83333, 0.5, 0.83333, 0.66666, 0.83333, 0.83333 ],
  				"triangles": [ 13, 11, 12, 14, 48, 13, 13, 48, 11, 15, 43, 14, 14, 43, 48, 16, 38, 15, 15, 38, 43, 17, 33, 16, 16, 33, 38, 18, 28, 17, 17, 28, 33, 18, 19, 28, 48, 10, 11, 43, 47, 48, 48, 47, 10, 38, 42, 43, 43, 42, 47, 38, 32, 37, 38, 37, 42, 33, 27, 32, 38, 33, 32, 28, 20, 27, 33, 28, 27, 28, 19, 20, 32, 36, 37, 47, 9, 10, 42, 46, 47, 37, 41, 42, 27, 31, 32, 20, 26, 27, 27, 26, 31, 20, 21, 26, 47, 46, 9, 42, 41, 46, 37, 36, 41, 32, 31, 36, 46, 8, 9, 36, 40, 41, 46, 41, 40, 31, 35, 36, 26, 30, 31, 21, 25, 26, 26, 25, 30, 21, 22, 25, 46, 40, 45, 46, 45, 8, 36, 35, 40, 31, 30, 35, 45, 7, 8, 35, 39, 40, 45, 40, 39, 30, 34, 35, 25, 29, 30, 22, 24, 25, 45, 39, 44, 45, 44, 7, 35, 34, 39, 30, 29, 34, 25, 24, 29, 22, 23, 24, 44, 6, 7, 44, 4, 5, 44, 5, 6, 34, 4, 39, 44, 39, 4, 29, 3, 34, 34, 3, 4, 24, 2, 29, 29, 2, 3, 23, 1, 24, 24, 1, 2, 23, 0, 1 ],
  				"vertices": [ 4, 2, 0.8, -121.99, 0.78057, 9, -70.94999, -113.88, 0.21339, 10, -121.76, -117.11, 0.00593, 12, -242.67, -77.5, 8.0E-5, 4, 2, -6.06, -94.33, 0.83165, 9, -74.28, -85.57, 0.16525, 10, -125.75, -88.89, 0.00301, 12, -241.54, -49.03, 6.0E-5, 4, 2, -12.93, -66.67, 0.88435, 9, -77.61, -57.27, 0.11559, 11, -186.54, -50.17, 0, 12, -240.41, -20.54999, 5.0E-5, 3, 2, -19.79, -39.00999, 0.97208, 9, -80.94, -28.96, 0.02789, 12, -239.28, 7.92, 2.0E-5, 3, 2, -26.66, -11.35, 0.99999, 11, -191.42, 6.61, 0, 12, -238.14, 36.4, 0, 2, 2, -33.53, 16.29999, 0.99999, 11, -193.86, 35.00999, 0, 2, 2, -40.39, 43.96, 0.99999, 11, -196.3, 63.41, 0, 3, 2, 17.02, 58.21, 0.81863, 9, -32.16999, 62.86, 0.17521, 10, -87.13, 60.49, 0.00615, 4, 2, 74.44, 72.47, 0.18975, 9, 26.58, 69.76999, 0.54978, 10, -28.55, 68.78, 0.2381, 11, -78.4, 73.54, 0.02235, 5, 2, 131.87, 86.72, 1.1E-4, 9, 85.34, 76.69, 0.18465, 10, 30.03, 77.06, 0.49766, 11, -19.45, 78.6, 0.27379, 12, -58.52, 86.31, 0.04377, 4, 9, 144.1, 83.6, 0.00656, 10, 88.61, 85.35, 0.15138, 11, 39.49, 83.67, 0.38987, 12, 0.58999, 83.96, 0.45218, 5, 2, 246.71, 115.23, 0, 9, 202.86, 90.52, 3.0E-5, 10, 147.19, 93.64, 0.00624, 11, 98.44, 88.73, 0.0828, 12, 59.71, 81.61, 0.9109, 4, 2, 304.14, 129.49, 0, 9, 261.62, 97.44, 2.0E-5, 11, 157.39, 93.8, 3.9E-4, 12, 118.83, 79.26, 0.99957, 3, 2, 311, 101.83, 0, 9, 264.95, 69.12999, 2.0E-5, 12, 117.7, 50.79, 0.99998, 2, 9, 268.28, 40.83, 0, 12, 116.57, 22.31, 0.99999, 3, 2, 324.74, 46.51, 0, 9, 271.62, 12.52, 0, 12, 115.43, -6.16, 0.99999, 2, 2, 331.6, 18.85, 0, 12, 114.3, -34.64, 0.99999, 2, 2, 338.47, -8.8, 1.0E-5, 12, 113.17, -63.11, 0.99998, 2, 2, 345.34, -36.46, 1.0E-5, 12, 112.04, -91.59, 0.99998, 4, 2, 287.91, -50.72, 2.0E-5, 10, 171.15, -75.66, 0.0017, 11, 113.08, -81.62999, 0.0867, 12, 52.92, -89.24, 0.91156, 4, 9, 164.09, -86.21, 0.01008, 10, 112.57, -83.95, 0.10209, 11, 54.13, -86.7, 0.40732, 12, -6.19, -86.9, 0.48049, 5, 2, 173.07, -79.23, 0.01482, 9, 105.33, -93.13, 0.14692, 10, 53.98, -92.24, 0.39281, 11, -4.81, -91.76, 0.37663, 12, -65.31, -84.55, 0.0688, 4, 2, 115.64, -93.48, 0.18187, 9, 46.57, -100.04, 0.41313, 10, -4.59, -100.53, 0.31731, 11, -63.76, -96.83, 0.08767, 5, 2, 58.22, -107.74, 0.58051, 9, -12.19, -106.96, 0.33864, 10, -63.17, -108.82, 0.07535, 11, -122.71, -101.89, 0.00539, 12, -183.55, -79.85, 8.0E-5, 5, 2, 51.35, -80.08, 0.60709, 9, -15.52, -78.66, 0.32731, 10, -67.17, -80.6, 0.06189, 11, -125.15, -73.5, 0.00363, 12, -182.42, -51.37, 6.0E-5, 4, 2, 108.78, -65.82, 0.12088, 9, 43.23, -71.74, 0.41164, 10, -8.58, -72.31, 0.36995, 11, -66.19999, -68.43, 0.09751, 5, 2, 166.2, -51.57, 0.00909, 9, 102, -64.82, 0.11967, 10, 49.99, -64.01999, 0.3893, 11, -7.25, -63.37, 0.40432, 12, -64.18, -56.07, 0.07759, 4, 9, 160.76, -57.91, 0.01425, 10, 108.57, -55.73, 0.1208, 11, 51.69, -58.3, 0.44649, 12, -5.06, -58.42, 0.41843, 4, 2, 281.05, -23.06, 1.0E-5, 10, 167.16, -47.44, 0.00143, 11, 110.64, -53.24, 0.07772, 12, 54.05, -60.77, 0.92082, 5, 2, 44.49, -52.42, 0.68691, 9, -18.85, -50.35, 0.29372, 10, -71.16, -52.38, 0.0193, 11, -127.59, -45.1, 2.0E-5, 12, -181.29, -22.9, 2.0E-5, 4, 2, 101.91, -38.16, 0.09531, 9, 39.9, -43.44, 0.48445, 10, -12.58, -44.09, 0.36935, 11, -68.64, -40.04, 0.05087, 5, 2, 159.33, -23.91, 0.0021, 9, 98.66, -36.52, 0.0712, 10, 46, -35.8, 0.48877, 11, -9.68999, -34.97, 0.41588, 12, -63.05, -27.59, 0.02202, 5, 2, 216.76, -9.64999, 0, 9, 157.43, -29.6, 0, 10, 104.58, -27.51, 0.01201, 11, 49.25, -29.91, 0.39059, 12, -3.93, -29.94, 0.59739, 3, 2, 274.18, 4.59, 0, 11, 108.2, -24.84, 0.02179, 12, 55.18, -32.29, 0.97819, 4, 2, 37.62, -24.76, 0.79201, 9, -22.18, -22.05, 0.20541, 10, -75.15, -24.16, 0.00256, 12, -180.16, 5.57, 0, 2, 9, 36.57, -15.13, 0.90776, 10, -16.57, -15.87, 0.09224, 2, 10, 42.01, -7.58, 0.821, 11, -12.13, -6.58, 0.17899, 2, 11, 46.81, -1.51, 0.5, 12, -2.8, -1.46, 0.5, 2, 2, 267.31, 32.25, 0, 12, 56.31, -3.81, 0.99999, 1, 2, 30.75, 2.89, 1, 2, 9, 33.24, 13.16, 0.84522, 10, -20.56, 12.34, 0.15477, 2, 10, 38.00999, 20.62999, 0.80623, 11, -14.57, 21.81, 0.19376, 3, 10, 96.6, 28.92, 0.0497, 11, 44.37, 26.87, 0.62769, 12, -1.66, 27, 0.32259, 2, 11, 103.32, 31.94, 0.0064, 12, 57.45, 24.66, 0.99359, 3, 2, 23.89, 30.55, 0.81408, 9, -28.84, 34.55, 0.17941, 10, -83.14, 32.27, 0.0065, 4, 2, 81.31, 44.81, 0.09631, 9, 29.91, 41.47, 0.56967, 10, -24.55, 40.56, 0.30708, 11, -75.96, 45.14, 0.02692, 5, 2, 138.73, 59.06, 7.0E-4, 9, 88.67, 48.38, 0.18657, 10, 34.02, 48.85, 0.58509, 11, -17.01, 50.2, 0.21363, 12, -59.65, 57.83, 0.01399, 5, 2, 196.16, 73.32, 0, 9, 147.43, 55.3, 0.00442, 10, 92.6, 57.13, 0.13228, 11, 41.93, 55.27, 0.46085, 12, -0.52999, 55.48, 0.40243, 4, 2, 253.58, 87.57, 0, 10, 151.19, 65.42, 0.00592, 11, 100.88, 60.33, 0.07535, 12, 58.58, 53.13, 0.91872 ],
  				"hull": 24
  			}
  		},
  		"images/hand004": {
  			"images/hand004": { "x": 10.48, "y": 0.06, "rotation": 84.99, "width": 161, "height": 117 }
  		},
  		"images/head003": {
  			"images/head001": { "x": 125.43, "y": 29, "rotation": 63.07, "width": 183, "height": 208 },
  			"images/head002": { "x": 119.82, "y": 17.96, "rotation": 63.07, "width": 187, "height": 228 },
  			"images/head003": { "x": 144.51, "y": 66.56, "rotation": 63.07, "width": 284, "height": 235 }
  		},
  		"images/houbeitoufa003": {
  			"images/houbeitoufa003": { "x": 1.09, "y": 10.96, "rotation": -113.69, "width": 302, "height": 163 }
  		},
  		"images/jianjia004": {
  			"images/jianjia001": { "x": 60.33, "y": -3.95, "rotation": 167.8, "width": 182, "height": 244 },
  			"images/jianjia002": { "x": 60.33, "y": -3.95, "rotation": 167.8, "width": 210, "height": 250 },
  			"images/jianjia003": { "x": 60.33, "y": -3.95, "rotation": 167.8, "width": 224, "height": 254 },
  			"images/jianjia004": { "x": 60.33, "y": -3.95, "rotation": 167.8, "width": 238, "height": 254 }
  		},
  		"images/niujiao003": {
  			"images/niujiao003": { "x": -13.43, "y": -8.55, "rotation": -26.56, "width": 117, "height": 191 }
  		},
  		"images/touHair002": {
  			"images/touHair002": {
  				"type": "mesh",
  				"uvs": [ 0, 0, 0.14285, 0, 0.28571, 0, 0.42857, 0, 0.57142, 0, 0.71428, 0, 0.85714, 0, 1, 0, 1, 0.14285, 1, 0.28571, 1, 0.42857, 1, 0.57142, 1, 0.71428, 1, 0.85714, 1, 1, 0.85714, 1, 0.71428, 1, 0.57142, 1, 0.42857, 1, 0.28571, 1, 0.14285, 1, 0, 1, 0, 0.85714, 0, 0.71428, 0, 0.57142, 0, 0.42857, 0, 0.28571, 0, 0.14285, 0.14285, 0.14285, 0.14285, 0.28571, 0.14285, 0.42857, 0.14285, 0.57142, 0.14285, 0.71428, 0.14285, 0.85714, 0.28571, 0.14285, 0.28571, 0.28571, 0.28571, 0.42857, 0.28571, 0.57142, 0.28571, 0.71428, 0.28571, 0.85714, 0.42857, 0.14285, 0.42857, 0.28571, 0.42857, 0.42857, 0.42857, 0.57142, 0.42857, 0.71428, 0.42857, 0.85714, 0.57142, 0.14285, 0.57142, 0.28571, 0.57142, 0.42857, 0.57142, 0.57142, 0.57142, 0.71428, 0.57142, 0.85714, 0.71428, 0.14285, 0.71428, 0.28571, 0.71428, 0.42857, 0.71428, 0.57142, 0.71428, 0.71428, 0.71428, 0.85714, 0.85714, 0.14285, 0.85714, 0.28571, 0.85714, 0.42857, 0.85714, 0.57142, 0.85714, 0.71428, 0.85714, 0.85714 ],
  				"triangles": [ 59, 58, 8, 53, 52, 58, 47, 40, 46, 47, 46, 52, 35, 34, 40, 29, 28, 34, 26, 27, 28, 58, 7, 8, 52, 6, 58, 58, 6, 7, 46, 5, 52, 52, 5, 6, 46, 3, 4, 46, 4, 5, 34, 3, 40, 46, 40, 3, 28, 2, 34, 34, 2, 3, 27, 1, 28, 28, 1, 2, 27, 0, 1, 60, 9, 10, 54, 59, 60, 60, 59, 9, 48, 53, 54, 54, 53, 59, 42, 47, 48, 48, 47, 53, 36, 41, 42, 42, 41, 47, 30, 35, 36, 36, 35, 41, 25, 29, 30, 30, 29, 35, 25, 26, 29, 59, 8, 9, 53, 58, 59, 47, 52, 53, 35, 40, 41, 47, 41, 40, 29, 34, 35, 26, 28, 29, 62, 61, 11, 56, 55, 61, 50, 49, 55, 44, 43, 49, 38, 37, 43, 32, 31, 37, 23, 24, 31, 61, 10, 11, 55, 60, 61, 61, 60, 10, 49, 54, 55, 55, 54, 60, 43, 48, 49, 49, 48, 54, 37, 42, 43, 43, 42, 48, 37, 30, 36, 37, 36, 42, 31, 25, 30, 37, 31, 30, 31, 24, 25, 63, 62, 12, 57, 56, 62, 51, 50, 56, 45, 44, 50, 39, 38, 44, 33, 32, 38, 22, 23, 32, 62, 11, 12, 56, 61, 62, 50, 55, 56, 44, 49, 50, 38, 43, 44, 32, 37, 38, 23, 31, 32, 15, 13, 14, 16, 63, 15, 15, 63, 13, 17, 57, 16, 16, 57, 63, 18, 51, 17, 17, 51, 57, 19, 45, 18, 18, 45, 51, 20, 39, 19, 19, 39, 45, 21, 33, 20, 20, 33, 39, 21, 22, 33, 63, 12, 13, 57, 62, 63, 51, 56, 57, 45, 50, 51, 39, 44, 45, 33, 38, 39, 22, 32, 33 ],
  				"vertices": [ 2, 5, -56.46, -19.39, 0, 4, -13.7, -19.23, 1, 1, 4, -13.42, -12.23, 1, 2, 5, -55.9, -5.4, 0, 4, -13.15, -5.23999, 1, 2, 5, -55.62, 1.59, 0, 4, -12.87, 1.75, 1, 2, 5, -55.35, 8.58, 0, 4, -12.59, 8.74, 0.99999, 2, 5, -55.07, 15.58, 0, 4, -12.31, 15.74, 0.99999, 2, 5, -54.79, 22.57, 0, 4, -12.04, 22.73, 0.99999, 2, 5, -54.51, 29.56, 0, 4, -11.76, 29.73, 0.99999, 2, 5, -19.4, 28.17, 0.07041, 4, 23.35, 28.33, 0.92957, 3, 6, -35.5, 25.52, 4.7E-4, 5, 15.71, 26.78, 0.87148, 4, 58.46, 26.94, 0.12804, 3, 6, -0.36, 25.52, 0.50356, 5, 50.82, 25.38, 0.49634, 4, 93.58, 25.54, 9.0E-5, 3, 7, -14.69, 24.86, 0.14572, 6, 34.77, 25.52, 0.85425, 4, 128.69, 24.15, 1.0E-5, 4, 8, -15.71, 27.26, 0.10104, 7, 20.4, 26.51, 0.84002, 6, 69.91, 25.52, 0.05893, 4, 163.81, 22.75, 0, 2, 8, 19.42, 27.52, 0.91199, 7, 55.51, 28.16, 0.088, 2, 8, 54.56, 27.79, 0.99997, 7, 90.61, 29.81, 2.0E-5, 2, 8, 54.61, 20.79, 0.99999, 7, 90.94, 22.82, 0, 2, 8, 54.67, 13.79, 0.99999, 7, 91.27, 15.82, 0, 2, 8, 54.72, 6.79, 0.99999, 7, 91.6, 8.83, 0, 2, 8, 54.77, -0.2, 0.99999, 7, 91.93, 1.84, 0, 3, 8, 54.82, -7.2, 0.99997, 7, 92.26, -5.14, 2.0E-5, 6, 140.2, -9.47, 0, 3, 8, 54.88, -14.2, 0.99992, 7, 92.58, -12.13, 7.0E-5, 6, 140.2, -16.46999, 0, 3, 8, 54.93, -21.2, 0.9999, 7, 92.91, -19.12999, 9.0E-5, 6, 140.2, -23.47, 0, 3, 8, 19.79, -21.46, 0.97114, 7, 57.81, -20.78, 0.02883, 6, 105.06, -23.47, 2.0E-5, 3, 8, -15.34, -21.73, 0.11017, 7, 22.71, -22.43, 0.86657, 6, 69.91, -23.47, 0.02325, 2, 7, -12.39, -24.08, 0.14507, 6, 34.77, -23.47, 0.85492, 2, 6, -0.36, -23.47, 0.47354, 5, 48.88, -23.57, 0.52644, 2, 5, 13.76, -22.18, 0.8964, 4, 56.52, -22.02, 0.10359, 2, 5, -21.34, -20.78, 0.03495, 4, 21.4, -20.62, 0.96504, 2, 5, -21.06, -13.79, 0.01856, 4, 21.68, -13.63, 0.98143, 2, 5, 14.04, -15.18, 0.93287, 4, 56.8, -15.02, 0.06712, 2, 6, -0.36, -16.46999, 0.477, 5, 49.16, -16.58, 0.52299, 2, 7, -12.72, -17.09, 0.05514, 6, 34.77, -16.46999, 0.94485, 3, 8, -15.4, -14.73, 0.15464, 7, 22.38, -15.43, 0.83948, 6, 69.91, -16.46999, 0.00587, 3, 8, 19.73, -14.46, 0.99619, 7, 57.48, -13.78, 0.00378, 6, 105.06, -16.46999, 1.0E-5, 2, 5, -20.79, -6.79, 0.01856, 4, 21.96, -6.63, 0.98143, 2, 5, 14.32, -8.18999, 0.93287, 4, 57.07, -8.03, 0.06712, 2, 6, -0.36, -9.47, 0.42299, 5, 49.43, -9.58, 0.577, 2, 7, -13.05, -10.09, 0.04669, 6, 34.77, -9.47, 0.9533, 1, 7, 22.05, -8.43999, 1, 2, 8, 19.68, -7.46, 0.99999, 6, 105.06, -9.47, 0, 1, 4, 22.24, 0.35, 1, 1, 5, 14.6, -1.19, 1, 2, 6, -0.36, -2.47, 0.5, 5, 49.71, -2.58999, 0.5, 1, 6, 34.77, -2.47, 1, 1, 7, 21.72, -1.45, 1, 1, 8, 19.62999, -0.47, 1, 1, 4, 22.51, 7.35, 1, 2, 5, 14.87, 5.79, 0.90522, 4, 57.63, 5.95, 0.09477, 2, 6, -0.36, 4.52, 0.34302, 5, 49.99, 4.4, 0.65697, 3, 7, -13.7, 3.88, 0.05027, 6, 34.77, 4.52, 0.94971, 4, 127.86, 3.16, 0, 3, 8, -15.55, 6.26, 0.04791, 7, 21.39, 5.53, 0.95208, 4, 162.98, 1.77, 0, 1, 8, 19.58, 6.52, 1, 2, 5, -19.95, 14.18, 0.02984, 4, 22.79, 14.34, 0.97015, 2, 5, 15.15, 12.79, 0.88718, 4, 57.91, 12.95, 0.11281, 2, 6, -0.36, 11.52, 0.38283, 5, 50.27, 11.39, 0.61716, 3, 7, -14.03, 10.87, 0.05027, 6, 34.77, 11.52, 0.94971, 4, 128.14, 10.16, 0, 4, 8, -15.61, 13.26, 0.02625, 7, 21.06, 12.52, 0.94196, 6, 69.91, 11.52, 0.03176, 4, 163.25, 8.76, 0, 2, 8, 19.53, 13.52, 0.97884, 7, 56.17, 14.17, 0.02115, 2, 5, -19.68, 21.18, 0.02984, 4, 23.07, 21.34, 0.97015, 2, 5, 15.43, 19.78, 0.78723, 4, 58.19, 19.94, 0.21276, 3, 6, -0.36, 18.52, 0.64879, 5, 50.54, 18.39, 0.35114, 4, 93.3, 18.54999, 6.0E-5, 4, 7, -14.36, 17.87, 0.05036, 6, 34.77, 18.52, 0.94856, 5, 85.66, 16.99, 0.00105, 4, 128.42, 17.15, 2.0E-5, 4, 8, -15.66, 20.26, 0.1113, 7, 20.73, 19.52, 0.86282, 6, 69.91, 18.52, 0.02587, 4, 163.53, 15.76, 0, 2, 8, 19.46999, 20.52, 0.94572, 7, 55.84, 21.17, 0.05427 ],
  				"hull": 28
  			}
  		},
  		"images/youdatui001": {
  			"images/youdatui001": { "x": 27.21, "y": 4.68, "rotation": 100.7, "width": 79, "height": 123 }
  		},
  		"images/youfoot": {
  			"images/youfoot": { "x": -2.72, "y": 3.62, "width": 44, "height": 30 },
  			"images/zuofoot001": { "x": -1.14, "y": 3.62, "width": 61, "height": 28 }
  		},
  		"images/youshangbi001": {
  			"images/youshangbi001": { "x": 85.73, "y": -0.51, "rotation": 121.32, "width": 165, "height": 200 }
  		},
  		"images/youshoubi003": {
  			"images/youshoubi003": { "x": 29.7, "y": -20.73, "rotation": 93.5, "width": 179, "height": 266 }
  		},
  		"images/youxiaotui": {
  			"images/youxiaotui": { "x": 30.21, "y": -0.09, "rotation": 108.76, "width": 57, "height": 81 }
  		},
  		"images/zuodatui001": {
  			"images/zuodatui001": { "x": 40.69, "y": -8.49, "rotation": 63.97, "width": 95, "height": 111 }
  		},
  		"images/zuofoot001": {
  			"images/zuofoot001": { "x": -3.95, "y": 5.12, "width": 61, "height": 28 }
  		},
  		"images/zuoshangbi001": {
  			"images/zuoshangbi001": { "x": 110.56, "y": -6.11, "rotation": 78.2, "width": 143, "height": 210 }
  		},
  		"images/zuoshou001": {
  			"images/zuoshou001": { "x": -2.84, "y": 2.16, "rotation": 97.55, "width": 143, "height": 111 }
  		},
  		"images/zuoxiaobi001": {
  			"images/zuoxiaobi001": { "x": 58.37, "y": -1.33, "rotation": 98.9, "width": 149, "height": 166 }
  		},
  		"images/zuoxiaotui": {
  			"images/zuoxiaotui": { "x": 25.34, "y": 1.49, "rotation": 126.51, "width": 74, "height": 70 }
  		}
  	}
  },
  "events": {
  	"special": {}
  },
  "animations": {
  	"special": {
  		"slots": {
  			"images/body003": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff80" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0.1333, "name": "images/body002" },
  					{ "time": 0.6666, "name": "images/body002" },
  					{ "time": 0.7333, "name": "images/body002" },
  					{ "time": 1.1, "name": "images/body002" }
  				]
  			},
  			"images/dangbu002": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff84" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/eye": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff84" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/eyelight": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 0.1666, "color": "ffffffff" },
  					{ "time": 0.3333, "color": "ffffff00", "curve": "stepped" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 2.1333, "name": "images/eyelight" }
  				]
  			},
  			"images/hair003": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff82" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/hand004": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff7d" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/head003": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff80" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0.0666, "name": "images/head002" },
  					{ "time": 1.1, "name": "images/head002" },
  					{ "time": 1.4333, "name": "images/head002" },
  					{ "time": 2.0666, "name": "images/head002" }
  				]
  			},
  			"images/houbeitoufa003": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff7e" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/jianjia004": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff80" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/niujiao003": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff82" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/touHair002": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff79" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/youdatui001": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff82" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/youfoot": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff88" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/youshangbi001": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff80" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/youshoubi003": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff83" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/youxiaotui": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff84" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/zuodatui001": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff80" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/zuofoot001": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff7f" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/zuoshangbi001": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 0.5, "color": "ffffff7e" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/zuoshou001": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff7e" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/zuoxiaobi001": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff7e" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			},
  			"images/zuoxiaotui": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" },
  					{ "time": 1.0666, "color": "ffffff84" },
  					{ "time": 2.1333, "color": "ffffff00" }
  				]
  			}
  		},
  		"bones": {
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.0333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.1666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.4, "angle": 0, "curve": "stepped" },
  					{ "time": 1.4333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.4666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.5, "angle": 0, "curve": "stepped" },
  					{ "time": 1.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.5666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.6, "angle": 0, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 0, "curve": "stepped" },
  					{ "time": 2.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"body": {
  				"rotate": [
  					{ "time": 0, "angle": -53.38 },
  					{ "time": 0.0666, "angle": -72.39 },
  					{ "time": 0.1333, "angle": -73.31, "curve": "stepped" },
  					{ "time": 0.2, "angle": -73.31, "curve": "stepped" },
  					{ "time": 0.2666, "angle": -73.31, "curve": "stepped" },
  					{ "time": 0.3333, "angle": -73.31, "curve": "stepped" },
  					{ "time": 0.4, "angle": -73.31 },
  					{ "time": 0.4666, "angle": -77.35 },
  					{ "time": 0.5333, "angle": -73.31 },
  					{ "time": 0.6, "angle": -69.54 },
  					{ "time": 0.6666, "angle": -73.31, "curve": "stepped" },
  					{ "time": 0.7333, "angle": -73.31, "curve": "stepped" },
  					{ "time": 0.8, "angle": -73.31 },
  					{ "time": 0.8666, "angle": -59.43 },
  					{ "time": 1, "angle": -57.56 },
  					{ "time": 1.0333, "angle": -4.02 },
  					{ "time": 1.1, "angle": -22.58 },
  					{ "time": 1.1333, "angle": -21.15 },
  					{ "time": 1.1666, "angle": -21.63 },
  					{ "time": 1.2, "angle": -20.2 },
  					{ "time": 1.2333, "angle": -20.67 },
  					{ "time": 1.2666, "angle": -19.24 },
  					{ "time": 1.3, "angle": -19.72 },
  					{ "time": 1.3333, "angle": -18.29 },
  					{ "time": 1.3666, "angle": -18.76 },
  					{ "time": 1.4, "angle": -17.33 },
  					{ "time": 1.4333, "angle": -17.81 },
  					{ "time": 1.4666, "angle": -16.38 },
  					{ "time": 1.5, "angle": -16.86 },
  					{ "time": 1.5333, "angle": -15.42 },
  					{ "time": 1.5666, "angle": -15.9 },
  					{ "time": 1.6, "angle": -14.95 },
  					{ "time": 1.8333, "angle": -14.47 },
  					{ "time": 2.0666, "angle": -23.21 },
  					{ "time": 2.1333, "angle": -70.65 }
  				],
  				"translate": [
  					{ "time": 0, "x": 18.59, "y": -11.12, "curve": "stepped" },
  					{ "time": 0.0666, "x": 18.59, "y": -11.12 },
  					{ "time": 0.1, "x": 25.16, "y": 30.06 },
  					{ "time": 0.1333, "x": 38.29, "y": 17.87 },
  					{ "time": 0.2, "x": 38.29, "y": -2.8 },
  					{ "time": 0.2666, "x": 38.29, "y": -18.35 },
  					{ "time": 0.3333, "x": 38.29, "y": 11.49 },
  					{ "time": 0.4, "x": 38.29, "y": 16.46 },
  					{ "time": 0.4666, "x": 38.29, "y": -2.8 },
  					{ "time": 0.5333, "x": 38.29, "y": -18.35 },
  					{ "time": 0.6, "x": 38.29, "y": 11.49 },
  					{ "time": 0.6666, "x": 38.29, "y": 17.87 },
  					{ "time": 0.7333, "x": 38.29, "y": -2.8 },
  					{ "time": 0.8, "x": 38.29, "y": -18.35 },
  					{ "time": 0.8666, "x": -6.3, "y": -44.85 },
  					{ "time": 1, "x": -29.26, "y": -47.01 },
  					{ "time": 1.0333, "x": 12.03, "y": -96.88 },
  					{ "time": 1.1, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.1333, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.1666, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.2, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.2333, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.2666, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.3, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.3333, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.3666, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.4, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.4333, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.4666, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.5, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.5333, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.5666, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.6, "x": 33.14, "y": 15.09, "curve": "stepped" },
  					{ "time": 1.8333, "x": 33.14, "y": 15.09 },
  					{ "time": 2, "x": 16.74, "y": -18.97 },
  					{ "time": 2.0666, "x": 18.59, "y": -11.12, "curve": "stepped" },
  					{ "time": 2.1333, "x": 18.59, "y": -11.12 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1.036 },
  					{ "time": 0.0666, "x": 1, "y": 1.036 },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1 },
  					{ "time": 1.0333, "x": 1, "y": 1.025 },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1 },
  					{ "time": 2.1333, "x": 1, "y": 1.03 }
  				]
  			},
  			"kucha": {
  				"rotate": [
  					{ "time": 0, "angle": -1.97 },
  					{ "time": 0.0666, "angle": -2.11 },
  					{ "time": 0.1, "angle": -17.48 },
  					{ "time": 0.1333, "angle": 1.68, "curve": "stepped" },
  					{ "time": 0.2, "angle": 1.68, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 1.68, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 1.68, "curve": "stepped" },
  					{ "time": 0.4, "angle": 1.68, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 1.68, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 1.68, "curve": "stepped" },
  					{ "time": 0.6, "angle": 1.68, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 1.68, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 1.68, "curve": "stepped" },
  					{ "time": 0.8, "angle": 1.68 },
  					{ "time": 0.8666, "angle": 8.56 },
  					{ "time": 1, "angle": 14.74 },
  					{ "time": 1.0333, "angle": 1.34 },
  					{ "time": 1.1, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.1333, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.1666, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.2, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.2333, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.2666, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.3, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.3666, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.4, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.4333, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.4666, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.5, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.5333, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.5666, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.6, "angle": 1.68, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 1.68, "curve": "stepped" },
  					{ "time": 2.0666, "angle": 1.68, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 1.68 }
  				],
  				"translate": [
  					{ "time": 0, "x": 62, "y": -23.26 },
  					{ "time": 0.0666, "x": 62.2, "y": -23.36 },
  					{ "time": 0.1, "x": 55.49, "y": 22.04 },
  					{ "time": 0.1333, "x": 42.07, "y": 20.74 },
  					{ "time": 0.2, "x": 42.07, "y": 15.27 },
  					{ "time": 0.2666, "x": 42.07, "y": 10.71 },
  					{ "time": 0.3333, "x": 42.07, "y": 6.15 },
  					{ "time": 0.4, "x": 42.07, "y": 19.33 },
  					{ "time": 0.4666, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 0.5333, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 0.6, "x": 42.07, "y": 1.59 },
  					{ "time": 0.6666, "x": 42.07, "y": 20.74 },
  					{ "time": 0.7333, "x": 42.07, "y": 15.27 },
  					{ "time": 0.8, "x": 42.07, "y": 10.71 },
  					{ "time": 0.8666, "x": 31.19, "y": -34.64 },
  					{ "time": 1, "x": 20.35, "y": -30.14 },
  					{ "time": 1.0333, "x": 9.79, "y": -16.54 },
  					{ "time": 1.1, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.1333, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.1666, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.2, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.2333, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.2666, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.3, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.3333, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.3666, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.4, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.4333, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.4666, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.5, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.5333, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.5666, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.6, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 1.8333, "x": 42.07, "y": 1.59, "curve": "stepped" },
  					{ "time": 2.0666, "x": 42.07, "y": 1.59 },
  					{ "time": 2.1333, "x": 56.97, "y": -20.74 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"tou": {
  				"rotate": [
  					{ "time": 0, "angle": -13.2 },
  					{ "time": 0.0666, "angle": -44.09 },
  					{ "time": 0.1333, "angle": -35.58 },
  					{ "time": 0.2, "angle": -31.43 },
  					{ "time": 0.2666, "angle": -35.58 },
  					{ "time": 0.3333, "angle": -39.99 },
  					{ "time": 0.4, "angle": -35.58 },
  					{ "time": 0.4666, "angle": -32.55 },
  					{ "time": 0.5333, "angle": -35.58 },
  					{ "time": 0.6, "angle": -33.56 },
  					{ "time": 0.6666, "angle": -35.58 },
  					{ "time": 0.7333, "angle": -31.43 },
  					{ "time": 0.8, "angle": -35.58 },
  					{ "time": 0.8666, "angle": -20.95 },
  					{ "time": 1, "angle": -25.55 },
  					{ "time": 1.0333, "angle": -12.32 },
  					{ "time": 1.1, "angle": 68.73 },
  					{ "time": 1.4333, "angle": 65.86 },
  					{ "time": 1.8333, "angle": 47.68 },
  					{ "time": 2.0333, "angle": 3.74 },
  					{ "time": 2.0666, "angle": 0 },
  					{ "time": 2.1333, "angle": -12 }
  				],
  				"translate": [
  					{ "time": 0, "x": 192.74, "y": -91.95 },
  					{ "time": 0.0666, "x": 240.8, "y": -171.03 },
  					{ "time": 0.1, "x": 215.2, "y": -74.1 },
  					{ "time": 0.1333, "x": 258.8, "y": -130.98 },
  					{ "time": 0.2, "x": 258.8, "y": -151.66 },
  					{ "time": 0.2666, "x": 258.8, "y": -167.2 },
  					{ "time": 0.3333, "x": 258.8, "y": -137.36 },
  					{ "time": 0.4, "x": 258.8, "y": -132.39 },
  					{ "time": 0.4666, "x": 258.8, "y": -171.2 },
  					{ "time": 0.5333, "x": 258.8, "y": -167.2 },
  					{ "time": 0.6, "x": 253.23, "y": -123.44 },
  					{ "time": 0.6666, "x": 258.8, "y": -130.98 },
  					{ "time": 0.7333, "x": 258.8, "y": -151.66 },
  					{ "time": 0.8, "x": 258.8, "y": -167.2 },
  					{ "time": 0.8666, "x": 177.38, "y": -152.28 },
  					{ "time": 1, "x": 161.27, "y": -131.75 },
  					{ "time": 1.0333, "x": 34.37, "y": -111.58 },
  					{ "time": 1.1, "x": 56.89, "y": 23.13, "curve": "stepped" },
  					{ "time": 1.4333, "x": 56.89, "y": 23.13 },
  					{ "time": 1.8333, "x": 49.89, "y": 24.37 },
  					{ "time": 2.0333, "x": 79.44, "y": -48.39 },
  					{ "time": 2.0666, "x": 114.17, "y": -43.56 },
  					{ "time": 2.1333, "x": 222.08, "y": -139.18 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"youdatui": {
  				"rotate": [
  					{ "time": 0, "angle": -15.76 },
  					{ "time": 0.0666, "angle": -16.09 },
  					{ "time": 0.1, "angle": 21.78 },
  					{ "time": 0.1333, "angle": 46.11 },
  					{ "time": 0.2, "angle": 29.84 },
  					{ "time": 0.2666, "angle": -0.35 },
  					{ "time": 0.3333, "angle": -15.32 },
  					{ "time": 0.4, "angle": -25.92 },
  					{ "time": 0.4666, "angle": 0.99 },
  					{ "time": 0.5333, "angle": 34.25 },
  					{ "time": 0.6, "angle": 58.69 },
  					{ "time": 0.6666, "angle": 46.11 },
  					{ "time": 0.7333, "angle": 29.84 },
  					{ "time": 0.8, "angle": -0.35 },
  					{ "time": 0.8666, "angle": -9.61 },
  					{ "time": 1, "angle": 6.58 },
  					{ "time": 1.0333, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.1, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.1333, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.1666, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.2, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.2333, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.2666, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.3, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.3333, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.3666, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.4, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.4333, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.4666, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.5, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.5333, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.5666, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.6, "angle": -15.5, "curve": "stepped" },
  					{ "time": 1.8666, "angle": -15.5 },
  					{ "time": 2.0666, "angle": -1.07 },
  					{ "time": 2.1333, "angle": -7.12 }
  				],
  				"translate": [
  					{ "time": 0, "x": 51.7, "y": -42.19 },
  					{ "time": 0.0666, "x": 52.02, "y": -42.28 },
  					{ "time": 0.1, "x": 73.33, "y": 2.83 },
  					{ "time": 0.1333, "x": 133.61, "y": -8.74 },
  					{ "time": 0.2, "x": 130.63, "y": -11.73 },
  					{ "time": 0.2666, "x": 86.99, "y": -14.23 },
  					{ "time": 0.3333, "x": 43.34, "y": -16.72 },
  					{ "time": 0.4, "x": 44.6, "y": -1.47 },
  					{ "time": 0.4666, "x": 66.85, "y": -21.38 },
  					{ "time": 0.5333, "x": 96.44, "y": -11.81 },
  					{ "time": 0.6, "x": 103.71, "y": -11.96 },
  					{ "time": 0.6666, "x": 133.61, "y": -8.74 },
  					{ "time": 0.7333, "x": 108.18, "y": -11.73 },
  					{ "time": 0.8, "x": 86.99, "y": -14.23 },
  					{ "time": 0.8666, "x": 41.94, "y": -15.81 },
  					{ "time": 1, "x": 19.43, "y": -9.56 },
  					{ "time": 1.0333, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.1, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.1333, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.1666, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.2, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.2333, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.2666, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.3, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.3333, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.3666, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.4, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.4333, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.4666, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.5, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.5333, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.5666, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.6, "x": 28.47, "y": -22.09, "curve": "stepped" },
  					{ "time": 1.8666, "x": 28.47, "y": -22.09 },
  					{ "time": 2.0666, "x": 20.48, "y": -19.58 },
  					{ "time": 2.1333, "x": 43.19, "y": -40.07 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"youjiao": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0 },
  					{ "time": 0.1, "angle": -59.44 },
  					{ "time": 0.1333, "angle": 3.07 },
  					{ "time": 0.2, "angle": -1.39, "curve": "stepped" },
  					{ "time": 0.2666, "angle": -1.39 },
  					{ "time": 0.3333, "angle": -14.8 },
  					{ "time": 0.4, "angle": -122.75 },
  					{ "time": 0.4666, "angle": -110.74 },
  					{ "time": 0.5333, "angle": -123.68 },
  					{ "time": 0.6, "angle": -18.29 },
  					{ "time": 0.6666, "angle": 3.07 },
  					{ "time": 0.7333, "angle": -1.39, "curve": "stepped" },
  					{ "time": 0.8, "angle": -1.39 },
  					{ "time": 0.8666, "angle": 0.73, "curve": "stepped" },
  					{ "time": 1, "angle": 0.73 },
  					{ "time": 1.0333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.1666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.4, "angle": 0, "curve": "stepped" },
  					{ "time": 1.4333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.4666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.5, "angle": 0, "curve": "stepped" },
  					{ "time": 1.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.5666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.6, "angle": 0, "curve": "stepped" },
  					{ "time": 1.8666, "angle": 0, "curve": "stepped" },
  					{ "time": 2.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0 },
  					{ "time": 0.1, "x": 77.77, "y": 20.78 },
  					{ "time": 0.1333, "x": 236.82, "y": 12.87 },
  					{ "time": 0.2, "x": 218.71, "y": 0.61 },
  					{ "time": 0.2666, "x": 87.17, "y": 0.61 },
  					{ "time": 0.3333, "x": 15.06, "y": 3.7 },
  					{ "time": 0.4, "x": -15.79, "y": 39.1 },
  					{ "time": 0.4666, "x": 21.98, "y": 34.45 },
  					{ "time": 0.5333, "x": 80.08, "y": 32.62 },
  					{ "time": 0.6, "x": 207.18, "y": 20.36 },
  					{ "time": 0.6666, "x": 236.82, "y": 12.87 },
  					{ "time": 0.7333, "x": 196.26, "y": 0.61 },
  					{ "time": 0.8, "x": 87.17, "y": 0.61 },
  					{ "time": 0.8666, "x": 23.27, "y": 1.67, "curve": "stepped" },
  					{ "time": 1, "x": 23.27, "y": 1.67 },
  					{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1 },
  					{ "time": 0.1333, "x": 1.298, "y": 1 },
  					{ "time": 0.2, "x": 1.109, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1.109, "y": 1 },
  					{ "time": 0.3333, "x": 1.191, "y": 1 },
  					{ "time": 0.4, "x": 1.382, "y": 1 },
  					{ "time": 0.4666, "x": 1.286, "y": 1 },
  					{ "time": 0.5333, "x": 1.191, "y": 1 },
  					{ "time": 0.6, "x": 1.215, "y": 1 },
  					{ "time": 0.6666, "x": 1.298, "y": 1 },
  					{ "time": 0.7333, "x": 1.109, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1.109, "y": 1 },
  					{ "time": 0.8666, "x": 1.191, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1.191, "y": 1 },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"zuodatui": {
  				"rotate": [
  					{ "time": 0, "angle": 11.49, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 11.49 },
  					{ "time": 0.1, "angle": -32.07 },
  					{ "time": 0.1333, "angle": -70.7 },
  					{ "time": 0.2, "angle": -46.26 },
  					{ "time": 0.2666, "angle": 11.14 },
  					{ "time": 0.3333, "angle": 17.37 },
  					{ "time": 0.4, "angle": 14.82 },
  					{ "time": 0.4666, "angle": 16.22 },
  					{ "time": 0.5333, "angle": -22.67 },
  					{ "time": 0.6, "angle": -57.82 },
  					{ "time": 0.6666, "angle": -70.7 },
  					{ "time": 0.7333, "angle": -21.22 },
  					{ "time": 0.8, "angle": 11.14 },
  					{ "time": 0.8666, "angle": 6.04 },
  					{ "time": 1, "angle": 3.59 },
  					{ "time": 1.0333, "angle": 10.81, "curve": "stepped" },
  					{ "time": 1.7, "angle": 10.81, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 10.81 },
  					{ "time": 2.0666, "angle": 11.49, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 11.49 }
  				],
  				"translate": [
  					{ "time": 0, "x": 33.14, "y": -3.27, "curve": "stepped" },
  					{ "time": 0.0666, "x": 33.14, "y": -3.27 },
  					{ "time": 0.1, "x": 22.24, "y": 18.44 },
  					{ "time": 0.1333, "x": 0.45, "y": 6.86 },
  					{ "time": 0.2, "x": 0.45, "y": 1.39 },
  					{ "time": 0.2666, "x": 4.9, "y": 2.76 },
  					{ "time": 0.3333, "x": -4.6, "y": 18.9 },
  					{ "time": 0.4, "x": 0.45, "y": 5.45 },
  					{ "time": 0.4666, "x": 22.98, "y": -0.05 },
  					{ "time": 0.5333, "x": 8.1, "y": 12.17 },
  					{ "time": 0.6, "x": -27.34, "y": -1.58 },
  					{ "time": 0.6666, "x": 0.45, "y": 6.86 },
  					{ "time": 0.7333, "x": 0.45, "y": 1.39 },
  					{ "time": 0.8, "x": 4.9, "y": 2.76 },
  					{ "time": 0.8666, "x": 11.67, "y": 2.62 },
  					{ "time": 1, "x": 12.84, "y": -2.25 },
  					{ "time": 1.0333, "x": 20.73, "y": -9.97 },
  					{ "time": 1.7, "x": 22.28, "y": -6.87, "curve": "stepped" },
  					{ "time": 1.8333, "x": 22.28, "y": -6.87 },
  					{ "time": 2.0666, "x": 33.14, "y": -3.27, "curve": "stepped" },
  					{ "time": 2.1333, "x": 33.14, "y": -3.27 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"zuojiao": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0 },
  					{ "time": 0.1, "angle": -0.96 },
  					{ "time": 0.1333, "angle": -148.64 },
  					{ "time": 0.2, "angle": -79.39 },
  					{ "time": 0.2666, "angle": -149.95 },
  					{ "time": 0.3333, "angle": -19.74 },
  					{ "time": 0.4, "angle": 29.03 },
  					{ "time": 0.4666, "angle": 6.51 },
  					{ "time": 0.5333, "angle": -1.07 },
  					{ "time": 0.6, "angle": -20.21 },
  					{ "time": 0.6666, "angle": -122.75 },
  					{ "time": 0.7333, "angle": -122.8 },
  					{ "time": 0.8, "angle": -149.95 },
  					{ "time": 0.8666, "angle": -3.55 },
  					{ "time": 1, "angle": -0.42 },
  					{ "time": 1.0333, "angle": -0.31, "curve": "stepped" },
  					{ "time": 1.7, "angle": -0.31, "curve": "stepped" },
  					{ "time": 1.8333, "angle": -0.31 },
  					{ "time": 2.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 68.44, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 68.44, "y": 0 },
  					{ "time": 0.1, "x": 4.51, "y": 2.14 },
  					{ "time": 0.1333, "x": -128.65, "y": 41.49 },
  					{ "time": 0.2, "x": -99.02, "y": 22.29 },
  					{ "time": 0.2666, "x": 3.89, "y": 21.76 },
  					{ "time": 0.3333, "x": 43.96, "y": 20.61 },
  					{ "time": 0.4, "x": 94.96, "y": 33.56 },
  					{ "time": 0.4666, "x": 102.47, "y": 5.29 },
  					{ "time": 0.5333, "x": -16.03, "y": 0.27 },
  					{ "time": 0.6, "x": -118.93, "y": 8.89 },
  					{ "time": 0.6666, "x": -128.65, "y": 41.49 },
  					{ "time": 0.7333, "x": -71.11, "y": 36.25 },
  					{ "time": 0.8, "x": 3.89, "y": 21.76 },
  					{ "time": 0.8666, "x": 62.27, "y": -1.76 },
  					{ "time": 1, "x": 62.27, "y": 0.08 },
  					{ "time": 1.0333, "x": 41.87, "y": 1.31, "curve": "stepped" },
  					{ "time": 1.7, "x": 41.87, "y": 1.31, "curve": "stepped" },
  					{ "time": 1.8333, "x": 41.87, "y": 1.31 },
  					{ "time": 2.0666, "x": 68.44, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 68.44, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"backHair": {
  				"rotate": [
  					{ "time": 0, "angle": -0.28 },
  					{ "time": 0.0666, "angle": -0.19 },
  					{ "time": 0.1333, "angle": -3.34 },
  					{ "time": 0.2, "angle": -9.23 },
  					{ "time": 0.2666, "angle": 0 },
  					{ "time": 0.3333, "angle": 2.83 },
  					{ "time": 0.4, "angle": 0 },
  					{ "time": 0.4666, "angle": -7.84 },
  					{ "time": 0.5333, "angle": -4.31 },
  					{ "time": 0.6, "angle": 3.01 },
  					{ "time": 0.6666, "angle": -3.34 },
  					{ "time": 0.7333, "angle": -9.23 },
  					{ "time": 0.8, "angle": 0 },
  					{ "time": 0.8666, "angle": 2.83 },
  					{ "time": 1, "angle": -7.84 },
  					{ "time": 1.0333, "angle": 0 },
  					{ "time": 1.1, "angle": -13.35 },
  					{ "time": 1.3, "angle": -22.45 },
  					{ "time": 1.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 0 },
  					{ "time": 2.0666, "angle": -6.22 },
  					{ "time": 2.1333, "angle": -2.76 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.0333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.1, "angle": 0 },
  					{ "time": 1.1333, "angle": 1.59 },
  					{ "time": 1.1666, "angle": 1.06 },
  					{ "time": 1.2, "angle": 2.65 },
  					{ "time": 1.2333, "angle": 2.12 },
  					{ "time": 1.2666, "angle": 3.71 },
  					{ "time": 1.3, "angle": 3.18 },
  					{ "time": 1.3333, "angle": 4.77 },
  					{ "time": 1.3666, "angle": 4.24 },
  					{ "time": 1.4, "angle": 5.83 },
  					{ "time": 1.4333, "angle": 5.3 },
  					{ "time": 1.4666, "angle": 6.89 },
  					{ "time": 1.5, "angle": 6.36 },
  					{ "time": 1.5333, "angle": 7.95 },
  					{ "time": 1.5666, "angle": 7.42 },
  					{ "time": 1.6, "angle": 8.48 },
  					{ "time": 1.8333, "angle": 9.01 },
  					{ "time": 2.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1, "x": 0, "y": 0 },
  					{ "time": 1.1333, "x": 1.15, "y": 0.48 },
  					{ "time": 1.1666, "x": 0.76, "y": 0.32 },
  					{ "time": 1.2, "x": 1.91, "y": 0.81 },
  					{ "time": 1.2333, "x": 1.53, "y": 0.65 },
  					{ "time": 1.2666, "x": 2.68, "y": 1.13 },
  					{ "time": 1.3, "x": 2.3, "y": 0.97 },
  					{ "time": 1.3333, "x": 3.45, "y": 1.46 },
  					{ "time": 1.3666, "x": 3.06, "y": 1.3 },
  					{ "time": 1.4, "x": 4.22, "y": 1.78 },
  					{ "time": 1.4333, "x": 3.83, "y": 1.62 },
  					{ "time": 1.4666, "x": 4.98, "y": 2.11 },
  					{ "time": 1.5, "x": 4.6, "y": 1.95 },
  					{ "time": 1.5333, "x": 5.75, "y": 2.43 },
  					{ "time": 1.5666, "x": 5.37, "y": 2.27 },
  					{ "time": 1.6, "x": 6.13, "y": 2.6 },
  					{ "time": 1.8333, "x": 6.52, "y": 2.76 },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"eye": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.0333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.5666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.6, "angle": 0, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 0, "curve": "stepped" },
  					{ "time": 2.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.0333, "x": 0, "y": 0 },
  					{ "time": 1.1, "x": -3.87, "y": 20.46 },
  					{ "time": 1.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1 },
  					{ "time": 0.1333, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 0.528, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 0.528 },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"hair": {
  				"rotate": [
  					{ "time": 0, "angle": 41.21 },
  					{ "time": 0.0666, "angle": 0 },
  					{ "time": 0.1333, "angle": 7.31 },
  					{ "time": 0.2, "angle": 344.1 },
  					{ "time": 0.2666, "angle": 7.31, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 7.31, "curve": "stepped" },
  					{ "time": 0.4, "angle": 7.31 },
  					{ "time": 0.4666, "angle": -7.59 },
  					{ "time": 0.5333, "angle": 7.31, "curve": "stepped" },
  					{ "time": 0.6, "angle": 7.31, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 7.31, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 7.31, "curve": "stepped" },
  					{ "time": 0.8, "angle": 7.31 },
  					{ "time": 0.8666, "angle": 19.23 },
  					{ "time": 1, "angle": 7.31 },
  					{ "time": 1.1333, "angle": 27.89 },
  					{ "time": 1.2, "angle": 82.83 },
  					{ "time": 1.3666, "angle": 121.45 },
  					{ "time": 1.8333, "angle": 0 },
  					{ "time": 2.0666, "angle": -1.93 },
  					{ "time": 2.1333, "angle": -0.32 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"youdabi": {
  				"rotate": [
  					{ "time": 0, "angle": 46.54 },
  					{ "time": 0.0666, "angle": -297.79 },
  					{ "time": 0.1333, "angle": 12.94 },
  					{ "time": 0.2, "angle": 6.68 },
  					{ "time": 0.2666, "angle": 12.94 },
  					{ "time": 0.3333, "angle": 16.87 },
  					{ "time": 0.4, "angle": 12.94 },
  					{ "time": 0.4666, "angle": 4.88 },
  					{ "time": 0.5333, "angle": 12.94 },
  					{ "time": 0.6, "angle": 16.17 },
  					{ "time": 0.6666, "angle": 12.94 },
  					{ "time": 0.7333, "angle": 6.68 },
  					{ "time": 0.8, "angle": 12.94 },
  					{ "time": 0.8666, "angle": -7.44 },
  					{ "time": 1, "angle": -18.18 },
  					{ "time": 1.0333, "angle": -30.41 },
  					{ "time": 1.1, "angle": 19.02, "curve": "stepped" },
  					{ "time": 1.4333, "angle": 19.02 },
  					{ "time": 1.6, "angle": 42.86 },
  					{ "time": 1.8333, "angle": -317.41 },
  					{ "time": 2.0666, "angle": -9.86 },
  					{ "time": 2.1333, "angle": -313.36 }
  				],
  				"translate": [
  					{ "time": 0, "x": 66.44, "y": -87.86 },
  					{ "time": 0.0666, "x": 46.56, "y": -11.36 },
  					{ "time": 0.1333, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.2, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.2666, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.3333, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.4, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.4666, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.5333, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.6, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.6666, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.7333, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.8, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 0.8666, "x": 25.74, "y": -95.7, "curve": "stepped" },
  					{ "time": 1, "x": 25.74, "y": -95.7 },
  					{ "time": 1.0333, "x": 5.42, "y": -45.13 },
  					{ "time": 1.1, "x": -16.37, "y": -31.61, "curve": "stepped" },
  					{ "time": 1.4333, "x": -16.37, "y": -31.61, "curve": "stepped" },
  					{ "time": 1.6, "x": -16.37, "y": -31.61, "curve": "stepped" },
  					{ "time": 1.8333, "x": -16.37, "y": -31.61 },
  					{ "time": 2.0666, "x": 14.15, "y": -67.76 },
  					{ "time": 2.1333, "x": -16.06, "y": -29.55 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"youjianjia": {
  				"rotate": [
  					{ "time": 0, "angle": -6.88 },
  					{ "time": 0.0666, "angle": -6.92 },
  					{ "time": 0.1333, "angle": 0 },
  					{ "time": 0.2, "angle": -9.86 },
  					{ "time": 0.2666, "angle": 0 },
  					{ "time": 0.3333, "angle": 6.25 },
  					{ "time": 0.4, "angle": 0 },
  					{ "time": 0.4666, "angle": -9.41 },
  					{ "time": 0.5333, "angle": 0 },
  					{ "time": 0.6, "angle": 9.38 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 0.7333, "angle": -9.86 },
  					{ "time": 0.8, "angle": 0 },
  					{ "time": 0.8666, "angle": -9.89 },
  					{ "time": 1, "angle": -28.13 },
  					{ "time": 1.0333, "angle": -17.76 },
  					{ "time": 1.1, "angle": 0 },
  					{ "time": 1.1333, "angle": -0.62 },
  					{ "time": 1.1666, "angle": -0.41 },
  					{ "time": 1.2, "angle": -1.03 },
  					{ "time": 1.2333, "angle": -0.82 },
  					{ "time": 1.2666, "angle": -1.44 },
  					{ "time": 1.3, "angle": -1.24 },
  					{ "time": 1.3333, "angle": -1.86 },
  					{ "time": 1.3666, "angle": -1.65 },
  					{ "time": 1.4, "angle": -2.27 },
  					{ "time": 1.4333, "angle": -2.06 },
  					{ "time": 1.4666, "angle": -2.68 },
  					{ "time": 1.5, "angle": -2.48 },
  					{ "time": 1.5333, "angle": -3.1 },
  					{ "time": 1.5666, "angle": -2.89 },
  					{ "time": 1.6, "angle": -3.3 },
  					{ "time": 1.8333, "angle": -3.51 },
  					{ "time": 2, "angle": -17.76 },
  					{ "time": 2.0666, "angle": 0 },
  					{ "time": 2.1333, "angle": -5.77 }
  				],
  				"translate": [
  					{ "time": 0, "x": 22.84, "y": -132.15 },
  					{ "time": 0.0666, "x": 2.01, "y": -74.45 },
  					{ "time": 0.1333, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.2, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.2666, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.3333, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.4, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.4666, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.5333, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.6, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.6666, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.7333, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.8, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 0.8666, "x": 9.03, "y": -101.35, "curve": "stepped" },
  					{ "time": 1, "x": 9.03, "y": -101.35 },
  					{ "time": 1.0333, "x": 8.77, "y": -28.74 },
  					{ "time": 1.1, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.1333, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.1666, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.2, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.2333, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.2666, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.3, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.3333, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.3666, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.4, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.4333, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.4666, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.5, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.5333, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.5666, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.6, "x": -12.76, "y": -50.27, "curve": "stepped" },
  					{ "time": 1.8333, "x": -12.76, "y": -50.27 },
  					{ "time": 2.0666, "x": 22.84, "y": -132.15, "curve": "stepped" },
  					{ "time": 2.1333, "x": 22.84, "y": -132.15 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"youxiaotui": {
  				"rotate": [
  					{ "time": 0, "angle": -29.14 },
  					{ "time": 0.0666, "angle": -28.75 },
  					{ "time": 0.1, "angle": -48.51 },
  					{ "time": 0.1333, "angle": -5.32 },
  					{ "time": 0.2, "angle": 8.15 },
  					{ "time": 0.2666, "angle": -5.32, "curve": "stepped" },
  					{ "time": 0.3333, "angle": -5.32, "curve": "stepped" },
  					{ "time": 0.4, "angle": -5.32 },
  					{ "time": 0.4666, "angle": -60.43 },
  					{ "time": 0.5333, "angle": -85.5 },
  					{ "time": 0.6, "angle": -30.32 },
  					{ "time": 0.6666, "angle": -5.32 },
  					{ "time": 0.7333, "angle": 8.15 },
  					{ "time": 0.8, "angle": -5.32, "curve": "stepped" },
  					{ "time": 0.8666, "angle": -5.32 },
  					{ "time": 1, "angle": -19.65 },
  					{ "time": 1.0333, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.1, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.1333, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.1666, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.2, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.2333, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.2666, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.3, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.3666, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.4, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.4333, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.4666, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.5, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.5333, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.5666, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.6, "angle": 4.23, "curve": "stepped" },
  					{ "time": 1.8666, "angle": 4.23 },
  					{ "time": 2.0666, "angle": -20.7 },
  					{ "time": 2.1333, "angle": -39.31 }
  				],
  				"translate": [
  					{ "time": 0, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.0666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.1333, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.2, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.2666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.3333, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.4, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.4666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.5333, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.6, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.6666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.7333, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.8, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 0.8666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.0333, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.1, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.1333, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.1666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.2, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.2333, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.2666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.3, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.3333, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.3666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.4, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.4333, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.4666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.5, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.5333, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.5666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.6, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 1.8666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 2.0666, "x": -1.1, "y": 5.85, "curve": "stepped" },
  					{ "time": 2.1333, "x": -1.1, "y": 5.85 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"zuodabi": {
  				"rotate": [
  					{ "time": 0, "angle": 40.74 },
  					{ "time": 0.0666, "angle": 36.81 },
  					{ "time": 0.1333, "angle": -47.29 },
  					{ "time": 0.2, "angle": -53.37 },
  					{ "time": 0.2666, "angle": -47.29 },
  					{ "time": 0.3333, "angle": -44.6 },
  					{ "time": 0.4, "angle": -47.29 },
  					{ "time": 0.4666, "angle": 306.87 },
  					{ "time": 0.5333, "angle": -47.29 },
  					{ "time": 0.6, "angle": 320.4 },
  					{ "time": 0.6666, "angle": -47.29 },
  					{ "time": 0.7333, "angle": -53.37 },
  					{ "time": 0.8, "angle": -47.29 },
  					{ "time": 0.8666, "angle": 292.47 },
  					{ "time": 1, "angle": 280.23 },
  					{ "time": 1.0333, "angle": 293.18 },
  					{ "time": 1.1, "angle": 334.15 },
  					{ "time": 1.1333, "angle": -26.46 },
  					{ "time": 1.1666, "angle": -26.25 },
  					{ "time": 1.2, "angle": -26.87 },
  					{ "time": 1.2333, "angle": -26.67 },
  					{ "time": 1.2666, "angle": -27.29 },
  					{ "time": 1.3, "angle": -27.08 },
  					{ "time": 1.3333, "angle": -27.7 },
  					{ "time": 1.3666, "angle": -27.5 },
  					{ "time": 1.4, "angle": -28.12 },
  					{ "time": 1.4333, "angle": -27.91 },
  					{ "time": 1.4666, "angle": -28.53 },
  					{ "time": 1.5, "angle": -28.33 },
  					{ "time": 1.5333, "angle": -28.95 },
  					{ "time": 1.5666, "angle": -28.74 },
  					{ "time": 1.6, "angle": -29.16 },
  					{ "time": 1.8333, "angle": 330.62 },
  					{ "time": 2.0666, "angle": 30.7 },
  					{ "time": 2.1333, "angle": 45.56 }
  				],
  				"translate": [
  					{ "time": 0, "x": 34.8, "y": 144.44 },
  					{ "time": 0.0666, "x": 85.37, "y": 211.98 },
  					{ "time": 0.1333, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.2, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.2666, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.3333, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.4, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.4666, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.5333, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.6, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.6666, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.7333, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.8, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 0.8666, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1, "x": -16.37, "y": 181.6 },
  					{ "time": 1.0333, "x": -2.69, "y": 54.07 },
  					{ "time": 1.1, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.1333, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.1666, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.2, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.2333, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.2666, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.3, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.3333, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.3666, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.4, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.4333, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.4666, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.5, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.5333, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.5666, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.6, "x": -16.37, "y": 181.6, "curve": "stepped" },
  					{ "time": 1.8333, "x": -16.37, "y": 181.6 },
  					{ "time": 2.0666, "x": 11.09, "y": 95.46 },
  					{ "time": 2.1333, "x": 56.47, "y": 222.67 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"zuoxiaotui": {
  				"rotate": [
  					{ "time": 0, "angle": 11.08, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 11.08 },
  					{ "time": 0.1, "angle": 58.84 },
  					{ "time": 0.1333, "angle": 50.84 },
  					{ "time": 0.2, "angle": 11.99 },
  					{ "time": 0.2666, "angle": -6.3 },
  					{ "time": 0.3333, "angle": 10.42 },
  					{ "time": 0.4, "angle": 58.14 },
  					{ "time": 0.4666, "angle": 42.19 },
  					{ "time": 0.5333, "angle": 26.24 },
  					{ "time": 0.6, "angle": 49.84 },
  					{ "time": 0.6666, "angle": 50.84 },
  					{ "time": 0.7333, "angle": -27.84 },
  					{ "time": 0.8, "angle": -6.3 },
  					{ "time": 0.8666, "angle": 39.09 },
  					{ "time": 1, "angle": 48.38 },
  					{ "time": 1.0333, "angle": -4.37, "curve": "stepped" },
  					{ "time": 1.7, "angle": -4.37, "curve": "stepped" },
  					{ "time": 1.8333, "angle": -4.37 },
  					{ "time": 2.0666, "angle": 11.08, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 11.08 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0 },
  					{ "time": 0.4666, "x": -0.58, "y": -0.43 },
  					{ "time": 0.5333, "x": -1.17, "y": -0.86 },
  					{ "time": 0.6, "x": -1.76, "y": -1.29 },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0 },
  					{ "time": 1, "x": -7.13, "y": 2.3 },
  					{ "time": 1.0333, "x": 0.12, "y": -0.14, "curve": "stepped" },
  					{ "time": 1.7, "x": 0.12, "y": -0.14, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0.12, "y": -0.14 },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone19": {
  				"rotate": [
  					{ "time": 0, "angle": -0.01 },
  					{ "time": 0.0666, "angle": 0 },
  					{ "time": 0.1333, "angle": 2.45 },
  					{ "time": 0.2, "angle": 12.19 },
  					{ "time": 0.2666, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.4, "angle": 2.45 },
  					{ "time": 0.4666, "angle": 15.63 },
  					{ "time": 0.5333, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.6, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.8, "angle": 2.45 },
  					{ "time": 0.8666, "angle": 13.94 },
  					{ "time": 1, "angle": 14.11 },
  					{ "time": 1.0333, "angle": -1.02 },
  					{ "time": 1.2, "angle": 22.07 },
  					{ "time": 1.3666, "angle": 49.64 },
  					{ "time": 1.8333, "angle": 0 },
  					{ "time": 2.0666, "angle": -1.93 },
  					{ "time": 2.1333, "angle": -0.32 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone25": {
  				"rotate": [
  					{ "time": 0, "angle": -0.28 },
  					{ "time": 0.0666, "angle": -0.19 },
  					{ "time": 0.1333, "angle": -3.34 },
  					{ "time": 0.2, "angle": 0.23 },
  					{ "time": 0.2666, "angle": 0 },
  					{ "time": 0.3333, "angle": 2.83 },
  					{ "time": 0.4, "angle": 0 },
  					{ "time": 0.4666, "angle": -7.84 },
  					{ "time": 0.5333, "angle": -4.31 },
  					{ "time": 0.6, "angle": 3.01 },
  					{ "time": 0.6666, "angle": -3.34 },
  					{ "time": 0.7333, "angle": 0.23 },
  					{ "time": 0.8, "angle": 0 },
  					{ "time": 0.8666, "angle": 2.83 },
  					{ "time": 1, "angle": -7.84 },
  					{ "time": 1.0333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3, "angle": 0, "curve": "stepped" },
  					{ "time": 1.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 0 },
  					{ "time": 2.0666, "angle": -6.22 },
  					{ "time": 2.1333, "angle": -2.76 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"youxiaobi": {
  				"rotate": [
  					{ "time": 0, "angle": 26.83 },
  					{ "time": 0.0666, "angle": 22.63 },
  					{ "time": 0.1333, "angle": 18.57, "curve": "stepped" },
  					{ "time": 0.2, "angle": 18.57, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 18.57, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 18.57, "curve": "stepped" },
  					{ "time": 0.4, "angle": 18.57 },
  					{ "time": 0.4666, "angle": 20.58 },
  					{ "time": 0.5333, "angle": 18.57, "curve": "stepped" },
  					{ "time": 0.6, "angle": 18.57, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 18.57, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 18.57, "curve": "stepped" },
  					{ "time": 0.8, "angle": 18.57, "curve": "stepped" },
  					{ "time": 0.8666, "angle": 18.57 },
  					{ "time": 1, "angle": 20.58 },
  					{ "time": 1.0333, "angle": 18.68 },
  					{ "time": 1.1, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.1333, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.1666, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.2, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.2333, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.2666, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.3, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.3333, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.3666, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.4, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.4333, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.4666, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.5, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.5333, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.5666, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.6, "angle": -20.56, "curve": "stepped" },
  					{ "time": 1.8333, "angle": -20.56 },
  					{ "time": 2, "angle": 11.16 },
  					{ "time": 2.0666, "angle": 52.73 },
  					{ "time": 2.1, "angle": -14.43 },
  					{ "time": 2.1333, "angle": 28.25 }
  				],
  				"translate": [
  					{ "time": 0, "x": -5.62, "y": -4.25 },
  					{ "time": 0.0666, "x": -5.64, "y": -4.34 },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0 },
  					{ "time": 2.1, "x": 20.16, "y": 9.92 },
  					{ "time": 2.1333, "x": -4.97, "y": -2.13 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"zuoxiaobi": {
  				"rotate": [
  					{ "time": 0, "angle": 37.4 },
  					{ "time": 0.0666, "angle": 45.77 },
  					{ "time": 0.1333, "angle": 94.54, "curve": "stepped" },
  					{ "time": 0.2, "angle": 94.54, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 94.54, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 94.54, "curve": "stepped" },
  					{ "time": 0.4, "angle": 94.54 },
  					{ "time": 0.4666, "angle": 97.58 },
  					{ "time": 0.5333, "angle": 94.54, "curve": "stepped" },
  					{ "time": 0.6, "angle": 94.54, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 94.54, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 94.54, "curve": "stepped" },
  					{ "time": 0.8, "angle": 94.54, "curve": "stepped" },
  					{ "time": 0.8666, "angle": 94.54 },
  					{ "time": 1, "angle": 97.58 },
  					{ "time": 1.0333, "angle": 74 },
  					{ "time": 1.1, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.1333, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.1666, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.2, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.2333, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.2666, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.3, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.3666, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.4, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.4333, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.4666, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.5, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.5333, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.5666, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.6, "angle": 50.74, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 50.74 },
  					{ "time": 2.0666, "angle": 90.91 },
  					{ "time": 2.1333, "angle": 38.11 }
  				],
  				"translate": [
  					{ "time": 0, "x": -34.74, "y": 17.38 },
  					{ "time": 0.0666, "x": -35.01, "y": 17.39 },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0 },
  					{ "time": 2.1333, "x": -27.86, "y": 17.1 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone20": {
  				"rotate": [
  					{ "time": 0, "angle": -0.01 },
  					{ "time": 0.0666, "angle": 0 },
  					{ "time": 0.1333, "angle": 2.45 },
  					{ "time": 0.2, "angle": 12.19 },
  					{ "time": 0.2666, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.4, "angle": 2.45 },
  					{ "time": 0.4666, "angle": 15.63 },
  					{ "time": 0.5333, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.6, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.8, "angle": 2.45 },
  					{ "time": 0.8666, "angle": 13.94 },
  					{ "time": 1, "angle": 15.48 },
  					{ "time": 1.0333, "angle": 7.36 },
  					{ "time": 1.3666, "angle": 31.16 },
  					{ "time": 1.8333, "angle": 0 },
  					{ "time": 2.0666, "angle": -1.93 },
  					{ "time": 2.1333, "angle": -0.32 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone26": {
  				"rotate": [
  					{ "time": 0, "angle": 3.71 },
  					{ "time": 0.0666, "angle": 3.6 },
  					{ "time": 0.1333, "angle": 0.03 },
  					{ "time": 0.2, "angle": -11.12 },
  					{ "time": 0.2666, "angle": 0 },
  					{ "time": 0.3333, "angle": 2.83 },
  					{ "time": 0.4, "angle": 0 },
  					{ "time": 0.4666, "angle": -7.84 },
  					{ "time": 0.5333, "angle": -4.31 },
  					{ "time": 0.6, "angle": 3.01 },
  					{ "time": 0.6666, "angle": 0.03 },
  					{ "time": 0.7333, "angle": -11.12 },
  					{ "time": 0.8, "angle": 0 },
  					{ "time": 0.8666, "angle": 2.83 },
  					{ "time": 1, "angle": -7.84 },
  					{ "time": 1.0333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3, "angle": 0, "curve": "stepped" },
  					{ "time": 1.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 0 },
  					{ "time": 2.0666, "angle": -6.22 },
  					{ "time": 2.1333, "angle": 6.59 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"youshou": {
  				"rotate": [
  					{ "time": 0, "angle": -21.26 },
  					{ "time": 0.0666, "angle": -5.49 },
  					{ "time": 0.1333, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.2, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.4, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.6, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.8, "angle": 15.85, "curve": "stepped" },
  					{ "time": 0.8666, "angle": 15.85, "curve": "stepped" },
  					{ "time": 1, "angle": 15.85 },
  					{ "time": 1.0333, "angle": 15.59 },
  					{ "time": 1.1, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.1333, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.1666, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.2, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.2333, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.2666, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.3, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.3333, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.3666, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.4, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.4333, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.4666, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.5, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.5333, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.5666, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.6, "angle": -15.41, "curve": "stepped" },
  					{ "time": 1.8333, "angle": -15.41, "curve": "stepped" },
  					{ "time": 2.0666, "angle": -15.41 },
  					{ "time": 2.1, "angle": 5.28 },
  					{ "time": 2.1333, "angle": -5.95 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 },
  					{ "time": 1.0333, "x": 1.33, "y": 0.59 },
  					{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0 },
  					{ "time": 2.1333, "x": -3.59, "y": -3.28 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"zuoshou": {
  				"rotate": [
  					{ "time": 0, "angle": -13.73 },
  					{ "time": 0.0666, "angle": -1.74 },
  					{ "time": 0.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 },
  					{ "time": 1.0333, "angle": -0.52 },
  					{ "time": 1.1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.1666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.4, "angle": 0, "curve": "stepped" },
  					{ "time": 1.4333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.4666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.5, "angle": 0, "curve": "stepped" },
  					{ "time": 1.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.5666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.6, "angle": 0, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 0, "curve": "stepped" },
  					{ "time": 2.0666, "angle": 0 },
  					{ "time": 2.1, "angle": 27.58 },
  					{ "time": 2.1333, "angle": -1.24 }
  				],
  				"translate": [
  					{ "time": 0, "x": -4.44, "y": 1.4 },
  					{ "time": 0.0666, "x": -4.75, "y": 1.28 },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 },
  					{ "time": 1.0333, "x": 1.69, "y": 0 },
  					{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.5666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0 },
  					{ "time": 2.1333, "x": -4.75, "y": 1.28 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone21": {
  				"rotate": [
  					{ "time": 0, "angle": -0.01 },
  					{ "time": 0.0666, "angle": 0 },
  					{ "time": 0.1333, "angle": 2.45 },
  					{ "time": 0.2, "angle": 12.19 },
  					{ "time": 0.2666, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.4, "angle": 2.45 },
  					{ "time": 0.4666, "angle": 15.63 },
  					{ "time": 0.5333, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.6, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 2.45, "curve": "stepped" },
  					{ "time": 0.8, "angle": 2.45 },
  					{ "time": 0.8666, "angle": 13.94 },
  					{ "time": 1, "angle": 15.48 },
  					{ "time": 1.0333, "angle": 1.52 },
  					{ "time": 1.3666, "angle": 21.41 },
  					{ "time": 1.8333, "angle": 0 },
  					{ "time": 2.0666, "angle": -2.79 },
  					{ "time": 2.1333, "angle": -0.46 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone27": {
  				"rotate": [
  					{ "time": 0, "angle": 3.71 },
  					{ "time": 0.0666, "angle": 3.6 },
  					{ "time": 0.1333, "angle": 3.38 },
  					{ "time": 0.2, "angle": -11.12 },
  					{ "time": 0.2666, "angle": 0 },
  					{ "time": 0.3333, "angle": 2.83 },
  					{ "time": 0.4, "angle": 0 },
  					{ "time": 0.4666, "angle": -7.84 },
  					{ "time": 0.5333, "angle": 0 },
  					{ "time": 0.6, "angle": 3.01 },
  					{ "time": 0.6666, "angle": 3.38 },
  					{ "time": 0.7333, "angle": -11.12 },
  					{ "time": 0.8, "angle": 0 },
  					{ "time": 0.8666, "angle": 2.83 },
  					{ "time": 1, "angle": -7.84 },
  					{ "time": 1.0333, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3, "angle": 0, "curve": "stepped" },
  					{ "time": 1.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 0 },
  					{ "time": 2.0666, "angle": -6.22 },
  					{ "time": 2.1333, "angle": 6.59 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone22": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4, "angle": 0 },
  					{ "time": 0.4666, "angle": 13.18 },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8666, "angle": 0 },
  					{ "time": 1, "angle": 13.03 },
  					{ "time": 1.0333, "angle": 9.2 },
  					{ "time": 1.3666, "angle": 28.47 },
  					{ "time": 1.8333, "angle": 0, "curve": "stepped" },
  					{ "time": 2.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone28": {
  				"rotate": [
  					{ "time": 0, "angle": 3.71 },
  					{ "time": 0.0666, "angle": 3.6 },
  					{ "time": 0.1333, "angle": 3.38 },
  					{ "time": 0.2, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0 },
  					{ "time": 0.6666, "angle": 3.38 },
  					{ "time": 0.7333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.0333, "angle": 0 },
  					{ "time": 1.3, "angle": -22.18 },
  					{ "time": 1.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1.8333, "angle": 0 },
  					{ "time": 2.0666, "angle": -6.22 },
  					{ "time": 2.1333, "angle": 6.59 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"eyelight": {
  				"rotate": [
  					{ "time": 0, "angle": 1.81 },
  					{ "time": 0.1666, "angle": -71.12 },
  					{ "time": 0.3333, "angle": -136.93 },
  					{ "time": 2.0666, "angle": -58.88 },
  					{ "time": 2.1333, "angle": 2.15 }
  				],
  				"translate": [
  					{ "time": 0, "x": 406.03, "y": -465.2 },
  					{ "time": 0.1666, "x": 407.17, "y": -483.18 },
  					{ "time": 0.3333, "x": 408.32, "y": -501.17 },
  					{ "time": 2.0666, "x": 351.31, "y": -407.11 },
  					{ "time": 2.1333, "x": 431.28, "y": -510.6 }
  				],
  				"scale": [
  					{ "time": 0, "x": 6.988, "y": 0.892, "curve": "stepped" },
  					{ "time": 0.1666, "x": 6.988, "y": 0.892 },
  					{ "time": 0.3333, "x": -0.213, "y": 0.892 },
  					{ "time": 2.0666, "x": 6.988, "y": 0.892, "curve": "stepped" },
  					{ "time": 2.1333, "x": 6.988, "y": 0.892 }
  				]
  			},
  			"images/niujiao003": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.0666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.1333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2, "angle": 0, "curve": "stepped" },
  					{ "time": 0.2666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.3333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4, "angle": 0, "curve": "stepped" },
  					{ "time": 0.4666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8, "angle": 0, "curve": "stepped" },
  					{ "time": 0.8666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0 },
  					{ "time": 1.1, "angle": 15.45 },
  					{ "time": 1.8666, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.4666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0 },
  					{ "time": 1.1, "x": 1.56, "y": 15.79 },
  					{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			}
  		},
  		"deform": {
  			"default": {
  				"images/hair003": {
  					"images/hair003": [
  						{
  							"time": 1.3,
  							"offset": 130,
  							"vertices": [ 10.54242, -18.20196, 10.96881, -17.94799, 9.96444, -18.52462, 14.42104, -15.3124, 8.96594, -15.33541, 6.96374, -16.34249, 7.34677, -16.1737, 6.44575, -16.55392, 10.51182, -14.31979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.57107, -22.69671, 10.10377, -22.46444, 8.85215, -22.98669, 14.50205, -19.91027 ]
  						}
  					]
  				}
  			}
  		}
  	}
  }
  }