7c01fe81
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
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
|
{
"skeleton": { "hash": "HoFByzLZr0f2GhmUCrKJSstJ1rI", "spine": "3.4.02", "width": 159.17, "height": 179.52, "images": "" },
"bones": [
{ "name": "root", "y": 119.96, "scaleX": 0.55, "scaleY": 0.55 },
{ "name": "baokai", "parent": "root", "x": 286.88, "y": 470.7 },
{ "name": "images/shenti", "parent": "root", "length": 70.09, "rotation": 99.36, "x": 8.78, "y": 145.7 },
{ "name": "images/head", "parent": "images/shenti", "length": 92.33, "rotation": -18.35, "x": 72.32, "y": -1.34 },
{ "name": "images/hair03", "parent": "images/head", "length": 18.41, "rotation": 167.19, "x": 38.09, "y": 21.8 },
{ "name": "bone", "parent": "images/hair03", "length": 18.43, "rotation": 13.5, "x": 18.41 },
{ "name": "bone2", "parent": "bone", "length": 20.98, "rotation": 13.49, "x": 18.43 },
{ "name": "bone3", "parent": "bone2", "length": 21.6, "rotation": 29.05, "x": 20.98 },
{ "name": "images/hair02", "parent": "images/head", "length": 22.47, "rotation": 176.84, "x": 46.46, "y": 50.26 },
{ "name": "bone4", "parent": "images/hair02", "length": 21.99, "rotation": 9.51, "x": 22.47 },
{ "name": "bone5", "parent": "bone4", "length": 24.08, "rotation": 7.47, "x": 21.99 },
{ "name": "bone6", "parent": "bone5", "length": 23.03, "rotation": 9.61, "x": 24.08 },
{ "name": "bone7", "parent": "bone6", "length": 21.28, "rotation": 6, "x": 23.03 },
{ "name": "bone8", "parent": "bone7", "length": 18.2, "rotation": 10.87, "x": 21.28 },
{ "name": "bone9", "parent": "bone8", "length": 17.32, "rotation": -10.77, "x": 18.84, "y": 0.4 },
{ "name": "bone10", "parent": "bone9", "length": 20.75, "rotation": -14, "x": 17.32 },
{ "name": "images/youhair03", "parent": "images/head", "length": 14.19, "rotation": -171, "x": 26.57, "y": -31.59 },
{ "name": "bone11", "parent": "images/youhair03", "length": 15.34, "rotation": -7.59, "x": 14.19 },
{ "name": "bone12", "parent": "bone11", "length": 16.25, "rotation": -9.33, "x": 15.34 },
{ "name": "images/toufa002", "parent": "images/head", "length": 20.33, "rotation": -155.58, "x": 27.13, "y": -37.31 },
{ "name": "bone13", "parent": "images/toufa002", "length": 20.61, "rotation": -5.03, "x": 20.33 },
{ "name": "bone14", "parent": "bone13", "length": 20.61, "x": 20.61 },
{ "name": "bone15", "parent": "bone14", "length": 19.94, "rotation": -9.41, "x": 20.61 },
{ "name": "bone16", "parent": "bone15", "length": 23.02, "rotation": -4.33, "x": 20.28, "y": 0.33 },
{ "name": "bone17", "parent": "bone16", "length": 19.17, "rotation": 8.98, "x": 23.36, "y": 0.01 },
{ "name": "images/hair04", "parent": "images/head", "length": 15.32, "rotation": -61.64, "x": 92.58, "y": -19.81 },
{ "name": "bone18", "parent": "images/hair04", "length": 16.66, "rotation": 31.35, "x": 15.32 },
{ "name": "bone19", "parent": "bone18", "length": 16.09, "rotation": 68.34, "x": 16.66 },
{ "name": "images/houtoufa", "parent": "images/head", "length": 33.74, "rotation": 174.21, "x": 64.66, "y": 16.94 },
{ "name": "bone20", "parent": "images/houtoufa", "length": 31.05, "rotation": -8.41, "x": 33.74 },
{ "name": "bone21", "parent": "bone20", "length": 30.12, "rotation": 2.03, "x": 31.05 },
{ "name": "bone22", "parent": "bone21", "length": 31.42, "rotation": -3.55, "x": 30.12 },
{ "name": "bone23", "parent": "bone22", "length": 32.98, "rotation": 3.79, "x": 31.42 },
{ "name": "bone24", "parent": "bone23", "length": 37.34, "rotation": -14.69, "x": 32.98 },
{ "name": "bone25", "parent": "bone24", "length": 24.12, "rotation": 7.6, "x": 37.34 },
{ "name": "bone26", "parent": "bone25", "length": 29.53, "rotation": -13.25, "x": 24.12 },
{ "name": "images/qunzi", "parent": "root", "length": 18.81, "rotation": -126.34, "x": 34.04, "y": 102.64 },
{ "name": "bone27", "parent": "images/qunzi", "length": 17.68, "rotation": 13.51, "x": 18.81 },
{ "name": "bone28", "parent": "bone27", "length": 16.63, "rotation": -1.52, "x": 17.68 },
{ "name": "bone29", "parent": "bone28", "length": 14.49, "rotation": 2.35, "x": 16.63 },
{ "name": "bone30", "parent": "images/qunzi", "length": 12.3, "rotation": -36.06, "x": 7.84, "y": -11.62 },
{ "name": "bone31", "parent": "bone30", "length": 13.8, "rotation": 16.42, "x": 12.3 },
{ "name": "bone32", "parent": "bone31", "length": 11.73, "rotation": 0.05, "x": 13.8 },
{ "name": "bone33", "parent": "bone32", "length": 15.4, "rotation": -2.74, "x": 11.73 },
{ "name": "images/qunzi-back", "parent": "images/qunzi", "length": 16.41, "rotation": -5.12, "x": 14.39, "y": -8.94 },
{ "name": "bone34", "parent": "images/qunzi-back", "length": 16.99, "rotation": -4.89, "x": 16.41 },
{ "name": "bone35", "parent": "bone34", "length": 14.15, "rotation": 1.36, "x": 16.99 },
{ "name": "images/pifeng002", "parent": "root", "length": 24.46, "rotation": -78.51, "x": 24.36, "y": 203.61 },
{ "name": "bone36", "parent": "images/pifeng002", "length": 25.07, "rotation": 2.34, "x": 24.46 },
{ "name": "bone37", "parent": "bone36", "length": 20.64, "rotation": -2.31, "x": 25.07 },
{ "name": "bone38", "parent": "bone37", "length": 22.92, "rotation": -0.2, "x": 20.64 },
{ "name": "bone39", "parent": "bone38", "length": 23.36, "rotation": 0.72, "x": 22.92 },
{ "name": "bone40", "parent": "bone39", "length": 20.64, "rotation": -0.51, "x": 23.36 },
{ "name": "bone41", "parent": "bone40", "length": 19.65, "rotation": -19.18, "x": 20.64 },
{ "name": "bone42", "parent": "bone41", "length": 24.18, "rotation": -8.52, "x": 19.65 },
{ "name": "images/youpifeng", "parent": "root", "length": 28.03, "rotation": -112.79, "x": -12.38, "y": 212.07 },
{ "name": "bone43", "parent": "images/youpifeng", "length": 21.7, "rotation": 1.54, "x": 28.03 },
{ "name": "bone44", "parent": "bone43", "length": 23.8, "rotation": -2.89, "x": 21.7 },
{ "name": "bone45", "parent": "bone44", "length": 23.23, "rotation": 3.37, "x": 23.8 },
{ "name": "bone46", "parent": "bone45", "length": 24.3, "rotation": -3.81, "x": 23.23 },
{ "name": "bone47", "parent": "bone46", "length": 21.35, "rotation": 2.97, "x": 24.3 },
{ "name": "bone48", "parent": "bone47", "length": 28.28, "rotation": 10.15, "x": 21.35 },
{ "name": "images/pifeng", "parent": "root", "length": 27.6, "rotation": -97.8, "x": 5.36, "y": 206.79 },
{ "name": "bone49", "parent": "images/pifeng", "length": 26.74, "rotation": -3.5, "x": 27.6 },
{ "name": "bone50", "parent": "bone49", "length": 22.18, "rotation": -0.37, "x": 26.74 },
{ "name": "bone51", "parent": "bone50", "length": 23.35, "rotation": -4.12, "x": 22.18 },
{ "name": "bone52", "parent": "bone51", "length": 24.9, "rotation": 0.11, "x": 23.35 },
{ "name": "bone53", "parent": "bone52", "length": 23.44, "rotation": 2.78, "x": 24.9 },
{ "name": "bone54", "parent": "bone53", "length": 20.35, "rotation": 0.16, "x": 23.44 },
{ "name": "bone55", "parent": "bone54", "length": 23.82, "rotation": -3.68, "x": 20.8, "y": -0.28 },
{ "name": "huiguang", "parent": "root", "x": 229.32, "y": 487.76 },
{ "name": "huiguang2", "parent": "root", "x": 248.94, "y": 451.98 },
{ "name": "images/datui01", "parent": "root", "length": 42.62, "rotation": -65.84, "x": 14.88, "y": 143.82 },
{ "name": "images/datui02", "parent": "root", "length": 56.77, "rotation": -40.44, "x": -16.16, "y": 141.63 },
{ "name": "images/zuoshou", "parent": "root", "x": 80.82, "y": 154.01 },
{ "name": "images/fazhang", "parent": "images/zuoshou", "x": 18.24, "y": 1.74 },
{ "name": "images/faqiu", "parent": "images/fazhang", "x": 12.59, "y": 79.14 },
{ "name": "images/yanjing", "parent": "images/head", "x": 32.65, "y": 5.17 },
{ "name": "images/youjiao", "parent": "root", "length": 24.86, "rotation": -120.39, "x": -23.43, "y": 69.46 },
{ "name": "images/youshou01", "parent": "root", "x": -42.57, "y": 105.95 },
{ "name": "images/zuojiao", "parent": "root", "length": 21.57, "rotation": -96.08, "x": -8.84, "y": 44.86 },
{ "name": "shandian", "parent": "root", "x": 104.46, "y": 489.52 },
{ "name": "shandian2", "parent": "root", "x": 104.46, "y": 464.74 },
{ "name": "shandian3", "parent": "root", "x": 131.49, "y": 442.21 },
{ "name": "shandian4", "parent": "root", "x": 139.37, "y": 478.25 }
],
"slots": [
{ "name": "images/fazhang", "bone": "images/fazhang", "attachment": "images/fazhang" },
{ "name": "images/faqiu", "bone": "images/faqiu", "attachment": "images/faqiu" },
{ "name": "images/zuoshou", "bone": "images/zuoshou", "attachment": "images/zuoshou" },
{ "name": "images/houtoufa", "bone": "images/houtoufa", "attachment": "images/houtoufa" },
{ "name": "images/pifeng", "bone": "images/pifeng", "attachment": "images/pifeng" },
{ "name": "images/qunzi-back", "bone": "images/qunzi-back", "attachment": "images/qunzi-back" },
{ "name": "images/datui01", "bone": "images/datui01", "attachment": "images/datui01" },
{ "name": "images/datui02", "bone": "images/datui02", "attachment": "images/datui02" },
{ "name": "images/qunzi", "bone": "images/qunzi", "attachment": "images/qunzi" },
{ "name": "images/shenti", "bone": "images/shenti", "attachment": "images/shenti" },
{ "name": "images/youshou01", "bone": "images/youshou01", "attachment": "images/youshou01" },
{ "name": "images/youpifeng", "bone": "images/youpifeng", "attachment": "images/youpifeng" },
{ "name": "images/pifeng002", "bone": "images/pifeng002", "attachment": "images/pifeng002" },
{ "name": "images/youhair03", "bone": "images/youhair03", "attachment": "images/youhair03" },
{ "name": "images/toufa002", "bone": "images/toufa002", "attachment": "images/toufa002" },
{ "name": "images/head", "bone": "images/head", "attachment": "images/head" },
{ "name": "images/yanjing", "bone": "images/yanjing", "attachment": "images/yanjing" },
{ "name": "images/hair02", "bone": "images/hair02", "attachment": "images/hair02" },
{ "name": "images/hair03", "bone": "images/hair03", "attachment": "images/hair03" },
{ "name": "images/hair04", "bone": "images/hair04", "attachment": "images/hair04" },
{ "name": "images/zuojiao", "bone": "images/zuojiao", "attachment": "images/zuojiao" },
{ "name": "images/youjiao", "bone": "images/youjiao", "attachment": "images/youjiao" },
{ "name": "images/Eff/light1", "bone": "huiguang", "blend": "additive" },
{ "name": "images/Eff/light2", "bone": "huiguang2", "blend": "additive" },
{ "name": "images/Eff/1", "bone": "baokai", "blend": "additive" },
{ "name": "images/Eff/shandian0001", "bone": "shandian", "blend": "additive" },
{ "name": "images/Eff/shandian3", "bone": "shandian4", "blend": "additive" },
{ "name": "images/Eff/shandian1", "bone": "shandian2", "blend": "additive" },
{ "name": "images/Eff/shandian2", "bone": "shandian3", "blend": "additive" }
],
"skins": {
"default": {
"images/Eff/1": {
"images/Eff/1": { "y": 10.65, "width": 119, "height": 131 },
"images/Eff/2": { "y": 10.65, "width": 177, "height": 176 },
"images/Eff/3": { "y": 10.65, "width": 201, "height": 199 },
"images/Eff/4": { "y": 10.65, "width": 227, "height": 225 },
"images/Eff/5": { "y": 10.65, "width": 236, "height": 232 }
},
"images/Eff/light1": {
"images/Eff/light1": { "width": 256, "height": 256 }
},
"images/Eff/light2": {
"images/Eff/light1": { "width": 256, "height": 256 }
},
"images/Eff/shandian0001": {
"images/Eff/shandian0001": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0002": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0003": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0004": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0005": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0006": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0007": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0008": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0009": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0010": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0011": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0012": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 }
},
"images/Eff/shandian1": {
"images/Eff/shandian0001": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0002": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0003": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0004": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0005": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0006": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0007": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0008": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0009": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0010": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0011": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0012": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 }
},
"images/Eff/shandian2": {
"images/Eff/shandian0001": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0002": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0003": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0004": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0005": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0006": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0007": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0008": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0009": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0010": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0011": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0012": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 }
},
"images/Eff/shandian3": {
"images/Eff/shandian0001": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0002": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0003": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0004": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0005": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0006": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0007": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0008": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0009": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0010": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0011": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 },
"images/Eff/shandian0012": { "x": -129.51, "y": -3.37, "width": 312, "height": 63 }
},
"images/datui01": {
"images/datui01": { "x": 18.8, "y": -6.85, "rotation": 65.84, "width": 58, "height": 58 }
},
"images/datui02": {
"images/datui02": { "x": 28.16, "y": 0.64, "rotation": 40.44, "width": 65, "height": 56 }
},
"images/faqiu": {
"images/faqiu": { "x": -1.2, "y": 3.55, "width": 45, "height": 36 }
},
"images/fazhang": {
"images/fazhang": { "x": 22.86, "y": 8.06, "width": 97, "height": 262 }
},
"images/hair02": {
"images/hair02": {
"type": "mesh",
"uvs": [ 0.15215, 0, 0, 0.10182, 0, 0.18641, 0, 0.29743, 0, 0.43488, 0.04146, 0.57233, 0.2075, 0.70449, 0.41043, 0.79172, 0.72407, 0.86837, 0.84399, 1, 1, 1, 1, 0.83665, 1, 0.73885, 0.84399, 0.65691, 0.72407, 0.54854, 0.6226, 0.41637, 0.61337, 0.29214, 0.5857, 0.18376, 0.67794, 0.05689, 0.53035, 0 ],
"triangles": [ 9, 11, 10, 9, 8, 11, 11, 8, 12, 8, 7, 12, 7, 13, 12, 7, 6, 13, 6, 14, 13, 6, 5, 14, 5, 15, 14, 5, 4, 15, 4, 16, 15, 16, 4, 3, 16, 3, 17, 3, 2, 17, 2, 1, 17, 17, 1, 18, 1, 19, 18, 1, 0, 19 ],
"vertices": [ 2, 8, -1.88, -10.98, 1, 15, -149.6, -19.1, 0, 3, 8, 16.70999, -14.6, 0.80104, 9, -8.09, -13.45, 0.19895, 15, -133.15, -28.49, 0, 3, 8, 30.85, -11.56, 0.15503, 9, 6.35, -12.78, 0.84496, 15, -118.78, -30.14, 0, 2, 9, 25.31, -11.91, 0.34394, 10, 1.74, -12.24, 0.65605, 2, 10, 25.16, -14.22, 0.47841, 11, -1.29999, -14.2, 0.52158, 3, 11, 21.95, -18.09, 0.57361, 12, -2.96, -17.87999, 0.42638, 15, -52.99, -35.64, 0, 6, 10, 71.96, -7.97, 2.0E-5, 11, 45.87, -15.85, 0.00721, 12, 21.05, -18.15, 0.58511, 13, -3.65, -17.78, 0.40618, 14, -18.69, -22.07, 0.00146, 15, -29.61, -30.13, 0, 4, 10, 87.66, 0.67, 0, 12, 38.5, -14.05, 0.04107, 13, 14.25, -17.04999, 0.70319, 14, -1.24, -18, 0.25571, 4, 10, 102.01, 14.88, 0, 13, 33.43999, -10.73, 0.00243, 14, 16.42, -8.21, 0.57024, 15, 1.11, -8.18, 0.42731, 5, 9, 143.42, 34.93, 0, 10, 124.93, 18.84, 0, 13, 55.72, -17.42, 0, 14, 39.56, -10.61, 1.5E-4, 15, 24.14, -4.91, 0.99984, 3, 9, 143.06, 42.57, 0, 10, 125.58, 26.46, 0, 15, 25.01, 2.67, 1, 4, 9, 115.16, 41.28, 0, 10, 97.75, 28.81, 0, 14, 16.09, 6.34, 0.73017, 15, -2.73, 5.86, 0.26982, 3, 10, 81.08, 30.22, 0, 13, 21.55, 12.32, 0.39603, 14, 0.43, 12.22, 0.60395, 6, 9, 84.81, 32.23, 0, 10, 66.48, 23.78, 0, 12, 24.32, 13.9, 0.26682, 13, 5.61, 13.08, 0.72028, 14, -15.36, 9.97999, 0.01288, 15, -34.13, 1.77, 0, 5, 9, 66.57, 25.5, 2.0E-5, 11, 26.36, 15.3, 0.30662, 12, 4.9, 14.87, 0.67629, 13, -13.27, 17.69, 0.01705, 15, -53.21, -1.95, 0, 4, 9, 44.22, 19.5, 0.00132, 10, 24.58, 16.44, 0.4171, 11, 3.23, 16.12, 0.58156, 15, -76.23, -4.31, 0, 5, 8, 42.19, 21.62, 0.00153, 9, 23.02, 18.06, 0.38009, 10, 3.37, 17.78, 0.61495, 11, -17.44, 20.99, 0.00342, 15, -97.39, -2.33999, 0, 4, 8, 24.36, 16.39, 0.31942, 9, 4.57, 15.86, 0.639, 10, -15.2, 17.99, 0.04157, 15, -115.96, -1.57, 0, 3, 8, 2.2, 16.24, 0.98937, 9, -17.29999, 19.37, 0.01062, 15, -137, 5.38, 0, 2, 8, -5.78, 7.13, 1, 15, -147.48, -0.68, 0 ],
"hull": 20,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 0, 38, 2, 36, 10, 28, 12, 26, 14, 24 ],
"width": 49,
"height": 171
}
},
"images/hair03": {
"images/hair03": {
"type": "mesh",
"uvs": [ 0.22688, 0, 0, 0.1827, 0, 0.35773, 0, 0.55558, 0.11248, 0.76105, 0.34128, 0.879, 0.59088, 1, 1, 1, 0.94448, 0.83334, 0.76768, 0.71158, 0.84048, 0.52895, 0.96528, 0.33109, 1, 0.16368, 1, 0 ],
"triangles": [ 6, 8, 7, 6, 9, 8, 6, 5, 9, 9, 5, 10, 3, 10, 5, 3, 5, 4, 3, 2, 10, 2, 0, 10, 10, 0, 11, 2, 1, 0, 11, 0, 12, 0, 13, 12 ],
"vertices": [ 1, 4, 0.56, -13.98, 1, 2, 4, 16.99, -14.73, 0.68561, 5, -4.82, -13.99, 0.31437, 3, 4, 30.32, -9.39999, 0.0537, 5, 9.38, -11.92, 0.91267, 6, -11.58, -9.47999, 0.03362, 2, 5, 25.43, -9.58, 0.17364, 6, 4.57, -10.95, 0.82635, 2, 6, 21.65, -9.12, 0.65311, 7, -3.84, -8.29, 0.34688, 2, 6, 31.91, -3.16, 0.01128, 7, 8.01, -8.06, 0.98871, 1, 7, 20.43, -7.46, 1, 1, 7, 27.33, 2.68, 1, 2, 6, 29.82, 15.2, 0.0032, 7, 15.1, 8.99, 0.99679, 2, 6, 19.39, 10.82, 0.47274, 7, 3.86, 10.22999, 0.52725, 3, 4, 33.99, 19.20999, 0.00408, 5, 19.62999, 15.04, 0.38373, 6, 4.67999, 14.35, 0.61217, 3, 4, 17.54, 16.66, 0.42, 5, 3.04, 16.41, 0.57147, 6, -11.13, 19.54999, 0.0085, 2, 4, 4.4, 12.53, 0.95973, 5, -10.69, 15.46, 0.04025, 1, 4, -8.05, 7.55, 1 ],
"hull": 14,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 0, 26 ],
"width": 30,
"height": 82
}
},
"images/hair04": {
"images/hair04": {
"type": "mesh",
"uvs": [ 0.14238, 0, 0.38514, 0.21854, 0.51138, 0.42669, 0.39485, 0.68215, 0.17151, 0.82408, 0, 0.89977, 0, 1, 0.23948, 1, 0.61819, 0.99438, 0.84154, 0.83354, 1, 0.62538, 1, 0.32262, 0.86096, 0.08608, 0.57935, 0 ],
"triangles": [ 1, 0, 13, 2, 1, 13, 2, 13, 12, 2, 12, 11, 2, 11, 10, 9, 2, 10, 3, 2, 9, 8, 3, 9, 7, 6, 5, 7, 4, 3, 7, 3, 8, 7, 5, 4 ],
"vertices": [ 1, 27, 28.74, 14.33, 1, 2, 26, 13.18, 19.45999, 0.00397, 27, 16.81, 10.41, 0.99602, 3, 25, 18.29, 14.23, 0.0145, 26, 9.93999, 10.61, 0.36144, 27, 7.38, 10.16, 0.62404, 3, 25, 10.81, 6.3, 0.7501, 26, -0.57, 7.73, 0.24144, 27, 0.82, 18.87, 0.00844, 1, 25, 0.97, 3.89, 1, 1, 25, -6.15, 3.27, 1, 1, 25, -7.45, -0.41, 1, 1, 25, 1.13, -3.43, 1, 3, 25, 14.78, -7.99, 0.65939, 26, -4.62, -6.54, 0.34059, 27, -13.94, 17.36, 0, 3, 25, 24.87, -4.89, 0.01221, 26, 5.6, -9.14, 0.98778, 27, -12.57, 6.9, 0, 2, 26, 15.7, -8.66, 0.95177, 27, -8.39999, -2.3, 0.04822, 2, 26, 24.84, -1.17999, 0.04143, 27, 1.91, -8.03, 0.95856, 1, 27, 12.54, -7.9, 1, 1, 27, 20.67, -0.17, 1 ],
"hull": 14,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 0, 26 ],
"width": 38,
"height": 39
}
},
"images/head": {
"images/head": { "x": 48.39, "y": 5.86, "rotation": -81, "width": 107, "height": 109 },
"images/head02": { "x": 48.39, "y": 5.86, "rotation": -81, "width": 105, "height": 109 }
},
"images/houtoufa": {
"images/houtoufa": {
"type": "mesh",
"uvs": [ 0.48223, 0, 0.35961, 0.09773, 0.29117, 0.1686, 0.23129, 0.24506, 0.16285, 0.30101, 0.09156, 0.3495, 0.01457, 0.4297, 0, 0.55092, 0.04023, 0.66282, 0.10582, 0.74488, 0.05449, 0.78777, 0, 0.81575, 0, 0.87729, 0, 0.9407, 0, 0.99665, 0.08015, 1, 0.17711, 0.96867, 0.26551, 0.92019, 0.29403, 0.85491, 0.27121, 0.81202, 0.3311, 0.79523, 0.47083, 0.80829, 0.60485, 0.81015, 0.79591, 0.74674, 0.9556, 0.66468, 1, 0.55651, 1, 0.44462, 1, 0.26371, 1, 0.12943, 0.87575, 0.01567, 0.69895, 0 ],
"triangles": [ 12, 16, 15, 15, 14, 13, 12, 15, 13, 11, 16, 12, 11, 17, 16, 17, 11, 10, 17, 10, 18, 18, 10, 19, 10, 9, 19, 19, 9, 20, 7, 21, 20, 9, 8, 20, 7, 20, 8, 23, 22, 5, 22, 6, 5, 6, 22, 21, 24, 23, 4, 7, 6, 21, 5, 4, 23, 4, 3, 24, 24, 3, 25, 25, 3, 26, 3, 2, 26, 2, 1, 26, 1, 27, 26, 27, 1, 30, 1, 0, 30, 30, 29, 27, 29, 28, 27 ],
"vertices": [ 5, 28, -3.76, -38.16999, 0.83927, 29, -31.51, -43.25, 0.15593, 30, -64.06, -41, 0.00477, 32, -125.71, -38.53, 0, 33, -143.74, -77.53, 0, 5, 28, 23.48, -50.64, 0.5103, 29, -2.73, -51.59, 0.38684, 30, -35.59999, -50.36, 0.08632, 31, -62.48, -54.34, 0.01651, 33, -113.84, -79.49, 0, 5, 28, 42.42, -56.61, 0.25859, 29, 16.87999, -54.73, 0.43576, 30, -16.11, -54.19, 0.22501, 31, -42.78, -56.95, 0.07712, 32, -77.81, -51.92, 0.00348, 6, 28, 62.31, -60.96, 0.08092, 29, 37.18999, -56.12, 0.31583, 30, 4.13, -56.3, 0.35312, 31, -22.44, -57.81, 0.21454, 32, -57.57, -54.12, 0.03348, 33, -73.87, -75.32, 0.00207, 6, 28, 77.83999, -67.83, 0.01898, 29, 53.55, -60.65, 0.16893, 30, 20.33, -61.41, 0.33465, 31, -5.96, -61.9, 0.35796, 32, -41.4, -59.29, 0.10444, 33, -56.91, -76.22, 0.015, 6, 28, 91.77, -75.58999, 0.00239, 29, 68.47, -66.28, 0.0831, 30, 35.03, -67.57, 0.25393, 31, 9.09, -67.12999, 0.42174, 32, -26.72, -65.51, 0.19435, 33, -41.13, -78.51, 0.04446, 5, 29, 90.64, -69.76, 0.02779, 30, 57.07, -71.83, 0.14884, 31, 31.35, -70.01999, 0.40057, 32, -4.69999, -69.87, 0.30733, 33, -18.73, -77.14, 0.11545, 5, 29, 117.94, -60.52, 0.00266, 30, 84.67, -63.57, 0.05128, 31, 58.39, -60.06, 0.26172, 32, 22.93, -61.72, 0.39355, 33, 5.93, -62.25, 0.29077, 5, 30, 107.15, -48.18, 0.00725, 31, 79.87, -43.31, 0.09938, 32, 45.47, -46.42, 0.2983, 33, 23.85, -41.73, 0.55794, 34, -18.89, -39.58, 0.03711, 5, 31, 93.29, -25.94, 0.01486, 32, 60.01, -29.98, 0.06627, 33, 33.74, -22.14, 0.60222, 34, -6.49, -21.47, 0.31507, 35, -24.87, -27.92, 0.00155, 5, 31, 105.85, -28.92, 9.5E-4, 32, 72.33999, -33.78, 0.00278, 33, 46.64, -22.69, 0.22777, 34, 6.21, -23.72, 0.67745, 35, -11.99, -27.2, 0.09102, 3, 33, 56.95, -25.69, 0.0878, 34, 16.03, -28.06, 0.6441, 35, -1.43, -29.17, 0.26808, 2, 34, 28.9, -21.21, 0.41731, 35, 9.52, -19.54999, 0.58268, 2, 34, 42.17, -14.16, 0.03907, 35, 20.82, -9.64, 0.96092, 1, 35, 30.78, -0.89, 1, 2, 33, 85.21, 9.83, 0, 35, 23.19, 8.96, 0.99999, 3, 33, 70.42, 17.71999, 4.1E-4, 34, 35.13, 13.18, 0.26959, 35, 7.69, 15.36, 0.72998, 2, 34, 18.54999, 19.87999, 0.82384, 35, -9.97, 18.08, 0.17615, 2, 33, 37.95, 16.75, 0.24471, 34, 2.82, 16.52, 0.75528, 3, 32, 65.71, -0.35, 0.00241, 33, 31.75, 7.96, 0.6168, 34, -4.48999, 8.63, 0.38078, 3, 32, 58.68, 6.89, 0.08658, 33, 23.11, 13.18, 0.86731, 34, -12.36, 14.95, 0.04609, 4, 30, 115.21, 26.5, 0.00412, 31, 83.28, 31.72, 0.02668, 32, 53.84, 28.22, 0.39938, 33, 13.01, 32.59, 0.5698, 5, 29, 137.48, 49.85, 0.00133, 30, 108.12, 46.03, 0.02325, 31, 74.99, 50.78, 0.09264, 32, 46.83, 47.79, 0.51996, 33, 1.27, 49.74, 0.36279, 5, 29, 112, 71.15, 0.02188, 30, 83.42, 68.22, 0.1052, 31, 48.96, 71.4, 0.23636, 32, 22.22, 70.08, 0.4987, 33, -28.18, 65.06, 0.13783, 5, 29, 84.37, 86.23, 0.07118, 30, 56.35, 84.28, 0.21145, 31, 20.94, 85.75, 0.29784, 32, -4.78, 86.25, 0.37182, 33, -58.41, 73.85, 0.04768, 6, 28, 103.28, 73.07, 0.00436, 29, 58.1, 82.46, 0.14169, 30, 29.96, 81.44999, 0.28883, 31, -5.21, 81.28, 0.28634, 32, -31.18, 83.53, 0.26251, 33, -83.25, 64.51999, 0.01624, 6, 28, 77.64, 66.3, 0.04746, 29, 33.72, 72.01, 0.2788, 30, 5.21999, 71.87, 0.335, 31, -29.3, 70.19, 0.20219, 32, -55.95, 74.05, 0.13482, 33, -104.81, 49.07, 0.00171, 5, 28, 36.18999, 55.36, 0.42727, 29, -5.67, 55.13, 0.38929, 30, -34.75, 56.4, 0.13594, 31, -68.25, 52.26, 0.03232, 32, -96, 58.74, 0.01514, 5, 28, 5.42, 47.24, 0.85196, 29, -34.93, 42.59, 0.13167, 30, -64.43, 44.91, 0.01522, 31, -97.15, 38.96, 9.5E-4, 32, -125.72, 47.38, 1.8E-4, 1, 28, -15.73, 21.74, 1, 4, 28, -12.33, -5.69, 0.99483, 29, -44.74, -12.37, 0.00516, 32, -137.71, -7.15, 0, 33, -163.3, -50.22, 0 ],
"hull": 31,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 0, 60, 2, 54, 4, 52, 8, 48, 6, 50, 10, 46, 12, 44, 14, 42, 20, 36, 22, 34, 24, 32 ],
"width": 155,
"height": 237
}
},
"images/pifeng": {
"images/huayifu-back": {
"type": "mesh",
"uvs": [ 0.42027, 0, 0.32945, 0.10371, 0.24998, 0.24482, 0.18565, 0.38594, 0.10996, 0.51025, 0.04563, 0.6312, 0, 0.75215, 0, 0.81599, 0.09104, 0.92686, 0.18943, 0.98062, 0.32945, 1, 0.50352, 1, 0.69651, 1, 0.89708, 0.92686, 1, 0.83279, 1, 0.75551, 0.94627, 0.66816, 0.90843, 0.56065, 0.85924, 0.43297, 0.82139, 0.3053, 0.78734, 0.16083, 0.74571, 0.06675, 0.68138, 0, 0.55271, 0 ],
"triangles": [ 23, 22, 21, 21, 20, 23, 20, 1, 23, 1, 0, 23, 20, 19, 1, 2, 1, 19, 3, 2, 19, 3, 17, 4, 18, 3, 19, 17, 3, 18, 4, 17, 16, 5, 4, 16, 6, 5, 16, 15, 6, 16, 7, 6, 15, 7, 15, 14, 13, 8, 7, 14, 13, 7, 10, 9, 8, 8, 11, 10, 13, 11, 8, 12, 11, 13 ],
"vertices": [ -6.26, -32.36, 15.51, -44.96, 44.11, -54.68, 72.36, -61.85, 97.69, -71.37, 122.12, -79.06, 146.12, -83.6, 158.23, -81.94, 177.16, -63.73, 185.09, -45.76, 185.54, -21.67, 181.52, 7.64, 177.07, 40.14, 158.57, 72.01999, 138.34, 86.91, 123.68, 84.91, 108.35, 73.58999, 88.83, 64.42, 65.74, 52.82, 42.4, 43.12, 15.78, 33.63, -1.1, 24.18, -12.28, 11.61, -9.31, -10.05 ],
"hull": 24,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 0, 46, 8, 34, 10, 32, 12, 30, 14, 28, 16, 26 ],
"width": 190,
"height": 214
},
"images/pifeng": {
"type": "mesh",
"uvs": [ 0.53328, 0, 0.41865, 0.08111, 0.37498, 0.16369, 0.27672, 0.25545, 0.19484, 0.37702, 0.11842, 0.49171, 0.042, 0.58117, 0, 0.65916, 0, 0.7555, 0.05291, 0.81285, 0.12934, 0.87249, 0.18392, 0.92525, 0.26308, 0.97342, 0.36406, 1, 0.56331, 1, 0.69978, 0.97801, 0.80895, 0.91378, 0.9618, 0.8312, 1, 0.77156, 1, 0.67293, 0.97544, 0.52841, 0.94269, 0.42519, 0.90721, 0.29215, 0.87446, 0.17287, 0.84443, 0.05129, 0.75709, 0, 0.61517, 0 ],
"triangles": [ 15, 14, 11, 11, 14, 13, 11, 10, 15, 11, 13, 12, 16, 15, 10, 17, 16, 8, 9, 8, 16, 10, 9, 16, 18, 17, 7, 8, 7, 17, 18, 7, 6, 6, 19, 18, 6, 5, 19, 5, 20, 19, 5, 21, 20, 22, 5, 4, 21, 5, 22, 22, 4, 3, 22, 3, 2, 2, 23, 22, 23, 2, 26, 26, 2, 1, 1, 0, 26, 26, 25, 23, 25, 24, 23 ],
"vertices": [ 3, 62, 0.41, -20.15, 0.9399, 63, -25.9, -21.78, 0.06009, 69, -165.03, -31.3, 0, 6, 62, 17.96999, -36.02, 0.55246, 63, -7.39, -36.55, 0.38976, 64, -33.89, -36.77, 0.04364, 65, -53.28, -40.71, 0.01397, 66, -76.72, -40.57, 1.5E-4, 69, -145.28, -44.35, 0, 7, 62, 34.29, -40.75, 0.23444, 63, 9.17, -40.27, 0.50054, 64, -17.29, -40.38, 0.17611, 65, -36.46, -43.12, 0.07648, 66, -59.91, -43, 0.01199, 67, -86.8, -38.84, 4.2E-4, 69, -128.43, -46.58, 0, 7, 62, 53.49, -53.79, 0.03138, 63, 29.13, -52.11, 0.30249, 64, 2.74, -52.09, 0.31735, 65, -15.64, -53.35, 0.24767, 66, -39.09999, -53.28, 0.0845, 67, -66.51, -50.11, 0.01653, 68, -90.1, -49.84, 4.0E-5, 7, 63, 54.08, -60.31, 0.09786, 64, 27.74, -60.13, 0.20932, 65, 9.87, -59.57, 0.3314, 66, -13.59, -59.55, 0.24108, 67, -41.34, -57.61, 0.10124, 68, -64.96, -57.42, 0.01294, 69, -81.91, -62.52, 0.00612, 7, 63, 77.58999, -67.92, 0.01805, 64, 51.3, -67.58, 0.07519, 65, 33.91, -65.31, 0.21938, 66, 10.42, -65.33, 0.30842, 67, -17.62999, -64.55, 0.25848, 68, -41.25999, -64.43, 0.07492, 69, -57.81, -68, 0.0455, 7, 63, 96.45, -76.46, 0.00159, 64, 70.22, -76, 0.02183, 65, 53.38, -72.33999, 0.11162, 66, 29.88, -72.4, 0.24381, 67, 1.46, -72.56, 0.34874, 68, -22.19, -72.49, 0.15956, 69, -38.27, -74.82, 0.11281, 6, 64, 85.92, -79.53, 0.00717, 65, 69.3, -74.73, 0.06601, 66, 45.79, -74.82, 0.18518, 67, 17.23, -75.75, 0.35875, 68, -6.42, -75.73, 0.21319, 69, -22.33, -77.04, 0.16966, 7, 63, 129.89, -76.54, 0, 64, 103.66, -75.86, 0.00113, 65, 86.72, -69.79, 0.03655, 66, 63.23, -69.92, 0.13195, 67, 34.89, -71.69, 0.34019, 68, 11.23, -71.73, 0.25747, 69, -4.94999, -71.91, 0.23267, 5, 65, 94.82, -58.81, 0.02137, 66, 71.33999, -58.95, 0.09406, 67, 43.52, -61.13, 0.30543, 68, 19.9, -61.19, 0.28549, 69, 3.01, -60.84, 0.29362, 5, 65, 102.31, -44.14, 0.00631, 66, 78.87, -44.29, 0.0422, 67, 51.75, -46.86, 0.21185, 68, 28.17, -46.94, 0.30182, 69, 10.35, -46.09, 0.4378, 5, 65, 109.5, -33.13, 5.0E-4, 66, 86.08, -33.3, 0.0128, 67, 59.49, -36.23, 0.11804, 68, 35.93999, -36.34, 0.26174, 69, 17.42, -35.00999, 0.60689, 4, 66, 91.41, -18.81, 4.6E-4, 67, 65.51999, -22.02, 0.03391, 68, 42.01, -22.14, 0.13572, 69, 22.57, -20.45, 0.82989, 1, 69, 22.84, -3.73, 1, 8, 62, 186.02, 10.06, 3.0E-5, 63, 157.51, 19.74, 0, 64, 130.64, 20.6, 6.3E-4, 65, 106.68, 28.36, 0.00122, 66, 83.37999, 28.2, 0.05248, 67, 59.78, 25.33, 0.04282, 68, 36.41, 25.22, 0.37638, 69, 13.93, 26.45, 0.52641, 8, 62, 179, 30.86, 7.0E-5, 63, 149.23, 40.07, 0, 64, 122.22, 40.88, 0.00768, 65, 96.83, 47.98, 0.01575, 66, 73.56, 47.84, 0.14309, 67, 50.92, 45.42, 0.16608, 68, 27.61, 45.34, 0.4349, 69, 3.86, 45.96, 0.2324, 8, 62, 164.7, 46.31, 1.2E-4, 63, 134, 54.62, 0, 64, 106.9, 55.32, 0.02634, 65, 80.51, 61.28, 0.05116, 66, 57.27, 61.17, 0.23759, 67, 35.3, 59.53, 0.24241, 68, 12.03, 59.49, 0.35509, 69, -12.59, 59.09, 0.08727, 7, 62, 146.04, 68.12999, 1.9E-4, 64, 86.8, 75.83, 0.0677, 65, 58.99, 80.28, 0.11576, 66, 35.78, 80.22, 0.31805, 67, 14.76, 79.58999, 0.24373, 68, -8.43999, 79.62, 0.23997, 69, -34.31, 77.86, 0.01456, 8, 62, 134.11, 72.58999, 1.9E-4, 63, 101.87, 78.97, 0.00138, 64, 74.6, 79.47, 0.08538, 65, 46.56, 83.03, 0.13885, 66, 23.36, 82.99, 0.32786, 67, 2.48, 82.97, 0.23008, 68, -20.70999, 83.03, 0.20989, 69, -46.78, 80.47, 0.00632, 8, 62, 115.74, 70.07, 6.0E-5, 63, 83.68, 75.33, 0.01009, 64, 56.44, 75.71, 0.1283, 65, 28.72, 77.98, 0.18735, 66, 5.51, 77.97, 0.32477, 67, -15.58, 78.82, 0.19182, 68, -38.79, 78.93, 0.15721, 69, -64.56, 75.22, 3.3E-4, 7, 62, 89.35, 62.54, 7.0E-5, 63, 57.8, 66.19999, 0.07207, 64, 30.62, 66.41, 0.25007, 65, 3.63, 66.83999, 0.26657, 66, -19.59, 66.87999, 0.24211, 67, -41.18999, 68.96, 0.09745, 68, -64.43, 69.15, 0.07162, 8, 62, 70.82, 54.78, 0.01043, 63, 39.79, 57.32, 0.1898, 64, 12.67, 57.41, 0.35526, 65, -13.62, 56.57, 0.24992, 66, -36.87, 56.64, 0.12808, 67, -58.95, 59.58, 0.03739, 68, -82.22, 59.82, 0.02891, 69, -106.67, 53.36, 1.6E-4, 8, 62, 46.8, 45.83, 0.11167, 63, 16.36, 46.92, 0.42736, 64, -10.68, 46.85, 0.32155, 65, -36.15, 44.36, 0.10651, 66, -59.43, 44.48, 0.02465, 67, -82.07, 48.52, 0.00381, 68, -105.37, 48.83, 0.0043, 69, -129.07, 40.9, 1.0E-4, 7, 62, 25.29, 37.66, 0.42502, 63, -4.6, 37.45, 0.42917, 64, -31.59, 37.24, 0.12842, 65, -56.32, 33.27, 0.01641, 66, -79.61, 33.41999, 8.6E-4, 68, -126.1, 38.83, 4.0E-5, 69, -149.11, 29.59, 4.0E-5, 4, 62, 3.29, 29.86, 0.80774, 63, -26.08, 28.31, 0.17362, 64, -53.01, 27.96, 0.01861, 69, -169.69, 18.57, 1.0E-5, 4, 62, -4.38, 14.88, 0.94654, 63, -32.83, 12.89, 0.05282, 64, -59.66, 12.49, 6.2E-4, 69, -175.04, 2.60999, 0, 1, 62, -1.34, -7.33, 1 ],
"hull": 27,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 0, 52, 10, 40, 12, 38, 14, 36, 18, 32, 16, 34, 22, 30 ],
"width": 158,
"height": 188
}
},
"images/pifeng002": {
"images/pifeng002": {
"type": "mesh",
"uvs": [ 0, 0.00174, 0, 0.1109, 0.05403, 0.20418, 0.11245, 0.31531, 0.17816, 0.42447, 0.23658, 0.53164, 0.3096, 0.63881, 0.28769, 0.73804, 0.21467, 0.82337, 0.14165, 0.93253, 0.05403, 1, 0.38262, 1, 0.6966, 0.94642, 0.95946, 0.85711, 1, 0.75987, 0.82803, 0.62094, 0.65278, 0.50981, 0.53595, 0.40462, 0.44103, 0.28554, 0.3169, 0.18433, 0.25848, 0.09105, 0.13435, 0 ],
"triangles": [ 10, 9, 11, 11, 9, 12, 12, 9, 13, 9, 8, 13, 13, 8, 14, 14, 7, 15, 14, 8, 7, 7, 16, 15, 16, 6, 17, 16, 7, 6, 6, 5, 17, 5, 18, 17, 5, 4, 18, 4, 19, 18, 4, 3, 19, 19, 2, 20, 19, 3, 2, 2, 21, 20, 2, 1, 21, 1, 0, 21 ],
"vertices": [ 2, 47, -7.5, -2.16, 0.99913, 48, -32.02, -0.85, 8.6E-4, 2, 47, 13.35, -6.4, 0.99537, 48, -11.35, -5.94, 0.00461, 2, 47, 31.75, -7.21, 0.02616, 48, 6.98, -7.5, 0.97383, 2, 48, 28.77, -9.68, 0.21821, 49, 4.08, -9.52, 0.78178, 3, 49, 25.63, -10.35999, 0.21068, 50, 5.03, -10.34, 0.78931, 53, -55.04, -30.25, 0, 3, 50, 26.12, -11.4, 0.28237, 51, 3.06, -11.44, 0.71761, 53, -34.74, -24.39, 0, 3, 51, 24.31, -12.01, 0.43061, 52, 1.04999, -12, 0.55966, 53, -14.55, -17.77, 0.0097, 4, 50, 66.12, -16.64, 0, 52, 19.78, -17, 0.35555, 53, 4.77, -16.34, 0.59397, 54, -12.28, -18.36, 0.05047, 4, 50, 81.68, -23.7, 0, 52, 35.31, -24.12, 0.00379, 53, 21.78, -17.95999, 0.31487, 54, 4.77, -17.44, 0.68133, 4, 48, 146, -36.93999, 0, 50, 101.79, -31.67, 0, 52, 55.4, -32.16, 0, 54, 26.29, -15.22, 0.99999, 4, 48, 157.67, -44.6, 0, 50, 113.78, -38.8, 0, 52, 67.36, -39.33, 0, 54, 40.21, -16.02, 0.99999, 4, 48, 161.83, -27.69, 0, 50, 117.2, -21.72, 0, 52, 70.83999, -22.27, 0, 54, 35.36, 0.7, 0.99999, 3, 48, 155.67, -9.03, 0, 53, 42.15, 10.55, 0.01177, 54, 20.69, 13.77, 0.98822, 5, 48, 142.08, 8.64999, 0, 50, 95.87, 13.71, 0, 52, 49.64, 13.24, 0.00923, 53, 23.04, 22.03, 0.53173, 54, 0.08, 22.29, 0.45901, 5, 48, 124.19, 15.27, 0, 50, 77.69999, 19.54, 1.0E-5, 52, 31.49, 19.12999, 0.22207, 53, 3.96, 21.63, 0.71945, 54, -18.71999, 19.07, 0.05846, 4, 50, 49.35, 15.91, 9.0E-5, 51, 26.63, 15.58, 0.29637, 52, 3.12, 15.61, 0.69238, 53, -21.67, 8.99, 0.01113, 4, 48, 72.44, 9.05, 1.0E-5, 50, 26.28, 11.05, 0.20593, 51, 3.49, 11.01, 0.79305, 52, -19.95999, 10.83, 0.001, 3, 48, 51.04, 7.94, 5.2E-4, 49, 25.62, 8.99, 0.17408, 50, 4.94999, 9, 0.82539, 3, 48, 27.29, 8.60999, 0.3285, 49, 1.87, 8.68999, 0.67149, 53, -83.75, -20.06, 0, 3, 47, 30.73, 7.2, 0.07452, 48, 6.55, 6.94, 0.92547, 53, -102.43, -29.21, 0, 2, 47, 12.29, 7.79, 1, 53, -120.04, -34.71, 0, 2, 47, -6.41, 4.87, 0.99888, 48, -30.65, 6.14, 0.0011 ],
"hull": 22,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 0, 42, 14, 30, 16, 28, 18, 26 ],
"width": 53,
"height": 195
}
},
"images/qunzi": {
"images/qunzi": {
"type": "mesh",
"uvs": [ 0.82554, 0, 0.67792, 0.01684, 0.49576, 0.05587, 0.35756, 0.12277, 0.2068, 0.20361, 0.07174, 0.26772, 0, 0.31232, 0.00264, 0.49072, 0.0686, 0.5604, 0.23193, 0.49351, 0.35756, 0.37364, 0.4455, 0.32068, 0.31359, 0.48793, 0.15655, 0.65518, 0.23507, 0.76947, 0.34185, 0.85309, 0.49576, 0.97853, 0.65594, 1, 0.72818, 0.81407, 0.8067, 0.58549, 0.90721, 0.35413, 1, 0.16179, 1, 0.02521 ],
"triangles": [ 8, 7, 9, 9, 7, 5, 7, 6, 5, 4, 9, 5, 4, 10, 9, 10, 4, 3, 11, 10, 3, 11, 3, 2, 1, 20, 11, 2, 1, 11, 17, 16, 18, 16, 15, 18, 18, 15, 12, 15, 14, 12, 14, 13, 12, 18, 12, 19, 19, 12, 11, 19, 11, 20, 20, 1, 0, 20, 0, 21, 0, 22, 21 ],
"vertices": [ 2, 36, -4.25, -7.75, 0.724, 40, -12.06, -3.98, 0.27599, 2, 36, 3.04, -15.39, 0.03478, 40, -1.66, -5.87, 0.96521, 2, 40, 11.61, -6.8, 0.60904, 41, -2.58, -6.33, 0.39095, 2, 41, 8.53, -7.38, 0.88974, 42, -5.26, -7.38, 0.11025, 3, 41, 21.02, -8.01, 0.05104, 42, 7.21, -8.02, 0.76498, 43, -4.13, -8.22, 0.18397, 2, 42, 18.03, -9.14, 0.07794, 43, 6.72, -8.83, 0.92205, 1, 43, 12.93, -8.43, 1, 4, 37, 34.59999, -40.75, 0, 38, 18, -40.29, 0, 41, 45.89, 2.91, 0, 43, 20.19, 3.85, 0.99999, 4, 37, 37.91999, -34.28, 0, 38, 21.14, -33.72, 0, 41, 45.13, 10.14999, 0, 43, 19.09, 11.05, 0.99999, 2, 42, 18.73, 12.18, 0.09328, 43, 6.4, 12.5, 0.90671, 5, 37, 16.19, -21.16, 0.03138, 38, -0.92, -21.2, 0.01156, 41, 19.76, 9.24, 0.09034, 42, 5.97, 9.24, 0.70143, 43, -6.2, 8.95, 0.16527, 8, 36, 32.4, -14.28, 2.9E-4, 37, 9.87, -17.04999, 0.25035, 38, -7.36, -17.26, 0.11246, 39, -24.68, -16.26, 0.00706, 40, 21.41, 12.3, 0.00155, 41, 12.22, 9.22999, 0.42645, 42, -1.57, 9.22999, 0.20016, 43, -13.73, 8.58, 0.00164, 5, 37, 25.83, -20.49, 0.10142, 38, 8.68999, -20.27, 0.54823, 39, -8.77, -19.93, 0.28579, 41, 27.47, 15.08, 0.05864, 42, 13.68, 15.06, 0.00589, 4, 37, 42.49, -25.58, 6.9E-4, 38, 25.47, -24.91, 0.25727, 39, 7.81, -25.25, 0.73568, 41, 44.19, 19.93, 0.00634, 3, 38, 31.5, -16.06, 0.13208, 39, 14.19, -16.65, 0.86615, 41, 44.69, 30.62, 0.00176, 2, 38, 34.47, -6.39, 0.00899, 39, 17.54999, -7.12, 0.99099, 1, 39, 22.76, 6.76, 1, 2, 38, 35.98, 18.76, 0.0069, 39, 20.09, 17.95, 0.99309, 3, 37, 38.45, 16.75, 7.0E-5, 38, 20.31, 17.29999, 0.29635, 39, 4.38, 17.12999, 0.70355, 4, 36, 34.25999, 18.93, 0.01162, 37, 19.44, 14.79, 0.41491, 38, 1.35, 14.83, 0.54968, 39, -14.65, 15.45, 0.02377, 3, 36, 15.12, 13.7, 0.60566, 37, -0.38, 14.19, 0.39115, 38, -18.44, 13.7, 0.00316, 2, 36, -1.16, 9.89, 0.99935, 37, -17.12, 14.29, 6.4E-4, 1, 36, -9.96, 3.41, 1 ],
"hull": 23,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 0, 44 ],
"width": 71,
"height": 80
}
},
"images/qunzi-back": {
"images/qunzi-back": { "x": 32.21, "y": 4.09, "rotation": 131.46, "width": 54, "height": 65 }
},
"images/shenti": {
"images/shenti": { "x": 31.5, "y": -3.56, "rotation": -99.36, "width": 60, "height": 97 },
"images/shenti02": { "x": 30.51, "y": -3.4, "rotation": -99.36, "width": 60, "height": 99 }
},
"images/toufa002": {
"images/toufa002": {
"type": "mesh",
"uvs": [ 0, 0, 0, 0.12985, 0.09483, 0.23174, 0.21783, 0.34189, 0.34083, 0.4603, 0.34083, 0.60074, 0.37158, 0.74669, 0.38695, 0.88988, 0.64833, 1, 1, 1, 1, 0.88713, 1, 0.74118, 1, 0.58697, 1, 0.44102, 0.86358, 0.3116, 0.75595, 0.1987, 0.5407, 0.08579, 0.38695, 0 ],
"triangles": [ 8, 10, 9, 8, 7, 10, 10, 7, 11, 7, 6, 11, 11, 6, 12, 6, 5, 12, 5, 4, 12, 4, 13, 12, 4, 14, 13, 4, 3, 14, 3, 15, 14, 3, 2, 15, 2, 16, 15, 2, 1, 16, 1, 17, 16, 1, 0, 17 ],
"vertices": [ 1, 19, -5.17999, -2.7, 1, 2, 19, 11.59, -7.32, 0.97798, 20, -8.06, -8.06, 0.02201, 2, 19, 25.35, -8.76, 0.0845, 20, 5.77, -8.29, 0.91549, 2, 20, 20.82, -8.05, 0.50357, 21, 0.2, -8.05, 0.49642, 2, 21, 16.34, -8, 0.77952, 22, -2.9, -8.59, 0.22047, 2, 22, 15.91, -8.91, 0.78805, 23, -3.66, -9.55, 0.21194, 1, 23, 15.81, -7.66, 1, 2, 22, 54.66, -8.46, 0, 24, 10.47, -7.92, 1, 1, 24, 25.77, -3.12, 1, 1, 24, 26.6, 5.27, 1, 2, 22, 54.54, 6.24, 0, 24, 11.54, 6.75, 1, 2, 23, 14.19, 7.34, 0.98484, 24, -7.91, 8.66, 0.01515, 3, 21, 35.89, 4.48999, 9.8E-4, 22, 14.33, 6.93, 0.94457, 23, -6.43, 6.12, 0.05443, 3, 21, 16.65, 8.01, 0.83723, 22, -5.21999, 7.26, 0.16211, 23, -25.96, 4.98, 6.4E-4, 3, 20, 19.62, 7.92, 0.58003, 21, -0.99, 7.92, 0.41991, 23, -43.08, 0.69, 4.0E-5, 2, 19, 25.3, 7.7, 0.12823, 20, 4.27, 8.10999, 0.87176, 1, 19, 9.35, 6.74, 1, 1, 19, -2.71, 6.25, 1 ],
"hull": 18,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 0, 34, 2, 32, 4, 30, 6, 28, 8, 26, 14, 20 ],
"width": 24,
"height": 134
}
},
"images/yanjing": {
"images/yanjing": { "x": -0.64, "y": 0.67, "rotation": -81, "width": 18, "height": 13 }
},
"images/youhair03": {
"images/youhair03": {
"type": "mesh",
"uvs": [ 0, 0, 0, 0.25514, 0, 0.49236, 0, 0.72957, 0, 1, 0.58023, 1, 0.93166, 0.69662, 1, 0.45941, 1, 0.22878, 1, 0 ],
"triangles": [ 5, 3, 2, 5, 4, 3, 2, 6, 5, 2, 1, 7, 6, 2, 7, 0, 9, 8, 1, 0, 8, 1, 8, 7 ],
"vertices": [ 1, 16, -6.36, -10.54, 1, 2, 16, 7.92, -10.54, 0.87257, 17, -4.82, -11.28, 0.12741, 3, 16, 21.21, -10.54, 0.05014, 17, 8.34, -9.52, 0.90487, 18, -5.36, -10.53, 0.04497, 2, 17, 21.51, -7.76, 0.05817, 18, 7.34, -6.66, 0.94182, 1, 18, 21.83, -2.25, 1, 1, 18, 18.28, 9.39999, 1, 2, 17, 17.09, 11.37, 0.47181, 18, -0.11, 11.51, 0.52818, 3, 16, 19.36, 10.45, 0.17631, 17, 3.74, 11.04, 0.81859, 18, -13.23, 9.01, 0.00508, 2, 16, 6.45, 10.45, 0.94927, 17, -9.05, 9.33, 0.05072, 1, 16, -6.36, 10.45, 1 ],
"hull": 10,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 0, 18 ],
"width": 21,
"height": 56
}
},
"images/youjiao": {
"images/youjiao": { "x": 9.77, "y": 0.88, "rotation": 120.39, "width": 21, "height": 28 }
},
"images/youpifeng": {
"images/youpifeng": {
"type": "mesh",
"uvs": [ 0.83242, 0, 0.6667, 0.10681, 0.54518, 0.20281, 0.42366, 0.31938, 0.29661, 0.41995, 0.16956, 0.49538, 0, 0.55938, 0, 0.65081, 0.08118, 0.76967, 0.18061, 0.86795, 0.39051, 0.96395, 0.58937, 1, 0.72194, 1, 0.6667, 0.88167, 0.70537, 0.75595, 0.7827, 0.61881, 0.84899, 0.50453, 0.88766, 0.37881, 0.9208, 0.26453, 0.99813, 0.16624, 1, 0.07253, 1, 0 ],
"triangles": [ 14, 3, 15, 8, 7, 5, 9, 5, 4, 10, 9, 4, 8, 5, 9, 4, 14, 10, 13, 10, 14, 11, 10, 13, 11, 13, 12, 7, 6, 5, 15, 3, 16, 4, 3, 14, 16, 2, 17, 16, 3, 2, 17, 1, 18, 17, 2, 1, 0, 21, 20, 19, 0, 20, 18, 0, 19, 1, 0, 18 ],
"vertices": [ 1, 55, -2.15, -11.11, 1, 2, 55, 23.23, -15.54, 0.66653, 56, -5.21999, -15.4, 0.33346, 3, 55, 45.15, -17.4, 0.00518, 56, 16.64, -17.85, 0.66934, 57, -4.15, -18.09, 0.32547, 4, 56, 42.39, -18.79, 0.0139, 57, 21.61, -17.71999, 0.58828, 58, -3.23, -17.56, 0.39726, 59, -25.23, -19.28, 5.3E-4, 4, 57, 44.61, -19.11, 0.01349, 58, 19.64, -20.29999, 0.55578, 59, -2.23, -20.49, 0.40887, 60, -27.56, -19.09, 0.02184, 4, 58, 37.74, -24.85, 0.06072, 59, 16.12, -23.83, 0.58933, 60, -9.39999, -23.37, 0.34735, 61, -34.39, -17.58, 0.00257, 3, 59, 33.87, -31.37, 0.24562, 60, 7.92, -31.83, 0.66591, 61, -18.83, -28.96, 0.08845, 3, 59, 50.74, -23.65, 0.05232, 60, 25.17, -24.99, 0.56408, 61, -0.64, -25.27, 0.38359, 2, 60, 45.09, -9.76, 0.01488, 61, 21.64, -13.79, 0.98511, 1, 61, 39.54, -1.65, 1, 1, 61, 55.14, 19.5, 1, 1, 61, 58.99, 37.32, 1, 1, 61, 56.78, 48.24, 1, 3, 59, 70.05, 46.77, 0.0022, 60, 48.11, 44.33, 0.02543, 61, 34.16, 38.91999, 0.97236, 3, 59, 45.49, 39.09999, 0.09518, 60, 23.19, 37.95, 0.25121, 61, 8.5, 37.03, 0.65358, 4, 58, 42.9, 32.18999, 0.08473, 59, 17.48, 33.41999, 0.5506, 60, -5.07, 33.73, 0.27772, 61, -20.07, 37.87, 0.08693, 5, 57, 41.29, 30.25, 0.04738, 58, 19.23, 29.16, 0.52577, 59, -5.93, 28.83, 0.39977, 60, -28.69, 30.36, 0.02685, 61, -43.91, 38.71, 2.0E-4, 4, 56, 39.50999, 21.9, 0.03621, 57, 16.68, 22.77, 0.61426, 58, -5.77, 23.15, 0.3306, 59, -30.48, 21.17, 0.0189, 4, 55, 44.47, 16.53, 0.0029, 56, 16.87999, 16.08, 0.69044, 57, -5.62, 15.82, 0.30613, 58, -28.45, 17.52, 5.2E-4, 3, 55, 23.56, 14.79, 0.57914, 56, -4.06, 14.91, 0.42081, 58, -49.41, 16.52, 3.0E-5, 3, 55, 5.96, 7.56, 0.99999, 57, -43.91, 5.95, 0, 58, -67.25, 9.92, 0, 1, 55, -7.6, 1.86, 1 ],
"hull": 22,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 0, 42 ],
"width": 84,
"height": 203
}
},
"images/youshou01": {
"images/youshou01": { "x": 2.33, "y": -0.58, "width": 38, "height": 45 },
"images/youshou02": { "scaleY": -1, "rotation": 104.11, "width": 50, "height": 53 },
"images/youshou03": { "rotation": -134.77, "width": 57, "height": 43 }
},
"images/zuojiao": {
"images/zuojiao": { "x": 9.88, "y": 0.38, "rotation": 96.08, "width": 15, "height": 30 }
},
"images/zuoshou": {
"images/zuoshou": { "x": 8.57, "y": -3.58, "width": 54, "height": 49 },
"images/zuoshou02": { "x": 11.29, "y": 3.76, "width": 66, "height": 45 },
"images/zuoshou03": { "x": 14.52, "y": -3.22, "width": 70, "height": 45 }
}
}
},
"events": {
"special": {}
},
"animations": {
"special": {
"slots": {
"images/Eff/1": {
"color": [
{ "time": 3.0666, "color": "0049ffff" }
],
"attachment": [
{ "time": 3.0666, "name": "images/Eff/1" },
{ "time": 3.1333, "name": "images/Eff/2" },
{ "time": 3.2, "name": "images/Eff/3" },
{ "time": 3.2666, "name": "images/Eff/4" },
{ "time": 3.3333, "name": "images/Eff/5" },
{ "time": 3.4, "name": null }
]
},
"images/Eff/light1": {
"color": [
{ "time": 0, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.3333, "color": "ffffffff" },
{ "time": 0.5, "color": "f6fcff00" },
{ "time": 2.1333, "color": "a1dfffff", "curve": "stepped" },
{ "time": 3.0666, "color": "a1dfffff" },
{ "time": 3.3666, "color": "a1dfff00" }
],
"attachment": [
{ "time": 0, "name": "images/Eff/light1" },
{ "time": 2.1333, "name": "images/Eff/light1" }
]
},
"images/Eff/light2": {
"color": [
{ "time": 0, "color": "6a76ffff" },
{ "time": 0.6666, "color": "607aff00" },
{ "time": 3.1666, "color": "2b92ffff" },
{ "time": 3.4, "color": "34c4ffff" },
{ "time": 3.6333, "color": "3bbeff00" }
],
"attachment": [
{ "time": 0, "name": "images/Eff/light1" },
{ "time": 3.1666, "name": "images/Eff/light1" }
]
},
"images/Eff/shandian0001": {
"attachment": [
{ "time": 3.1666, "name": "images/Eff/shandian0001" },
{ "time": 3.2, "name": "images/Eff/shandian0002" },
{ "time": 3.2333, "name": "images/Eff/shandian0003" },
{ "time": 3.2666, "name": "images/Eff/shandian0004" },
{ "time": 3.3, "name": "images/Eff/shandian0005" },
{ "time": 3.3333, "name": "images/Eff/shandian0006" },
{ "time": 3.3666, "name": "images/Eff/shandian0007" },
{ "time": 3.4, "name": "images/Eff/shandian0008" },
{ "time": 3.4333, "name": "images/Eff/shandian0009" },
{ "time": 3.4666, "name": "images/Eff/shandian0010" },
{ "time": 3.5, "name": "images/Eff/shandian0011" },
{ "time": 3.5333, "name": "images/Eff/shandian0012" },
{ "time": 3.5666, "name": null }
]
},
"images/Eff/shandian1": {
"attachment": [
{ "time": 3.2666, "name": "images/Eff/shandian0002" },
{ "time": 3.3, "name": "images/Eff/shandian0003" },
{ "time": 3.3333, "name": "images/Eff/shandian0004" },
{ "time": 3.3666, "name": "images/Eff/shandian0005" },
{ "time": 3.4, "name": "images/Eff/shandian0006" },
{ "time": 3.4333, "name": "images/Eff/shandian0007" },
{ "time": 3.4666, "name": "images/Eff/shandian0008" },
{ "time": 3.5, "name": "images/Eff/shandian0009" },
{ "time": 3.5333, "name": "images/Eff/shandian0010" },
{ "time": 3.5666, "name": "images/Eff/shandian0011" },
{ "time": 3.6, "name": "images/Eff/shandian0012" },
{ "time": 3.6333, "name": null }
]
},
"images/Eff/shandian2": {
"attachment": [
{ "time": 3.2333, "name": "images/Eff/shandian0001" },
{ "time": 3.2666, "name": "images/Eff/shandian0002" },
{ "time": 3.3, "name": "images/Eff/shandian0003" },
{ "time": 3.3333, "name": "images/Eff/shandian0004" },
{ "time": 3.3666, "name": "images/Eff/shandian0005" },
{ "time": 3.4, "name": "images/Eff/shandian0006" },
{ "time": 3.4333, "name": "images/Eff/shandian0007" },
{ "time": 3.4666, "name": "images/Eff/shandian0008" },
{ "time": 3.5, "name": "images/Eff/shandian0009" },
{ "time": 3.5333, "name": "images/Eff/shandian0010" },
{ "time": 3.5666, "name": "images/Eff/shandian0011" },
{ "time": 3.6, "name": "images/Eff/shandian0012" },
{ "time": 3.6333, "name": null }
]
},
"images/Eff/shandian3": {
"attachment": [
{ "time": 3.2666, "name": "images/Eff/shandian0001" },
{ "time": 3.3, "name": "images/Eff/shandian0002" },
{ "time": 3.3333, "name": "images/Eff/shandian0003" },
{ "time": 3.3666, "name": "images/Eff/shandian0004" },
{ "time": 3.4, "name": "images/Eff/shandian0005" },
{ "time": 3.4333, "name": "images/Eff/shandian0006" },
{ "time": 3.4666, "name": "images/Eff/shandian0007" },
{ "time": 3.5, "name": "images/Eff/shandian0008" },
{ "time": 3.5333, "name": "images/Eff/shandian0009" },
{ "time": 3.5666, "name": "images/Eff/shandian0010" },
{ "time": 3.6, "name": "images/Eff/shandian0011" },
{ "time": 3.6333, "name": "images/Eff/shandian0012" },
{ "time": 3.6666, "name": null }
]
},
"images/datui01": {
"color": [
{ "time": 0, "color": "0089ff00" },
{ "time": 0.6666, "color": "0089ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0089ffff" },
{ "time": 3.3, "color": "0089ff00" }
]
},
"images/datui02": {
"color": [
{ "time": 0, "color": "0089ff00" },
{ "time": 0.6666, "color": "0089ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0089ffff" },
{ "time": 3.3, "color": "0089ff00" }
]
},
"images/faqiu": {
"color": [
{ "time": 0, "color": "0039ff00" },
{ "time": 0.6666, "color": "0039ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0039ffff" },
{ "time": 3.3, "color": "0039ff00" }
]
},
"images/fazhang": {
"color": [
{ "time": 0, "color": "0073ff00" },
{ "time": 0.6666, "color": "0073ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0073ffff" },
{ "time": 3.3, "color": "0073ff00" }
]
},
"images/hair02": {
"color": [
{ "time": 0, "color": "0073ff00" },
{ "time": 0.6666, "color": "0073ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0073ffff" },
{ "time": 3.3, "color": "0073ff00" }
]
},
"images/hair03": {
"color": [
{ "time": 0, "color": "0073ff00" },
{ "time": 0.6666, "color": "0073ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0073ffff" },
{ "time": 3.3, "color": "0073ff00" }
]
},
"images/hair04": {
"color": [
{ "time": 0, "color": "0076ff00" },
{ "time": 0.6666, "color": "0076ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0076ffff" },
{ "time": 3.3, "color": "0076ff00" }
]
},
"images/head": {
"color": [
{ "time": 0, "color": "006dff00" },
{ "time": 0.6666, "color": "006dffff", "curve": "stepped" },
{ "time": 3.0666, "color": "006dffff" },
{ "time": 3.3, "color": "006dff00" }
]
},
"images/houtoufa": {
"color": [
{ "time": 0, "color": "0073ff00" },
{ "time": 0.6666, "color": "0073ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0073ffff" },
{ "time": 3.3, "color": "0073ff00" }
]
},
"images/pifeng": {
"color": [
{ "time": 0, "color": "007cff00" },
{ "time": 0.6666, "color": "007cffff", "curve": "stepped" },
{ "time": 3.0666, "color": "007cffff" },
{ "time": 3.3, "color": "007cff00" }
]
},
"images/pifeng002": {
"color": [
{ "time": 0, "color": "005fff00" },
{ "time": 0.6666, "color": "005fffff", "curve": "stepped" },
{ "time": 3.0666, "color": "005fffff" },
{ "time": 3.3, "color": "005fff00" }
]
},
"images/qunzi": {
"color": [
{ "time": 0, "color": "0089ff00" },
{ "time": 0.6666, "color": "0089ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0089ffff" },
{ "time": 3.3, "color": "0089ff00" }
]
},
"images/qunzi-back": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.6666, "color": "ffffffff", "curve": "stepped" },
{ "time": 3.0666, "color": "ffffffff" },
{ "time": 3.3, "color": "ffffff00" }
]
},
"images/shenti": {
"color": [
{ "time": 0, "color": "005fff00" },
{ "time": 0.6666, "color": "005fffff", "curve": "stepped" },
{ "time": 3.0666, "color": "005fffff" },
{ "time": 3.3, "color": "005fff00" }
]
},
"images/toufa002": {
"color": [
{ "time": 0, "color": "0067ff00" },
{ "time": 0.6666, "color": "0067ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0067ffff" },
{ "time": 3.3, "color": "0067ff00" }
]
},
"images/yanjing": {
"color": [
{ "time": 0, "color": "ff000400" },
{ "time": 0.6666, "color": "ff0004ff", "curve": "stepped" },
{ "time": 3.0666, "color": "ff0004ff" },
{ "time": 3.3, "color": "ff000400" }
]
},
"images/youhair03": {
"color": [
{ "time": 0, "color": "0087ff00" },
{ "time": 0.6666, "color": "0087ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0087ffff" },
{ "time": 3.3, "color": "0087ff00" }
]
},
"images/youjiao": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.6666, "color": "ffffffff", "curve": "stepped" },
{ "time": 3.0666, "color": "ffffffff" },
{ "time": 3.3, "color": "ffffff00" }
]
},
"images/youpifeng": {
"color": [
{ "time": 0, "color": "005fff00" },
{ "time": 0.6666, "color": "005fffff", "curve": "stepped" },
{ "time": 3.0666, "color": "005fffff" },
{ "time": 3.3, "color": "005fff00" }
]
},
"images/youshou01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.6666, "color": "ffffffff", "curve": "stepped" },
{ "time": 3.0666, "color": "ffffffff" },
{ "time": 3.3, "color": "ffffff00" }
]
},
"images/zuojiao": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.6666, "color": "ffffffff", "curve": "stepped" },
{ "time": 3.0666, "color": "ffffffff" },
{ "time": 3.3, "color": "ffffff00" }
]
},
"images/zuoshou": {
"color": [
{ "time": 0, "color": "0049ff00" },
{ "time": 0.6666, "color": "0049ffff", "curve": "stepped" },
{ "time": 3.0666, "color": "0049ffff" },
{ "time": 3.3, "color": "0049ff00" }
]
}
},
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/shenti": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.6666, "angle": 0.73 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.9333, "angle": 0.73 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.8, "angle": 0.73 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.6666, "x": 0, "y": 25.93 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.9333, "x": 0, "y": 25.93 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.8, "x": 0, "y": 25.93 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.6666, "x": 1, "y": 1.008 },
{ "time": 1.3333, "x": 1, "y": 1 },
{ "time": 1.9333, "x": 1, "y": 1.008 },
{ "time": 2.5333, "x": 1, "y": 1 },
{ "time": 2.8, "x": 1, "y": 1.008 },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/head": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/yanjing": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/hair03": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 9.36 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -10.59 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 9.36 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -10.59 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 9.36 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -10.59 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0 },
{ "time": 1, "x": 0.57, "y": 1.75 },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0 },
{ "time": 2.2333, "x": 0.57, "y": 1.75 },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 },
{ "time": 2.9333, "x": 0.57, "y": 1.75 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone2": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -8.22 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -3.5 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -8.22 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -3.5 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -8.22 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -3.5 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone3": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -15.65 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -3.5 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -15.65 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -3.5 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -15.65 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -3.5 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/hair02": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -354.17 },
{ "time": 0.6666, "angle": -0.81 },
{ "time": 1, "angle": -14.33 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -354.17 },
{ "time": 1.9333, "angle": -0.81 },
{ "time": 2.2333, "angle": -14.33 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -354.17 },
{ "time": 2.8, "angle": -0.81 },
{ "time": 2.9333, "angle": -14.33 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone4": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.6666, "angle": -2.36 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.9333, "angle": -2.36 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.8, "angle": -2.36 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone5": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -1.95 },
{ "time": 0.6666, "angle": -0.12 },
{ "time": 1, "angle": 3.85 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -1.95 },
{ "time": 1.9333, "angle": -0.12 },
{ "time": 2.2333, "angle": 3.85 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -1.95 },
{ "time": 2.8, "angle": -0.12 },
{ "time": 2.9333, "angle": 3.85 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone6": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -3.8 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 3.85 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -3.8 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 3.85 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -3.8 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 3.85 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone7": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -3.8 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 1.99 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -3.8 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 1.99 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -3.8 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 1.99 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone8": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 7.28 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 7.28 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 7.28 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone9": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 7.28 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 7.28 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 7.28 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone10": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/youhair03": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 349.61 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 7.71 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 349.61 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 7.71 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 349.61 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 7.71 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone11": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 12.28 },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 12.28 },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 12.28 },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone12": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 9.8 },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 9.8 },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 9.8 },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/toufa002": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -4.05 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 9.02 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -4.05 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 9.02 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -4.05 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 9.02 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone13": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 2.88 },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 2.88 },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 2.88 },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone14": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 2.88 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -4.55 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 2.88 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -4.55 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 2.88 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -4.55 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone15": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 2.88 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -9.94 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 2.88 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -9.94 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 2.88 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -9.94 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone16": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -4.55 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -4.55 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -4.55 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone17": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -9.94 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -9.94 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -9.94 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/faqiu": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/zuoshou": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -3.58 },
{ "time": 0.6666, "angle": 2.52 },
{ "time": 1, "angle": 5.98 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -3.58 },
{ "time": 1.9333, "angle": 2.52 },
{ "time": 2.2333, "angle": 5.98 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -3.58 },
{ "time": 2.8, "angle": 2.52 },
{ "time": 2.9333, "angle": 5.98 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.3333, "x": 0, "y": 8.35 },
{ "time": 0.6666, "x": 0, "y": 23.62 },
{ "time": 1, "x": 6.14, "y": 13.34 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.6333, "x": 0, "y": 8.35 },
{ "time": 1.9333, "x": 0, "y": 23.62 },
{ "time": 2.2333, "x": 6.14, "y": 13.34 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.6666, "x": 0, "y": 8.35 },
{ "time": 2.8, "x": 0, "y": 23.62 },
{ "time": 2.9333, "x": 6.14, "y": 13.34 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/hair04": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 21.22 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 21.22 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 21.22 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone18": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 7.71 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -16.05 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 7.71 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -16.05 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 7.71 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -16.05 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone19": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 16.6 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -16.05 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 16.6 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -16.05 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 16.6 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -16.05 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/houtoufa": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.6666, "angle": -8.82 },
{ "time": 1, "angle": -19.35 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.9333, "angle": -8.82 },
{ "time": 2.2333, "angle": -19.35 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.8, "angle": -8.82 },
{ "time": 2.9333, "angle": -19.35 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0 },
{ "time": 1, "x": 0.8, "y": -5.08 },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0 },
{ "time": 2.2333, "x": 0.8, "y": -5.08 },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 },
{ "time": 2.9333, "x": 0.8, "y": -5.08 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone20": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 12.42 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 12.42 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 12.42 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone21": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 3.83 },
{ "time": 0.6666, "angle": -1.69 },
{ "time": 1, "angle": 0.25 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 3.83 },
{ "time": 1.9333, "angle": -1.69 },
{ "time": 2.2333, "angle": 0.25 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 3.83 },
{ "time": 2.8, "angle": -1.69 },
{ "time": 2.9333, "angle": 0.25 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone22": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 3.83 },
{ "time": 0.6666, "angle": 7.9 },
{ "time": 1, "angle": 5.12 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 3.83 },
{ "time": 1.9333, "angle": 7.9 },
{ "time": 2.2333, "angle": 5.12 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 3.83 },
{ "time": 2.8, "angle": 7.9 },
{ "time": 2.9333, "angle": 5.12 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone23": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -3.74 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -15.55 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -3.74 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -15.55 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -3.74 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -15.55 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone24": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 21.54 },
{ "time": 0.6666, "angle": 16.23 },
{ "time": 1, "angle": 17.9 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 21.54 },
{ "time": 1.9333, "angle": 16.23 },
{ "time": 2.2333, "angle": 17.9 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 21.54 },
{ "time": 2.8, "angle": 16.23 },
{ "time": 2.9333, "angle": 17.9 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone25": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 5.23 },
{ "time": 0.6666, "angle": 6.81 },
{ "time": 1, "angle": -15.26 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 5.23 },
{ "time": 1.9333, "angle": 6.81 },
{ "time": 2.2333, "angle": -15.26 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 5.23 },
{ "time": 2.8, "angle": 6.81 },
{ "time": 2.9333, "angle": -15.26 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone26": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 15.41 },
{ "time": 0.6666, "angle": 31.4 },
{ "time": 1, "angle": 5.23 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 15.41 },
{ "time": 1.9333, "angle": 31.4 },
{ "time": 2.2333, "angle": 5.23 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 15.41 },
{ "time": 2.8, "angle": 31.4 },
{ "time": 2.9333, "angle": 5.23 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/datui02": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.6666, "x": 0, "y": 25.93 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.9333, "x": 0, "y": 25.93 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.8, "x": 0, "y": 25.93 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/datui01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.6666, "x": 0, "y": 25.93 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.9333, "x": 0, "y": 25.93 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.8, "x": 0, "y": 25.93 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/qunzi": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 9.93 },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 9.93 },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 9.93 },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.6666, "x": 0, "y": 25.93 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.9333, "x": 0, "y": 25.93 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.8, "x": 0, "y": 25.93 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone27": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone28": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone29": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone30": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone31": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -5.93 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -5.93 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -5.93 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone32": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -5.93 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -5.93 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -5.93 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone33": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/qunzi-back": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -7.28 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -7.28 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -7.28 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.6666, "x": -2.85, "y": 0.67 },
{ "time": 1, "x": 1.28, "y": 4.15 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.9333, "x": -2.85, "y": 0.67 },
{ "time": 2.2333, "x": 1.28, "y": 4.15 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.8, "x": -2.85, "y": 0.67 },
{ "time": 2.9333, "x": 1.28, "y": 4.15 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone34": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone35": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/zuojiao": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -8.29 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 5.39 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -8.29 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 5.39 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -8.29 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 5.39 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.3333, "x": 5.76, "y": 7.2 },
{ "time": 0.6666, "x": 0, "y": 25.93 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.6333, "x": 5.76, "y": 7.2 },
{ "time": 1.9333, "x": 0, "y": 25.93 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.6666, "x": 5.76, "y": 7.2 },
{ "time": 2.8, "x": 0, "y": 25.93 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/youjiao": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -2.98 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 5.39 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -2.98 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 5.39 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -2.98 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 5.39 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.3333, "x": 5.76, "y": 7.2 },
{ "time": 0.6666, "x": 0, "y": 25.93 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.6333, "x": 5.76, "y": 7.2 },
{ "time": 1.9333, "x": 0, "y": 25.93 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.6666, "x": 5.76, "y": 7.2 },
{ "time": 2.8, "x": 0, "y": 25.93 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/pifeng002": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 2.19 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 2.19 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 2.19 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.6666, "x": 0, "y": 25.93 },
{ "time": 1, "x": 1.43, "y": 15.12 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.9333, "x": 0, "y": 25.93 },
{ "time": 2.2333, "x": 1.43, "y": 15.12 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.8, "x": 0, "y": 25.93 },
{ "time": 2.9333, "x": 1.43, "y": 15.12 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone36": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone37": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -2.67 },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -2.67 },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -2.67 },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone38": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -2.67 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 5.16 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -2.67 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 5.16 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -2.67 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 5.16 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone39": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -2.67 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 3.56 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -2.67 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 3.56 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -2.67 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 3.56 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone40": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -3.32 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 7.25 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -3.32 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 7.25 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -3.32 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 7.25 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone41": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 7.25 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 7.25 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 7.25 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone42": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": 7.25 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": 7.25 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": 7.25 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/youpifeng": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 0.99 },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 0.99 },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 0.99 },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.6666, "x": 0, "y": 25.93 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.9333, "x": 0, "y": 25.93 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.8, "x": 0, "y": 25.93 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone43": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 0.65 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -5.46 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 0.65 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -5.46 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 0.65 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -5.46 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone44": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 2.78 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -2.52 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 2.78 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -2.52 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 2.78 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -2.52 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone45": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 0.62 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -2.93 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 0.62 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -2.93 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 0.62 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -2.93 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone46": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 5.45 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -2.93 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 5.45 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -2.93 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 5.45 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -2.93 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone47": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 2.78 },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -4.33 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 2.78 },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -4.33 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 2.78 },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -4.33 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone48": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 1, "angle": -4.33 },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0 },
{ "time": 2.2333, "angle": -4.33 },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 },
{ "time": 2.9333, "angle": -4.33 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/pifeng": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.6666, "x": 0, "y": 25.93 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.9333, "x": 0, "y": 25.93 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.8, "x": 0, "y": 25.93 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.3333, "x": 1, "y": 0.939 },
{ "time": 0.6666, "x": 1, "y": 1 },
{ "time": 1, "x": 1, "y": 1.088 },
{ "time": 1.3333, "x": 1, "y": 1 },
{ "time": 1.6333, "x": 1, "y": 0.939 },
{ "time": 1.9333, "x": 1, "y": 1 },
{ "time": 2.2333, "x": 1, "y": 1.088 },
{ "time": 2.5333, "x": 1, "y": 1 },
{ "time": 2.6666, "x": 1, "y": 0.939 },
{ "time": 2.8, "x": 1, "y": 1 },
{ "time": 2.9333, "x": 1, "y": 1.088 },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone49": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 2.26 },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 2.26 },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 2.26 },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone50": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone51": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": 2.74 },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": 2.74 },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": 2.74 },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone52": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3333, "angle": -2.63 },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.6333, "angle": -2.63 },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.6666, "angle": -2.63 },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone53": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone54": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"bone55": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.9333, "angle": 0, "curve": "stepped" },
{ "time": 2.5333, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"images/youshou01": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.6666, "angle": 15.49 },
{ "time": 1.3333, "angle": 0 },
{ "time": 1.9333, "angle": 15.49 },
{ "time": 2.5333, "angle": 0 },
{ "time": 2.8, "angle": 15.49 },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.6666, "x": 0.65, "y": 27.62 },
{ "time": 1.3333, "x": 0, "y": 0 },
{ "time": 1.9333, "x": 0.65, "y": 27.62 },
{ "time": 2.5333, "x": 0, "y": 0 },
{ "time": 2.8, "x": 0.65, "y": 27.62 },
{ "time": 3.0666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.0666, "x": 1, "y": 1 }
]
},
"huiguang": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": -228.8, "y": -327.35 },
{ "time": 2.1333, "x": -233.59, "y": -337.23 },
{ "time": 2.2666, "x": -233.59, "y": -312.55 },
{ "time": 2.4, "x": -246.75, "y": -322.42 },
{ "time": 2.5333, "x": -233.59, "y": -337.23 },
{ "time": 2.6666, "x": -246.75, "y": -322.42 },
{ "time": 2.8, "x": -231.12, "y": -315 },
{ "time": 2.9333, "x": -233.59, "y": -337.23, "curve": "stepped" },
{ "time": 3.0666, "x": -233.59, "y": -337.23 },
{ "time": 3.3666, "x": -233.59, "y": -322.17 }
],
"scale": [
{ "time": 0, "x": 0.121, "y": 0.121 },
{ "time": 0.3333, "x": 1.425, "y": 1.425 },
{ "time": 2.1333, "x": 1.198, "y": 1.198 },
{ "time": 2.2666, "x": 2.303, "y": 2.303 },
{ "time": 2.4, "x": 1.236, "y": 1.236 },
{ "time": 2.5333, "x": 2.146, "y": 2.146 },
{ "time": 2.6666, "x": 1.236, "y": 1.236 },
{ "time": 2.8, "x": 2.47, "y": 2.47 },
{ "time": 2.9333, "x": 1.198, "y": 1.198 },
{ "time": 3.0666, "x": 2.411, "y": 2.411 },
{ "time": 3.3666, "x": 4.967, "y": 4.967 }
]
},
"baokai": {
"translate": [
{ "time": 3.0666, "x": -286.11, "y": -308.69 }
],
"scale": [
{ "time": 3.0666, "x": 2.118, "y": 2.118 }
]
},
"shandian": {
"rotate": [
{ "time": 3.1666, "angle": 73.37 }
],
"translate": [
{ "time": 3.1666, "x": -58.92, "y": -175.64 }
],
"scale": [
{ "time": 3.1666, "x": 2.915, "y": 4.315 }
]
},
"huiguang2": {
"rotate": [
{ "time": 3.1666, "angle": -87.46 }
],
"translate": [
{ "time": 0, "x": -239.35, "y": -286.87 },
{ "time": 3.1666, "x": -249.67, "y": -301.96 },
{ "time": 3.4, "x": -270.16, "y": -272.61 },
{ "time": 3.6333, "x": -247.55, "y": -267.97 }
],
"scale": [
{ "time": 0, "x": 0.052, "y": 0.052 },
{ "time": 0.3333, "x": 2.4, "y": 2.4 },
{ "time": 3.1666, "x": 0.989, "y": 0.989 },
{ "time": 3.4, "x": 3.027, "y": 3.027 },
{ "time": 3.6333, "x": 5.185, "y": 5.185 }
]
},
"shandian2": {
"rotate": [
{ "time": 3.2666, "angle": 119.58 }
],
"translate": [
{ "time": 3.2666, "x": -22.02, "y": -251.69 }
],
"scale": [
{ "time": 3.2666, "x": 2.137, "y": -5.116 }
]
},
"shandian3": {
"rotate": [
{ "time": 3.2333, "angle": -90.42 }
],
"translate": [
{ "time": 3.2333, "x": -87.18, "y": -153.56 }
],
"scale": [
{ "time": 3.2333, "x": 1.718, "y": 3.138 }
]
},
"shandian4": {
"rotate": [
{ "time": 3.2666, "angle": -170.67 }
],
"translate": [
{ "time": 3.2666, "x": -260.87, "y": -298.34 }
],
"scale": [
{ "time": 3.2666, "x": 1.175, "y": 5.447 }
]
}
},
"events": [
{ "time": 3.2, "name": "special" },
{ "time": 3.4666, "name": "special" }
]
}
}
}
|