feilitahuanying.json
160 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
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
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
{
"skeleton": { "hash": "fhIxy7stbmKXeG6MAukZFVAfc04", "spine": "3.4.02", "width": 532.75, "height": 323.16 },
"bones": [
{ "name": "root" },
{ "name": "bengkai", "parent": "root", "x": -194.78, "y": 397.11 },
{ "name": "images/FLT_0005s_0013_FLT_xiong", "parent": "root", "length": 79.21, "rotation": 83.39, "x": 8.19, "y": 150.33 },
{
"name": "images/FLT_0005s_0021_FLT_pifeng",
"parent": "images/FLT_0005s_0013_FLT_xiong",
"length": 28.46,
"rotation": -175.64,
"x": 72.39,
"y": 20.46
},
{ "name": "bone", "parent": "images/FLT_0005s_0021_FLT_pifeng", "length": 26.77, "rotation": 1.05, "x": 28.46 },
{ "name": "bone2", "parent": "bone", "length": 27.32, "rotation": 1.19, "x": 26.77 },
{ "name": "bone3", "parent": "bone2", "length": 23.97, "x": 27.32 },
{ "name": "bone4", "parent": "bone3", "length": 22.87, "rotation": 1.39, "x": 23.97 },
{ "name": "bone5", "parent": "bone4", "length": 22.87, "rotation": -2.79, "x": 22.87 },
{ "name": "bone6", "parent": "bone5", "length": 26.77, "rotation": 2.59, "x": 22.87 },
{ "name": "bone7", "parent": "bone6", "length": 25.09, "rotation": -1.19, "x": 26.77 },
{ "name": "bone8", "parent": "bone7", "length": 21.74, "x": 25.09 },
{ "name": "bone9", "parent": "images/FLT_0005s_0021_FLT_pifeng", "length": 26.68, "rotation": -8.59, "x": 16.12, "y": -41.22 },
{ "name": "bone10", "parent": "bone9", "length": 39.13, "rotation": 6.75, "x": 26.68 },
{ "name": "bone11", "parent": "bone10", "length": 27.9, "rotation": 1.79, "x": 39.13 },
{ "name": "bone12", "parent": "bone11", "length": 25.15, "rotation": -1.52, "x": 27.9 },
{ "name": "bone13", "parent": "bone12", "length": 23.03, "rotation": -3.13, "x": 26.78, "y": 0.66 },
{ "name": "bone14", "parent": "bone13", "length": 25.59, "rotation": -4.35, "x": 23.03 },
{ "name": "bone15", "parent": "bone14", "length": 19.76, "rotation": -5.07, "x": 25.59 },
{ "name": "bone16", "parent": "bone15", "length": 22.58, "rotation": -16.51, "x": 19.76 },
{ "name": "bone17", "parent": "images/FLT_0005s_0021_FLT_pifeng", "length": 28.44, "rotation": 3.36, "x": 18.7, "y": 35.33 },
{ "name": "bone18", "parent": "bone17", "length": 34.24, "rotation": 5.42, "x": 28.44 },
{ "name": "bone19", "parent": "bone18", "length": 25.94, "rotation": 2.1, "x": 34.24 },
{ "name": "bone20", "parent": "bone19", "length": 23.84, "rotation": 2.13, "x": 25.94 },
{ "name": "bone21", "parent": "bone20", "length": 28.55, "rotation": 1.62, "x": 25.04, "y": 0.33 },
{ "name": "bone22", "parent": "bone21", "length": 26.12, "rotation": 3.7, "x": 28.55 },
{ "name": "bone23", "parent": "bone22", "length": 23.21, "rotation": 7.98, "x": 26.12 },
{ "name": "bone24", "parent": "bone23", "length": 20.56, "rotation": 16.49, "x": 23.21 },
{ "name": "images/FLT_0005s_0010_FLT_yaodai", "parent": "root", "x": 21.29, "y": 140.82 },
{
"name": "images/FLT_0005s_0011_FLT_bu01",
"parent": "images/FLT_0005s_0010_FLT_yaodai",
"length": 26.68,
"rotation": -94.96,
"y": 10.4
},
{ "name": "bone25", "parent": "images/FLT_0005s_0011_FLT_bu01", "length": 18.25, "rotation": -0.89, "x": 26.68 },
{ "name": "bone26", "parent": "bone25", "length": 21.19, "rotation": 5.04, "x": 18.25 },
{ "name": "bone27", "parent": "bone26", "length": 18.1, "rotation": -0.6, "x": 21.19 },
{ "name": "bone28", "parent": "bone27", "length": 22.51, "rotation": -7.4, "x": 18.1 },
{ "name": "images/FLT_0005s_0009_FLT_tou", "parent": "root", "length": 48.48, "rotation": 66.89, "x": 21.67, "y": 220.1 },
{
"name": "images/FLT_0005s_0007_FLT_toufa",
"parent": "images/FLT_0005s_0009_FLT_tou",
"length": 33.34,
"rotation": -168.2,
"x": 42.65,
"y": -13.12
},
{ "name": "bone29", "parent": "images/FLT_0005s_0007_FLT_toufa", "length": 22.31, "rotation": -120.45, "x": -2.56, "y": -5.36 },
{ "name": "bone30", "parent": "bone29", "length": 17.65, "rotation": -3.23, "x": 22.31 },
{ "name": "bone31", "parent": "images/FLT_0005s_0007_FLT_toufa", "length": 27.12, "rotation": -104.69, "x": 3.03, "y": -12.12 },
{ "name": "bone32", "parent": "bone31", "length": 18.43, "rotation": 26, "x": 27.12 },
{ "name": "bone33", "parent": "bone32", "length": 18.44, "rotation": 1.84, "x": 18.43 },
{ "name": "bone34", "parent": "images/FLT_0005s_0007_FLT_toufa", "length": 19.63, "rotation": -76.95, "x": 10.49, "y": -22.15 },
{ "name": "bone35", "parent": "bone34", "length": 14.31, "rotation": 3.02, "x": 19.63 },
{ "name": "bone36", "parent": "bone35", "length": 20.81, "rotation": -6.4, "x": 14.31 },
{ "name": "chongcisankai", "parent": "root", "x": -343.2, "y": 437.36 },
{ "name": "images/Eff/gongshou_guang", "parent": "root", "x": -258.59, "y": -0.7 },
{ "name": "images/Eff/gongshou_guang2", "parent": "root", "x": -329.23, "y": -0.7 },
{ "name": "images/Eff/gongshou_guang3", "parent": "root", "x": -402.81, "y": -0.7 },
{ "name": "images/Eff/gongshou_jian", "parent": "root", "x": -310.8, "y": 499.27 },
{ "name": "images/Eff/gongshou_jian2", "parent": "root", "x": -366.47, "y": 499.27 },
{ "name": "images/Eff/gongshou_jian3", "parent": "root", "x": -433.37, "y": 499.27 },
{ "name": "images/FLT_0005s_0001_FLT_zuotui", "parent": "root", "length": 60.6, "rotation": -108.92, "x": -26.07, "y": 67.1 },
{ "name": "images/FLT_0005s_0000_FLT_zuojiao", "parent": "images/FLT_0005s_0001_FLT_zuotui", "x": 66.7, "y": -1.29 },
{ "name": "images/FLT_0005s_0003_FLT_youjiao", "parent": "root", "length": 54.21, "rotation": -81.86, "x": 53.03, "y": 62.51 },
{ "name": "images/FLT_0005s_0002_FLT_youjiao", "parent": "images/FLT_0005s_0003_FLT_youjiao", "x": 55.86, "y": -1.17 },
{ "name": "images/FLT_0005s_0005_FLT_zuobi", "parent": "root", "length": 49.95, "rotation": -83.11, "x": -83.22, "y": 163.02 },
{ "name": "images/FLT_0005s_0004_FLT_zuoshou", "parent": "images/FLT_0005s_0005_FLT_zuobi", "x": 65.2, "y": 1.3 },
{
"name": "images/FLT_0005s_0006_FLT_zuojian",
"parent": "images/FLT_0005s_0013_FLT_xiong",
"length": 64.7,
"rotation": 89.01,
"x": 74.5,
"y": 18.19
},
{ "name": "images/FLT_0005s_0008_FLT_yan", "parent": "images/FLT_0005s_0009_FLT_tou", "x": 16.86, "y": -1.2 },
{
"name": "images/FLT_0005s_0012_FLT_kuabu",
"parent": "images/FLT_0005s_0010_FLT_yaodai",
"length": 46.84,
"rotation": -105.75,
"x": -13.29,
"y": -0.57
},
{ "name": "images/FLT_0005s_0016_FLT_youxiaobi", "parent": "root", "length": 34.07, "rotation": -72.47, "x": 60.43, "y": 145.92 },
{ "name": "images/FLT_0005s_0014_FLT_youshou01", "parent": "images/FLT_0005s_0016_FLT_youxiaobi", "x": 45.4, "y": 1.8 },
{ "name": "images/FLT_0005s_0018_FLT_qiang02", "parent": "root", "length": 291.22, "rotation": 21.76, "x": -30.18, "y": 60.66 },
{
"name": "images/FLT_0005s_0019_FLT_zuojian02",
"parent": "images/FLT_0005s_0006_FLT_zuojian",
"length": 40.2,
"rotation": -16.24,
"x": 15.26,
"y": 27.53
},
{
"name": "images/FLT_0005s_0020_FLT_youjian",
"parent": "images/FLT_0005s_0013_FLT_xiong",
"length": 46.65,
"rotation": -132.11,
"x": 73.53,
"y": -17.75
},
{
"name": "images/FLT_0005s_0022_FLT_zhuangshi",
"parent": "images/FLT_0005s_0013_FLT_xiong",
"length": 126.81,
"rotation": -3.49,
"x": 47.11,
"y": 10.53
}
],
"slots": [
{
"name": "images/FLT_0005s_0022_FLT_zhuangshi",
"bone": "images/FLT_0005s_0022_FLT_zhuangshi",
"attachment": "images/FLT_0005s_0022_FLT_zhuangshi",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0021_FLT_pifeng",
"bone": "images/FLT_0005s_0021_FLT_pifeng",
"attachment": "images/FLT_0005s_0021_FLT_pifeng",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0020_FLT_youjian",
"bone": "images/FLT_0005s_0020_FLT_youjian",
"attachment": "images/FLT_0005s_0020_FLT_youjian",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0019_FLT_zuojian02",
"bone": "images/FLT_0005s_0019_FLT_zuojian02",
"attachment": "images/FLT_0005s_0019_FLT_zuojian02",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0018_FLT_qiang02",
"bone": "images/FLT_0005s_0018_FLT_qiang02",
"attachment": "images/FLT_0005s_0018_FLT_qiang02",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0017_FLT_qiang01",
"bone": "images/FLT_0005s_0018_FLT_qiang02",
"attachment": "images/FLT_0005s_0017_FLT_qiang01",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0016_FLT_youxiaobi",
"bone": "images/FLT_0005s_0016_FLT_youxiaobi",
"attachment": "images/FLT_0005s_0016_FLT_youxiaobi",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0014_FLT_youshou01",
"bone": "images/FLT_0005s_0014_FLT_youshou01",
"attachment": "images/FLT_0005s_0014_FLT_youshou01",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0013_FLT_xiong",
"bone": "images/FLT_0005s_0013_FLT_xiong",
"attachment": "images/FLT_0005s_0013_FLT_xiong",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0012_FLT_kuabu",
"bone": "images/FLT_0005s_0012_FLT_kuabu",
"attachment": "images/FLT_0005s_0012_FLT_kuabu",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0011_FLT_bu01",
"bone": "images/FLT_0005s_0011_FLT_bu01",
"attachment": "images/FLT_0005s_0011_FLT_bu01",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0010_FLT_yaodai",
"bone": "images/FLT_0005s_0010_FLT_yaodai",
"attachment": "images/FLT_0005s_0010_FLT_yaodai",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0009_FLT_tou",
"bone": "images/FLT_0005s_0009_FLT_tou",
"attachment": "images/FLT_0005s_0009_FLT_tou",
"blend": "screen"
},
{ "name": "images/FLT_0005s_0008_FLT_yan", "bone": "images/FLT_0005s_0008_FLT_yan", "attachment": "images/FLT_0005s_0008_FLT_yan" },
{
"name": "images/FLT_0005s_0007_FLT_toufa",
"bone": "images/FLT_0005s_0007_FLT_toufa",
"attachment": "images/FLT_0005s_0007_FLT_toufa",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0006_FLT_zuojian",
"bone": "images/FLT_0005s_0006_FLT_zuojian",
"attachment": "images/FLT_0005s_0006_FLT_zuojian",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0005_FLT_zuobi",
"bone": "images/FLT_0005s_0005_FLT_zuobi",
"attachment": "images/FLT_0005s_0005_FLT_zuobi",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0004_FLT_zuoshou",
"bone": "images/FLT_0005s_0004_FLT_zuoshou",
"attachment": "images/FLT_0005s_0015_FLT_youshou02",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0003_FLT_youjiao",
"bone": "images/FLT_0005s_0003_FLT_youjiao",
"attachment": "images/FLT_0005s_0003_FLT_youjiao",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0002_FLT_youjiao",
"bone": "images/FLT_0005s_0002_FLT_youjiao",
"attachment": "images/FLT_0005s_0002_FLT_youjiao",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0001_FLT_zuotui",
"bone": "images/FLT_0005s_0001_FLT_zuotui",
"attachment": "images/FLT_0005s_0001_FLT_zuotui",
"blend": "screen"
},
{
"name": "images/FLT_0005s_0000_FLT_zuojiao",
"bone": "images/FLT_0005s_0000_FLT_zuojiao",
"attachment": "images/FLT_0005s_0000_FLT_zuojiao",
"blend": "screen"
},
{ "name": "images/Eff/qipaosmoke0001", "bone": "chongcisankai" },
{ "name": "images/Eff/skillDEff0001", "bone": "bengkai", "color": "ff151fff", "blend": "screen" },
{ "name": "images/Eff/gongshou_guang", "bone": "images/Eff/gongshou_guang", "blend": "screen" },
{ "name": "images/Eff/gongshou_guang2", "bone": "images/Eff/gongshou_guang2", "blend": "screen" },
{ "name": "images/Eff/gongshou_guang3", "bone": "images/Eff/gongshou_guang3", "blend": "screen" },
{ "name": "images/Eff/gongshou_jian", "bone": "images/Eff/gongshou_jian" },
{ "name": "images/Eff/gongshou_jian2", "bone": "images/Eff/gongshou_jian2" },
{ "name": "images/Eff/gongshou_jian3", "bone": "images/Eff/gongshou_jian3" }
],
"skins": {
"default": {
"images/Eff/gongshou_guang": {
"images/Eff/gongshou_guang": {
"type": "mesh",
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
"triangles": [ 1, 2, 3, 1, 3, 0 ],
"vertices": [ 17.95, -0.09, -16.04, -0.09, -16.04, 507.9, 17.95, 507.9 ],
"hull": 4
}
},
"images/Eff/gongshou_guang2": {
"images/Eff/gongshou_guang": {
"type": "mesh",
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
"triangles": [ 1, 2, 3, 1, 3, 0 ],
"vertices": [ 17.95, -0.09, -16.04, -0.09, -16.04, 507.9, 17.95, 507.9 ],
"hull": 4
}
},
"images/Eff/gongshou_guang3": {
"images/Eff/gongshou_guang": {
"type": "mesh",
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
"triangles": [ 1, 2, 3, 1, 3, 0 ],
"vertices": [ 17.95, -0.09, -16.04, -0.09, -16.04, 507.9, 17.95, 507.9 ],
"hull": 4
}
},
"images/Eff/gongshou_jian": {
"images/Eff/gongshou_jian": { "x": -46.83, "y": 0.42, "width": 156, "height": 15 }
},
"images/Eff/gongshou_jian2": {
"images/Eff/gongshou_jian": { "x": -46.83, "y": 0.42, "width": 156, "height": 15 }
},
"images/Eff/gongshou_jian3": {
"images/Eff/gongshou_jian": { "x": -46.83, "y": 0.42, "width": 156, "height": 15 }
},
"images/Eff/qipaosmoke0001": {
"images/Eff/qipaosmoke0001": { "width": 142, "height": 139 },
"images/Eff/qipaosmoke0002": { "width": 142, "height": 139 },
"images/Eff/qipaosmoke0003": { "width": 142, "height": 139 },
"images/Eff/qipaosmoke0004": { "width": 142, "height": 139 },
"images/Eff/qipaosmoke0005": { "width": 142, "height": 139 },
"images/Eff/qipaosmoke0006": { "width": 142, "height": 139 },
"images/Eff/qipaosmoke0007": { "width": 142, "height": 139 },
"images/Eff/qipaosmoke0008": { "width": 142, "height": 139 }
},
"images/Eff/skillDEff0001": {
"images/Eff/skillDEff0001": { "x": 12.57, "y": 83.01, "width": 312, "height": 168 },
"images/Eff/skillDEff0002": { "x": 12.57, "y": 83.01, "width": 312, "height": 168 },
"images/Eff/skillDEff0003": { "x": 12.57, "y": 83.01, "width": 312, "height": 168 },
"images/Eff/skillDEff0005": { "x": 12.57, "y": 83.01, "width": 312, "height": 168 },
"images/Eff/skillDEff0007": { "x": 12.57, "y": 83.01, "width": 312, "height": 168 },
"images/Eff/skillDEff0009": { "x": 12.57, "y": 83.01, "width": 312, "height": 168 },
"images/Eff/skillDEff0011": { "x": 12.57, "y": 83.01, "width": 312, "height": 168 }
},
"images/FLT_0005s_0000_FLT_zuojiao": {
"images/FLT_0005s_0000_FLT_zuojiao": { "x": -4.77, "y": -2.19, "rotation": 108.92, "width": 35, "height": 19 },
"images/FLT_0005s_0002_FLT_youjiao": { "x": -5.72, "y": -1.34, "rotation": 108.92, "width": 39, "height": 19 }
},
"images/FLT_0005s_0001_FLT_zuotui": {
"images/FLT_0005s_0001_FLT_zuotui": { "x": 24.17, "y": 1.05, "rotation": 108.92, "width": 48, "height": 72 },
"images/FLT_0005s_0003_FLT_youjiao": { "x": 25.91, "y": 0.22, "rotation": 84.81, "width": 38, "height": 74 }
},
"images/FLT_0005s_0002_FLT_youjiao": {
"images/FLT_0005s_0002_FLT_youjiao": { "x": -1.02, "y": 1.86, "rotation": 81.86, "width": 39, "height": 19 }
},
"images/FLT_0005s_0003_FLT_youjiao": {
"images/FLT_0005s_0003_FLT_youjiao": { "x": 19.52, "y": -0.08, "rotation": 81.86, "width": 38, "height": 74 }
},
"images/FLT_0005s_0004_FLT_zuoshou": {
"images/FLT_0005s_0004_FLT_zuoshou": { "x": -0.46, "y": 2.12, "rotation": 83.11, "width": 36, "height": 38 },
"images/FLT_0005s_0015_FLT_youshou02": { "x": 4.72, "y": 2.38, "rotation": 77.64, "width": 36, "height": 50 }
},
"images/FLT_0005s_0005_FLT_zuobi": {
"images/FLT_0005s_0005_FLT_zuobi": { "x": 18.98, "y": 0.69, "rotation": 83.11, "width": 47, "height": 69 }
},
"images/FLT_0005s_0006_FLT_zuojian": {
"images/FLT_0005s_0006_FLT_zuojian": { "x": 28.07, "y": 10.2, "rotation": -172.4, "width": 69, "height": 69 }
},
"images/FLT_0005s_0007_FLT_toufa": {
"images/FLT_0005s_0007_FLT_toufa": {
"type": "mesh",
"uvs": [ 1, 0.23803, 0.86441, 0.14078, 0.74203, 0.07827, 0.638, 0.04354, 0.47891, 0, 0.33205, 0, 0.40852, 0.05243, 0.46902, 0.10654, 0.39018, 0.10862, 0.31685, 0.10862, 0.23068, 0.12319, 0.16652, 0.15441, 0.16835, 0.19187, 0.25268, 0.23973, 0.15918, 0.25846, 0.05835, 0.25638, 0, 0.25638, 0, 0.32922, 0.04368, 0.38957, 0.10968, 0.43119, 0.16652, 0.452, 0.06568, 0.45408, 0.02168, 0.46657, 0.04918, 0.54565, 0.10418, 0.59768, 0.21602, 0.66843, 0.15002, 0.71422, 0.19402, 0.76, 0.27468, 0.77249, 0.36085, 0.77041, 0.39568, 0.73295, 0.37918, 0.81203, 0.39752, 0.87862, 0.43602, 0.96187, 0.53135, 0.77873, 0.55152, 0.7267, 0.55885, 0.81619, 0.61752, 0.80578, 0.65968, 0.74127, 0.71468, 0.69965, 0.80085, 0.65595, 0.82835, 0.73919, 0.83935, 0.82035, 0.84118, 0.92649, 0.82835, 1, 0.86685, 1, 0.92552, 0.94522, 0.95668, 0.85989, 0.98968, 0.76208, 1, 0.6497, 1, 0.46865, 0.84909, 0.31046, 0.81884, 0.48542, 0.80632, 0.58308, 0.25391, 0.45495, 0.27617, 0.30333, 0.32737, 0.22499, 0.56557, 0.12138, 0.45426, 0.21741, 0.39861, 0.31344, 0.35631, 0.43221, 0.33182, 0.59899, 0.22719, 0.56361, 0.30511, 0.70513, 0.69024, 0.14665, 0.60787, 0.23257, 0.55667, 0.3286, 0.50769, 0.43221, 0.4654, 0.59899, 0.77706, 0.23005, 0.71028, 0.30838, 0.66575, 0.39936, 0.62791, 0.49791, 0.59229, 0.6369, 0.7036, 0.63942, 0.73699, 0.49538, 0.76593, 0.40188, 0.91509, 0.38925, 0.93067, 0.27806 ],
"triangles": [ 33, 32, 34, 32, 31, 34, 37, 36, 35, 31, 30, 34, 37, 35, 38, 34, 30, 35, 35, 73, 38, 38, 74, 39, 38, 73, 74, 30, 68, 35, 35, 68, 73, 39, 74, 40, 40, 74, 53, 73, 72, 74, 74, 72, 75, 73, 68, 72, 68, 67, 72, 68, 60, 67, 28, 63, 29, 63, 28, 25, 29, 63, 30, 28, 27, 25, 27, 26, 25, 63, 61, 30, 30, 61, 68, 63, 25, 61, 25, 62, 61, 61, 60, 68, 62, 54, 61, 61, 54, 60, 25, 24, 62, 24, 23, 20, 24, 20, 62, 20, 23, 21, 62, 20, 54, 23, 22, 21, 19, 14, 20, 54, 20, 55, 55, 14, 13, 55, 20, 14, 19, 18, 14, 18, 15, 14, 18, 17, 15, 17, 16, 15, 60, 54, 55, 60, 59, 67, 60, 55, 59, 59, 58, 66, 55, 56, 59, 59, 56, 58, 55, 13, 56, 56, 13, 10, 13, 12, 10, 10, 9, 56, 56, 8, 58, 56, 9, 8, 58, 8, 7, 12, 11, 10, 74, 75, 53, 53, 75, 52, 72, 71, 75, 72, 67, 71, 75, 76, 52, 75, 71, 76, 52, 76, 77, 67, 66, 71, 67, 59, 66, 71, 70, 76, 71, 66, 70, 66, 65, 70, 66, 58, 65, 46, 45, 43, 45, 44, 43, 46, 43, 47, 43, 42, 47, 47, 42, 48, 42, 41, 48, 48, 41, 49, 41, 40, 49, 40, 53, 49, 49, 53, 50, 53, 52, 50, 52, 77, 50, 50, 77, 0, 77, 78, 0, 76, 51, 77, 76, 70, 51, 77, 51, 78, 70, 69, 51, 78, 51, 1, 69, 70, 64, 51, 69, 1, 78, 1, 0, 70, 65, 64, 64, 2, 69, 69, 2, 1, 58, 57, 65, 65, 57, 64, 58, 7, 57, 57, 3, 64, 64, 3, 2, 3, 57, 4, 57, 7, 4, 7, 6, 4, 6, 5, 4 ],
"vertices": [ 3, 37, -20.07, -17.9, 2.0E-4, 36, 1.26, -16.74, 0.92679, 35, -17.64, 2.03, 0.07299, 3, 37, -6.93, -14.94, 0.11126, 36, 14.55, -14.52, 0.88512, 35, -22.46, -10.54, 0.00361, 2, 37, 3.6, -10.94, 0.54025, 36, 25.3, -11.13, 0.45974, 2, 37, 11.6, -6.58, 0.94456, 36, 33.53, -7.22, 0.05543, 3, 37, 23.33, 0.58, 0.99507, 36, 45.64, -0.73, 7.0E-5, 39, 1.45, -23.21, 0.00485, 4, 37, 32.05, 9.31, 0.99993, 36, 54.84, 7.48, 6.0E-5, 38, 49.69, -14.82, 0, 40, -5.38, -23.05, 0, 3, 37, 24.76, 7.51, 0.99922, 36, 47.47, 6.1, 6.0E-5, 39, 7.36, -19.33, 7.0E-4, 4, 37, 18.34, 6.75, 0.69061, 38, 35.89, -12.77, 0.0244, 39, 2.28, -15.33, 0.2739, 40, -16.62999, -14.8, 0.01107, 4, 37, 22.91, 11.54, 0.20924, 38, 41.78, -9.72999, 0.00673, 39, 8.89999, -15.17, 0.69213, 40, -10, -14.86, 0.09189, 3, 37, 27.27, 15.89, 0.0653, 39, 15.06, -15.17, 0.70532, 40, -3.85, -15.06, 0.22936, 3, 37, 31.62, 21.77, 0.00954, 39, 22.3, -14.1, 0.5978, 40, 3.41, -14.21, 0.39265, 2, 39, 27.69, -11.79, 0.57274, 40, 8.87, -12.08, 0.42725, 3, 37, 31.73, 29.07, 2.0E-5, 39, 27.54, -9.01, 0.57655, 40, 8.81, -9.3, 0.42342, 3, 37, 24.22, 26.56, 0.00556, 39, 20.45, -5.47, 0.48332, 40, 1.84, -5.53, 0.51111, 1, 40, 9.74, -4.4, 1, 3, 37, 34.89, 38.98, 0, 39, 36.78, -4.23999, 2.6E-4, 40, 18.2, -4.83, 0.99971, 2, 39, 41.68, -4.23999, 2.6E-4, 40, 23.1, -4.98999, 0.99972, 2, 39, 41.68, 1.14, 5.0E-5, 40, 23.27, 0.39, 0.99994, 2, 40, 19.75, 4.96999, 0.9789, 43, 17.57, -12.91, 0.02109, 3, 40, 14.3, 8.22999, 0.83723, 43, 11.94, -9.99, 0.15955, 42, 25.07, -11.26, 0.0032, 4, 39, 27.69, 10.22999, 3.2E-4, 40, 9.58, 9.92, 0.42798, 43, 7.13, -8.59, 0.528, 42, 20.44, -9.33, 0.04368, 2, 40, 18.04999, 9.8, 0.0174, 43, 15.59, -8.18999, 0.98259, 1, 43, 19.26, -7.16, 1, 2, 43, 16.78, -1.38, 0.99867, 42, 30.84, -3.24, 0.00132, 1, 43, 12.05, 2.33, 1, 3, 43, 2.51, 7.29, 0.47057, 42, 17.62999, 6.96, 0.51806, 41, 36.87, 7.89, 0.01136, 2, 43, 7.96, 10.84, 0.40083, 42, 23.44, 9.88, 0.59916, 3, 43, 4.17, 14.12, 0.39455, 42, 20.04, 13.56, 0.59666, 41, 38.91999, 14.6, 0.00875, 3, 43, -2.61999, 14.85, 0.26197, 42, 13.36, 15.05, 0.65008, 41, 32.18, 15.73, 0.08793, 3, 43, -9.85, 14.49, 0.10907, 42, 6.13, 15.5, 0.59206, 41, 24.94, 15.8, 0.29886, 3, 43, -12.7, 11.63, 0.03702, 42, 2.99, 12.98, 0.47917, 41, 21.93, 13.12, 0.48379, 3, 43, -11.48, 17.52, 0.00325, 42, 4.85, 18.69, 0.36761, 41, 23.49, 18.92, 0.62913, 2, 42, 3.73, 23.73, 0.35536, 41, 22.1, 23.9, 0.64463, 2, 42, 1.02, 30.14, 0.35205, 41, 19.04999, 30.15, 0.64793, 2, 42, -8.08, 17.29999, 0.25514, 41, 10.64, 16.85, 0.74485, 2, 42, -10.09, 13.6, 0.12915, 41, 8.83, 13.05, 0.87084, 2, 42, -10.14999, 20.25, 0.07146, 41, 8.41, 19.69, 0.92853, 3, 35, 29.85, -21.23, 3.7E-4, 42, -15.12, 19.89, 0.05401, 41, 3.47, 19.07, 0.9456, 4, 35, 24.48, -18.69, 0.0097, 38, 0.91, 22.41, 0.00379, 42, -19.04999, 15.43, 0.0364, 41, -0.21, 14.4, 0.95009, 4, 35, 20.54999, -14.76, 0.06301, 38, -1.89, 17.62, 0.05999, 42, -23.91, 12.75, 0.00868, 41, -4.92, 11.46, 0.8683, 3, 35, 15.96, -8.3, 0.49746, 38, -6.97, 11.54, 0.19906, 41, -12.25, 8.45, 0.30346, 3, 35, 21.55, -4.83, 0.94426, 38, -11.75, 16.06, 0.02283, 41, -14.38, 14.68, 0.0329, 1, 35, 27.26, -2.74, 1, 2, 35, 34.93, -1.04999, 0.99999, 41, -15.03, 28.56, 0, 2, 35, 40.47, -1.04, 0.99997, 41, -13.79, 33.97, 2.0E-5, 2, 35, 39.84, 2.11999, 0.99998, 41, -17.02, 34.07, 1.0E-5, 2, 35, 34.9, 6.16, 0.99999, 41, -22.07, 30.16, 0, 1, 35, 28.19, 7.49, 1, 1, 35, 20.54999, 8.78, 1, 1, 35, 12.23, 8, 1, 1, 35, -0.9, 5.38, 1, 3, 37, -14.9, -5.15, 7.6E-4, 36, 7.14, -4.3, 0.99154, 35, -9.89, -9.34, 0.00769, 1, 38, -2.8, -0.46, 1, 4, 36, -3.6, 13.13, 0.00745, 35, 10.58, -8.91, 0.51441, 38, -5.02, 6.49, 0.31715, 41, -12.88, 3.08, 0.16096, 4, 39, 20.35, 10.45, 0.20524, 40, 2.25, 10.38, 0.2396, 43, -0.21, -8.58, 0.18725, 42, 13.15, -8.5, 0.36789, 2, 39, 18.48, -0.77, 0.5, 40, 0.02, -0.77, 0.5, 3, 37, 20.54999, 21.36, 0.01863, 39, 14.18, -6.56, 0.74179, 40, -4.44999, -6.42, 0.23957, 1, 37, 11.83, 1.79, 1, 3, 37, 13.41, 13.42, 0.10917, 38, 33.41, -4.86, 0.17084, 39, 3.52, -7.12, 0.71998, 1, 39, 8.18999, -0.02, 1, 6, 38, 33.84, 13.03, 0.00578, 39, 11.75, 8.76, 0.5392, 40, -6.39, 8.97, 0.09065, 43, -8.76, -10.51, 0.02797, 42, 4.44, -9.47, 0.29201, 41, 24.56, -9.22, 0.04436, 3, 43, -7.05, 1.88, 0.12604, 42, 7.51, 2.65, 0.75789, 41, 26.99, 3.05, 0.11605, 4, 39, 22.59, 18.49, 0.0014, 40, 4.76, 18.34, 0.05346, 43, 1.8, -0.48, 0.67418, 42, 16.04999, -0.68, 0.27094, 3, 43, -5.03, 9.79, 0.20529, 42, 10.39999, 10.29, 0.65258, 41, 29.47, 10.83, 0.14212, 2, 37, 3.1, -4.29, 0.62963, 36, 25.17, -4.44999, 0.37036, 4, 37, 3.5, 5.09, 0.44133, 36, 26.1, 4.89, 0.18968, 38, 21.32, -9.5, 0.35631, 39, -9.37, -6, 0.01266, 3, 37, 1.51, 13.16, 0.01146, 38, 22.07, -1.23, 0.8066, 39, -5.07, 1.09, 0.18193, 4, 38, 22.41, 7.45, 0.65795, 39, -0.96, 8.76, 0.12013, 42, -8.22999, -8.41, 0.00865, 41, 11.85, -8.83, 0.21325, 3, 43, -18.27, 1.56, 0.00141, 42, -3.66, 3.58, 0.36508, 41, 15.77, 3.38, 0.63349, 2, 37, -6.41, -5.08, 0.22812, 36, 15.62, -4.71, 0.77187, 3, 37, -6.54, 2.98, 0.02019, 36, 15.94, 3.34, 0.54037, 38, 11.13, -8.22999, 0.43942, 3, 36, 14.25, 10.85, 0.04479, 38, 11.54, -0.54, 0.94152, 41, -1.49, -10.86, 0.01368, 2, 38, 11.2, 7.39, 0.35299, 41, 1.9, -3.67, 0.647, 2, 42, -14.05, 7.26, 0.06279, 41, 5.21, 6.51, 0.9372, 4, 35, 16.36, -16.54999, 0.10775, 38, 0.9, 14.02, 0.1489, 42, -23.35, 8.22999, 0.0016, 41, -4.12, 6.98, 0.74172, 3, 35, 5.36, -15.89, 0.00918, 38, 3.05, 3.21, 0.74647, 41, -7.25, -3.58, 0.24432, 2, 36, 7.85, 5.39, 0.2789, 38, 3.9, -4.07, 0.72109, 2, 36, -0.86, -3.64, 0.61461, 35, -5.26, -2.76, 0.38537, 3, 37, -18.04999, -11.69, 0.00806, 36, 3.63, -10.65, 0.93505, 35, -13.59, -3.09, 0.05688 ],
"hull": 51
}
},
"images/FLT_0005s_0008_FLT_yan": {
"images/FLT_0005s_0008_FLT_yan": { "x": 3.02, "y": 1.14, "rotation": -66.89, "width": 14, "height": 12 }
},
"images/FLT_0005s_0009_FLT_tou": {
"images/FLT_0005s_0009_FLT_tou": { "x": 19.05, "y": 5.7, "rotation": -66.89, "width": 45, "height": 53 }
},
"images/FLT_0005s_0010_FLT_yaodai": {
"images/FLT_0005s_0010_FLT_yaodai": {
"type": "mesh",
"uvs": [ 0, 0, 0, 1, 0.51386, 1, 1, 1, 1, 0, 0.52686, 0 ],
"triangles": [ 2, 1, 0, 5, 2, 0, 5, 4, 3, 2, 5, 3 ],
"vertices": [ -38, 26.11, -38, -21.88, -9.22999, -21.88, 17.99, -21.88, 17.99, 26.11, -8.5, 26.11 ],
"hull": 6
}
},
"images/FLT_0005s_0011_FLT_bu01": {
"images/FLT_0005s_0011_FLT_bu01": {
"type": "mesh",
"uvs": [ 0.44636, 0, 0.25545, 0.10718, 0.23424, 0.21636, 0.23424, 0.32553, 0.23424, 0.44113, 0.19182, 0.57599, 0.12818, 0.72369, 0.06056, 0.82533, 0, 0.91635, 0, 1, 0.36151, 1, 0.57364, 0.8714, 0.72212, 0.74938, 0.8706, 0.63379, 1, 0.49892, 1, 0.3448, 1, 0.20351, 1, 0.06865, 1, 0 ],
"triangles": [ 9, 7, 10, 10, 7, 11, 9, 8, 7, 7, 6, 11, 11, 6, 12, 6, 5, 12, 12, 5, 13, 5, 4, 13, 13, 4, 14, 4, 15, 14, 4, 3, 15, 3, 16, 15, 16, 2, 1, 16, 3, 2, 1, 17, 16, 1, 0, 17, 0, 18, 17 ],
"vertices": [ 3, 29, -9.07, -9.29, 0.99999, 30, -34.59, -12.97, 0, 32, -72.37, -20.29, 0, 2, 29, 3.11, -14.55, 1, 32, -59.37, -22.97, 0, 3, 29, 15.02, -14.22, 0.94234, 30, -10.10999, -15.36, 0.05765, 32, -47.77, -20.21999, 0, 3, 29, 26.88, -13.19, 0.46965, 30, 1.57, -13.1, 0.53034, 32, -36.37, -16.79999, 0, 4, 29, 39.43, -12.1, 0.01544, 30, 13.94, -10.7, 0.82069, 31, -4.3, -10.71, 0.16386, 32, -24.3, -13.18, 0, 4, 29, 54.2, -12.22, 0, 30, 28.63, -9.28, 0.01775, 31, 10.39, -9.27, 0.97772, 32, -9.82, -10.3, 0.00452, 3, 29, 70.42, -12.92, 0, 31, 26.6, -8.26, 0.10955, 32, 6.19, -7.69, 0.89044, 3, 29, 81.65, -14.18, 0, 32, 17.44, -6.64, 0.55004, 33, 0.79, -6.62, 0.44995, 3, 29, 91.71, -15.31, 0, 31, 48.02, -8.41, 0, 33, 10.43, -3.53, 0.99999, 1, 33, 18.39, 0.91, 1, 2, 32, 32.83, 8.33, 0.00354, 33, 12.57, 11.32, 0.99645, 3, 29, 85.19, 3.11, 0, 32, 17.39, 11.01, 0.64045, 33, -3.07, 10.6, 0.35954, 3, 29, 71.51, 6.84, 0, 31, 25.6, 11.5, 0.28913, 32, 3.24, 11.88, 0.71086, 4, 29, 58.53, 10.63, 0, 30, 30.56, 13.9, 0.05207, 31, 12.3, 13.91, 0.88762, 32, -10.22, 12.96, 0.06029, 4, 29, 43.52, 13.61, 6.2E-4, 30, 15.32, 15.29, 0.64202, 31, -2.93, 15.29, 0.35733, 32, -25.53, 12.82, 1.0E-5, 4, 29, 26.78, 12.16, 0.47466, 30, -1.16, 12.1, 0.52497, 31, -19.43, 12.09, 3.6E-4, 32, -41.62, 7.99, 0, 3, 29, 11.44, 10.82, 0.99947, 30, -16.28, 9.18, 5.2E-4, 32, -56.37, 3.57, 0, 2, 29, -3.19, 9.55, 0.99999, 30, -30.72, 6.38, 0, 2, 29, -10.65, 8.89999, 0.99999, 30, -38.06, 4.96, 0 ],
"hull": 19
}
},
"images/FLT_0005s_0012_FLT_kuabu": {
"images/FLT_0005s_0012_FLT_kuabu": {
"type": "mesh",
"uvs": [ 0, 0, 0, 1, 0.41672, 1, 0.8266, 1, 1, 1, 1, 0, 0.77722, 0, 0.44635, 0 ],
"triangles": [ 2, 1, 0, 7, 2, 0, 3, 6, 5, 2, 7, 6, 3, 2, 6, 3, 5, 4 ],
"vertices": [ -9.76, -48.29, 63.38, -27.65, 54.21, 4.82, 45.2, 36.78, 41.39, 50.29, -31.75, 29.66, -26.85, 12.3, -19.57, -13.49 ],
"hull": 8
}
},
"images/FLT_0005s_0013_FLT_xiong": {
"images/FLT_0005s_0013_FLT_xiong": {
"type": "mesh",
"uvs": [ 0, 0, 0, 1, 0.37628, 1, 1, 1, 1, 0, 0.26189, 0 ],
"triangles": [ 1, 0, 5, 2, 5, 4, 1, 5, 2, 2, 4, 3 ],
"vertices": [ 81.43, 47.39, -3, 37.61, 0.24, 9.58, 5.62, -36.88, 90.06, -27.1, 83.69, 27.88 ],
"hull": 6
}
},
"images/FLT_0005s_0014_FLT_youshou01": {
"images/FLT_0005s_0014_FLT_youshou01": { "x": -0.05, "y": -0.14, "rotation": 72.47, "width": 33, "height": 33 }
},
"images/FLT_0005s_0016_FLT_youxiaobi": {
"images/FLT_0005s_0016_FLT_youxiaobi": { "x": 10.52, "y": -2.92, "rotation": 72.47, "width": 42, "height": 45 }
},
"images/FLT_0005s_0017_FLT_qiang01": {
"images/FLT_0005s_0017_FLT_qiang01": { "x": -73.29, "y": 13.83, "rotation": -21.76, "width": 136, "height": 41 }
},
"images/FLT_0005s_0018_FLT_qiang02": {
"images/FLT_0005s_0018_FLT_qiang02": { "x": 213.54, "y": 22.3, "rotation": -21.76, "width": 403, "height": 219 }
},
"images/FLT_0005s_0019_FLT_zuojian02": {
"images/FLT_0005s_0019_FLT_zuojian02": { "x": 22.91, "y": -5.93, "rotation": -156.16, "width": 50, "height": 39 }
},
"images/FLT_0005s_0020_FLT_youjian": {
"images/FLT_0005s_0020_FLT_youjian": { "x": 18.11, "y": 4.3, "rotation": 48.71, "width": 45, "height": 60 }
},
"images/FLT_0005s_0021_FLT_pifeng": {
"images/FLT_0005s_0021_FLT_pifeng": {
"type": "mesh",
"uvs": [ 0.23732, 0, 0.20714, 0.08488, 0.19038, 0.1719, 0.17362, 0.26537, 0.16021, 0.38141, 0.15015, 0.48455, 0.13339, 0.58447, 0.11997, 0.68439, 0.08645, 0.80042, 0.05627, 0.90356, 0, 0.99381, 0.05292, 1, 0.39154, 1, 0.73687, 1, 1, 1, 1, 0.94546, 0.9045, 0.89067, 0.86092, 0.81009, 0.83074, 0.69083, 0.79722, 0.5748, 0.78716, 0.46199, 0.77039, 0.3524, 0.76369, 0.24603, 0.77039, 0.15256, 0.75698, 0.06325, 0.69664, 0.02135, 0.60611, 0, 0.43513, 0, 0.35131, 0, 0.35131, 0.09548, 0.3446, 0.18251, 0.33119, 0.27276, 0.32784, 0.38557, 0.31443, 0.49516, 0.29431, 0.59507, 0.28426, 0.68855, 0.25408, 0.81425, 0.23061, 0.92061, 0.50889, 0.10837, 0.6564, 0.1116, 0.48877, 0.20185, 0.6497, 0.20829, 0.48206, 0.31143, 0.61952, 0.30499, 0.47536, 0.40813, 0.63293, 0.40491, 0.47201, 0.51449, 0.46865, 0.62731, 0.44854, 0.70788, 0.43177, 0.81747, 0.43513, 0.91739, 0.6497, 0.53706, 0.6497, 0.6402, 0.64634, 0.74656, 0.66981, 0.85293, 0.7201, 0.92384 ],
"triangles": [ 11, 37, 12, 11, 9, 37, 11, 10, 9, 9, 8, 37, 37, 8, 36, 36, 35, 49, 8, 7, 36, 36, 7, 35, 7, 6, 35, 35, 6, 34, 6, 5, 34, 34, 5, 33, 5, 4, 33, 33, 4, 32, 4, 3, 32, 32, 3, 31, 3, 2, 31, 31, 2, 30, 2, 1, 30, 30, 1, 29, 29, 0, 28, 0, 29, 1, 22, 41, 23, 41, 39, 23, 41, 38, 39, 39, 24, 23, 38, 26, 39, 39, 25, 24, 39, 26, 25, 42, 43, 45, 45, 43, 21, 43, 22, 21, 43, 41, 22, 43, 40, 41, 45, 21, 20, 51, 52, 44, 52, 51, 19, 51, 44, 45, 51, 20, 19, 51, 45, 20, 53, 47, 52, 53, 52, 18, 52, 19, 18, 54, 53, 17, 53, 18, 17, 13, 12, 55, 13, 55, 16, 55, 17, 16, 55, 54, 17, 13, 16, 14, 16, 15, 14, 55, 12, 50, 54, 50, 53, 55, 50, 54, 12, 37, 50, 50, 36, 49, 36, 50, 37, 53, 50, 49, 53, 49, 48, 49, 35, 48, 48, 47, 53, 52, 47, 46, 47, 48, 34, 48, 35, 34, 47, 34, 46, 52, 46, 44, 46, 34, 33, 46, 33, 44, 33, 32, 44, 44, 42, 45, 44, 32, 42, 32, 31, 42, 42, 31, 40, 42, 40, 43, 40, 31, 30, 40, 38, 41, 38, 40, 29, 40, 30, 29, 29, 27, 38, 38, 27, 26, 29, 28, 27 ],
"vertices": [ 4, 3, -5.4, -54.39, 0.00544, 21, -65.85, -82.3, 0, 20, -29.33, -88.15, 6.3E-4, 12, -19.32, -16.23, 0.99392, 3, 21, -46.98, -91.27, 0, 20, -9.68999, -95.3, 6.0E-5, 12, 1.37, -19.15, 0.99993, 3, 21, -27.26, -97.31, 0, 12, 21.99, -19.03, 0.65642, 13, -6.89, -18.34, 0.34357, 4, 21, -6.05, -103.52, 0, 12, 44.09, -18.62, 0.12293, 13, 15.09, -20.54, 0.8038, 14, -24.67, -19.77, 0.07325, 5, 21, 20.45999, -109.59, 0, 12, 71.21, -16.48, 0.00103, 13, 42.27, -21.61, 0.38094, 14, 2.46, -21.69, 0.58764, 15, -24.85, -22.36, 0.03037, 5, 21, 44.07, -114.57, 0, 13, 66.4, -22.14, 0.00887, 14, 26.56, -22.98, 0.48889, 15, -0.72, -23.01, 0.47341, 16, -26.17, -25.15, 0.0288, 5, 21, 66.78, -120.95, 0, 14, 49.97, -25.81, 0.02824, 15, 22.75, -25.21, 0.50603, 16, -2.59999, -26.06, 0.44886, 17, -23.58, -27.93, 0.01682, 5, 21, 89.56, -126.59, 0, 15, 46.17, -26.66, 0.05487, 16, 20.86, -26.22, 0.50236, 17, -0.17, -26.31, 0.3964, 18, -23.33, -28.49, 0.04635, 5, 21, 115.57, -137.13, 0, 16, 48.61, -30.41, 0.04642, 17, 27.81, -28.37, 0.36897, 18, 4.71999, -28.07, 0.4314, 19, -6.43, -31.18, 0.15319, 4, 21, 138.67, -146.59, 0, 17, 52.7, -30.29, 0.04337, 18, 29.68, -27.77, 0.13999, 19, 17.4, -23.8, 0.81662, 2, 21, 158.12, -161.51, 0, 19, 41.91, -22.96, 1, 2, 21, 160.91, -149.9, 0, 19, 36.68, -12.23, 1, 6, 10, 46.45, -18.46999, 0.03111, 11, 21.36, -18.46999, 0.74183, 21, 169.56, -74.54, 0, 17, 60, 47.75, 0.00279, 18, 30.05, 50.61, 0.11108, 19, -4.52, 51.44, 0.11317, 5, 10, 46.45, 58.87, 0.05358, 11, 21.36, 58.87, 0.09744, 27, 5.6, -22, 0.41404, 26, 34.83, -19.51, 0.43492, 21, 178.37, 2.3, 0, 5, 9, 75.67, 116.82, 0, 10, 46.45, 117.81, 0.00107, 11, 21.36, 117.81, 0.00201, 27, 43.95, 22.74, 0.99691, 21, 185.09, 60.86, 0, 6, 9, 62.97, 117.08, 0, 10, 33.75, 117.81, 9.8E-4, 11, 8.64999, 117.81, 0.00184, 27, 34.31, 31.01, 0.99286, 26, 47.3, 39.47, 0.00431, 21, 172.47, 62.3, 0, 8, 7, 95.81, 94.67, 0, 9, 49.76, 95.96, 0, 10, 20.98, 96.42, 5.0E-5, 11, -4.1, 96.42, 9.0E-5, 27, 10.69, 23.07, 0.70329, 26, 26.91, 25.16, 0.27913, 25, 49.28, 28.66, 0.01741, 21, 157.35, 42.51, 0, 7, 7, 76.81, 85.37, 0, 9, 30.78, 86.59, 0, 27, -9.91, 27.88, 0.12553, 26, 5.79, 23.92, 0.43813, 25, 28.53, 24.49, 0.41059, 24, 55.44, 26.28, 0.02572, 21, 137.58, 34.95, 0, 6, 7, 48.86, 79.29, 1.0E-5, 26, -22.33, 29.1, 0.02722, 25, -0.03, 25.71, 0.44529, 24, 26.85, 25.65, 0.49628, 23, 51.15, 26.74, 0.03118, 21, 109.21, 31.4, 0, 4, 25, -28.09, 26, 0.01778, 24, -1.16, 24.13, 0.43336, 23, 23.19, 24.42, 0.47145, 22, 48.21, 25.27, 0.07739, 4, 24, -27.32, 27.57, 0.03354, 23, -3.05, 27.13, 0.33695, 22, 21.89, 27, 0.55312, 21, 55.12, 27.78, 0.07636, 4, 23, -28.83, 28.22, 0.02465, 22, -3.91, 27.13, 0.40444, 21, 29.32, 26.96, 0.50254, 20, 55.09, 29.61, 0.06835, 3, 22, -28.64, 29.37, 0.0497, 21, 4.53, 28.3, 0.46949, 20, 30.28, 28.6, 0.48079, 4, 22, -49.94, 34.13, 3.9E-4, 21, -16.92, 32.27, 0.09307, 20, 8.54, 30.53, 0.90649, 12, -6.86, 107.72, 3.0E-5, 4, 4, -22.54, 62.92, 0, 21, -37.93999, 31.66, 0.00695, 20, -12.32, 27.93, 0.99278, 12, -26.73, 100.86, 2.6E-4, 3, 3, -4.46, 48.6, 0.05491, 20, -22.34, 14.61, 0.94443, 12, -33.78, 85.74, 6.4E-4, 4, 3, -8.63, 28.15, 0.36613, 21, -56.44, -0.22, 3.0E-5, 20, -27.72, -5.56, 0.63219, 12, -34.84999, 64.89, 0.00162, 2, 3, -7.13, -10.10999, 0.8845, 12, -27.65, 27.28, 0.11549, 4, 3, -6.4, -28.87, 0.38866, 21, -62.94, -56.93, 0, 20, -28.83, -62.62, 0.0016, 12, -24.12, 8.84, 0.60973, 5, 3, 15.82, -28, 0.24778, 4, -13.14, -27.77, 0.06403, 21, -40.84, -59.46, 0, 20, -6.59, -63.06, 8.0E-5, 12, -2.27, 13.02, 0.68809, 6, 3, 36.14, -28.71, 0.06793, 4, 7.15, -28.84, 0.19, 5, -20.20999, -28.43, 0.048, 21, -20.87, -63.27, 0, 12, 17.92, 15.36, 0.48584, 13, -6.89, 16.28, 0.2082, 7, 4, 28.24, -31.41, 0.11766, 5, 0.81, -31.43, 0.26519, 6, -26.51, -31.43, 0.04983, 21, -0.32, -68.65, 0, 12, 39.14, 16.36, 0.03263, 13, 14.29, 14.78, 0.45508, 14, -24.36, 15.55, 0.07957, 7, 4, 54.53, -31.61, 0.00588, 5, 27.09, -32.18, 0.2429, 6, -0.22, -32.18, 0.25051, 7, -24.98, -31.59, 0.01145, 21, 25.7, -72.39, 0, 13, 40.56, 15.91, 0.19771, 14, 1.92, 15.85, 0.29153, 8, 5, 52.63, -35.18999, 0.00728, 6, 25.3, -35.18999, 0.10506, 7, 0.46, -35.21, 0.12277, 8, -20.65, -36.25999, 0.0414, 21, 50.73, -78.29, 0, 14, 27.56, 13.87, 0.27517, 15, -0.71, 13.86, 0.44685, 16, -28.17, 11.67, 0.00143, 8, 6, 48.58, -39.68999, 0.02719, 7, 23.63, -40.28, 0.12809, 8, 2.72, -40.2, 0.1582, 9, -21.94, -39.25, 0.02272, 21, 73.33999, -85.42, 0, 14, 51, 10.3, 0.01527, 15, 22.81, 10.91, 0.39857, 16, -4.52, 10.01, 0.24991, 9, 7, 45.35, -43.07, 0.01136, 8, 24.55, -41.91999, 0.08523, 9, -0.21, -41.95, 0.11614, 10, -26.1, -42.51, 0.02342, 11, -51.2, -42.51, 0.00144, 21, 94.72, -90.14, 0, 15, 44.69, 10.10999, 0.0059, 16, 17.37, 10.41, 0.3976, 17, -6.43, 9.95, 0.35887, 7, 8, 53.99, -47.96, 0.00353, 9, 28.92, -49.32, 0.03479, 10, 3.17, -49.26, 0.04903, 11, -21.91, -49.26, 0.02905, 21, 123.05, -100.2, 0, 17, 23.6, 9.07, 0.44912, 18, -2.77, 8.85999, 0.43445, 7, 9, 53.59, -55.09, 0.00109, 10, 27.96, -54.52, 0.03819, 11, 2.86, -54.52, 0.14871, 21, 147.07, -108.24, 0, 17, 48.94, 8.77, 0.00552, 18, 22.47, 10.81, 0.23173, 19, -0.46, 11.13, 0.57472, 3, 3, 17.44, 7.38, 0.71872, 4, -10.87, 7.58, 0.18023, 20, -2.89, -27.83, 0.10103, 1, 20, -1.5, 5.19, 1, 1, 4, 10.98, 3.53, 1, 5, 4, 11.74, 39.59999, 0.00257, 5, -14.2, 39.9, 8.7E-4, 22, -41.16999, 5.45, 9.0E-5, 21, -7.11, 3.93, 0.09126, 20, 20.99, 3.24, 0.90519, 1, 5, 9.82, 2.34999, 1, 1, 21, 14.5, -5.34, 1, 2, 5, 32.34999, 0.85, 0.5, 6, 5.03, 0.85, 0.5, 2, 22, 3.54, -5.15, 0.5, 21, 37.97, -5.01, 0.5, 1, 7, 5.83, -0.03, 1, 1, 8, 9.28, -0.97, 1, 2, 8, 28.16, -5.02, 0.5, 9, 5.05, -5.26, 0.5, 9, 8, 53.77, -8.14999, 0.02147, 9, 30.5, -9.54, 0.42362, 10, 3.93, -9.46, 0.3469, 11, -21.16, -9.46, 0.02635, 21, 128.33, -60.74, 0, 16, 43.19, 46.85, 0.03226, 17, 16.53, 48.25, 0.10546, 18, -13.29, 47.25, 0.04265, 19, -45.12, 35.91, 0.00124, 7, 9, 53.79, -9.28, 2.9E-4, 10, 27.21, -8.71, 0.14199, 11, 2.10999, -8.71, 0.77038, 21, 151.55, -62.65, 0, 17, 39.22, 53.55, 0.00646, 18, 8.83, 54.54, 0.04647, 19, -25.98, 49.19, 0.03437, 1, 23, 8.37, -6.38, 1, 7, 7, 36.08, 39.03, 0.00997, 8, 11.29, 39.63, 0.07704, 9, -9.77, 40.11, 0.05062, 10, -37.37, 39.34, 0.00423, 24, 6.61, -11.41, 0.76193, 23, 31.97, -10.88, 0.09618, 21, 92.86, -7.53, 0, 10, 7, 60.84, 37.68, 1.0E-4, 8, 36.08, 39.48, 0.08956, 9, 14.98, 38.84999, 0.1568, 10, -12.59, 38.59, 0.03735, 11, -37.68, 38.59, 2.3E-4, 26, -27.34, -13.9, 4.7E-4, 25, 0.97, -17.57, 0.27544, 24, 30.65, -17.46999, 0.43011, 23, 56.18, -16.25, 0.00987, 21, 117.4, -11.1, 0, 9, 8, 60.73, 45.34, 0.011, 9, 39.87, 43.59, 0.0986, 10, 12.19, 43.85, 0.21261, 11, -12.9, 43.85, 0.07983, 27, -30.19, -11.11, 0.00267, 26, -2.57, -19.21999, 0.27592, 25, 26.24, -19.39, 0.2997, 24, 55.99, -17.66, 0.01962, 21, 142.62, -8.71, 0, 7, 9, 56.62, 54.5, 0.00366, 10, 28.71, 55.11, 0.08906, 11, 3.61, 55.11, 0.12963, 27, -10.31, -13.31, 0.15898, 26, 17.1, -15.69, 0.59372, 25, 45.24, -13.16, 0.02492, 21, 160.32, 0.58999, 0 ],
"hull": 29
}
},
"images/FLT_0005s_0022_FLT_zhuangshi": {
"images/FLT_0005s_0022_FLT_zhuangshi": { "x": 53.78, "y": 9.66, "rotation": -79.9, "width": 116, "height": 138 }
}
}
},
"events": {
"special": {}
},
"animations": {
"atk1": {
"slots": {
"images/Eff/gongshou_guang": {
"color": [
{ "time": 0.9666, "color": "ffffffff" },
{ "time": 1.1333, "color": "ffffff00", "curve": "stepped" },
{ "time": 1.4333, "color": "ffffff00" },
{ "time": 1.4666, "color": "ffffffff" },
{ "time": 1.6333, "color": "ffffff00", "curve": "stepped" },
{ "time": 1.9333, "color": "ffffff00" },
{ "time": 1.9666, "color": "ffffffff" },
{ "time": 2.1333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.9666, "name": "images/Eff/gongshou_guang" }
]
},
"images/Eff/gongshou_guang2": {
"color": [
{ "time": 1.1333, "color": "ffffffff" },
{ "time": 1.3, "color": "ffffff00", "curve": "stepped" },
{ "time": 1.6, "color": "ffffff00" },
{ "time": 1.6333, "color": "ffffffff" },
{ "time": 1.8, "color": "ffffff00", "curve": "stepped" },
{ "time": 2.0666, "color": "ffffff00" },
{ "time": 2.1, "color": "ffffffff" },
{ "time": 2.2666, "color": "ffffff00" }
],
"attachment": [
{ "time": 1.1333, "name": "images/Eff/gongshou_guang" }
]
},
"images/Eff/gongshou_guang3": {
"color": [
{ "time": 1.3, "color": "ffffffff" },
{ "time": 1.4666, "color": "ffffff00", "curve": "stepped" },
{ "time": 1.7666, "color": "ffffff00" },
{ "time": 1.8, "color": "ffffffff" },
{ "time": 1.9666, "color": "ffffff00" }
],
"attachment": [
{ "time": 1.3, "name": "images/Eff/gongshou_guang" }
]
},
"images/Eff/gongshou_jian": {
"color": [
{ "time": 0.9, "color": "ffffff00" },
{ "time": 0.9666, "color": "ffffffff" },
{ "time": 1.1333, "color": "ffffff00", "curve": "stepped" },
{ "time": 1.4, "color": "ffffff00" },
{ "time": 1.4666, "color": "ffffffff" },
{ "time": 1.6333, "color": "ffffff00", "curve": "stepped" },
{ "time": 1.9, "color": "ffffff00" },
{ "time": 1.9666, "color": "ffffffff" },
{ "time": 2.1333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.9, "name": "images/Eff/gongshou_jian" }
]
},
"images/Eff/gongshou_jian2": {
"color": [
{ "time": 1.0666, "color": "ffffff00" },
{ "time": 1.1333, "color": "ffffffff" },
{ "time": 1.3, "color": "ffffff00", "curve": "stepped" },
{ "time": 1.5666, "color": "ffffff00" },
{ "time": 1.6333, "color": "ffffffff" },
{ "time": 1.8, "color": "ffffff00", "curve": "stepped" },
{ "time": 2.0333, "color": "ffffff00" },
{ "time": 2.1, "color": "ffffffff" },
{ "time": 2.2666, "color": "ffffff00" }
],
"attachment": [
{ "time": 1.0666, "name": "images/Eff/gongshou_jian" }
]
},
"images/Eff/gongshou_jian3": {
"color": [
{ "time": 1.2333, "color": "ffffff00" },
{ "time": 1.3, "color": "ffffffff" },
{ "time": 1.4666, "color": "ffffff00", "curve": "stepped" },
{ "time": 1.7333, "color": "ffffff00" },
{ "time": 1.8, "color": "ffffffff" },
{ "time": 1.9666, "color": "ffffff00" }
],
"attachment": [
{ "time": 1.2333, "name": "images/Eff/gongshou_jian" },
{ "time": 1.7333, "name": "images/Eff/gongshou_jian" }
]
},
"images/Eff/qipaosmoke0001": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.6666, "color": "ffffffff" }
]
},
"images/Eff/skillDEff0001": {
"attachment": [
{ "time": 0.3333, "name": "images/Eff/skillDEff0001" },
{ "time": 0.4, "name": "images/Eff/skillDEff0002" },
{ "time": 0.4666, "name": "images/Eff/skillDEff0003" },
{ "time": 0.5333, "name": "images/Eff/skillDEff0005" },
{ "time": 0.6, "name": "images/Eff/skillDEff0007" },
{ "time": 0.6666, "name": "images/Eff/skillDEff0009" },
{ "time": 0.7333, "name": "images/Eff/skillDEff0011" },
{ "time": 0.8, "name": null }
]
},
"images/FLT_0005s_0000_FLT_zuojiao": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0001_FLT_zuotui": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0002_FLT_youjiao": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0003_FLT_youjiao": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0004_FLT_zuoshou": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.8, "name": "images/FLT_0005s_0015_FLT_youshou02" },
{ "time": 0.9666, "name": "images/FLT_0005s_0015_FLT_youshou02" },
{ "time": 1.8666, "name": "images/FLT_0005s_0015_FLT_youshou02" }
]
},
"images/FLT_0005s_0005_FLT_zuobi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0006_FLT_zuojian": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0007_FLT_toufa": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0008_FLT_yan": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0009_FLT_tou": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0010_FLT_yaodai": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0011_FLT_bu01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0012_FLT_kuabu": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0013_FLT_xiong": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0014_FLT_youshou01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0016_FLT_youxiaobi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0017_FLT_qiang01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0018_FLT_qiang02": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0019_FLT_zuojian02": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0020_FLT_youjian": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0021_FLT_pifeng": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
},
"images/FLT_0005s_0022_FLT_zhuangshi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3666, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2, "color": "ffffffff" },
{ "time": 2.6333, "color": "ffffff00" }
]
}
},
"bones": {
"images/FLT_0005s_0005_FLT_zuobi": {
"rotate": [
{ "time": 0, "angle": 1.01 },
{ "time": 0.0666, "angle": 41.98 },
{ "time": 0.1666, "angle": 143.81 },
{ "time": 0.2666, "angle": 153.62 },
{ "time": 0.3, "angle": 110.18 },
{ "time": 0.3333, "angle": 28.05 },
{ "time": 0.7, "angle": 36.76 },
{ "time": 0.8, "angle": 81.15 },
{ "time": 0.9666, "angle": 86.64, "curve": "stepped" },
{ "time": 1.8666, "angle": 86.64 },
{ "time": 2.2666, "angle": 85.54 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 9.55, "y": 5.71 },
{ "time": 0.0666, "x": 61.46, "y": -40.64 },
{ "time": 0.1, "x": 100.08, "y": -33.15 },
{ "time": 0.1666, "x": 162.29, "y": 76.35 },
{ "time": 0.2666, "x": 129.05, "y": 142.82 },
{ "time": 0.3, "x": 198.29, "y": 5.61 },
{ "time": 0.3333, "x": 72.1, "y": -36 },
{ "time": 0.7, "x": 54.1, "y": -23.78 },
{ "time": 0.8, "x": 149.57, "y": -20 },
{ "time": 0.9666, "x": 154.79, "y": -17.59, "curve": "stepped" },
{ "time": 1.8666, "x": 154.79, "y": -17.59 },
{ "time": 2.2666, "x": 153.74, "y": -18.07 },
{ "time": 2.6, "x": 6.68, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"root": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2.2666, "angle": 0, "curve": "stepped" },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0001_FLT_zuotui": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": -9.94, "curve": "stepped" },
{ "time": 0.7, "angle": -9.94, "curve": "stepped" },
{ "time": 0.8, "angle": -9.94, "curve": "stepped" },
{ "time": 0.9666, "angle": -9.94, "curve": "stepped" },
{ "time": 1.8666, "angle": -9.94, "curve": "stepped" },
{ "time": 2.2666, "angle": -9.94 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0 },
{ "time": 0.3333, "x": 9.12, "y": -4.87, "curve": "stepped" },
{ "time": 0.7, "x": 9.12, "y": -4.87, "curve": "stepped" },
{ "time": 0.8, "x": 9.12, "y": -4.87, "curve": "stepped" },
{ "time": 0.9666, "x": 9.12, "y": -4.87, "curve": "stepped" },
{ "time": 1.8666, "x": 9.12, "y": -4.87, "curve": "stepped" },
{ "time": 2.2666, "x": 9.12, "y": -4.87 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0000_FLT_zuojiao": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": 10.27, "curve": "stepped" },
{ "time": 0.7, "angle": 10.27, "curve": "stepped" },
{ "time": 0.8, "angle": 10.27, "curve": "stepped" },
{ "time": 0.9666, "angle": 10.27, "curve": "stepped" },
{ "time": 1.8666, "angle": 10.27, "curve": "stepped" },
{ "time": 2.2666, "angle": 10.27 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0003_FLT_youjiao": {
"rotate": [
{ "time": 0, "angle": -14 },
{ "time": 0.1666, "angle": 9.89, "curve": "stepped" },
{ "time": 0.2666, "angle": 9.89 },
{ "time": 0.3333, "angle": -0.05, "curve": "stepped" },
{ "time": 0.7, "angle": -0.05, "curve": "stepped" },
{ "time": 0.8, "angle": -0.05, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.05, "curve": "stepped" },
{ "time": 1.8666, "angle": -0.05, "curve": "stepped" },
{ "time": 2.2666, "angle": -0.05 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 15.76, "y": 0 },
{ "time": 0.1666, "x": 6.27, "y": -1.06, "curve": "stepped" },
{ "time": 0.2666, "x": 6.27, "y": -1.06 },
{ "time": 0.3333, "x": 61.61, "y": -0.66, "curve": "stepped" },
{ "time": 0.7, "x": 61.61, "y": -0.66, "curve": "stepped" },
{ "time": 0.8, "x": 61.61, "y": -0.66, "curve": "stepped" },
{ "time": 0.9666, "x": 61.61, "y": -0.66, "curve": "stepped" },
{ "time": 1.8666, "x": 61.61, "y": -0.66, "curve": "stepped" },
{ "time": 2.2666, "x": 61.61, "y": -0.66 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0002_FLT_youjiao": {
"rotate": [
{ "time": 0, "angle": 13.6 },
{ "time": 0.1666, "angle": -9.56, "curve": "stepped" },
{ "time": 0.2666, "angle": -9.56 },
{ "time": 0.3333, "angle": -1.33, "curve": "stepped" },
{ "time": 0.7, "angle": -1.33, "curve": "stepped" },
{ "time": 0.8, "angle": -1.33, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.33, "curve": "stepped" },
{ "time": 1.8666, "angle": -1.33, "curve": "stepped" },
{ "time": 2.2666, "angle": -1.33 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0013_FLT_xiong": {
"rotate": [
{ "time": 0, "angle": -3.56 },
{ "time": 0.1666, "angle": 16.11, "curve": "stepped" },
{ "time": 0.2666, "angle": 16.11 },
{ "time": 0.3, "angle": -16.85 },
{ "time": 0.3333, "angle": -17.32 },
{ "time": 0.7, "angle": -12.92 },
{ "time": 0.8, "angle": -5.36 },
{ "time": 0.9666, "angle": -1.35, "curve": "stepped" },
{ "time": 1.8666, "angle": -1.35 },
{ "time": 2.2666, "angle": -2.15 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 8.77, "y": -5.9 },
{ "time": 0.1666, "x": -21.6, "y": 10.02 },
{ "time": 0.2666, "x": -19.71, "y": 17.58 },
{ "time": 0.3, "x": 6.1, "y": -13.83 },
{ "time": 0.3333, "x": 33.36, "y": -22.12, "curve": "stepped" },
{ "time": 0.7, "x": 33.36, "y": -22.12 },
{ "time": 0.8, "x": 9.49, "y": -28.41, "curve": "stepped" },
{ "time": 0.9666, "x": 9.49, "y": -28.41, "curve": "stepped" },
{ "time": 1.8666, "x": 9.49, "y": -28.41, "curve": "stepped" },
{ "time": 2.2666, "x": 9.49, "y": -28.41 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1.055, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1.055 },
{ "time": 0.3333, "x": 1, "y": 1.027, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1.027, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1.027, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1.027, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1.027, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1.027 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0021_FLT_pifeng": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1666, "angle": 347.15 },
{ "time": 0.2666, "angle": 345.01 },
{ "time": 0.3333, "angle": 281.65 },
{ "time": 0.5333, "angle": 6.42 },
{ "time": 0.7, "angle": 2.84, "curve": "stepped" },
{ "time": 0.8, "angle": 2.84, "curve": "stepped" },
{ "time": 0.9666, "angle": 2.84, "curve": "stepped" },
{ "time": 1.8666, "angle": 2.84, "curve": "stepped" },
{ "time": 2.2666, "angle": 2.84 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1666, "x": 1.24, "y": -3.69, "curve": "stepped" },
{ "time": 0.2666, "x": 1.24, "y": -3.69, "curve": "stepped" },
{ "time": 0.3333, "x": 1.24, "y": -3.69 },
{ "time": 0.7, "x": -3.5, "y": 12.62, "curve": "stepped" },
{ "time": 0.8, "x": -3.5, "y": 12.62, "curve": "stepped" },
{ "time": 0.9666, "x": -3.5, "y": 12.62, "curve": "stepped" },
{ "time": 1.8666, "x": -3.5, "y": 12.62, "curve": "stepped" },
{ "time": 2.2666, "x": -3.5, "y": 12.62 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": 6.84 },
{ "time": 0.5333, "angle": -17.58 },
{ "time": 0.7, "angle": 6.84 },
{ "time": 0.8, "angle": 1.62 },
{ "time": 0.9666, "angle": 6.84, "curve": "stepped" },
{ "time": 1.8666, "angle": 6.84 },
{ "time": 2.2666, "angle": 5.8 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone2": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": 6.84 },
{ "time": 0.5333, "angle": -17.58 },
{ "time": 0.7, "angle": -18.94, "curve": "stepped" },
{ "time": 0.8, "angle": -18.94 },
{ "time": 0.9666, "angle": -13.45, "curve": "stepped" },
{ "time": 1.8666, "angle": -13.45 },
{ "time": 2.2666, "angle": -14.55 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0 },
{ "time": 0.8, "x": -6.72, "y": 17.32 },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0 },
{ "time": 2.2666, "x": -1.34, "y": 3.46 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone3": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": 12.94 },
{ "time": 0.5333, "angle": -11.49 },
{ "time": 0.7, "angle": 26.05, "curve": "stepped" },
{ "time": 0.8, "angle": 26.05 },
{ "time": 0.9666, "angle": 9.13, "curve": "stepped" },
{ "time": 1.8666, "angle": 9.13 },
{ "time": 2.2666, "angle": 12.51 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1666, "x": 1.028, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1.028, "y": 1 },
{ "time": 0.3333, "x": 1.088, "y": 1 },
{ "time": 0.5333, "x": 1.05, "y": 1 },
{ "time": 0.7, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1.088, "y": 1 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone4": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3, "angle": 12.6 },
{ "time": 0.3333, "angle": 12.94 },
{ "time": 0.5333, "angle": -11.49 },
{ "time": 0.7, "angle": -12.85, "curve": "stepped" },
{ "time": 0.8, "angle": -12.85, "curve": "stepped" },
{ "time": 0.9666, "angle": -12.85, "curve": "stepped" },
{ "time": 1.8666, "angle": -12.85, "curve": "stepped" },
{ "time": 2.2666, "angle": -12.85 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1666, "x": 1.028, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1.028, "y": 1 },
{ "time": 0.3333, "x": 1.088, "y": 1 },
{ "time": 0.5333, "x": 1.05, "y": 1 },
{ "time": 0.7, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1.088, "y": 1 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone5": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3, "angle": 12.6 },
{ "time": 0.3333, "angle": 12.94 },
{ "time": 0.5333, "angle": -11.49 },
{ "time": 0.7, "angle": -12.85, "curve": "stepped" },
{ "time": 0.8, "angle": -12.85, "curve": "stepped" },
{ "time": 0.9666, "angle": -12.85, "curve": "stepped" },
{ "time": 1.8666, "angle": -12.85, "curve": "stepped" },
{ "time": 2.2666, "angle": -12.85 },
{ "time": 2.5, "angle": -9.28 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1666, "x": 1.028, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1.028, "y": 1 },
{ "time": 0.3333, "x": 1.088, "y": 1 },
{ "time": 0.5333, "x": 1.05, "y": 1 },
{ "time": 0.7, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1.088, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1.088, "y": 1 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone6": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3, "angle": 12.6 },
{ "time": 0.3333, "angle": 12.94 },
{ "time": 0.5333, "angle": -11.49 },
{ "time": 0.7, "angle": -20.89, "curve": "stepped" },
{ "time": 0.8, "angle": -20.89, "curve": "stepped" },
{ "time": 0.9666, "angle": -20.89, "curve": "stepped" },
{ "time": 1.8666, "angle": -20.89, "curve": "stepped" },
{ "time": 2.2666, "angle": -20.89 },
{ "time": 2.5, "angle": -9.28 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1 },
{ "time": 0.3333, "x": 1.058, "y": 1 },
{ "time": 0.5333, "x": 1.02, "y": 1 },
{ "time": 0.7, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1.058, "y": 1 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone7": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3, "angle": 12.6 },
{ "time": 0.3333, "angle": 12.94 },
{ "time": 0.5333, "angle": -11.49 },
{ "time": 0.7, "angle": -12.85, "curve": "stepped" },
{ "time": 0.8, "angle": -12.85, "curve": "stepped" },
{ "time": 0.9666, "angle": -12.85, "curve": "stepped" },
{ "time": 1.8666, "angle": -12.85, "curve": "stepped" },
{ "time": 2.2666, "angle": -12.85 },
{ "time": 2.5, "angle": -9.28 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1 },
{ "time": 0.3333, "x": 1.058, "y": 1 },
{ "time": 0.5333, "x": 1.02, "y": 1 },
{ "time": 0.7, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1.058, "y": 1 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone8": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3, "angle": 12.6 },
{ "time": 0.3333, "angle": 12.94 },
{ "time": 0.5333, "angle": -11.49 },
{ "time": 0.7, "angle": -12.85, "curve": "stepped" },
{ "time": 0.8, "angle": -12.85, "curve": "stepped" },
{ "time": 0.9666, "angle": -12.85, "curve": "stepped" },
{ "time": 1.8666, "angle": -12.85, "curve": "stepped" },
{ "time": 2.2666, "angle": -12.85 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1 },
{ "time": 0.3333, "x": 1.058, "y": 1 },
{ "time": 0.5333, "x": 1.02, "y": 1 },
{ "time": 0.7, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1.058, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1.058, "y": 1 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone9": {
"rotate": [
{ "time": 0, "angle": -14.85 },
{ "time": 0.1666, "angle": -1.28 },
{ "time": 0.2666, "angle": 0.44 },
{ "time": 0.3, "angle": -11.13 },
{ "time": 0.3333, "angle": -27.21 },
{ "time": 0.5333, "angle": -41.02 },
{ "time": 0.7, "angle": -24.24 },
{ "time": 0.8, "angle": -26.62 },
{ "time": 0.9666, "angle": -24.24, "curve": "stepped" },
{ "time": 1.8666, "angle": -24.24 },
{ "time": 2.2666, "angle": -24.71 },
{ "time": 2.5, "angle": -14.46 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1666, "x": 0.25, "y": 9.5 },
{ "time": 0.2666, "x": -0.12, "y": 11.89 },
{ "time": 0.3, "x": 11.28, "y": 24.8 },
{ "time": 0.3333, "x": -13.07, "y": 34.92 },
{ "time": 0.7, "x": -5.12, "y": 18.99, "curve": "stepped" },
{ "time": 0.8, "x": -5.12, "y": 18.99, "curve": "stepped" },
{ "time": 0.9666, "x": -5.12, "y": 18.99, "curve": "stepped" },
{ "time": 1.8666, "x": -5.12, "y": 18.99, "curve": "stepped" },
{ "time": 2.2666, "x": -5.12, "y": 18.99 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone10": {
"rotate": [
{ "time": 0, "angle": -1.4 },
{ "time": 0.1666, "angle": -2.47 },
{ "time": 0.2666, "angle": -2.6 },
{ "time": 0.3, "angle": 10.13 },
{ "time": 0.3333, "angle": 11.18 },
{ "time": 0.5333, "angle": -13.24 },
{ "time": 0.7, "angle": 11.18, "curve": "stepped" },
{ "time": 0.8, "angle": 11.18 },
{ "time": 0.9666, "angle": 3.08, "curve": "stepped" },
{ "time": 1.8666, "angle": 3.08 },
{ "time": 2.2666, "angle": 4.7 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1 },
{ "time": 0.9666, "x": 0.945, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 0.945, "y": 1 },
{ "time": 2.2666, "x": 0.956, "y": 1 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone11": {
"rotate": [
{ "time": 0, "angle": 3.25 },
{ "time": 0.1666, "angle": -2.48 },
{ "time": 0.2666, "angle": -2.62 },
{ "time": 0.3, "angle": 10.11 },
{ "time": 0.3333, "angle": 11.17 },
{ "time": 0.5333, "angle": -13.25 },
{ "time": 0.7, "angle": 11.17, "curve": "stepped" },
{ "time": 0.8, "angle": 11.17, "curve": "stepped" },
{ "time": 0.9666, "angle": 11.17, "curve": "stepped" },
{ "time": 1.8666, "angle": 11.17, "curve": "stepped" },
{ "time": 2.2666, "angle": 11.17 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone12": {
"rotate": [
{ "time": 0, "angle": 4.1 },
{ "time": 0.1666, "angle": -2.47 },
{ "time": 0.2666, "angle": 5.28 },
{ "time": 0.3, "angle": 18.02 },
{ "time": 0.3333, "angle": 19.08 },
{ "time": 0.5333, "angle": -5.34 },
{ "time": 0.7, "angle": 1.76 },
{ "time": 0.8, "angle": -3.77 },
{ "time": 0.9666, "angle": 1.76, "curve": "stepped" },
{ "time": 1.8666, "angle": 1.76 },
{ "time": 2.2666, "angle": 0.65 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone13": {
"rotate": [
{ "time": 0, "angle": 4.1 },
{ "time": 0.1666, "angle": -1.03 },
{ "time": 0.2666, "angle": 2.03 },
{ "time": 0.3, "angle": 14.77 },
{ "time": 0.3333, "angle": 8.95 },
{ "time": 0.5333, "angle": -8.59 },
{ "time": 0.7, "angle": 3.13 },
{ "time": 0.8, "angle": 11.83 },
{ "time": 0.9666, "angle": 3.13, "curve": "stepped" },
{ "time": 1.8666, "angle": 3.13 },
{ "time": 2.2666, "angle": 4.87 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1 },
{ "time": 0.3333, "x": 1.164, "y": 1 },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone14": {
"rotate": [
{ "time": 0, "angle": 8.71 },
{ "time": 0.1666, "angle": -3.81 },
{ "time": 0.2666, "angle": 8.85 },
{ "time": 0.3, "angle": 17.46 },
{ "time": 0.3333, "angle": 11.64 },
{ "time": 0.5333, "angle": -5.91 },
{ "time": 0.7, "angle": 9.9 },
{ "time": 0.8, "angle": 18.6 },
{ "time": 0.9666, "angle": 9.9, "curve": "stepped" },
{ "time": 1.8666, "angle": 9.9 },
{ "time": 2.2666, "angle": 11.64 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1 },
{ "time": 0.3333, "x": 1.164, "y": 1 },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone15": {
"rotate": [
{ "time": 0, "angle": 8.71 },
{ "time": 0.1666, "angle": 3.56 },
{ "time": 0.2666, "angle": 4.41 },
{ "time": 0.3, "angle": 24.84 },
{ "time": 0.3333, "angle": 19.02 },
{ "time": 0.5333, "angle": 1.46 },
{ "time": 0.7, "angle": 0.1 },
{ "time": 0.8, "angle": -23.49 },
{ "time": 0.9666, "angle": 0.1, "curve": "stepped" },
{ "time": 1.8666, "angle": 0.1 },
{ "time": 2.2666, "angle": -4.61 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0 },
{ "time": 0.2666, "x": -3.29, "y": 0.04 },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0 },
{ "time": 0.8, "x": -12.68, "y": 6.41 },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0 },
{ "time": 2.2666, "x": -2.53, "y": 1.28 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1 },
{ "time": 0.3333, "x": 1.164, "y": 1 },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone16": {
"rotate": [
{ "time": 0, "angle": 8.71 },
{ "time": 0.1666, "angle": 4.45 },
{ "time": 0.2666, "angle": 21.15 },
{ "time": 0.3, "angle": 25.73 },
{ "time": 0.3333, "angle": 19.91 },
{ "time": 0.5333, "angle": 2.35 },
{ "time": 0.7, "angle": 0.99, "curve": "stepped" },
{ "time": 0.8, "angle": 0.99, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.99, "curve": "stepped" },
{ "time": 1.8666, "angle": 0.99, "curve": "stepped" },
{ "time": 2.2666, "angle": 0.99 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1 },
{ "time": 0.3333, "x": 1.164, "y": 1 },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone17": {
"rotate": [
{ "time": 0, "angle": 34.14 },
{ "time": 0.1666, "angle": 8.02 },
{ "time": 0.2666, "angle": 5.28 },
{ "time": 0.3, "angle": 25.42 },
{ "time": 0.3333, "angle": 24.96 },
{ "time": 0.5333, "angle": 2.57 },
{ "time": 0.7, "angle": 16.41, "curve": "stepped" },
{ "time": 0.8, "angle": 16.41, "curve": "stepped" },
{ "time": 0.9666, "angle": 16.41, "curve": "stepped" },
{ "time": 1.8666, "angle": 16.41, "curve": "stepped" },
{ "time": 2.2666, "angle": 16.41 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0 },
{ "time": 0.3, "x": -36.86, "y": -34.48 },
{ "time": 0.3333, "x": -18.96, "y": -14.27 },
{ "time": 0.7, "x": -19.76, "y": -6.45, "curve": "stepped" },
{ "time": 0.8, "x": -19.76, "y": -6.45, "curve": "stepped" },
{ "time": 0.9666, "x": -19.76, "y": -6.45, "curve": "stepped" },
{ "time": 1.8666, "x": -19.76, "y": -6.45, "curve": "stepped" },
{ "time": 2.2666, "x": -19.76, "y": -6.45 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone18": {
"rotate": [
{ "time": 0, "angle": -8.87 },
{ "time": 0.1666, "angle": -4.9, "curve": "stepped" },
{ "time": 0.2666, "angle": -4.9 },
{ "time": 0.3333, "angle": 8.03 },
{ "time": 0.5333, "angle": -20.15 },
{ "time": 0.7, "angle": -18.32, "curve": "stepped" },
{ "time": 0.8, "angle": -18.32, "curve": "stepped" },
{ "time": 0.9666, "angle": -18.32, "curve": "stepped" },
{ "time": 1.8666, "angle": -18.32, "curve": "stepped" },
{ "time": 2.2666, "angle": -18.32 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone19": {
"rotate": [
{ "time": 0, "angle": -8.14 },
{ "time": 0.1666, "angle": -2.27, "curve": "stepped" },
{ "time": 0.2666, "angle": -2.27 },
{ "time": 0.3, "angle": 20.69 },
{ "time": 0.3333, "angle": 10.66 },
{ "time": 0.5333, "angle": -17.51 },
{ "time": 0.7, "angle": 0.67 },
{ "time": 0.8, "angle": 14.57 },
{ "time": 0.9666, "angle": 0.67, "curve": "stepped" },
{ "time": 1.8666, "angle": 0.67 },
{ "time": 2.2666, "angle": 3.45 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone20": {
"rotate": [
{ "time": 0, "angle": -2.67 },
{ "time": 0.1666, "angle": -3.77, "curve": "stepped" },
{ "time": 0.2666, "angle": -3.77 },
{ "time": 0.3333, "angle": 9.16 },
{ "time": 0.5333, "angle": -19.01 },
{ "time": 0.7, "angle": -1.57, "curve": "stepped" },
{ "time": 0.8, "angle": -1.57, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.57, "curve": "stepped" },
{ "time": 1.8666, "angle": -1.57, "curve": "stepped" },
{ "time": 2.2666, "angle": -1.57 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone21": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1666, "angle": -1.76, "curve": "stepped" },
{ "time": 0.2666, "angle": -1.76 },
{ "time": 0.3333, "angle": 5.08 },
{ "time": 0.5333, "angle": -23.1 },
{ "time": 0.7, "angle": -2.24 },
{ "time": 0.8, "angle": 6.79 },
{ "time": 0.9666, "angle": -2.24, "curve": "stepped" },
{ "time": 1.8666, "angle": -2.24 },
{ "time": 2.2666, "angle": -0.43 },
{ "time": 2.5333, "angle": 14.57 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone22": {
"rotate": [
{ "time": 0, "angle": -10.57 },
{ "time": 0.1666, "angle": -3.26, "curve": "stepped" },
{ "time": 0.2666, "angle": -3.26 },
{ "time": 0.3333, "angle": 3.57 },
{ "time": 0.5333, "angle": -24.6 },
{ "time": 0.7, "angle": -0.02, "curve": "stepped" },
{ "time": 0.8, "angle": -0.02, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.02, "curve": "stepped" },
{ "time": 1.8666, "angle": -0.02, "curve": "stepped" },
{ "time": 2.2666, "angle": -0.02 },
{ "time": 2.5, "angle": -35.7 },
{ "time": 2.5333, "angle": -41.15 },
{ "time": 2.5666, "angle": -20.04 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1 },
{ "time": 2.5666, "x": 0.894, "y": 1 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone23": {
"rotate": [
{ "time": 0, "angle": -10.57 },
{ "time": 0.1666, "angle": -3.26 },
{ "time": 0.2666, "angle": -8.22 },
{ "time": 0.3333, "angle": -1.37 },
{ "time": 0.5333, "angle": -29.56 },
{ "time": 0.7, "angle": -68.57 },
{ "time": 0.8, "angle": -85.88 },
{ "time": 0.9666, "angle": -68.57, "curve": "stepped" },
{ "time": 1.8666, "angle": -68.57 },
{ "time": 2.2666, "angle": -72.03 },
{ "time": 2.5, "angle": -35.64 },
{ "time": 2.5666, "angle": -11.34 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1 },
{ "time": 2.5333, "x": 0.638, "y": 1 },
{ "time": 2.5666, "x": 0.732, "y": 1 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone24": {
"rotate": [
{ "time": 0, "angle": -10.57 },
{ "time": 0.1666, "angle": -4.76 },
{ "time": 0.2666, "angle": -9.71 },
{ "time": 0.3333, "angle": -2.87 },
{ "time": 0.7, "angle": -48.94, "curve": "stepped" },
{ "time": 0.8, "angle": -48.94, "curve": "stepped" },
{ "time": 0.9666, "angle": -48.94, "curve": "stepped" },
{ "time": 1.8666, "angle": -48.94, "curve": "stepped" },
{ "time": 2.2666, "angle": -48.94 },
{ "time": 2.5, "angle": -36.2 },
{ "time": 2.5666, "angle": -11.53 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1 },
{ "time": 0.5333, "x": 0.964, "y": 1 },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1 },
{ "time": 2.5333, "x": 0.638, "y": 1 },
{ "time": 2.5666, "x": 0.732, "y": 1 },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0010_FLT_yaodai": {
"rotate": [
{ "time": 0, "angle": 11.72 },
{ "time": 0.1666, "angle": 10, "curve": "stepped" },
{ "time": 0.2666, "angle": 10 },
{ "time": 0.3, "angle": 16.83 },
{ "time": 0.3333, "angle": 5.79 },
{ "time": 0.5333, "angle": 14.17 },
{ "time": 0.7, "angle": 9.44 },
{ "time": 0.8, "angle": 21.67, "curve": "stepped" },
{ "time": 0.9666, "angle": 21.67, "curve": "stepped" },
{ "time": 1.8666, "angle": 21.67, "curve": "stepped" },
{ "time": 2.2666, "angle": 21.67 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 4.48, "y": -1.14 },
{ "time": 0.1666, "x": -22.17, "y": 10.96 },
{ "time": 0.2666, "x": -20.28, "y": 18.52 },
{ "time": 0.3, "x": -3.14, "y": -12.17 },
{ "time": 0.3333, "x": 28.34, "y": -20.62 },
{ "time": 0.5333, "x": 32.82, "y": -19.73 },
{ "time": 0.7, "x": 28.34, "y": -20.62 },
{ "time": 0.8, "x": 8.31, "y": -25.63, "curve": "stepped" },
{ "time": 0.9666, "x": 8.31, "y": -25.63, "curve": "stepped" },
{ "time": 1.8666, "x": 8.31, "y": -25.63, "curve": "stepped" },
{ "time": 2.2666, "x": 8.31, "y": -25.63 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1666, "x": 1.065, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1.065, "y": 1 },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0012_FLT_kuabu": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2.2666, "angle": 0, "curve": "stepped" },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0011_FLT_bu01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": 3.42, "curve": "stepped" },
{ "time": 0.7, "angle": 3.42, "curve": "stepped" },
{ "time": 0.8, "angle": 3.42, "curve": "stepped" },
{ "time": 0.9666, "angle": 3.42, "curve": "stepped" },
{ "time": 1.8666, "angle": 3.42, "curve": "stepped" },
{ "time": 2.2666, "angle": 3.42 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone25": {
"rotate": [
{ "time": 0, "angle": -2.16 },
{ "time": 0.1666, "angle": 11.31 },
{ "time": 0.2666, "angle": -1.1 },
{ "time": 0.3333, "angle": 27.47 },
{ "time": 0.7, "angle": -5.66 },
{ "time": 0.8, "angle": 9.82 },
{ "time": 0.9666, "angle": -13.09, "curve": "stepped" },
{ "time": 1.8666, "angle": -13.09 },
{ "time": 2.2666, "angle": -8.5 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone26": {
"rotate": [
{ "time": 0, "angle": -2.16 },
{ "time": 0.1666, "angle": 28.86 },
{ "time": 0.2666, "angle": -8.18 },
{ "time": 0.3333, "angle": 31.76 },
{ "time": 0.7, "angle": -4.92 },
{ "time": 0.8, "angle": 18.14 },
{ "time": 0.9666, "angle": -5.48, "curve": "stepped" },
{ "time": 1.8666, "angle": -5.48 },
{ "time": 2.2666, "angle": -0.75 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone27": {
"rotate": [
{ "time": 0, "angle": -15.59 },
{ "time": 0.1666, "angle": 9.62 },
{ "time": 0.2666, "angle": 5.58 },
{ "time": 0.3333, "angle": 42.79 },
{ "time": 0.7, "angle": -3.66 },
{ "time": 0.8, "angle": 13.45 },
{ "time": 0.9666, "angle": -10.16, "curve": "stepped" },
{ "time": 1.8666, "angle": -10.16 },
{ "time": 2.2666, "angle": -5.44 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone28": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1666, "angle": 19.4 },
{ "time": 0.2666, "angle": 7.39 },
{ "time": 0.3333, "angle": -1.29, "curve": "stepped" },
{ "time": 0.7, "angle": -1.29 },
{ "time": 0.8, "angle": 11.82, "curve": "stepped" },
{ "time": 0.9666, "angle": 11.82, "curve": "stepped" },
{ "time": 1.8666, "angle": 11.82, "curve": "stepped" },
{ "time": 2.2666, "angle": 11.82 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0006_FLT_zuojian": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1666, "angle": 74.95 },
{ "time": 0.2666, "angle": 88.36 },
{ "time": 0.3333, "angle": 38.55 },
{ "time": 0.7, "angle": 43.63 },
{ "time": 0.8, "angle": 55.36 },
{ "time": 0.9666, "angle": 43.63, "curve": "stepped" },
{ "time": 1.8666, "angle": 43.63 },
{ "time": 2.2666, "angle": 45.97 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1666, "x": 5.46, "y": 7.1 },
{ "time": 0.2666, "x": 5.19, "y": 5.55 },
{ "time": 0.3333, "x": 15.25, "y": 12.98, "curve": "stepped" },
{ "time": 0.7, "x": 15.25, "y": 12.98, "curve": "stepped" },
{ "time": 0.8, "x": 15.25, "y": 12.98, "curve": "stepped" },
{ "time": 0.9666, "x": 15.25, "y": 12.98, "curve": "stepped" },
{ "time": 1.8666, "x": 15.25, "y": 12.98, "curve": "stepped" },
{ "time": 2.2666, "x": 15.25, "y": 12.98 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0019_FLT_zuojian02": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2.2666, "angle": 0, "curve": "stepped" },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0020_FLT_youjian": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1666, "angle": 77.76 },
{ "time": 0.2666, "angle": 81.46 },
{ "time": 0.3333, "angle": 102.32 },
{ "time": 0.7, "angle": 101.33 },
{ "time": 0.8, "angle": 77.21 },
{ "time": 0.9666, "angle": 65.83, "curve": "stepped" },
{ "time": 1.8666, "angle": 65.83 },
{ "time": 2.2666, "angle": 68.11 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1666, "x": -5.58, "y": 11.25 },
{ "time": 0.2666, "x": -2.57, "y": 18.75 },
{ "time": 0.3333, "x": -0.41, "y": 4.23 },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0016_FLT_youxiaobi": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1666, "angle": 144.39, "curve": "stepped" },
{ "time": 0.2666, "angle": 144.39 },
{ "time": 0.3, "angle": 90.51 },
{ "time": 0.3333, "angle": 86.6, "curve": "stepped" },
{ "time": 0.7, "angle": 86.6, "curve": "stepped" },
{ "time": 0.8, "angle": 86.6, "curve": "stepped" },
{ "time": 0.9666, "angle": 86.6, "curve": "stepped" },
{ "time": 1.8666, "angle": 86.6, "curve": "stepped" },
{ "time": 2.2666, "angle": 86.6 },
{ "time": 2.4666, "angle": 45.71 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 32.34, "y": 8.28 },
{ "time": 0.1666, "x": -84.36, "y": 158.97 },
{ "time": 0.2666, "x": -122.7, "y": 215.21 },
{ "time": 0.3, "x": 22.9, "y": 167.41 },
{ "time": 0.3333, "x": 74.44, "y": 81.61, "curve": "stepped" },
{ "time": 0.7, "x": 74.44, "y": 81.61, "curve": "stepped" },
{ "time": 0.8, "x": 74.44, "y": 81.61, "curve": "stepped" },
{ "time": 0.9666, "x": 74.44, "y": 81.61, "curve": "stepped" },
{ "time": 1.8666, "x": 74.44, "y": 81.61, "curve": "stepped" },
{ "time": 2.2666, "x": 74.44, "y": 81.61 },
{ "time": 2.4666, "x": 62.07, "y": -3.86 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0014_FLT_youshou01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0 },
{ "time": 0.2666, "angle": 4.89 },
{ "time": 0.3333, "angle": -18.32, "curve": "stepped" },
{ "time": 0.7, "angle": -18.32, "curve": "stepped" },
{ "time": 0.8, "angle": -18.32, "curve": "stepped" },
{ "time": 0.9666, "angle": -18.32, "curve": "stepped" },
{ "time": 1.8666, "angle": -18.32, "curve": "stepped" },
{ "time": 2.2666, "angle": -18.32 },
{ "time": 2.4666, "angle": 10.91 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0 },
{ "time": 0.3333, "x": -2.95, "y": -4.62, "curve": "stepped" },
{ "time": 0.7, "x": -2.95, "y": -4.62, "curve": "stepped" },
{ "time": 0.8, "x": -2.95, "y": -4.62, "curve": "stepped" },
{ "time": 0.9666, "x": -2.95, "y": -4.62, "curve": "stepped" },
{ "time": 1.8666, "x": -2.95, "y": -4.62, "curve": "stepped" },
{ "time": 2.2666, "x": -2.95, "y": -4.62 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0022_FLT_zhuangshi": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2.2666, "angle": 0, "curve": "stepped" },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0009_FLT_tou": {
"rotate": [
{ "time": 0, "angle": -11.25 },
{ "time": 0.1666, "angle": 6.08 },
{ "time": 0.2666, "angle": 22.53 },
{ "time": 0.3, "angle": -20.88 },
{ "time": 0.3333, "angle": -28.55 },
{ "time": 0.7, "angle": -23.88 },
{ "time": 0.8, "angle": -13.4 },
{ "time": 0.9666, "angle": -4.72, "curve": "stepped" },
{ "time": 1.8666, "angle": -4.72 },
{ "time": 2.2666, "angle": -6.46 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 12.76, "y": -14.31 },
{ "time": 0.1666, "x": -39.96, "y": 9.57 },
{ "time": 0.2666, "x": -38.07, "y": 17.13 },
{ "time": 0.3, "x": 26.62, "y": -32.3 },
{ "time": 0.3333, "x": 46.52, "y": -48.87 },
{ "time": 0.7, "x": 48.84, "y": -45.39 },
{ "time": 0.8, "x": 19.86, "y": -44.01 },
{ "time": 0.9666, "x": 14.53, "y": -42.23, "curve": "stepped" },
{ "time": 1.8666, "x": 14.53, "y": -42.23 },
{ "time": 2.2666, "x": 15.59, "y": -42.59 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0008_FLT_yan": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2.2666, "angle": 0, "curve": "stepped" },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0007_FLT_toufa": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2.2666, "angle": 0, "curve": "stepped" },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone29": {
"rotate": [
{ "time": 0, "angle": -9.81 },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": -26.3 },
{ "time": 0.4666, "angle": -37.39 },
{ "time": 0.7, "angle": -20.44 },
{ "time": 0.8, "angle": -26.3, "curve": "stepped" },
{ "time": 0.9666, "angle": -26.3, "curve": "stepped" },
{ "time": 1.8666, "angle": -26.3, "curve": "stepped" },
{ "time": 2.2666, "angle": -26.3 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone30": {
"rotate": [
{ "time": 0, "angle": -7.15 },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": -0.82 },
{ "time": 0.4666, "angle": -17.78 },
{ "time": 0.7, "angle": 20.18 },
{ "time": 0.8, "angle": 27.34 },
{ "time": 0.9666, "angle": 14.32, "curve": "stepped" },
{ "time": 1.8666, "angle": 14.32 },
{ "time": 2.2666, "angle": 16.93 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone31": {
"rotate": [
{ "time": 0, "angle": -7.71 },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": -21.29, "curve": "stepped" },
{ "time": 0.7, "angle": -21.29, "curve": "stepped" },
{ "time": 0.8, "angle": -21.29, "curve": "stepped" },
{ "time": 0.9666, "angle": -21.29, "curve": "stepped" },
{ "time": 1.8666, "angle": -21.29, "curve": "stepped" },
{ "time": 2.2666, "angle": -21.29 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone32": {
"rotate": [
{ "time": 0, "angle": -21.5 },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": -21.54 },
{ "time": 0.4666, "angle": -31.87 },
{ "time": 0.7, "angle": 4.66 },
{ "time": 0.8, "angle": 6.62 },
{ "time": 0.9666, "angle": -6.39, "curve": "stepped" },
{ "time": 1.8666, "angle": -6.39 },
{ "time": 2.2666, "angle": -3.78 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone33": {
"rotate": [
{ "time": 0, "angle": -10.88 },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": 0.63 },
{ "time": 0.4666, "angle": -15.19 },
{ "time": 0.7, "angle": 11.68 },
{ "time": 0.8, "angle": 0.63, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.63, "curve": "stepped" },
{ "time": 1.8666, "angle": 0.63, "curve": "stepped" },
{ "time": 2.2666, "angle": 0.63 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone34": {
"rotate": [
{ "time": 0, "angle": -6.08 },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": -22.71, "curve": "stepped" },
{ "time": 0.7, "angle": -22.71, "curve": "stepped" },
{ "time": 0.8, "angle": -22.71, "curve": "stepped" },
{ "time": 0.9666, "angle": -22.71, "curve": "stepped" },
{ "time": 1.8666, "angle": -22.71, "curve": "stepped" },
{ "time": 2.2666, "angle": -22.71 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone35": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": -23.15 },
{ "time": 0.4666, "angle": -24.46 },
{ "time": 0.7, "angle": 10.83 },
{ "time": 0.8, "angle": 5.01 },
{ "time": 0.9666, "angle": -8, "curve": "stepped" },
{ "time": 1.8666, "angle": -8 },
{ "time": 2.2666, "angle": -5.4 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bone36": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.3333, "angle": -8 },
{ "time": 0.4666, "angle": -14.82 },
{ "time": 0.7, "angle": 10.83 },
{ "time": 0.8, "angle": -8, "curve": "stepped" },
{ "time": 0.9666, "angle": -8, "curve": "stepped" },
{ "time": 1.8666, "angle": -8, "curve": "stepped" },
{ "time": 2.2666, "angle": -8 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0004_FLT_zuoshou": {
"rotate": [
{ "time": 0, "angle": 3.66 },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.7, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2.2666, "angle": 0, "curve": "stepped" },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"images/FLT_0005s_0018_FLT_qiang02": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 78.93 },
{ "time": 0.1666, "angle": 135.37 },
{ "time": 0.2666, "angle": 143.6 },
{ "time": 0.3, "angle": 89.49 },
{ "time": 0.3333, "angle": 75.92, "curve": "stepped" },
{ "time": 0.7, "angle": 75.92, "curve": "stepped" },
{ "time": 0.8, "angle": 75.92, "curve": "stepped" },
{ "time": 0.9666, "angle": 75.92, "curve": "stepped" },
{ "time": 1.8666, "angle": 75.92, "curve": "stepped" },
{ "time": 2.2666, "angle": 75.92 },
{ "time": 2.4666, "angle": 27.17 },
{ "time": 2.6, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 32.34, "y": 8.28 },
{ "time": 0.0666, "x": 94.53, "y": 30.42 },
{ "time": 0.1666, "x": 138.91, "y": 234.77 },
{ "time": 0.2666, "x": 95.45, "y": 308.92 },
{ "time": 0.3, "x": 195.94, "y": 152.21 },
{ "time": 0.3333, "x": 216.31, "y": 69.35, "curve": "stepped" },
{ "time": 0.7, "x": 216.31, "y": 69.35, "curve": "stepped" },
{ "time": 0.8, "x": 216.31, "y": 69.35, "curve": "stepped" },
{ "time": 0.9666, "x": 216.31, "y": 69.35, "curve": "stepped" },
{ "time": 1.8666, "x": 216.31, "y": 69.35, "curve": "stepped" },
{ "time": 2.2666, "x": 216.31, "y": 69.35 },
{ "time": 2.4666, "x": 130.87, "y": -9.86 },
{ "time": 2.6, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.6, "x": 1, "y": 1 }
]
},
"bengkai": {
"translate": [
{ "time": 0.3333, "x": 378.28, "y": -399.46 }
]
},
"images/Eff/gongshou_guang": {
"rotate": [
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.1333, "angle": 0, "curve": "stepped" },
{ "time": 1.4666, "angle": 0, "curve": "stepped" },
{ "time": 1.6333, "angle": 0, "curve": "stepped" },
{ "time": 1.9666, "angle": 0, "curve": "stepped" },
{ "time": 2.1333, "angle": 0 }
],
"translate": [
{ "time": 0.9666, "x": 748.34, "y": 0, "curve": "stepped" },
{ "time": 1.1333, "x": 748.34, "y": 0 },
{ "time": 1.4666, "x": 1196.06, "y": 0, "curve": "stepped" },
{ "time": 1.6333, "x": 1196.06, "y": 0 },
{ "time": 1.9666, "x": 679.64, "y": 0 },
{ "time": 2.1333, "x": 682.35, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1 }
],
"shear": [
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0 }
]
},
"images/Eff/gongshou_jian": {
"rotate": [
{ "time": 0.9, "angle": -60.36 },
{ "time": 0.9666, "angle": -62.15, "curve": "stepped" },
{ "time": 1.1333, "angle": -62.15, "curve": "stepped" },
{ "time": 1.4, "angle": -62.15 },
{ "time": 1.4666, "angle": -63.2, "curve": "stepped" },
{ "time": 1.6333, "angle": -63.2 },
{ "time": 1.9, "angle": -62.15 },
{ "time": 1.9666, "angle": -63.2, "curve": "stepped" },
{ "time": 2.1333, "angle": -63.2 }
],
"translate": [
{ "time": 0.9, "x": 634.83, "y": -161.13 },
{ "time": 0.9666, "x": 799.36, "y": -492.84, "curve": "stepped" },
{ "time": 1.1333, "x": 799.36, "y": -492.84 },
{ "time": 1.4, "x": 1064.6, "y": -52.8 },
{ "time": 1.4666, "x": 1248.22, "y": -492.84, "curve": "stepped" },
{ "time": 1.6333, "x": 1248.22, "y": -492.84 },
{ "time": 1.9, "x": 1064.6, "y": -52.8 },
{ "time": 1.9666, "x": 731.8, "y": -492.84 },
{ "time": 2.1333, "x": 734.52, "y": -492.84 }
],
"scale": [
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1 }
],
"shear": [
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0 }
]
},
"images/Eff/gongshou_guang2": {
"rotate": [
{ "time": 1.1333, "angle": 0, "curve": "stepped" },
{ "time": 1.3, "angle": 0, "curve": "stepped" },
{ "time": 1.6333, "angle": 0, "curve": "stepped" },
{ "time": 1.8, "angle": 0, "curve": "stepped" },
{ "time": 2.1, "angle": 0, "curve": "stepped" },
{ "time": 2.2666, "angle": 0 }
],
"translate": [
{ "time": 1.1333, "x": 971.53, "y": 0, "curve": "stepped" },
{ "time": 1.3, "x": 971.53, "y": 0 },
{ "time": 1.6333, "x": 1396.42, "y": 0, "curve": "stepped" },
{ "time": 1.8, "x": 1396.42, "y": 0 },
{ "time": 2.0333, "x": 880, "y": 0 },
{ "time": 2.1, "x": 882.72, "y": 0 },
{ "time": 2.2666, "x": 880.91, "y": 0 }
],
"scale": [
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1 }
],
"shear": [
{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0 }
]
},
"images/Eff/gongshou_jian2": {
"rotate": [
{ "time": 1.0666, "angle": -57.66 },
{ "time": 1.1333, "angle": -63.36, "curve": "stepped" },
{ "time": 1.3, "angle": -63.36, "curve": "stepped" },
{ "time": 1.5666, "angle": -63.36, "curve": "stepped" },
{ "time": 1.6333, "angle": -63.36, "curve": "stepped" },
{ "time": 1.8, "angle": -63.36, "curve": "stepped" },
{ "time": 2.0333, "angle": -63.36, "curve": "stepped" },
{ "time": 2.1, "angle": -63.36, "curve": "stepped" },
{ "time": 2.2666, "angle": -63.36 }
],
"translate": [
{ "time": 1.0666, "x": 766.92, "y": 0 },
{ "time": 1.1333, "x": 1004.23, "y": -491.65, "curve": "stepped" },
{ "time": 1.3, "x": 1004.23, "y": -491.65 },
{ "time": 1.5666, "x": 1232.55, "y": -84.84 },
{ "time": 1.6333, "x": 1434.22, "y": -502.08, "curve": "stepped" },
{ "time": 1.8, "x": 1434.22, "y": -502.08 },
{ "time": 2.0333, "x": 716.13, "y": -84.84 },
{ "time": 2.1, "x": 920.52, "y": -502.08 },
{ "time": 2.2666, "x": 918.7, "y": -502.08 }
],
"scale": [
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.2666, "x": 1, "y": 1 }
],
"shear": [
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2666, "x": 0, "y": 0 }
]
},
"images/Eff/gongshou_guang3": {
"rotate": [
{ "time": 1.3, "angle": 0, "curve": "stepped" },
{ "time": 1.4666, "angle": 0, "curve": "stepped" },
{ "time": 1.8, "angle": 0, "curve": "stepped" },
{ "time": 1.9666, "angle": 0 }
],
"translate": [
{ "time": 1.3, "x": 1199.22, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 1199.22, "y": 0 },
{ "time": 1.8, "x": 1603.25, "y": 0, "curve": "stepped" },
{ "time": 1.9666, "x": 1603.25, "y": 0 }
],
"scale": [
{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9666, "x": 1, "y": 1 }
],
"shear": [
{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9666, "x": 0, "y": 0 }
]
},
"images/Eff/gongshou_jian3": {
"rotate": [
{ "time": 1.2333, "angle": -58.02 },
{ "time": 1.3, "angle": -64.25, "curve": "stepped" },
{ "time": 1.4666, "angle": -64.25 },
{ "time": 1.7333, "angle": -58.02 },
{ "time": 1.8, "angle": -64.25, "curve": "stepped" },
{ "time": 1.9666, "angle": -64.25 }
],
"translate": [
{ "time": 1.2333, "x": 994.26, "y": 0 },
{ "time": 1.3, "x": 1230.99, "y": -500.88, "curve": "stepped" },
{ "time": 1.4666, "x": 1230.99, "y": -500.88 },
{ "time": 1.7333, "x": 1416.94, "y": 0 },
{ "time": 1.8, "x": 1636.57, "y": -500.88, "curve": "stepped" },
{ "time": 1.9666, "x": 1636.57, "y": -500.88 }
],
"scale": [
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9666, "x": 1, "y": 1 }
],
"shear": [
{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9666, "x": 0, "y": 0 }
]
}
},
"deform": {
"default": {
"images/Eff/gongshou_guang": {
"images/Eff/gongshou_guang": [
{
"time": 0.9666,
"offset": 4,
"vertices": [ -249.77995, 0, -249.77995 ]
},
{
"time": 1.1333,
"vertices": [ 6.89801, 0, -3.449, 0, -253.22897, 0, -242.88196 ]
},
{
"time": 1.4666,
"vertices": [ -0.79699, 0, 0.82595, 0, -248.95403, 0, -250.57697 ]
},
{
"time": 1.6333,
"vertices": [ 6.89801, 0, -6.86904, 0, -256.64902, 0, -242.88196 ]
},
{
"time": 1.9666,
"vertices": [ -0.79699, 0, 0.82595, 0, -248.95403, 0, -250.57697 ]
},
{
"time": 2.1333,
"vertices": [ 6.89801, 0, -6.86904, 0, -256.64902, 0, -242.88196 ]
}
]
},
"images/Eff/gongshou_guang2": {
"images/Eff/gongshou_guang": [
{
"time": 1.1333,
"offset": 4,
"vertices": [ -251.62036, 0, -251.62036 ]
},
{
"time": 1.3,
"vertices": [ 7.45239, 0, -7.45239, 0, -259.07275, 0, -244.16795 ]
},
{
"time": 1.6333,
"vertices": [ 0.03649, 0, -3.33251, 0, -254.95288, 0, -251.58386 ]
},
{
"time": 1.8,
"vertices": [ 11.0404, 0, -14.33642, 0, -265.9568, 0, -240.57996 ]
},
{
"time": 2.1,
"vertices": [ 0.03649, 0, -3.33251, 0, -254.95288, 0, -251.58386 ]
},
{
"time": 2.2666,
"vertices": [ 11.0404, 0, -14.33642, 0, -265.9568, 0, -240.57996 ]
}
]
},
"images/Eff/gongshou_guang3": {
"images/Eff/gongshou_guang": [
{
"time": 1.3,
"offset": 4,
"vertices": [ -248.45074, 0, -248.45074 ]
},
{
"time": 1.4666,
"vertices": [ 12.208, 0, -10.68206, 0, -259.1328, 0, -236.24274 ]
},
{
"time": 1.8,
"vertices": [ -0.01403, 0, 2.65582, 0, -245.79492, 0, -248.46478 ]
},
{
"time": 1.9666,
"vertices": [ 9.22595, 0, -5.35223, 0, -253.80298, 0, -239.2248 ]
}
]
}
}
},
"drawOrder": [
{
"time": 0.1666,
"offsets": [
{ "slot": "images/FLT_0005s_0018_FLT_qiang02", "offset": 10 },
{ "slot": "images/FLT_0005s_0017_FLT_qiang01", "offset": 10 },
{ "slot": "images/FLT_0005s_0014_FLT_youshou01", "offset": 10 }
]
}
],
"events": [
{ "time": 0.3666, "name": "special" },
{ "time": 0.9666, "name": "special" },
{ "time": 1.1333, "name": "special" },
{ "time": 1.3, "name": "special" },
{ "time": 1.4666, "name": "special" },
{ "time": 1.6333, "name": "special" },
{ "time": 1.8, "name": "special" },
{ "time": 1.9666, "name": "special" },
{ "time": 2.1333, "name": "special" },
{ "time": 2.2666, "name": "special" }
]
},
"atkidle1": {
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
}
}
},
"hurt1": {
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
}
}
},
"hurtidle1": {
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
}
}
},
"idle1": {
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
}
}
},
"move": {
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
}
}
},
"moveend": {
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
}
}
}
}
}