Blame view

res/tiledmaps/mechanism/shengzi_npc.json 154 KB
f7b13bdd   zhengshouren   auto package
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
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
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
  {
  "skeleton": { "hash": "+dFDp6qK9Re7LUhpbDhh6Ho4C1k", "spine": "3.4.02", "width": 281.21, "height": 323.8, "images": "" },
  "bones": [
  	{ "name": "root" },
  	{ "name": "images/shengzi_0001s_0014_shengzi_bu", "parent": "root", "length": 20.77, "rotation": -90, "x": -1.61, "y": 138.04 },
  	{ "name": "bone", "parent": "images/shengzi_0001s_0014_shengzi_bu", "length": 24.79, "x": 20.77 },
  	{ "name": "bone2", "parent": "bone", "length": 26.13, "rotation": -1.46, "x": 24.79 },
  	{ "name": "bone3", "parent": "bone2", "length": 23.45, "rotation": 1.46, "x": 26.13 },
  	{ "name": "bone4", "parent": "bone3", "length": 21.45, "rotation": 1.78, "x": 23.45 },
  	{ "name": "bone5", "parent": "bone4", "length": 22.86, "rotation": 3.25, "x": 21.45 },
  	{ "name": "images/shengzi_0000s_0029_shengzi_bei", "parent": "root", "length": 21.6, "rotation": -97.12, "x": -3.28, "y": 149.57 },
  	{ "name": "bone6", "parent": "images/shengzi_0000s_0029_shengzi_bei", "length": 18.8, "rotation": 3.03, "x": 23.35, "y": 2.24 },
  	{ "name": "bone7", "parent": "bone6", "length": 18.09, "rotation": 4.08, "x": 19.47, "y": 0.04 },
  	{ "name": "bone8", "parent": "bone7", "length": 16.09, "rotation": 2.38, "x": 18.09 },
  	{ "name": "bone9", "parent": "bone8", "length": 18.1, "rotation": -4.5, "x": 16.09 },
  	{ "name": "bone10", "parent": "bone9", "length": 17.42, "rotation": 2.12, "x": 18.79, "y": -0.64 },
  	{ "name": "bone11", "parent": "bone10", "length": 19.43, "x": 17.42 },
  	{ "name": "bone12", "parent": "bone11", "length": 16.09, "rotation": 2.38, "x": 20.09 },
  	{ "name": "bone13", "parent": "images/shengzi_0000s_0029_shengzi_bei", "length": 20.98, "rotation": -9.57, "x": 11.8, "y": -18.78 },
  	{ "name": "bone14", "parent": "bone13", "length": 22.6, "rotation": 4.72, "x": 23.93, "y": -0.51 },
  	{ "name": "bone15", "parent": "bone14", "length": 22.91, "rotation": -3.27, "x": 22.6 },
  	{ "name": "bone16", "parent": "bone15", "length": 24.7, "rotation": 2.72, "x": 23.56, "y": 0.17 },
  	{ "name": "bone17", "parent": "bone16", "length": 23.76, "rotation": -8.97, "x": 24.7 },
  	{ "name": "bone18", "parent": "bone17", "length": 20.25, "rotation": -12.71, "x": 23.76 },
  	{ "name": "bone19", "parent": "bone18", "length": 14.33, "rotation": -18.37, "x": 20.25 },
  	{ "name": "bone20", "parent": "images/shengzi_0000s_0029_shengzi_bei", "length": 25.01, "rotation": 14.82, "x": 6.64, "y": 22.43 },
  	{ "name": "bone21", "parent": "bone20", "length": 24.87, "rotation": -3.06, "x": 25.01 },
  	{ "name": "bone22", "parent": "bone21", "length": 21.81, "rotation": 5.98, "x": 24.87 },
  	{ "name": "bone23", "parent": "bone22", "length": 18.2, "rotation": -4.27, "x": 21.81 },
  	{ "name": "bone24", "parent": "bone23", "length": 18.2, "x": 18.2 },
  	{ "name": "bone25", "parent": "bone24", "length": 15.92, "rotation": 8.28, "x": 18.2 },
  	{ "name": "bone26", "parent": "bone25", "length": 16.54, "rotation": 6.74, "x": 15.92 },
  	{
  		"name": "images/shengzi_0000s_0002_shengzi_maozi00",
  		"parent": "root",
  		"length": 68.8,
  		"rotation": 87.03,
  		"x": 1.02,
  		"y": 162.57
  	},
  	{
  		"name": "images/shengzi_0001s_0000_shengzi_toufa02",
  		"parent": "images/shengzi_0000s_0002_shengzi_maozi00",
  		"length": 11.67,
  		"rotation": 169.23,
  		"x": 33.63,
  		"y": 10.68
  	},
  	{ "name": "bone27", "parent": "images/shengzi_0001s_0000_shengzi_toufa02", "length": 12.22, "rotation": 22.03, "x": 11.67 },
  	{ "name": "bone28", "parent": "bone27", "length": 13.47, "rotation": 12.5, "x": 12.22 },
  	{
  		"name": "images/shengzi_0000s_0028_shengzi_bu03",
  		"parent": "root",
  		"length": 29.08,
  		"rotation": -97.43,
  		"x": -19.56,
  		"y": 148.16
  	},
  	{ "name": "bone29", "parent": "images/shengzi_0000s_0028_shengzi_bu03", "length": 24.03, "rotation": -0.06, "x": 30.16, "y": 1.4 },
  	{ "name": "bone30", "parent": "bone29", "length": 19.06, "rotation": -1.96, "x": 24.03 },
  	{ "name": "bone31", "parent": "bone30", "length": 21.9, "rotation": -3.77, "x": 19.06 },
  	{ "name": "bone32", "parent": "bone31", "length": 19.92, "rotation": 0.51, "x": 21.9 },
  	{ "name": "bone33", "parent": "bone32", "length": 21.21, "rotation": -6.24, "x": 19.92 },
  	{ "name": "bone34", "parent": "bone33", "length": 18.95, "rotation": -15.24, "x": 21.21 },
  	{ "name": "images/shengzi_0000s_0027_shengzi_bu02", "parent": "root", "length": 27.07, "rotation": -91.1, "x": 19.95, "y": 143.41 },
  	{ "name": "bone35", "parent": "images/shengzi_0000s_0027_shengzi_bu02", "length": 23.83, "rotation": 3.8, "x": 29.63, "y": -0.39 },
  	{ "name": "bone36", "parent": "bone35", "length": 20.69, "rotation": 1.5, "x": 23.83 },
  	{ "name": "bone37", "parent": "bone36", "length": 20.72, "rotation": 3.46, "x": 21.31, "y": 0.62 },
  	{ "name": "bone38", "parent": "bone37", "length": 23.33, "rotation": 2.7, "x": 20.72 },
  	{ "name": "bone39", "parent": "bone38", "length": 24.8, "rotation": 9.97, "x": 23.33 },
  	{
  		"name": "images/shengzi_0000s_0000_shengzi_yan01",
  		"parent": "images/shengzi_0000s_0002_shengzi_maozi00",
  		"x": 23.92,
  		"y": -11.26
  	},
  	{
  		"name": "images/shengzi_0000s_0008_shengzi_youbi00",
  		"parent": "root",
  		"length": 27.2,
  		"rotation": -37.99,
  		"x": 31.88,
  		"y": 91.28
  	},
  	{
  		"name": "images/shengzi_0000s_0007_shengzi_youshou00",
  		"parent": "images/shengzi_0000s_0008_shengzi_youbi00",
  		"rotation": 11.77,
  		"x": 33.41,
  		"y": 2.48
  	},
  	{
  		"name": "images/shengzi_0000s_0010_shengzi_zuobi00",
  		"parent": "root",
  		"length": 29.08,
  		"rotation": -128.45,
  		"x": -58.56,
  		"y": 94.63
  	},
  	{
  		"name": "images/shengzi_0000s_0009_shengzi_zuoshou00",
  		"parent": "images/shengzi_0000s_0010_shengzi_zuobi00",
  		"rotation": -55.88,
  		"x": 20.41,
  		"y": -5.54
  	},
  	{ "name": "images/shengzi_0000s_0019_shengzi_weijin01", "parent": "root", "x": -0.98, "y": 157.24 },
  	{
  		"name": "images/shengzi_0000s_0020_shengzi_youjian01",
  		"parent": "images/shengzi_0000s_0019_shengzi_weijin01",
  		"length": 16.92,
  		"rotation": -3.36,
  		"x": 20.37,
  		"y": 2.4
  	},
  	{
  		"name": "images/shengzi_0000s_0021_shengzi_zuojian01",
  		"parent": "images/shengzi_0000s_0019_shengzi_weijin01",
  		"length": 34.7,
  		"rotation": -150.86,
  		"x": -29.64,
  		"y": 7.65
  	},
  	{
  		"name": "images/shengzi_0000s_0022_shengzi_zuopijian01",
  		"parent": "images/shengzi_0000s_0019_shengzi_weijin01",
  		"length": 39.38,
  		"rotation": -137.04,
  		"x": -28.39,
  		"y": -9.59
  	},
  	{
  		"name": "images/shengzi_0000s_0024_shengzi_youpijian",
  		"parent": "images/shengzi_0000s_0019_shengzi_weijin01",
  		"length": 29.44,
  		"rotation": -68.19,
  		"x": 23.28,
  		"y": -2.42
  	},
  	{
  		"name": "images/shengzi_0001s_0020_shengzi_fazhang",
  		"parent": "images/shengzi_0000s_0009_shengzi_zuoshou00",
  		"length": 130.25,
  		"rotation": -74.93,
  		"x": 7.56,
  		"y": -21.9
  	},
  	{
  		"name": "snandian",
  		"parent": "images/shengzi_0001s_0020_shengzi_fazhang",
  		"x": 155.36,
  		"y": -17.94,
  		"scaleX": 0.743,
  		"scaleY": 0.743
  	}
  ],
  "slots": [
  	{
  		"name": "images/shengzi_0000s_0029_shengzi_bei",
  		"bone": "images/shengzi_0000s_0029_shengzi_bei",
  		"attachment": "images/shengzi_0000s_0029_shengzi_bei"
  	},
  	{
  		"name": "images/shengzi_0000s_0028_shengzi_bu03",
  		"bone": "images/shengzi_0000s_0028_shengzi_bu03",
  		"attachment": "images/shengzi_0000s_0028_shengzi_bu03"
  	},
  	{
  		"name": "images/shengzi_0000s_0027_shengzi_bu02",
  		"bone": "images/shengzi_0000s_0027_shengzi_bu02",
  		"attachment": "images/shengzi_0000s_0027_shengzi_bu02"
  	},
  	{
  		"name": "images/shengzi_0000s_0024_shengzi_youpijian",
  		"bone": "images/shengzi_0000s_0024_shengzi_youpijian",
  		"attachment": "images/shengzi_0000s_0024_shengzi_youpijian"
  	},
  	{
  		"name": "images/shengzi_0000s_0023_shengzi_zuopifeng",
  		"bone": "bone13",
  		"attachment": "images/shengzi_0000s_0023_shengzi_zuopifeng"
  	},
  	{
  		"name": "images/shengzi_0000s_0022_shengzi_zuopijian01",
  		"bone": "images/shengzi_0000s_0022_shengzi_zuopijian01",
  		"attachment": "images/shengzi_0000s_0022_shengzi_zuopijian01"
  	},
  	{
  		"name": "images/shengzi_0000s_0020_shengzi_youjian01",
  		"bone": "images/shengzi_0000s_0020_shengzi_youjian01",
  		"attachment": "images/shengzi_0000s_0020_shengzi_youjian01"
  	},
  	{
  		"name": "images/shengzi_0000s_0019_shengzi_weijin01",
  		"bone": "images/shengzi_0000s_0019_shengzi_weijin01",
  		"attachment": "images/shengzi_0000s_0019_shengzi_weijin01"
  	},
  	{
  		"name": "images/shengzi_0000s_0021_shengzi_zuojian01",
  		"bone": "images/shengzi_0000s_0021_shengzi_zuojian01",
  		"attachment": "images/shengzi_0000s_0021_shengzi_zuojian01"
  	},
  	{
  		"name": "images/shengzi_0000s_0018_shengzi_zuojian01",
  		"bone": "images/shengzi_0000s_0021_shengzi_zuojian01",
  		"attachment": "images/shengzi_0000s_0018_shengzi_zuojian01"
  	},
  	{
  		"name": "images/shengzi_0000s_0008_shengzi_youbi00",
  		"bone": "images/shengzi_0000s_0008_shengzi_youbi00",
  		"attachment": "images/shengzi_0000s_0008_shengzi_youbi00"
  	},
  	{
  		"name": "images/shengzi_0000s_0007_shengzi_youshou00",
  		"bone": "images/shengzi_0000s_0007_shengzi_youshou00",
  		"attachment": "images/shengzi_0000s_0007_shengzi_youshou00"
  	},
  	{
  		"name": "images/shengzi_0000s_0002_shengzi_maozi00",
  		"bone": "images/shengzi_0000s_0002_shengzi_maozi00",
  		"attachment": "images/shengzi_0000s_0002_shengzi_maozi00"
  	},
  	{
  		"name": "images/shengzi_0000s_0000_shengzi_yan01",
  		"bone": "images/shengzi_0000s_0000_shengzi_yan01",
  		"attachment": "images/shengzi_0000s_0000_shengzi_yan01"
  	},
  	{
  		"name": "images/shengzi_0001s_0014_shengzi_bu",
  		"bone": "images/shengzi_0001s_0014_shengzi_bu",
  		"attachment": "images/shengzi_0001s_0014_shengzi_bu"
  	},
  	{
  		"name": "images/shengzi_0001s_0000_shengzi_toufa02",
  		"bone": "images/shengzi_0001s_0000_shengzi_toufa02",
  		"attachment": "images/shengzi_0001s_0000_shengzi_toufa02"
  	},
  	{
  		"name": "images/shengzi_0000s_0010_shengzi_zuobi00",
  		"bone": "images/shengzi_0000s_0010_shengzi_zuobi00",
  		"attachment": "images/shengzi_0000s_0010_shengzi_zuobi00"
  	},
  	{
  		"name": "images/shengzi_0001s_0020_shengzi_fazhang",
  		"bone": "images/shengzi_0001s_0020_shengzi_fazhang",
  		"attachment": "images/shengzi_0001s_0020_shengzi_fazhang"
  	},
  	{
  		"name": "images/shengzi_0000s_0012_shengzi_zuoshou02",
  		"bone": "images/shengzi_0000s_0009_shengzi_zuoshou00",
  		"attachment": "images/zuoshou"
  	},
  	{
  		"name": "images/shengzi_0001s_0018_shengzi_baozhu",
  		"bone": "images/shengzi_0001s_0020_shengzi_fazhang",
  		"attachment": "images/shengzi_0001s_0018_shengzi_baozhu"
  	}
  ],
  "skins": {
  	"default": {
  		"images/shengzi_0000s_0000_shengzi_yan01": {
  			"images/shengzi_0000s_0000_shengzi_yan01": { "x": 0.46, "y": 0.51, "rotation": -87.03, "width": 8, "height": 12 }
  		},
  		"images/shengzi_0000s_0002_shengzi_maozi00": {
  			"images/shengzi_0000s_0002_shengzi_maozi00": { "x": 63.94, "y": 5.39, "rotation": -87.03, "width": 71, "height": 141 }
  		},
  		"images/shengzi_0000s_0007_shengzi_youshou00": {
  			"images/shengzi_0000s_0007_shengzi_youshou00": { "x": 2.85, "y": -1.22, "rotation": 37.99, "width": 36, "height": 30 },
  			"images/shengzi_0000s_0011_shengzi_youshou02": { "x": 2.85, "y": -1.22, "scaleX": -1, "rotation": -49.03, "width": 35, "height": 38 },
  			"images/shengzi_0000s_0012_shengzi_zuoshou02": { "x": 2.85, "y": -1.22, "scaleY": -1, "rotation": 24.46, "width": 35, "height": 30 }
  		},
  		"images/shengzi_0000s_0008_shengzi_youbi00": {
  			"images/shengzi_0000s_0008_shengzi_youbi00": { "x": 16.79, "y": -3.03, "rotation": 37.99, "width": 36, "height": 85 },
  			"images/shengzi_0000s_0016_shengzi_zuobi01": { "x": 16.81, "y": -5.59, "rotation": 35.58, "width": 35, "height": 73 },
  			"images/shengzi_0000s_0017_shengzi_youbi01": { "x": 22.22, "y": -4.95, "rotation": 37.99, "width": 27, "height": 71 }
  		},
  		"images/shengzi_0000s_0010_shengzi_zuobi00": {
  			"images/shengzi_0000s_0008_shengzi_youbi00": {
  				"type": "mesh",
  				"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  				"triangles": [ 1, 2, 3, 1, 3, 0 ],
  				"vertices": [ 39.3, 45.08, 61.69, 16.89, -4.86, -35.96, -27.25, -7.77 ],
  				"hull": 4,
  				"edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  				"width": 36,
  				"height": 85
  			},
  			"images/shengzi_0000s_0010_shengzi_zuobi00": {
  				"type": "mesh",
  				"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  				"triangles": [ 1, 2, 3, 1, 3, 0 ],
  				"vertices": [ 44.56, 38.88, 67.57, 9.89999, 2.57, -41.7, -20.43, -12.73 ],
  				"hull": 4,
  				"edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  				"width": 37,
  				"height": 83
  			},
  			"images/shengzi_0000s_0017_shengzi_youbi01": { "x": 28.7, "y": 7.71, "scaleX": -1, "rotation": 130.38, "width": 27, "height": 71 }
  		},
  		"images/shengzi_0000s_0012_shengzi_zuoshou02": {
  			"images/shengzi_0000s_0009_shengzi_zuoshou00": { "x": 2.65, "y": -5.13, "rotation": 128.45, "width": 37, "height": 31 },
  			"images/shengzi_0000s_0011_shengzi_youshou02": { "x": 9.86, "y": 0.05, "scaleX": -1, "rotation": -23.71, "width": 35, "height": 38 },
  			"images/shengzi_0000s_0012_shengzi_zuoshou02": { "x": 6.67, "y": -1.41, "rotation": -4.25, "width": 35, "height": 30 },
  			"images/zuoshou": { "x": 7.26, "y": 0.55, "scaleX": -0.523, "scaleY": 0.546, "rotation": 177.67, "width": 56, "height": 54 }
  		},
  		"images/shengzi_0000s_0018_shengzi_zuojian01": {
  			"images/shengzi_0000s_0018_shengzi_zuojian01": { "x": 14.65, "y": -24.17, "rotation": 150.86, "width": 16, "height": 42 }
  		},
  		"images/shengzi_0000s_0019_shengzi_weijin01": {
  			"images/shengzi_0000s_0019_shengzi_weijin01": { "x": -9.06, "y": -4.15, "width": 76, "height": 65 }
  		},
  		"images/shengzi_0000s_0020_shengzi_youjian01": {
  			"images/shengzi_0000s_0020_shengzi_youjian01": { "x": 1.46, "y": 7.81, "rotation": 3.36, "width": 26, "height": 58 },
  			"images/shengzi_0001s_0008_shengzi_youjian02": { "x": 6.24, "y": 8.19, "rotation": 3.36, "width": 40, "height": 61 }
  		},
  		"images/shengzi_0000s_0021_shengzi_zuojian01": {
  			"images/shengzi_0000s_0021_shengzi_zuojian01": { "x": 15.71, "y": -1.04, "rotation": 150.86, "width": 46, "height": 49 },
  			"images/shengzi_0001s_0009_shengzi_zuojian02": { "x": 14.05, "y": -8.12, "rotation": 150.86, "width": 47, "height": 68 }
  		},
  		"images/shengzi_0000s_0022_shengzi_zuopijian01": {
  			"images/shengzi_0000s_0022_shengzi_zuopijian01": { "x": 17.67, "y": -1.28, "rotation": 137.04, "width": 47, "height": 48 }
  		},
  		"images/shengzi_0000s_0023_shengzi_zuopifeng": {
  			"images/shengzi_0000s_0023_shengzi_zuopifeng": {
  				"type": "mesh",
  				"uvs": [ 0.68128, 0, 0.52772, 0.06024, 0.48638, 0.13187, 0.48047, 0.19048, 0.45685, 0.28165, 0.44504, 0.35653, 0.4096, 0.43142, 0.36235, 0.51607, 0.33405, 0.60076, 0.32101, 0.63979, 0.26195, 0.73747, 0.19698, 0.81561, 0.10839, 0.8905, 0, 0.97515, 0, 1, 0.26195, 1, 0.45094, 0.95561, 0.57497, 0.90678, 0.68128, 0.84166, 0.76396, 0.76677, 0.84074, 0.67235, 0.93524, 0.56816, 1, 0.45421, 1, 0.39253, 1, 0.32723, 1, 0.21978, 1, 0.12862, 1, 0.07617, 1, 0.02117, 0.90862, 0 ],
  				"triangles": [ 25, 3, 1, 1, 26, 25, 1, 27, 26, 1, 0, 27, 0, 29, 27, 29, 28, 27, 5, 4, 23, 4, 24, 23, 4, 3, 24, 3, 25, 24, 3, 2, 1, 21, 6, 22, 6, 5, 22, 5, 23, 22, 19, 8, 20, 8, 7, 20, 20, 7, 21, 7, 6, 21, 10, 9, 18, 18, 9, 19, 9, 8, 19, 16, 10, 17, 17, 10, 18, 14, 12, 15, 12, 11, 15, 15, 11, 16, 14, 13, 12, 11, 10, 16 ],
  				"vertices": [ 2, 16, -33.16999, -20.89, 0.19851, 15, -7.4, -24.07, 0.80148, 3, 17, -41.93999, -34.32, 0.00256, 16, -21.23, -31.86, 0.43079, 15, 5.39, -34.02, 0.56664, 3, 17, -30.22, -34.81, 0.02165, 16, -9.56, -33.02, 0.59953, 15, 17.12, -34.21, 0.37881, 3, 17, -21.27, -32.89, 0.06468, 16, -0.51, -31.62, 0.72301, 15, 26.02, -32.07, 0.2123, 4, 18, -32.03, -29.8, 0.00541, 17, -7.01, -31.11, 0.22833, 16, 13.81, -30.66, 0.73084, 15, 40.22, -29.93, 0.0354, 5, 19, -40.16, -34.95, 3.0E-4, 18, -20.41, -28.25, 0.05919, 17, 4.51, -29.02, 0.44185, 16, 25.45, -29.23, 0.49732, 15, 51.71, -27.55, 0.00131, 4, 19, -28.17, -33.5, 0.01415, 18, -8.34, -28.69, 0.24268, 17, 16.59, -28.88, 0.53241, 16, 37.50999, -29.78, 0.21073, 5, 20, -30.08, -40.04, 4.6E-4, 19, -14.39, -32.43999, 0.10152, 18, 5.42, -29.8, 0.52536, 17, 30.39, -29.33, 0.3244, 16, 51.27, -31.02, 0.04824, 6, 21, -25.18, -44.86, 0.00203, 20, -17.79, -34.63, 0.02725, 19, -1.21, -29.86, 0.32645, 18, 18.84, -29.31, 0.53399, 17, 43.78, -28.2, 0.10697, 16, 64.69999, -30.66, 0.00327, 5, 21, -20.59, -40.7, 0.01093, 20, -12.12, -32.13, 0.07038, 19, 4.86, -28.67, 0.45915, 18, 25.03, -29.08, 0.41157, 17, 49.95, -27.68, 0.04794, 6, 21, -7.3, -31.68, 0.14727, 20, 3.32, -27.76, 0.326, 19, 20.89, -27.81, 0.43798, 18, 41.00999, -30.73, 0.08789, 17, 65.99, -28.57, 8.1E-4, 16, 86.85, -32.3, 0, 5, 21, 4.53, -25.39, 0.52683, 20, 16.54999, -25.53, 0.33955, 19, 34.28, -28.54, 0.12723, 18, 54.12, -33.54, 0.00636, 16, 99.93, -35.23, 0, 4, 21, 17.68, -20.74, 0.92467, 20, 30.49, -25.26, 0.06629, 19, 47.95, -31.35, 0.00901, 16, 112.94, -40.25999, 0, 2, 21, 33.11, -15.91, 1, 16, 127.79, -46.64, 0, 2, 21, 35.46, -12.84, 1, 16, 131.59, -45.84, 0, 2, 21, 17.56, 0.84, 1, 16, 126.91, -23.8, 0, 3, 21, 0.45, 5.21, 0.49625, 20, 22.33, 4.8, 0.50374, 16, 116.76, -9.34, 0, 2, 20, 10.03, 9.34, 0.98008, 19, 35.59999, 6.9, 0.01991, 3, 20, -3.5, 11.19, 0.34315, 19, 22.8, 11.69, 0.65684, 16, 95.26, 6.34, 0, 4, 20, -17.16, 10.5, 0.00887, 19, 9.32, 14.02, 0.87168, 18, 36.11, 12.39, 0.11943, 16, 82.36, 10.87, 0, 4, 19, -6.79, 14.76, 0.21863, 18, 20.29, 15.64, 0.76656, 17, 43.09, 16.77, 0.01476, 16, 66.58, 14.28, 3.0E-5, 2, 18, 2.67, 20.04999, 0.56704, 17, 25.27, 20.33, 0.43295, 3, 18, -15.89, 21.63, 0.07557, 17, 6.66, 21.03, 0.75373, 16, 30.45, 20.61, 0.17068, 4, 18, -25.28, 19.54, 0.00409, 17, -2.61999, 18.5, 0.51055, 16, 21.04, 18.62, 0.48311, 15, 43.37, 19.77, 0.00223, 3, 17, -12.44, 15.82, 0.13985, 16, 11.07, 16.5, 0.77962, 15, 33.61, 16.84, 0.08051, 2, 16, -5.31, 13.02, 0.14918, 15, 17.56, 12.03, 0.8508, 1, 15, 3.94, 7.94, 1, 1, 15, -3.89, 5.59, 1, 1, 15, -12.11, 3.12, 1, 2, 16, -37.22, -1.77, 0.01052, 15, -13.01, -5.34, 0.98947 ],
  				"hull": 30,
  				"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 48, 50, 50, 52, 56, 58, 0, 58, 52, 54, 54, 56, 2, 54, 6, 50, 44, 46, 46, 48, 10, 46, 12, 44, 14, 42, 14, 16, 16, 18, 16, 40, 18, 38, 20, 36 ],
  				"width": 86,
  				"height": 156
  			}
  		},
  		"images/shengzi_0000s_0024_shengzi_youpijian": {
  			"images/shengzi_0000s_0024_shengzi_youpijian": { "x": 9.56, "y": 0.49, "rotation": 68.19, "width": 23, "height": 54 }
  		},
  		"images/shengzi_0000s_0027_shengzi_bu02": {
  			"images/shengzi_0000s_0027_shengzi_bu02": {
  				"type": "mesh",
  				"uvs": [ 0.32868, 3.8E-4, 0.12764, 0.0864, 0.03486, 0.16956, 0, 0.25846, 0, 0.33301, 0, 0.46492, 0, 0.55955, 0.08125, 0.65991, 0.26682, 0.77461, 0.51425, 0.88645, 0.79261, 1, 1, 1, 1, 0.88932, 1, 0.75741, 1, 0.65418, 1, 0.53374, 1, 0.44198, 1, 0.35595, 1, 0.24412, 1, 0.14949, 1, 0.04339, 0.79261, 0 ],
  				"triangles": [ 1, 0, 21, 1, 21, 20, 1, 20, 19, 2, 1, 19, 2, 19, 18, 3, 2, 18, 4, 3, 18, 4, 18, 17, 4, 17, 16, 5, 4, 16, 5, 16, 15, 6, 5, 15, 7, 6, 15, 14, 7, 15, 9, 13, 12, 10, 9, 12, 10, 12, 11, 8, 7, 14, 13, 8, 14, 9, 8, 13 ],
  				"vertices": [ 2, 41, -32.48, -6.15, 6.0E-5, 40, -2.35999, -8.68999, 0.99993, 2, 41, -19.34, -11.44, 0.02266, 40, 11.08, -13.09, 0.97733, 3, 43, -52.95, -10.34, 0, 41, -6.72, -13.71, 0.43444, 40, 23.83, -14.51, 0.56554, 3, 43, -39.61, -12.13, 2.0E-5, 41, 6.71, -14.33, 0.98085, 40, 37.28, -14.24, 0.01912, 3, 43, -28.37, -12.81, 8.0E-5, 42, -6.22, -13.87, 0.16496, 41, 17.96999, -14.03, 0.83494, 3, 43, -8.49, -14.01, 0.1415, 42, 13.68, -13.87, 0.83, 41, 37.88, -13.51, 0.02847, 3, 44, -15.64, -14.16, 0.00196, 43, 5.77, -14.88, 0.77318, 42, 27.97, -13.87, 0.22484, 3, 44, -0.33, -13.52, 0.44621, 43, 21.03, -13.52, 0.55229, 42, 43.13, -11.6, 0.00148, 2, 44, 17.44, -10.22, 0.92438, 45, -7.56, -9.04, 0.0756, 2, 45, 10.57, -7.08, 1, 40, 130.37, 8.87, 0, 2, 45, 29.21, -4.36, 1, 40, 146.72, 18.21999, 0, 2, 45, 30.82, 1.2, 1, 40, 146.18, 24, 0, 3, 45, 14.77, 5.85, 0.99999, 42, 77.76999, 14.12, 0, 40, 129.54, 22.45, 0, 3, 44, 17.06, 10.46, 0.91678, 45, -4.35, 11.39, 0.08321, 42, 57.85, 14.12, 0, 4, 44, 1.57, 12.14, 0.58689, 43, 21.72, 12.2, 0.41307, 41, 65.71, 15.22, 2.0E-5, 40, 94.19, 19.16, 0, 6, 44, -16.5, 14.09, 8.0E-5, 45, -36.79, 20.78, 0.00261, 43, 3.57, 13.3, 0.68008, 42, 24.08, 14.12, 0.31698, 41, 47.53, 14.75, 2.0E-4, 40, 76.08, 17.48, 1.0E-5, 6, 44, -30.28, 15.58, 1.6E-4, 45, -50.1, 24.63, 2.4E-4, 43, -10.25, 14.14, 0.04524, 42, 10.22, 14.12, 0.92157, 41, 33.68, 14.38, 0.03275, 40, 62.28, 16.19, 0, 3, 44, -43.19, 16.98, 4.0E-5, 42, -2.76, 14.12, 0.42681, 41, 20.69, 14.04, 0.57314, 4, 44, -59.98, 18.79, 0, 43, -40.07, 15.94, 0.00148, 41, 3.81, 13.59, 0.68344, 40, 32.53, 13.43, 0.31505, 3, 43, -54.34, 16.81, 1.1E-4, 41, -10.46, 13.22, 0.00896, 40, 18.31, 12.1, 0.99092, 2, 41, -26.48, 12.8, 0, 40, 2.34999, 10.62, 1, 2, 41, -32.87, 6.82, 3.0E-5, 40, -3.62, 4.23, 0.99996 ],
  				"hull": 22,
  				"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 0, 42, 2, 40, 4, 38, 6, 36, 10, 32, 14, 28, 12, 30, 16, 26, 18, 24 ],
  				"width": 28,
  				"height": 151
  			}
  		},
  		"images/shengzi_0000s_0028_shengzi_bu03": {
  			"images/shengzi_0000s_0028_shengzi_bu03": {
  				"type": "mesh",
  				"uvs": [ 0.60558, 0, 0.46569, 0.0882, 0.43211, 0.16238, 0.39854, 0.2551, 0.33699, 0.37143, 0.28663, 0.47427, 0.23626, 0.5906, 0.16352, 0.71367, 0.07958, 0.84627, 0, 1, 0.13554, 1, 0.50486, 0.86145, 0.72309, 0.73332, 0.90775, 0.58692, 1, 0.46722, 1, 0.35932, 1, 0.24131, 1, 0.14184, 1, 0.05755, 0.90216, 0 ],
  				"triangles": [ 18, 1, 0, 18, 0, 19, 1, 18, 17, 2, 1, 17, 2, 17, 16, 3, 2, 16, 3, 16, 15, 4, 3, 15, 4, 15, 14, 5, 4, 14, 13, 5, 14, 6, 5, 13, 12, 6, 13, 7, 6, 12, 11, 7, 12, 8, 7, 11, 10, 8, 11, 9, 8, 10 ],
  				"vertices": [ 1, 33, -2.84, -9.31, 1, 2, 34, -18.5, -15.47, 0, 33, 11.64, -14.05, 0.99999, 1, 33, 23.32, -14.12, 1, 3, 35, -15.77, -15.76, 0.0146, 34, 7.72, -15.21, 0.27548, 33, 37.87, -13.81, 0.7099, 4, 36, -15.4, -16.68, 0.02, 35, 2.58999, -15.63, 0.68947, 34, 26.09, -15.71, 0.24973, 33, 56.24, -14.33, 0.04078, 3, 39, -53.27, -34.74, 0, 36, 0.75, -15.31, 0.5148, 35, 18.81, -15.33, 0.48519, 4, 39, -36.93, -26.5, 1.0E-5, 37, -3.06, -13.43, 0.31731, 36, 18.95999, -13.46, 0.67704, 35, 37.09999, -14.68, 0.00561, 4, 39, -19.12999, -18.53, 1.3E-4, 38, -2.11999, -12.84, 0.31494, 37, 16.41, -12.54, 0.67858, 36, 38.43, -12.39, 0.00632, 3, 39, 0.18, -10.16, 0.35423, 38, 18.71999, -9.85, 0.64572, 36, 59.47, -11.49, 4.0E-5, 3, 39, 22.11, 0.22, 1, 37, 61.68, -10.18999, 0, 36, 83.67, -9.64, 0, 2, 39, 18.53, 5.49, 0.99998, 38, 40.54, 0.42, 1.0E-5, 3, 39, -9.09, 7.69, 0.03687, 38, 14.46, 9.81, 0.96312, 36, 57.19, 8.5, 0, 4, 39, -31.39, 4.92999, 5.0E-5, 38, -7.77, 13.02, 0.12895, 37, 13.61, 13.78, 0.82932, 36, 35.39, 13.91, 0.04166, 4, 39, -55.15, -0.72, 0, 37, -10.57, 17.21999, 0.09076, 36, 11.17, 17.12, 0.78852, 35, 31.34, 16.35, 0.1207, 3, 36, -7.99, 17.07, 0.18834, 35, 12.21, 17.56, 0.71551, 34, 36.84, 17.12999, 0.09613, 2, 35, -4.38, 14.79, 0.26222, 34, 20.15, 14.93, 0.73777, 1, 34, 1.9, 12.53, 1, 2, 34, -13.48, 10.5, 0.42881, 33, 16.69, 11.93, 0.57118, 2, 34, -26.52, 8.79, 0.00686, 33, 3.65, 10.22, 0.99313, 1, 33, -4.65, 4.5, 1 ],
  				"hull": 20,
  				"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 0, 38, 2, 36, 4, 34, 6, 32, 8, 30, 10, 28, 12, 26, 14, 24, 16, 22 ],
  				"width": 47,
  				"height": 156
  			}
  		},
  		"images/shengzi_0000s_0029_shengzi_bei": {
  			"images/shengzi_0000s_0029_shengzi_bei": {
  				"type": "mesh",
  				"uvs": [ 0.47091, 0, 0.37554, 0.0325, 0.34375, 0.09628, 0.31593, 0.17778, 0.28811, 0.277, 0.27222, 0.37267, 0.25235, 0.46835, 0.21659, 0.56757, 0.16493, 0.6845, 0.10532, 0.79435, 0.02584, 0.90774, 0, 1, 0.15698, 1, 0.31593, 1, 0.49078, 1, 0.70536, 1, 0.88021, 1, 1, 1, 1, 0.93255, 0.95173, 0.80498, 0.93584, 0.69159, 0.92789, 0.53922, 0.90405, 0.42937, 0.90405, 0.31244, 0.88815, 0.19196, 0.88815, 0.10337, 0.84842, 0, 0.71331, 0, 0.59012, 0, 0.49872, 0.11754, 0.48283, 0.21676, 0.46693, 0.31598, 0.43912, 0.44354, 0.41925, 0.56048, 0.38746, 0.69159, 0.35567, 0.83333, 0.26824, 0.92546, 0.62986, 0.1388, 0.63383, 0.24157, 0.62986, 0.34078, 0.62588, 0.45063, 0.62191, 0.58174, 0.5782, 0.71285, 0.57025, 0.83333, 0.8047, 0.83333, 0.77689, 0.71994, 0.78881, 0.58174, 0.78086, 0.45417, 0.76497, 0.3337, 0.77291, 0.2203, 0.76497, 0.12463 ],
  				"triangles": [ 16, 18, 17, 15, 44, 16, 16, 19, 18, 16, 44, 19, 19, 44, 20, 44, 45, 20, 45, 46, 20, 46, 21, 20, 21, 47, 22, 21, 46, 47, 47, 40, 48, 40, 39, 48, 47, 48, 22, 48, 23, 22, 39, 38, 48, 48, 49, 23, 48, 38, 49, 49, 24, 23, 38, 37, 49, 37, 50, 49, 49, 50, 24, 50, 25, 24, 37, 27, 50, 50, 26, 25, 50, 27, 26, 30, 4, 3, 3, 2, 30, 30, 2, 29, 2, 1, 29, 1, 0, 29, 32, 31, 40, 40, 31, 39, 32, 5, 31, 5, 4, 31, 31, 4, 30, 31, 30, 38, 7, 6, 33, 33, 6, 32, 6, 5, 32, 8, 7, 34, 34, 7, 33, 9, 8, 35, 35, 8, 34, 12, 36, 13, 13, 36, 35, 36, 12, 9, 36, 9, 35, 11, 10, 12, 12, 10, 9, 14, 43, 15, 13, 35, 14, 15, 43, 44, 43, 45, 44, 14, 35, 43, 35, 34, 43, 45, 43, 42, 43, 34, 42, 42, 41, 45, 34, 33, 42, 42, 33, 41, 45, 41, 46, 47, 41, 40, 41, 47, 46, 33, 32, 41, 41, 32, 40, 39, 31, 38, 30, 37, 38, 30, 29, 37, 29, 28, 37, 37, 28, 27, 29, 0, 28 ],
  				"vertices": [ 4, 7, -4.94, -18.59, 0.29922, 21, -125.83, -89.13, 0, 15, -16.54, -2.58999, 0.70077, 24, -73.26, -31.67, 0, 5, 7, 1.77, -31.2, 0.0167, 10, -64.24, -26.52, 0, 21, -112.13, -93.19, 0, 15, -7.82, -13.92, 0.98329, 24, -70.71, -45.73, 0, 4, 10, -54.42, -31.38, 0, 21, -102.51, -87.94, 0, 15, 3.04, -15.3, 0.99999, 24, -61.68, -51.95, 0, 5, 10, -41.79, -35.81, 1.0E-5, 16, -8.71, -14.17, 0.20974, 15, 16.42, -15.35, 0.79023, 24, -49.83, -58.14, 0, 28, -132.2, -32.43999, 0, 5, 17, -14.39, -15.6, 0.0503, 16, 7.33, -14.75, 0.72885, 15, 32.46, -14.61, 0.22083, 24, -35.23, -64.83999, 0, 28, -119.11, -41.74, 0, 4, 17, 0.67, -13.79, 0.47577, 16, 22.49, -13.81, 0.52422, 24, -20.87999, -69.79, 0, 28, -105.94, -49.29, 0, 6, 21, -56.86, -49.31, 0, 18, -8.25, -12.32, 0.17187, 17, 15.9, -12.52, 0.79384, 16, 37.75999, -13.41, 0.03427, 24, -6.63, -75.29, 0, 28, -92.96, -57.35, 0, 6, 21, -43.42, -39.97, 0, 19, -14.31, -16.26, 0.03776, 18, 8.03, -13.83, 0.79286, 17, 32.24, -13.26, 0.16937, 24, 7.75, -83.08999, 0, 28, -80.28, -67.69, 0, 4, 20, -14.31, -19.9, 0.013, 19, 5.42, -16.26, 0.67912, 18, 27.52, -16.91, 0.30785, 24, 24.46, -93.58, 0, 4, 21, -9.42, -21.15, 0.07108, 20, 4.64, -17.1, 0.5052, 19, 24.52, -17.7, 0.42371, 24, 39.87, -104.96, 0, 4, 21, 10.22, -13.77, 0.84991, 20, 25.61, -16.29, 0.14374, 19, 45.16, -21.53, 0.00633, 24, 55.32, -119.17, 0, 7, 13, 36.55, -81.08, 0, 14, 13.06, -81.69, 1.2E-4, 21, 21.9, -4.46, 0.99986, 24, 68.89, -125.4, 0, 26, 38.09999, -121.54, 0, 27, 2.19, -123.14, 0, 28, -28.11, -120.67, 0, 8, 13, 36.55, -59.1, 9.0E-4, 14, 13.97, -59.73, 0.01454, 21, 4.44, 8.88, 0.67145, 20, 27.27, 7.02, 0.31296, 24, 72.94, -103.8, 0, 26, 40.53, -99.69, 0, 27, 7.73, -101.87, 5.0E-5, 28, -20.1, -100.2, 7.0E-5, 9, 13, 36.55, -36.84999, 0.04447, 14, 14.9, -37.5, 0.25461, 21, -13.23, 22.4, 0.03582, 20, 14.75, 25.43, 0.58758, 19, 43.75, 21.55, 0.07576, 24, 77.04, -81.93, 0, 26, 42.99, -77.58, 7.0E-5, 27, 13.35, -80.33999, 7.0E-4, 28, -11.99, -79.48, 9.5E-4, 6, 13, 36.55, -12.37, 0.0199, 14, 15.92, -13.04, 0.96229, 20, 0.99, 45.67, 0.01294, 19, 34.78, 44.33, 0.00467, 24, 81.55, -57.87, 0, 26, 45.69, -53.25, 1.7E-4, 9, 13, 36.55, 17.66, 0.07774, 14, 17.17, 16.95999, 0.56341, 21, -56.54, 55.51, 0, 20, -15.89, 70.51, 0.00476, 19, 23.77, 72.28, 0.00105, 18, 59.46, 67.69, 0, 24, 87.09, -28.34, 0, 27, 27.11, -27.58, 0.10786, 28, 7.87, -28.71, 0.24515, 8, 13, 36.55, 42.14, 0.00683, 14, 18.19, 41.41999, 0.0293, 21, -75.98, 70.37999, 0, 20, -29.66, 90.75, 3.4E-4, 19, 14.8, 95.05, 7.0E-5, 18, 54.15, 91.58, 0, 24, 91.6, -4.28, 0, 28, 16.79, -5.91, 0.96342, 7, 13, 36.55, 58.91, 6.0E-4, 14, 18.89, 58.18, 0.00258, 21, -89.3, 80.57, 0, 20, -39.09, 104.62, 3.0E-5, 19, 8.64999, 110.66, 0, 24, 94.69, 12.19, 0, 28, 22.9, 9.68999, 0.99677, 9, 13, 25.96, 58.91, 5.0E-5, 14, 8.31, 58.62, 2.5E-4, 21, -95.74, 72.16, 0, 20, -47.84, 98.66, 0, 19, -1.19, 106.78, 0, 18, 40.18, 105.66, 0, 24, 84.28, 14.14, 0, 27, 27.28, 14.99, 0.08352, 28, 13.04, 13.55, 0.91615, 7, 21, -102.53, 52.14, 0, 18, 22.09, 94.72, 0, 24, 63.35, 11.19, 0, 25, 40.59, 14.26, 0.00889, 26, 22.38, 14.26, 0.24847, 27, 6.19, 13.51, 0.63103, 28, -8.07, 14.56, 0.11158, 4, 18, 5.19999, 88.68, 0, 25, 22.65, 14.02, 0.34807, 26, 4.44999, 14.02, 0.55685, 27, -11.58, 15.85, 0.09506, 7, 21, -125.23, 16.96999, 0, 18, -17.91, 82.41, 0, 23, 44.85, 17.78, 0.01252, 24, 21.73, 15.6, 0.51068, 25, -1.24, 15.55, 0.47649, 26, -19.44, 15.55, 2.9E-4, 28, -48.14, 26.65, 0, 7, 21, -133.05, 1.25, 0, 18, -34.02, 75.41, 0, 22, 53.22, 14.36, 0.00331, 23, 27.39, 15.85, 0.36389, 24, 4.16, 15.5, 0.61024, 25, -18.75, 14.14, 0.02254, 28, -65.41, 29.83, 0, 6, 21, -144.21, -13.33, 0, 18, -51.94, 71.42, 0, 22, 35.02, 16.82, 0.20994, 23, 9.09, 17.33, 0.70327, 24, -13.87, 18.87999, 0.08678, 28, -82.51, 36.52, 0, 6, 21, -153.93, -29.71, 0, 18, -69.92, 65.15, 0, 22, 15.98, 17.15, 0.8194, 23, -9.93, 16.64, 0.18057, 24, -32.88, 20.18, 2.0E-5, 28, -100.94, 41.34, 0, 4, 21, -162.38, -40.75, 0, 22, 2.2, 19.01, 0.99214, 23, -23.79, 17.77, 0.00785, 28, -113.89, 46.41, 0, 5, 7, -11.5, 33.84999, 0, 21, -167.82, -57.03, 0, 22, -14.62, 15.67, 1, 24, -63.52, 20.27, 0, 28, -131.03, 47.14, 0, 5, 7, -9.14999, 15.08, 0.33459, 21, -152.79, -68.51999, 0, 22, -17.16, -3.06, 0.66539, 23, -41.95, -5.31, 0, 24, -67.01, 1.68, 0, 6, 7, -7.01, -2.03, 0.90647, 21, -139.09, -78.99, 0, 15, -21.34, 13.38, 0.07549, 22, -19.46999, -20.15, 0.01802, 24, -70.19, -15.27, 0, 28, -144.21, 13.47, 0, 6, 7, 12.88, -12.43, 0.56414, 8, -11.23, -14.1, 0.02376, 21, -117.72, -72.1, 0, 15, 0.01, 6.43, 0.41208, 24, -54.41, -31.24, 0, 28, -131.68, -5.16, 0, 7, 7, 28.61, -12.71, 0.00996, 8, 4.46, -15.21, 0.13022, 9, -16.06, -14.15, 0.00455, 21, -106.49, -61.08, 0, 16, -7.57, 9.95, 0.21096, 15, 15.57, 8.77, 0.64428, 24, -39.50999, -36.3, 0, 9, 8, 20.15, -16.32, 0.08294, 9, -0.48, -16.37999, 0.10628, 10, -19.24, -15.59, 0.00992, 21, -95.26, -50.06, 0, 17, -15.08, 10.14999, 5.8E-4, 16, 8.12, 11, 0.78089, 15, 31.13, 11.12, 0.01936, 24, -24.61, -41.36, 0, 28, -104.29, -20.66, 0, 9, 8, 40.41, -18.78, 0.00466, 9, 19.54, -20.27, 0.17207, 10, 0.6, -20.31, 0.16595, 11, -13.84, -21.47, 0.03117, 21, -80, -36.52, 0, 18, -17.73, 12.35, 0.00343, 17, 5.26, 11.67, 0.42626, 16, 28.52, 11.35, 0.19643, 24, -5.64, -48.88, 0, 8, 9, 37.9, -23.05, 0.01341, 10, 18.83, -23.86, 0.18687, 11, 4.6, -23.57, 0.26742, 12, -15.02, -22.38, 0.04216, 19, -25.74, 9.72, 0.0016, 18, 0.79, 13.62, 0.22397, 17, 23.71, 13.81, 0.26453, 24, 11.88, -54.99, 0, 13, 10, 39.21, -29.16, 0.00618, 11, 25.34, -27.25, 0.09152, 12, 5.55, -26.83, 0.24078, 13, -11.86, -26.83, 0.06685, 14, -33.05, -25.48, 0.00368, 20, -30.91, 6.48, 0.0047, 19, -4.96, 13.12, 0.2166, 18, 21.85, 13.74, 0.36884, 17, 44.74, 14.94, 7.9E-4, 24, 31.3, -63.16, 0, 26, -4.02, -62.28, 0, 27, -30.96, -58.43, 1.0E-5, 28, -53.43, -52.51, 1.0E-5, 11, 11, 47.74, -30.88, 0.0044, 12, 27.8, -31.28, 0.08184, 13, 10.38, -31.28, 0.11018, 14, -11, -30.85, 0.05389, 20, -10, 15.31, 0.11676, 19, 17.37, 17.14, 0.55383, 18, 44.54, 14.22, 0.07878, 24, 52.35, -71.64, 0, 26, 17.59, -69.16, 1.0E-5, 27, -10.55, -68.35, 1.1E-4, 28, -34.33, -64.76, 1.6E-4, 10, 12, 42.27, -43.52, 0.00208, 13, 24.85, -43.52, 0.03653, 14, 2.93, -43.68, 0.14534, 21, -15.03, 9.04, 0.0207, 20, 8.83, 13.32, 0.69079, 19, 35.31, 11.05, 0.10351, 24, 64.31, -86.33, 0, 26, 30.62, -82.92, 4.0E-5, 27, 0.34, -83.85, 4.2E-4, 28, -25.32, -81.43, 5.6E-4, 6, 7, 13.91, 6.19, 0.76076, 8, -9.21, 4.44, 0.04187, 21, -130.27, -58.3, 0, 22, 2.87, -17.56, 0.19736, 24, -47.74, -13.81, 0, 28, -121.88, 10.71, 0, 7, 7, 29.85, 8.74, 0.18755, 8, 6.84, 6.14, 0.60727, 9, -12.16, 6.98, 0.01072, 21, -120.91, -45.15, 0, 22, 18.93, -19.17, 0.15823, 23, -5.04, -19.46999, 0.03622, 28, -106.66, 5.35, 0, 7, 8, 22.41, 6.7, 0.23998, 9, 3.4, 6.42, 0.54976, 10, -14.4, 7.03, 0.0091, 22, 34.29, -21.81, 0.02342, 23, 10.43, -21.28, 0.16447, 24, -16.57, -19.66, 0.01325, 28, -92.35, -0.84, 0, 7, 9, 20.65, 5.87, 0.11584, 10, 2.8, 5.76, 0.55343, 11, -13.69, 4.69, 0.06153, 23, 27.57, -23.23, 0.08106, 24, 0.26, -23.38, 0.17777, 25, -19.73, -24.92, 0.01034, 28, -76.5, -7.64, 0, 7, 10, 23.35, 4.34, 0.03819, 11, 6.89, 4.9, 0.66803, 12, -11.69, 5.98, 0.11848, 21, -87.15, -3.74, 0, 24, 20.39, -27.72, 0.0491, 25, 0.64999, -27.75, 0.09962, 26, -17.54, -27.75, 0.02654, 1, 12, 8.89, -0.13, 1, 1, 13, 10.38, -1.24, 1, 11, 12, 27.8, 31.57, 0.01505, 13, 10.38, 31.57, 0.06274, 14, -8.38, 31.95, 0.04512, 21, -83.48, 43.18, 0, 20, -45.35, 67.3, 3.2E-4, 19, -5.66, 75.62999, 6.0E-5, 18, 30.9, 75.58999, 0, 24, 63.93, -9.85, 0, 26, 24.54, -6.68, 0.05191, 27, 5.31, -7.52, 0.80219, 28, -11.42, -6.22, 0.02256, 10, 11, 27.77, 27.38, 0.02713, 12, 10, 27.68, 0.10423, 13, -7.41, 27.68, 0.05531, 14, -26.33, 28.8, 0.00294, 21, -91.2, 26.67, 0, 20, -57.88, 54.07, 1.0E-5, 19, -20.79999, 65.48, 0, 25, 24.61, -8.58, 0.12563, 26, 6.41, -8.58, 0.6323, 27, -12.89, -6.8, 0.05241, 6, 10, 24.32, 27.69, 0.02832, 11, 6.02, 28.25, 0.13539, 12, -11.69, 29.35, 0.05154, 24, 24.7, -4.76, 0.21935, 25, 3.23, -4.53, 0.56132, 26, -14.96, -4.53, 0.00405, 2, 23, 29.88, -1.65, 0.5, 24, 4.81, -2.16, 0.5, 1, 23, 10.85, -2.33999, 1, 6, 7, 24.12, 27.65, 0.01021, 8, 2.11999, 25.33, 0.04765, 9, -15.5, 26.45, 0.00588, 22, 18.23, 0.57, 0.67538, 23, -6.8, 0.2, 0.26085, 28, -102.67, 24.7, 0, 1, 22, 3.19, 1.47, 1 ],
  				"hull": 29,
  				"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 0, 56 ],
  				"width": 140,
  				"height": 157
  			}
  		},
  		"images/shengzi_0001s_0000_shengzi_toufa02": {
  			"images/shengzi_0001s_0000_shengzi_toufa02": {
  				"type": "mesh",
  				"uvs": [ 0.27603, 0, 0.1446, 0.13189, 0, 0.277, 0, 0.48963, 0.08576, 0.70225, 0.30322, 0.84843, 0.52067, 0.9946, 1, 1, 1, 0.82185, 1, 0.62251, 1, 0.42318, 1, 0.3216, 1, 0.22385, 1, 0, 0.6294, 0 ],
  				"triangles": [ 5, 4, 9, 8, 5, 9, 6, 5, 8, 6, 8, 7, 3, 2, 10, 3, 10, 9, 4, 3, 9, 14, 13, 12, 1, 0, 14, 12, 1, 14, 1, 12, 11, 2, 1, 11, 2, 11, 10 ],
  				"vertices": [ 1, 30, -2.84, -6.85, 1, 2, 30, 3.61, -8.25, 0.97941, 31, -10.57, -4.62, 0.02058, 2, 30, 10.7, -9.79, 0.67746, 31, -4.56, -8.71, 0.32253, 3, 30, 20, -7.52, 0.08602, 31, 4.9, -10.09, 0.885, 32, -9.33, -8.27, 0.02896, 2, 31, 14.64, -9.60999, 0.48991, 32, 0.27, -9.89999, 0.51007, 3, 30, 34.09999, 2.79, 0, 31, 21.83, -5.82, 0.03898, 32, 8.12, -7.77, 0.961, 2, 30, 39.34999, 9, 0, 32, 15.97, -5.63, 0.99999, 2, 30, 37.08, 19.29999, 0, 32, 19.94, 4.13, 1, 2, 31, 22.86, 9.51, 0.00227, 32, 12.45, 6.98, 0.99771, 3, 30, 20.58, 15.26, 0.01216, 31, 13.99, 10.81, 0.30509, 32, 4.06, 10.17, 0.68273, 3, 30, 11.87, 13.13, 0.30425, 31, 5.11, 12.1, 0.59906, 32, -4.31, 13.35, 0.09667, 3, 30, 7.43, 12.05, 0.63005, 31, 0.58999, 12.76, 0.35635, 32, -8.58, 14.98, 0.01359, 2, 30, 3.16, 11, 0.87281, 31, -3.75, 13.39, 0.12718, 1, 30, -6.62, 8.60999, 1, 1, 30, -4.67999, 0.69, 1 ],
  				"hull": 15,
  				"edges": [ 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 24, 26, 26, 28, 0, 28, 0, 2, 2, 4, 2, 24, 4, 20, 6, 18, 8, 18, 10, 16, 6, 20, 20, 22, 22, 24, 4, 22 ],
  				"width": 22,
  				"height": 45
  			}
  		},
  		"images/shengzi_0001s_0014_shengzi_bu": {
  			"images/shengzi_0001s_0014_shengzi_bu": {
  				"type": "mesh",
  				"uvs": [ 0.27955, 0, 0.18119, 0.07684, 0.15661, 0.17352, 0.15661, 0.26451, 0.14431, 0.36119, 0.13202, 0.45787, 0.10743, 0.59436, 0.05825, 0.73085, 0.03366, 0.85597, 0, 1, 1, 1, 0.93114, 0.85597, 0.89425, 0.71948, 0.89425, 0.5773, 0.86966, 0.42375, 0.88196, 0.34413, 0.86966, 0.24176, 0.88196, 0.1394, 0.84508, 0.04272, 0.74672, 0, 0.55002, 0, 0.53772, 0.07115, 0.55002, 0.18489, 0.51314, 0.25882, 0.52543, 0.37825, 0.52543, 0.46356, 0.47625, 0.5773, 0.47625, 0.71948, 0.47625, 0.85597 ],
  				"triangles": [ 10, 9, 28, 9, 8, 28, 28, 11, 10, 11, 28, 12, 28, 27, 12, 8, 7, 28, 28, 7, 27, 27, 7, 6, 27, 26, 12, 27, 6, 26, 12, 26, 13, 6, 5, 26, 13, 26, 25, 25, 14, 13, 26, 5, 25, 25, 5, 4, 4, 24, 25, 25, 24, 14, 14, 24, 15, 24, 4, 3, 1, 23, 24, 24, 16, 15, 16, 24, 22, 24, 23, 22, 24, 3, 2, 1, 24, 2, 23, 1, 0, 16, 22, 17, 17, 22, 19, 23, 21, 22, 23, 0, 21, 18, 17, 19, 22, 21, 19, 19, 21, 20, 21, 0, 20 ],
  				"vertices": [ 2, 1, -8.71, -16.79, 0.99708, 2, -29.48, -16.79, 0.00291, 2, 1, 2.58, -23.48, 0.91323, 2, -18.18, -23.48, 0.08676, 3, 1, 16.79, -25.15, 0.61324, 2, -3.97, -25.15, 0.3762, 3, -28.1, -25.88, 0.01054, 4, 1, 30.17, -25.15, 0.20655, 2, 9.39999, -25.15, 0.66576, 3, -14.73, -25.54, 0.12738, 4, -41.50999, -24.48, 2.9E-4, 4, 1, 44.38, -25.99, 0.01521, 2, 23.61, -25.99, 0.49414, 3, -0.5, -26.01, 0.4622, 4, -27.3, -25.32, 0.02842, 4, 2, 37.82, -26.83, 0.156, 3, 13.71, -26.48, 0.64648, 4, -13.09, -26.16, 0.19555, 5, -37.34, -25, 0.00194, 5, 2, 57.88, -28.5, 0.00488, 3, 33.81, -27.64, 0.26456, 4, 6.96, -27.83, 0.60127, 5, -17.34, -27.3, 0.12752, 6, -40.27, -25.05, 0.00171, 4, 3, 53.96, -30.47, 0.01919, 4, 27.03, -31.17, 0.36968, 5, 2.59999, -31.27, 0.49236, 6, -20.58, -30.15, 0.11874, 3, 4, 45.42, -32.84, 0.07517, 5, 20.93, -33.50999, 0.43089, 6, -2.41, -33.43, 0.49392, 2, 5, 42.02, -36.46, 0.23247, 6, 18.46999, -37.57, 0.76752, 2, 5, 44.15, 31.49, 0.05398, 6, 24.45, 30.15, 0.94601, 3, 4, 45.42, 28.17, 0.03957, 5, 22.84, 27.47, 0.3397, 6, 2.95, 27.35, 0.6207, 4, 3, 50.83, 26.31, 0.02828, 4, 25.36, 25.67, 0.39995, 5, 2.71, 25.59, 0.48634, 6, -17.25, 26.62, 0.08542, 4, 2, 55.38, 25, 0.00227, 3, 29.94, 25.77, 0.36898, 4, 4.46, 25.67, 0.55617, 5, -18.17, 26.25, 0.07255, 4, 1, 53.57, 23.32, 2.6E-4, 2, 32.8, 23.32, 0.25322, 3, 7.41, 23.52, 0.67147, 4, -18.11, 23.99, 0.07504, 4, 1, 41.87, 24.16, 0.03943, 2, 21.1, 24.16, 0.577, 3, -4.3, 24.06, 0.37747, 4, -29.81, 24.83, 0.00606, 3, 1, 26.82, 23.32, 0.31819, 2, 6.05, 23.32, 0.60816, 3, -19.32, 22.84, 0.07363, 3, 1, 11.77, 24.16, 0.76945, 2, -8.99, 24.16, 0.22969, 3, -34.38, 23.29, 8.4E-4, 2, 1, -2.43, 21.65, 0.97088, 2, -23.2, 21.65, 0.02911, 2, 1, -8.71, 14.96, 0.99884, 2, -29.48, 14.96, 0.00115, 1, 1, -8.71, 1.59, 1, 1, 1, 1.74, 0.75, 1, 2, 1, 18.45999, 1.59, 0.81949, 2, -2.3, 1.59, 0.1805, 1, 2, 16.08, -1.75, 1, 2, 2, 26.12, -0.07, 0.5, 3, 1.33, -0.04, 0.5, 1, 3, 13.86, 0.27, 1, 3, 3, 30.66, -2.63, 0.3339, 4, 4.46, -2.75, 0.6642, 5, -19.06, -2.15, 0.00189, 2, 4, 25.36, -2.75, 0.51603, 5, 1.82, -2.81, 0.48396, 2, 5, 21.87, -3.43, 0.5, 6, 0.23, -3.45, 0.5 ],
  				"hull": 21,
  				"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 0, 40 ],
  				"width": 68,
  				"height": 147
  			}
  		},
  		"images/shengzi_0001s_0018_shengzi_baozhu": {
  			"images/shengzi_0001s_0018_shengzi_baozhu": { "x": 128.06, "y": 47.31, "rotation": -106.63, "width": 10, "height": 20 }
  		},
  		"images/shengzi_0001s_0020_shengzi_fazhang": {
  			"images/shengzi_0001s_0020_shengzi_fazhang": { "x": 50.11, "y": 21.16, "rotation": -106.45, "width": 144, "height": 311 }
  		}
  	}
  },
  "events": {
  	"atk1": {},
  	"atk2": {},
  	"rush": {},
  	"skillA1": {},
  	"skillB1": {},
  	"skillC1": {}
  },
  "animations": {
  	"dead": {
  		"bones": {
  			"bone25": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": 3.31, "y": -2.43 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0001s_0000_shengzi_toufa02": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 2.35 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -6.56 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0002_shengzi_maozi00": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": -4.68 },
  					{ "time": 1, "angle": -2.34 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": -3.67, "y": 9.8 },
  					{ "time": 1, "x": -1.83, "y": 4.9 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 1.031, "y": 0.945 },
  					{ "time": 1, "x": 1.015, "y": 0.972 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0000_shengzi_yan01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1 },
  					{ "time": 0.4333, "x": 0.309, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0.309, "y": 1 },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone39": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0007_shengzi_youshou00": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 14.9 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone30": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 3.54 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone27": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -9.2 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 13.58 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.3333, "x": 1, "y": 0.913 },
  					{ "time": 0.6666, "x": 1, "y": 1 },
  					{ "time": 1, "x": 0.962, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0001s_0020_shengzi_fazhang": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone20": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": -3.66 },
  					{ "time": 1, "angle": -1.83 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone12": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 1.09, "y": 0 },
  					{ "time": 1, "x": 0.54, "y": 0 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone26": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 2.02 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": 1.89, "y": 2.51 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone35": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -4.09 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone24": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 3.59 },
  					{ "time": 1, "angle": 4.07 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 4.45, "y": 0.77 },
  					{ "time": 1, "x": 1.11, "y": -0.18 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone37": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 0.11 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone31": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": 5.61 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone33": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": 3.34 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone21": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0029_shengzi_bei": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 0, "y": 3.27 },
  					{ "time": 1, "x": 0, "y": 1.63 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone15": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": 4.78 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": 2.88, "y": 0.33 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0009_shengzi_zuoshou00": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 1.36 },
  					{ "time": 1, "angle": 0.68 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone29": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -2.77 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone14": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": 2.81 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": -0.41, "y": 1.03 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0020_shengzi_youjian01": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -16.04 },
  					{ "time": 0.6666, "angle": -14.01 },
  					{ "time": 1, "angle": -3.87 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 6.04, "y": 0 },
  					{ "time": 1, "x": 3.02, "y": 0 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 0.971, "y": 1 },
  					{ "time": 1, "x": 0.985, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone9": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone18": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": 1.46 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0022_shengzi_zuopijian01": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 8.86 },
  					{ "time": 0.6666, "angle": 6.49 },
  					{ "time": 1, "angle": -6.05 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone23": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 3.81 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone22": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 2.15 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone32": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": -0.15 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone5": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0027_shengzi_bu02": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 11.3 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone17": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": -1.06 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone13": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": -4.96 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone36": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -6.73 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone10": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone6": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone19": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 1 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone34": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": 20.28 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone28": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -9.2 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 13.58 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.3333, "x": 1, "y": 0.913 },
  					{ "time": 0.6666, "x": 1, "y": 1 },
  					{ "time": 1, "x": 0.962, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 1.031, "y": 1 },
  					{ "time": 1, "x": 1.015, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone38": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 1.36 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0024_shengzi_youpijian": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -8.69 },
  					{ "time": 0.6666, "angle": -6.2 },
  					{ "time": 1, "angle": 6.46 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 6.04, "y": -4.83 },
  					{ "time": 1, "x": 3.02, "y": -2.41 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0019_shengzi_weijin01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": -3.67, "y": 9.8 },
  					{ "time": 1, "x": -1.83, "y": 4.9 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0008_shengzi_youbi00": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -1.09 },
  					{ "time": 0.6666, "angle": 8.35 },
  					{ "time": 1, "angle": 11.83 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.3333, "x": -2.41, "y": -0.3 },
  					{ "time": 0.6666, "x": 0, "y": 4.22 },
  					{ "time": 1, "x": 0, "y": 2.11 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone7": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone8": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": -1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": -1, "y": 1 }
  				]
  			},
  			"bone11": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0001s_0014_shengzi_bu": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 0, "y": 9.69 },
  					{ "time": 1, "x": 0, "y": 4.84 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 1.031, "y": 0.945 },
  					{ "time": 1, "x": 1.015, "y": 0.972 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone16": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": -1.06 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0021_shengzi_zuojian01": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 11.12 },
  					{ "time": 0.6666, "angle": 10.2 },
  					{ "time": 1, "angle": -1.5 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0010_shengzi_zuobi00": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": -3.81, "y": 0 },
  					{ "time": 1, "x": -1.9, "y": 0 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0028_shengzi_bu03": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.94 },
  					{ "time": 1, "angle": -5.43 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			}
  		}
  	},
  	"idle": {
  		"bones": {
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0001s_0014_shengzi_bu": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 0, "y": 9.69 },
  					{ "time": 1, "x": 0, "y": 4.84 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 1.031, "y": 0.945 },
  					{ "time": 1, "x": 1.015, "y": 0.972 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 1.031, "y": 0.945 },
  					{ "time": 1, "x": 1.015, "y": 0.972 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 1.031, "y": 1 },
  					{ "time": 1, "x": 1.015, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 0.971, "y": 1 },
  					{ "time": 1, "x": 0.985, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone5": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0008_shengzi_youbi00": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -1.09 },
  					{ "time": 0.6666, "angle": 8.35 },
  					{ "time": 1, "angle": 11.83 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.3333, "x": -2.41, "y": -0.3 },
  					{ "time": 0.6666, "x": 0, "y": 4.22 },
  					{ "time": 1, "x": 0, "y": 2.11 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0007_shengzi_youshou00": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 14.9 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0010_shengzi_zuobi00": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": -3.81, "y": 0 },
  					{ "time": 1, "x": -1.9, "y": 0 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0009_shengzi_zuoshou00": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 1.36 },
  					{ "time": 1, "angle": 0.68 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0029_shengzi_bei": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 0, "y": 3.27 },
  					{ "time": 1, "x": 0, "y": 1.63 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone6": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone7": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone8": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone9": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone10": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone11": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone12": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 1.09, "y": 0 },
  					{ "time": 1, "x": 0.54, "y": 0 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone13": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": -4.96 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone14": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": 2.81 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": -0.41, "y": 1.03 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone15": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": 4.78 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": 2.88, "y": 0.33 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone16": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": -1.06 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone17": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": -1.06 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone18": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": 1.46 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone19": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 1 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone20": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": -3.66 },
  					{ "time": 1, "angle": -1.83 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone21": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone22": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 2.15 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone23": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 3.81 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone24": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 3.59 },
  					{ "time": 1, "angle": 4.07 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 4.45, "y": 0.77 },
  					{ "time": 1, "x": 1.11, "y": -0.18 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone25": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": 3.31, "y": -2.43 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone26": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 2.02 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": 1.89, "y": 2.51 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0019_shengzi_weijin01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": -3.67, "y": 9.8 },
  					{ "time": 1, "x": -1.83, "y": 4.9 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0022_shengzi_zuopijian01": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 8.86 },
  					{ "time": 0.6666, "angle": 6.49 },
  					{ "time": 1, "angle": -6.05 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0021_shengzi_zuojian01": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 11.12 },
  					{ "time": 0.6666, "angle": 10.2 },
  					{ "time": 1, "angle": -1.5 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0020_shengzi_youjian01": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -16.04 },
  					{ "time": 0.6666, "angle": -14.01 },
  					{ "time": 1, "angle": -3.87 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 6.04, "y": 0 },
  					{ "time": 1, "x": 3.02, "y": 0 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0024_shengzi_youpijian": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -8.69 },
  					{ "time": 0.6666, "angle": -6.2 },
  					{ "time": 1, "angle": 6.46 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 6.04, "y": -4.83 },
  					{ "time": 1, "x": 3.02, "y": -2.41 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0002_shengzi_maozi00": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": -4.68 },
  					{ "time": 1, "angle": -2.34 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": -3.67, "y": 9.8 },
  					{ "time": 1, "x": -1.83, "y": 4.9 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0000_shengzi_yan01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1 },
  					{ "time": 0.4333, "x": 0.309, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0.309, "y": 1 },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0001s_0000_shengzi_toufa02": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 2.35 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -6.56 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone27": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -9.2 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 13.58 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.3333, "x": 1, "y": 0.913 },
  					{ "time": 0.6666, "x": 1, "y": 1 },
  					{ "time": 1, "x": 0.962, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone28": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -9.2 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 13.58 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.3333, "x": 1, "y": 0.913 },
  					{ "time": 0.6666, "x": 1, "y": 1 },
  					{ "time": 1, "x": 0.962, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0028_shengzi_bu03": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.94 },
  					{ "time": 1, "angle": -5.43 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0027_shengzi_bu02": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 11.3 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone29": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -2.77 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone30": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 3.54 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone31": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": 5.61 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone32": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": -0.15 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone33": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": 3.34 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone34": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": 20.28 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone35": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -4.09 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone36": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -6.73 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone37": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 0.11 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone38": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 1.36 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone39": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0001s_0020_shengzi_fazhang": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			}
  		}
  	},
  	"keep": {
  		"bones": {
  			"bone27": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -9.2 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 13.58 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.3333, "x": 1, "y": 0.913 },
  					{ "time": 0.6666, "x": 1, "y": 1 },
  					{ "time": 1, "x": 0.962, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0024_shengzi_youpijian": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -8.69 },
  					{ "time": 0.6666, "angle": -6.2 },
  					{ "time": 1, "angle": 6.46 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 6.04, "y": -4.83 },
  					{ "time": 1, "x": 3.02, "y": -2.41 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone36": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -6.73 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone10": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone21": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone29": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -2.77 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone24": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 3.59 },
  					{ "time": 1, "angle": 4.07 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 4.45, "y": 0.77 },
  					{ "time": 1, "x": 1.11, "y": -0.18 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone5": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone15": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": 4.78 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": 2.88, "y": 0.33 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone7": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0001s_0000_shengzi_toufa02": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 2.35 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -6.56 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone26": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 2.02 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": 1.89, "y": 2.51 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone35": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": -4.09 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone33": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": 3.34 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 1.031, "y": 1 },
  					{ "time": 1, "x": 1.015, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone8": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0010_shengzi_zuobi00": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": -3.81, "y": 0 },
  					{ "time": 1, "x": -1.9, "y": 0 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0002_shengzi_maozi00": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": -4.68 },
  					{ "time": 1, "angle": -2.34 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": -3.67, "y": 9.8 },
  					{ "time": 1, "x": -1.83, "y": 4.9 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone17": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": -1.06 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0007_shengzi_youshou00": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 14.9 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone39": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone22": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 2.15 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0001s_0020_shengzi_fazhang": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone31": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": 5.61 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0000_shengzi_yan01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.4, "x": 1, "y": 1 },
  					{ "time": 0.4333, "x": 0.309, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0.309, "y": 1 },
  					{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone9": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone28": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -9.2 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 13.58 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.3333, "x": 1, "y": 0.913 },
  					{ "time": 0.6666, "x": 1, "y": 1 },
  					{ "time": 1, "x": 0.962, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone14": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": 2.81 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": -0.41, "y": 1.03 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": -1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": -1, "y": 1 }
  				]
  			},
  			"images/shengzi_0001s_0014_shengzi_bu": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 0, "y": 9.69 },
  					{ "time": 1, "x": 0, "y": 4.84 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 1.031, "y": 0.945 },
  					{ "time": 1, "x": 1.015, "y": 0.972 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone32": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": -0.15 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone30": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 3.54 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0027_shengzi_bu02": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 11.3 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0029_shengzi_bei": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 0, "y": 3.27 },
  					{ "time": 1, "x": 0, "y": 1.63 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone23": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 3.81 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone20": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": -3.66 },
  					{ "time": 1, "angle": -1.83 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone19": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 1 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone18": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": 1.46 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0020_shengzi_youjian01": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -16.04 },
  					{ "time": 0.6666, "angle": -14.01 },
  					{ "time": 1, "angle": -3.87 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 6.04, "y": 0 },
  					{ "time": 1, "x": 3.02, "y": 0 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone6": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone13": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": -4.96 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 0.971, "y": 1 },
  					{ "time": 1, "x": 0.985, "y": 1 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone16": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.93 },
  					{ "time": 1, "angle": -1.06 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6666, "x": 1.031, "y": 0.945 },
  					{ "time": 1, "x": 1.015, "y": 0.972 },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0009_shengzi_zuoshou00": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 1.36 },
  					{ "time": 1, "angle": 0.68 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0028_shengzi_bu03": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6666, "angle": 0.94 },
  					{ "time": 1, "angle": -5.43 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone25": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0 },
  					{ "time": 1, "x": 3.31, "y": -2.43 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone37": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 0.11 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone38": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -4.76 },
  					{ "time": 0.6666, "angle": 0 },
  					{ "time": 1, "angle": 1.36 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone34": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 3.55 },
  					{ "time": 0.6666, "angle": 4.14 },
  					{ "time": 1, "angle": 20.28 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone12": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 1.09, "y": 0 },
  					{ "time": 1, "x": 0.54, "y": 0 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0021_shengzi_zuojian01": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 11.12 },
  					{ "time": 0.6666, "angle": 10.2 },
  					{ "time": 1, "angle": -1.5 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0008_shengzi_youbi00": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -1.09 },
  					{ "time": 0.6666, "angle": 8.35 },
  					{ "time": 1, "angle": 11.83 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.3333, "x": -2.41, "y": -0.3 },
  					{ "time": 0.6666, "x": 0, "y": 4.22 },
  					{ "time": 1, "x": 0, "y": 2.11 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0019_shengzi_weijin01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": -3.67, "y": 9.8 },
  					{ "time": 1, "x": -1.83, "y": 4.9 },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"images/shengzi_0000s_0022_shengzi_zuopijian01": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": 8.86 },
  					{ "time": 0.6666, "angle": 6.49 },
  					{ "time": 1, "angle": -6.05 },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			},
  			"bone11": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6666, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 1.3333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.3333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.3333, "x": 1, "y": 1 }
  				]
  			}
  		}
  	}
  }
  }