heimo_suolian.json
91.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
{
"skeleton": { "hash": "7wILg7MimkUKSpa8cNF5cvfhYwQ", "spine": "3.4.02", "width": 697.6, "height": 684.91, "images": "" },
"bones": [
{ "name": "root" },
{ "name": "images/HM_0002", "parent": "root", "length": 91.96, "rotation": 90.75, "x": -572.61, "y": 28.54 },
{ "name": "bone", "parent": "images/HM_0002", "length": 80.92, "rotation": 0.06, "x": 89.94, "y": -1.84 },
{ "name": "bone2", "parent": "bone", "length": 71.68, "rotation": 0.1, "x": 80.92 },
{ "name": "bone3", "parent": "bone2", "length": 78.61, "rotation": -1.76, "x": 72.43, "y": -0.01 },
{ "name": "bone4", "parent": "bone3", "length": 71.67, "rotation": 0.84, "x": 78.61 },
{ "name": "bone5", "parent": "bone4", "length": 70.55, "rotation": -1.87, "x": 71.67, "y": 1.15 },
{ "name": "bone6", "parent": "bone5", "length": 78.61, "rotation": 2.72, "x": 70.55 },
{ "name": "bone7", "parent": "bone6", "length": 74.02, "rotation": 0.94, "x": 78.61 },
{ "name": "images/HM_2", "parent": "root", "length": 91.96, "rotation": 90.75, "x": -708.5, "y": 47.28 },
{ "name": "bone8", "parent": "images/HM_2", "length": 80.92, "rotation": 0.06, "x": 89.94, "y": -1.84 },
{ "name": "bone9", "parent": "bone8", "length": 71.68, "rotation": 0.1, "x": 80.92 },
{ "name": "bone10", "parent": "bone9", "length": 78.61, "rotation": -1.76, "x": 72.43, "y": -0.01 },
{ "name": "bone11", "parent": "bone10", "length": 71.67, "rotation": 0.84, "x": 78.61 },
{ "name": "bone12", "parent": "bone11", "length": 70.55, "rotation": -1.87, "x": 71.67, "y": 1.15 },
{ "name": "bone13", "parent": "bone12", "length": 78.61, "rotation": 2.72, "x": 70.55 },
{ "name": "bone14", "parent": "bone13", "length": 74.02, "rotation": 0.94, "x": 78.61 },
{ "name": "images/HM_3", "parent": "root", "length": 91.96, "rotation": 87.64, "x": -978.18, "y": 70.71 },
{ "name": "bone15", "parent": "images/HM_3", "length": 80.92, "rotation": 0.06, "x": 89.94, "y": -1.84 },
{ "name": "bone16", "parent": "bone15", "length": 71.68, "rotation": 0.1, "x": 80.92 },
{ "name": "bone17", "parent": "bone16", "length": 78.61, "rotation": -1.76, "x": 72.43, "y": -0.01 },
{ "name": "bone18", "parent": "bone17", "length": 71.67, "rotation": 0.84, "x": 78.61 },
{ "name": "bone19", "parent": "bone18", "length": 70.55, "rotation": -1.87, "x": 71.67, "y": 1.15 },
{ "name": "bone20", "parent": "bone19", "length": 78.61, "rotation": 2.72, "x": 70.55 },
{ "name": "bone21", "parent": "bone20", "length": 74.02, "rotation": 0.94, "x": 78.61 },
{ "name": "images/HM_4", "parent": "root", "length": 91.96, "rotation": 90.75, "x": -1003.8, "y": 89.45 },
{ "name": "bone22", "parent": "images/HM_4", "length": 80.92, "rotation": 0.06, "x": 89.94, "y": -1.84 },
{ "name": "bone23", "parent": "bone22", "length": 71.68, "rotation": 0.1, "x": 80.92 },
{ "name": "bone24", "parent": "bone23", "length": 78.61, "rotation": -1.76, "x": 72.43, "y": -0.01 },
{ "name": "bone25", "parent": "bone24", "length": 71.67, "rotation": 0.84, "x": 78.61 },
{ "name": "bone26", "parent": "bone25", "length": 70.55, "rotation": -1.87, "x": 71.67, "y": 1.15 },
{ "name": "bone27", "parent": "bone26", "length": 78.61, "rotation": 2.72, "x": 70.55 },
{ "name": "bone28", "parent": "bone27", "length": 74.02, "rotation": 0.94, "x": 78.61 },
{ "name": "images/HM_5", "parent": "root", "length": 91.96, "rotation": 79.98, "x": -1154.24, "y": 66.02 },
{ "name": "bone29", "parent": "images/HM_5", "length": 80.92, "rotation": 0.06, "x": 89.94, "y": -1.84 },
{ "name": "bone30", "parent": "bone29", "length": 71.68, "rotation": 0.1, "x": 80.92 },
{ "name": "bone31", "parent": "bone30", "length": 78.61, "rotation": -1.76, "x": 72.43, "y": -0.01 },
{ "name": "bone32", "parent": "bone31", "length": 71.67, "rotation": 0.84, "x": 78.61 },
{ "name": "bone33", "parent": "bone32", "length": 70.55, "rotation": -1.87, "x": 71.67, "y": 1.15 },
{ "name": "bone34", "parent": "bone33", "length": 78.61, "rotation": 2.72, "x": 70.55 },
{ "name": "bone35", "parent": "bone34", "length": 74.02, "rotation": 0.94, "x": 78.61 },
{ "name": "images/HM_6", "parent": "root", "length": 91.96, "rotation": 90.75, "x": -1229.21, "y": 66.02 },
{ "name": "bone36", "parent": "images/HM_6", "length": 80.92, "rotation": 0.06, "x": 89.94, "y": -1.84 },
{ "name": "bone37", "parent": "bone36", "length": 71.68, "rotation": 0.1, "x": 80.92 },
{ "name": "bone38", "parent": "bone37", "length": 78.61, "rotation": -1.76, "x": 72.43, "y": -0.01 },
{ "name": "bone39", "parent": "bone38", "length": 71.67, "rotation": 0.84, "x": 78.61 },
{ "name": "bone40", "parent": "bone39", "length": 70.55, "rotation": -1.87, "x": 71.67, "y": 1.15 },
{ "name": "bone41", "parent": "bone40", "length": 78.61, "rotation": 2.72, "x": 70.55 },
{ "name": "bone42", "parent": "bone41", "length": 74.02, "rotation": 0.94, "x": 78.61 }
],
"slots": [
{ "name": "images/HM_0002", "bone": "images/HM_0002", "attachment": "images/HM_0002" },
{ "name": "images/HM_2", "bone": "images/HM_2", "attachment": "images/HM_0002" },
{ "name": "images/HM_3", "bone": "images/HM_3", "attachment": "images/HM_0002" },
{ "name": "images/HM_4", "bone": "images/HM_4", "attachment": "images/HM_0002" },
{ "name": "images/HM_5", "bone": "images/HM_5", "attachment": "images/HM_0002" },
{ "name": "images/HM_6", "bone": "images/HM_6", "attachment": "images/HM_0002" }
],
"skins": {
"default": {
"images/HM_0002": {
"images/HM_0002": {
"type": "mesh",
"uvs": [ 0, 0, 0, 0.10209, 0, 0.11235, 0, 0.1261, 0, 0.21823, 0, 0.22923, 0, 0.2416, 0, 0.34044, 0, 0.35364, 0, 0.3652, 0, 0.46028, 0, 0.47476, 0, 0.48635, 0, 0.57762, 0, 0.58921, 0, 0.6037, 0, 0.69703, 0, 0.70747, 0, 0.71908, 0, 0.81539, 0, 0.82816, 0, 0.84324, 0, 0.93606, 0, 0.99987, 1, 1, 1, 0.93838, 1, 0.8444, 1, 0.82932, 1, 0.81539, 1, 0.71825, 1, 0.70549, 1, 0.69157, 1, 0.60302, 1, 0.5891, 1, 0.57634, 1, 0.48515, 1, 0.47123, 1, 0.45846, 1, 0.36382, 1, 0.3499, 1, 0.33597, 1, 0.24401, 1, 0.23009, 1, 0.21037, 1, 0.13086, 1, 0.11577, 1, 0.09605, 1, 0 ],
"triangles": [ 3, 2, 45, 45, 1, 46, 45, 2, 1, 1, 0, 46, 0, 47, 46, 6, 42, 41, 6, 5, 42, 42, 4, 43, 42, 5, 4, 4, 3, 43, 3, 44, 43, 3, 45, 44, 9, 8, 38, 8, 39, 38, 8, 7, 39, 7, 40, 39, 7, 6, 40, 6, 41, 40, 11, 36, 35, 11, 10, 36, 10, 37, 36, 10, 9, 37, 9, 38, 37, 15, 14, 32, 14, 33, 32, 14, 13, 33, 13, 34, 33, 13, 12, 34, 12, 35, 34, 12, 11, 35, 18, 17, 29, 17, 30, 29, 17, 16, 30, 16, 31, 30, 16, 15, 31, 15, 32, 31, 21, 27, 26, 21, 20, 27, 20, 28, 27, 20, 19, 28, 28, 18, 29, 28, 19, 18, 23, 25, 24, 23, 22, 25, 22, 26, 25, 22, 21, 26 ],
"vertices": [ 1, 8, 77.24, 18.24, 1, 2, 7, 91.84, 20.45999, 0.1579, 8, 13.56, 20.23, 0.84209, 2, 7, 85.44, 20.54999, 0.30761, 8, 7.16, 20.43, 0.69237, 2, 7, 76.86, 20.68, 0.54322, 8, -1.4, 20.7, 0.45677, 2, 6, 88.89, 22.42, 0.0912, 7, 19.37999, 21.52, 0.90879, 2, 6, 82.03, 22.19, 0.20072, 7, 12.52, 21.62, 0.79927, 2, 6, 74.31, 21.94, 0.38346, 7, 4.8, 21.74, 0.61653, 2, 5, 84.99, 20.65, 0.163, 6, 12.67, 19.92, 0.83699, 2, 5, 76.75, 20.65, 0.36357, 6, 4.44, 19.65, 0.63642, 2, 5, 69.54, 20.65, 0.57614, 6, -2.76, 19.41, 0.42385, 3, 3, 161.55, 18.04999, 4.0E-5, 4, 88.52, 20.79999, 0.24126, 5, 10.21, 20.65, 0.75869, 3, 3, 152.51, 18.19, 1.0E-4, 4, 79.48, 20.66, 0.46416, 5, 1.16999, 20.65, 0.53573, 3, 3, 145.28, 18.31, 1.6E-4, 4, 72.25, 20.56, 0.66231, 5, -6.05, 20.65, 0.33752, 3, 3, 88.34, 19.23, 0.10686, 4, 15.31, 19.71999, 0.89272, 5, -63, 20.65, 4.0E-4, 3, 3, 81.11, 19.34, 0.25518, 4, 8.08, 19.61, 0.74452, 5, -70.23, 20.65, 2.8E-4, 3, 3, 72.07, 19.49, 0.49304, 4, -0.95, 19.48, 0.5068, 5, -79.26999, 20.65, 1.5E-4, 3, 1, 184.65, 18.70999, 1.0E-5, 2, 94.73, 20.45, 0.15907, 3, 13.84, 20.43, 0.8409, 3, 1, 178.14, 18.79999, 5.0E-5, 2, 88.21, 20.54999, 0.30278, 3, 7.32, 20.53, 0.69714, 3, 1, 170.9, 18.89, 1.1E-4, 2, 80.97, 20.65, 0.49651, 3, 0.08, 20.65, 0.50335, 3, 1, 110.8, 19.69, 0.06655, 2, 20.87999, 21.51, 0.93338, 3, -60, 21.62, 5.0E-5, 3, 1, 102.84, 19.79, 0.21511, 2, 12.92, 21.62, 0.78483, 3, -67.96, 21.75, 5.0E-5, 3, 1, 93.43, 19.91, 0.46596, 2, 3.5, 21.76, 0.53399, 3, -77.37, 21.9, 3.0E-5, 1, 1, 35.50999, 20.68, 1, 1, 1, -4.3, 21.2, 1, 1, 1, -4.91, -19.79, 1, 1, 1, 33.52, -20.29, 1, 2, 1, 92.16, -21.06, 0.50815, 2, 2.19, -19.21999, 0.49184, 2, 1, 101.57, -21.19, 0.24867, 2, 11.61, -19.35, 0.75132, 2, 1, 110.26, -21.3, 0.10105, 2, 20.29, -19.48, 0.89894, 2, 2, 80.9, -20.34, 0.48777, 3, -0.06, -20.34, 0.51222, 2, 2, 88.86, -20.45999, 0.2757, 3, 7.9, -20.46999, 0.72429, 2, 2, 97.55, -20.58, 0.11497, 3, 16.58, -20.61, 0.88502, 2, 3, 71.83, -21.5, 0.49367, 4, 0.06, -21.5, 0.50632, 2, 3, 80.51999, -21.64, 0.26733, 4, 8.75, -21.37, 0.73266, 2, 3, 88.48, -21.77, 0.10874, 4, 16.70999, -21.25, 0.89125, 2, 4, 73.61, -20.42, 0.62774, 5, -5.3, -20.34, 0.37224, 2, 4, 82.3, -20.29, 0.37728, 5, 3.38, -20.34, 0.62271, 2, 4, 90.26, -20.17, 0.16971, 5, 11.34, -20.34, 0.83028, 2, 5, 70.4, -20.34, 0.53761, 6, -0.56, -21.53, 0.46238, 2, 5, 79.08999, -20.34, 0.29578, 6, 8.12, -21.24, 0.7042, 2, 5, 87.78, -20.34, 0.0932, 6, 16.79999, -20.95999, 0.90679, 2, 6, 74.15, -19.08, 0.42395, 7, 2.69, -19.23, 0.57604, 2, 6, 82.83999, -18.79, 0.21386, 7, 11.38, -19.36, 0.78613, 2, 6, 95.14, -18.39, 0.04384, 7, 23.68, -19.54, 0.95615, 2, 7, 73.29, -20.27, 0.63559, 8, -5.65, -20.17, 0.3644, 2, 7, 82.69999, -20.4, 0.38615, 8, 3.75, -20.46999, 0.61385, 2, 7, 95.01, -20.58, 0.11851, 8, 16.04999, -20.85, 0.88148, 2, 7, 154.94, -21.47, 6.9E-4, 8, 75.96, -22.73, 0.9993 ],
"hull": 48,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 0, 94 ],
"width": 41,
"height": 624
}
},
"images/HM_2": {
"images/HM_0002": {
"type": "mesh",
"uvs": [ 0, 0, 0, 0.10209, 0, 0.11235, 0, 0.1261, 0, 0.21823, 0, 0.22923, 0, 0.2416, 0, 0.34044, 0, 0.35364, 0, 0.3652, 0, 0.46028, 0, 0.47476, 0, 0.48635, 0, 0.57762, 0, 0.58921, 0, 0.6037, 0, 0.69703, 0, 0.70747, 0, 0.71908, 0, 0.81539, 0, 0.82816, 0, 0.84324, 0, 0.93606, 0, 0.99987, 1, 1, 1, 0.93838, 1, 0.8444, 1, 0.82932, 1, 0.81539, 1, 0.71825, 1, 0.70549, 1, 0.69157, 1, 0.60302, 1, 0.5891, 1, 0.57634, 1, 0.48515, 1, 0.47123, 1, 0.45846, 1, 0.36382, 1, 0.3499, 1, 0.33597, 1, 0.24401, 1, 0.23009, 1, 0.21037, 1, 0.13086, 1, 0.11577, 1, 0.09605, 1, 0 ],
"triangles": [ 3, 2, 45, 45, 1, 46, 45, 2, 1, 1, 0, 46, 0, 47, 46, 6, 42, 41, 6, 5, 42, 42, 4, 43, 42, 5, 4, 4, 3, 43, 3, 44, 43, 3, 45, 44, 9, 8, 38, 8, 39, 38, 8, 7, 39, 7, 40, 39, 7, 6, 40, 6, 41, 40, 11, 36, 35, 11, 10, 36, 10, 37, 36, 10, 9, 37, 9, 38, 37, 15, 14, 32, 14, 33, 32, 14, 13, 33, 13, 34, 33, 13, 12, 34, 12, 35, 34, 12, 11, 35, 18, 17, 29, 17, 30, 29, 17, 16, 30, 16, 31, 30, 16, 15, 31, 15, 32, 31, 21, 27, 26, 21, 20, 27, 20, 28, 27, 20, 19, 28, 28, 18, 29, 28, 19, 18, 23, 25, 24, 23, 22, 25, 22, 26, 25, 22, 21, 26 ],
"vertices": [ 1, 16, 77.24, 18.24, 1, 2, 15, 91.84, 20.45999, 0.1579, 16, 13.56, 20.23, 0.84209, 2, 15, 85.44, 20.54999, 0.30761, 16, 7.16, 20.43, 0.69237, 2, 15, 76.86, 20.68, 0.54322, 16, -1.4, 20.7, 0.45677, 2, 14, 88.89, 22.42, 0.0912, 15, 19.37999, 21.52, 0.90879, 2, 14, 82.03, 22.19, 0.20072, 15, 12.52, 21.62, 0.79927, 2, 14, 74.31, 21.94, 0.38346, 15, 4.8, 21.74, 0.61653, 2, 13, 84.99, 20.65, 0.163, 14, 12.67, 19.92, 0.83699, 2, 13, 76.75, 20.65, 0.36357, 14, 4.44, 19.65, 0.63642, 2, 13, 69.54, 20.65, 0.57614, 14, -2.76, 19.41, 0.42385, 3, 11, 161.55, 18.04999, 4.0E-5, 12, 88.52, 20.79999, 0.24126, 13, 10.21, 20.65, 0.75869, 3, 11, 152.51, 18.19, 1.0E-4, 12, 79.48, 20.66, 0.46416, 13, 1.16999, 20.65, 0.53573, 3, 11, 145.28, 18.31, 1.6E-4, 12, 72.25, 20.56, 0.66231, 13, -6.05, 20.65, 0.33752, 3, 11, 88.34, 19.23, 0.10686, 12, 15.31, 19.71999, 0.89272, 13, -63, 20.65, 4.0E-4, 3, 11, 81.11, 19.34, 0.25518, 12, 8.08, 19.61, 0.74452, 13, -70.23, 20.65, 2.8E-4, 3, 11, 72.07, 19.49, 0.49304, 12, -0.95, 19.48, 0.5068, 13, -79.26999, 20.65, 1.5E-4, 3, 9, 184.65, 18.70999, 1.0E-5, 10, 94.73, 20.45, 0.15907, 11, 13.84, 20.43, 0.8409, 3, 9, 178.14, 18.79999, 5.0E-5, 10, 88.21, 20.54999, 0.30278, 11, 7.32, 20.53, 0.69714, 3, 9, 170.9, 18.89, 1.1E-4, 10, 80.97, 20.65, 0.49651, 11, 0.08, 20.65, 0.50335, 3, 9, 110.8, 19.69, 0.06655, 10, 20.87999, 21.51, 0.93338, 11, -60, 21.62, 5.0E-5, 3, 9, 102.84, 19.79, 0.21511, 10, 12.92, 21.62, 0.78483, 11, -67.96, 21.75, 5.0E-5, 3, 9, 93.43, 19.91, 0.46596, 10, 3.5, 21.76, 0.53399, 11, -77.37, 21.9, 3.0E-5, 1, 9, 35.50999, 20.68, 1, 1, 9, -4.3, 21.2, 1, 1, 9, -4.91, -19.79, 1, 1, 9, 33.52, -20.29, 1, 2, 9, 92.16, -21.06, 0.50815, 10, 2.19, -19.21999, 0.49184, 2, 9, 101.57, -21.19, 0.24867, 10, 11.61, -19.35, 0.75132, 2, 9, 110.26, -21.3, 0.10105, 10, 20.29, -19.48, 0.89894, 2, 10, 80.9, -20.34, 0.48777, 11, -0.06, -20.34, 0.51222, 2, 10, 88.86, -20.45999, 0.2757, 11, 7.9, -20.46999, 0.72429, 2, 10, 97.55, -20.58, 0.11497, 11, 16.58, -20.61, 0.88502, 2, 11, 71.83, -21.5, 0.49367, 12, 0.06, -21.5, 0.50632, 2, 11, 80.51999, -21.64, 0.26733, 12, 8.75, -21.37, 0.73266, 2, 11, 88.48, -21.77, 0.10874, 12, 16.70999, -21.25, 0.89125, 2, 12, 73.61, -20.42, 0.62774, 13, -5.3, -20.34, 0.37224, 2, 12, 82.3, -20.29, 0.37728, 13, 3.38, -20.34, 0.62271, 2, 12, 90.26, -20.17, 0.16971, 13, 11.34, -20.34, 0.83028, 2, 13, 70.4, -20.34, 0.53761, 14, -0.56, -21.53, 0.46238, 2, 13, 79.08999, -20.34, 0.29578, 14, 8.12, -21.24, 0.7042, 2, 13, 87.78, -20.34, 0.0932, 14, 16.79999, -20.95999, 0.90679, 2, 14, 74.15, -19.08, 0.42395, 15, 2.69, -19.23, 0.57604, 2, 14, 82.83999, -18.79, 0.21386, 15, 11.38, -19.36, 0.78613, 2, 14, 95.14, -18.39, 0.04384, 15, 23.68, -19.54, 0.95615, 2, 15, 73.29, -20.27, 0.63559, 16, -5.65, -20.17, 0.3644, 2, 15, 82.69999, -20.4, 0.38615, 16, 3.75, -20.46999, 0.61385, 2, 15, 95.01, -20.58, 0.11851, 16, 16.04999, -20.85, 0.88148, 2, 15, 154.94, -21.47, 6.9E-4, 16, 75.96, -22.73, 0.9993 ],
"hull": 48,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 0, 94 ],
"width": 41,
"height": 624
}
},
"images/HM_3": {
"images/HM_0002": {
"type": "mesh",
"uvs": [ 0, 0, 0, 0.10209, 0, 0.11235, 0, 0.1261, 0, 0.21823, 0, 0.22923, 0, 0.2416, 0, 0.34044, 0, 0.35364, 0, 0.3652, 0, 0.46028, 0, 0.47476, 0, 0.48635, 0, 0.57762, 0, 0.58921, 0, 0.6037, 0, 0.69703, 0, 0.70747, 0, 0.71908, 0, 0.81539, 0, 0.82816, 0, 0.84324, 0, 0.93606, 0, 0.99987, 1, 1, 1, 0.93838, 1, 0.8444, 1, 0.82932, 1, 0.81539, 1, 0.71825, 1, 0.70549, 1, 0.69157, 1, 0.60302, 1, 0.5891, 1, 0.57634, 1, 0.48515, 1, 0.47123, 1, 0.45846, 1, 0.36382, 1, 0.3499, 1, 0.33597, 1, 0.24401, 1, 0.23009, 1, 0.21037, 1, 0.13086, 1, 0.11577, 1, 0.09605, 1, 0 ],
"triangles": [ 3, 2, 45, 45, 1, 46, 45, 2, 1, 1, 0, 46, 0, 47, 46, 6, 42, 41, 6, 5, 42, 42, 4, 43, 42, 5, 4, 4, 3, 43, 3, 44, 43, 3, 45, 44, 9, 8, 38, 8, 39, 38, 8, 7, 39, 7, 40, 39, 7, 6, 40, 6, 41, 40, 11, 36, 35, 11, 10, 36, 10, 37, 36, 10, 9, 37, 9, 38, 37, 15, 14, 32, 14, 33, 32, 14, 13, 33, 13, 34, 33, 13, 12, 34, 12, 35, 34, 12, 11, 35, 18, 17, 29, 17, 30, 29, 17, 16, 30, 16, 31, 30, 16, 15, 31, 15, 32, 31, 21, 27, 26, 21, 20, 27, 20, 28, 27, 20, 19, 28, 28, 18, 29, 28, 19, 18, 23, 25, 24, 23, 22, 25, 22, 26, 25, 22, 21, 26 ],
"vertices": [ 1, 24, 77.24, 18.24, 1, 2, 23, 91.84, 20.45999, 0.1579, 24, 13.56, 20.23, 0.84209, 2, 23, 85.44, 20.54999, 0.30761, 24, 7.16, 20.43, 0.69237, 2, 23, 76.86, 20.68, 0.54322, 24, -1.4, 20.7, 0.45677, 2, 22, 88.89, 22.42, 0.0912, 23, 19.37999, 21.52, 0.90879, 2, 22, 82.03, 22.19, 0.20072, 23, 12.52, 21.62, 0.79927, 2, 22, 74.31, 21.94, 0.38346, 23, 4.8, 21.74, 0.61653, 2, 21, 84.99, 20.65, 0.163, 22, 12.67, 19.92, 0.83699, 2, 21, 76.75, 20.65, 0.36357, 22, 4.44, 19.65, 0.63642, 2, 21, 69.54, 20.65, 0.57614, 22, -2.76, 19.41, 0.42385, 3, 19, 161.55, 18.04999, 4.0E-5, 20, 88.52, 20.79999, 0.24126, 21, 10.21, 20.65, 0.75869, 3, 19, 152.51, 18.19, 1.0E-4, 20, 79.48, 20.66, 0.46416, 21, 1.16999, 20.65, 0.53573, 3, 19, 145.28, 18.31, 1.6E-4, 20, 72.25, 20.56, 0.66231, 21, -6.05, 20.65, 0.33752, 3, 19, 88.34, 19.23, 0.10686, 20, 15.31, 19.71999, 0.89272, 21, -63, 20.65, 4.0E-4, 3, 19, 81.11, 19.34, 0.25518, 20, 8.08, 19.61, 0.74452, 21, -70.23, 20.65, 2.8E-4, 3, 19, 72.07, 19.49, 0.49304, 20, -0.95, 19.48, 0.5068, 21, -79.26999, 20.65, 1.5E-4, 3, 17, 184.65, 18.70999, 1.0E-5, 18, 94.73, 20.45, 0.15907, 19, 13.84, 20.43, 0.8409, 3, 17, 178.14, 18.79999, 5.0E-5, 18, 88.21, 20.54999, 0.30278, 19, 7.32, 20.53, 0.69714, 3, 17, 170.9, 18.89, 1.1E-4, 18, 80.97, 20.65, 0.49651, 19, 0.08, 20.65, 0.50335, 3, 17, 110.8, 19.69, 0.06655, 18, 20.87999, 21.51, 0.93338, 19, -60, 21.62, 5.0E-5, 3, 17, 102.84, 19.79, 0.21511, 18, 12.92, 21.62, 0.78483, 19, -67.96, 21.75, 5.0E-5, 3, 17, 93.43, 19.91, 0.46596, 18, 3.5, 21.76, 0.53399, 19, -77.37, 21.9, 3.0E-5, 1, 17, 35.50999, 20.68, 1, 1, 17, -4.3, 21.2, 1, 1, 17, -4.91, -19.79, 1, 1, 17, 33.52, -20.29, 1, 2, 17, 92.16, -21.06, 0.50815, 18, 2.19, -19.21999, 0.49184, 2, 17, 101.57, -21.19, 0.24867, 18, 11.61, -19.35, 0.75132, 2, 17, 110.26, -21.3, 0.10105, 18, 20.29, -19.48, 0.89894, 2, 18, 80.9, -20.34, 0.48777, 19, -0.06, -20.34, 0.51222, 2, 18, 88.86, -20.45999, 0.2757, 19, 7.9, -20.46999, 0.72429, 2, 18, 97.55, -20.58, 0.11497, 19, 16.58, -20.61, 0.88502, 2, 19, 71.83, -21.5, 0.49367, 20, 0.06, -21.5, 0.50632, 2, 19, 80.51999, -21.64, 0.26733, 20, 8.75, -21.37, 0.73266, 2, 19, 88.48, -21.77, 0.10874, 20, 16.70999, -21.25, 0.89125, 2, 20, 73.61, -20.42, 0.62774, 21, -5.3, -20.34, 0.37224, 2, 20, 82.3, -20.29, 0.37728, 21, 3.38, -20.34, 0.62271, 2, 20, 90.26, -20.17, 0.16971, 21, 11.34, -20.34, 0.83028, 2, 21, 70.4, -20.34, 0.53761, 22, -0.56, -21.53, 0.46238, 2, 21, 79.08999, -20.34, 0.29578, 22, 8.12, -21.24, 0.7042, 2, 21, 87.78, -20.34, 0.0932, 22, 16.79999, -20.95999, 0.90679, 2, 22, 74.15, -19.08, 0.42395, 23, 2.69, -19.23, 0.57604, 2, 22, 82.83999, -18.79, 0.21386, 23, 11.38, -19.36, 0.78613, 2, 22, 95.14, -18.39, 0.04384, 23, 23.68, -19.54, 0.95615, 2, 23, 73.29, -20.27, 0.63559, 24, -5.65, -20.17, 0.3644, 2, 23, 82.69999, -20.4, 0.38615, 24, 3.75, -20.46999, 0.61385, 2, 23, 95.01, -20.58, 0.11851, 24, 16.04999, -20.85, 0.88148, 2, 23, 154.94, -21.47, 6.9E-4, 24, 75.96, -22.73, 0.9993 ],
"hull": 48,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 0, 94 ],
"width": 41,
"height": 624
}
},
"images/HM_4": {
"images/HM_0002": {
"type": "mesh",
"uvs": [ 0, 0, 0, 0.10209, 0, 0.11235, 0, 0.1261, 0, 0.21823, 0, 0.22923, 0, 0.2416, 0, 0.34044, 0, 0.35364, 0, 0.3652, 0, 0.46028, 0, 0.47476, 0, 0.48635, 0, 0.57762, 0, 0.58921, 0, 0.6037, 0, 0.69703, 0, 0.70747, 0, 0.71908, 0, 0.81539, 0, 0.82816, 0, 0.84324, 0, 0.93606, 0, 0.99987, 1, 1, 1, 0.93838, 1, 0.8444, 1, 0.82932, 1, 0.81539, 1, 0.71825, 1, 0.70549, 1, 0.69157, 1, 0.60302, 1, 0.5891, 1, 0.57634, 1, 0.48515, 1, 0.47123, 1, 0.45846, 1, 0.36382, 1, 0.3499, 1, 0.33597, 1, 0.24401, 1, 0.23009, 1, 0.21037, 1, 0.13086, 1, 0.11577, 1, 0.09605, 1, 0 ],
"triangles": [ 3, 2, 45, 45, 1, 46, 45, 2, 1, 1, 0, 46, 0, 47, 46, 6, 42, 41, 6, 5, 42, 42, 4, 43, 42, 5, 4, 4, 3, 43, 3, 44, 43, 3, 45, 44, 9, 8, 38, 8, 39, 38, 8, 7, 39, 7, 40, 39, 7, 6, 40, 6, 41, 40, 11, 36, 35, 11, 10, 36, 10, 37, 36, 10, 9, 37, 9, 38, 37, 15, 14, 32, 14, 33, 32, 14, 13, 33, 13, 34, 33, 13, 12, 34, 12, 35, 34, 12, 11, 35, 18, 17, 29, 17, 30, 29, 17, 16, 30, 16, 31, 30, 16, 15, 31, 15, 32, 31, 21, 27, 26, 21, 20, 27, 20, 28, 27, 20, 19, 28, 28, 18, 29, 28, 19, 18, 23, 25, 24, 23, 22, 25, 22, 26, 25, 22, 21, 26 ],
"vertices": [ 1, 32, 77.24, 18.24, 1, 2, 31, 91.84, 20.45999, 0.1579, 32, 13.56, 20.23, 0.84209, 2, 31, 85.44, 20.54999, 0.30761, 32, 7.16, 20.43, 0.69237, 2, 31, 76.86, 20.68, 0.54322, 32, -1.4, 20.7, 0.45677, 2, 30, 88.89, 22.42, 0.0912, 31, 19.37999, 21.52, 0.90879, 2, 30, 82.03, 22.19, 0.20072, 31, 12.52, 21.62, 0.79927, 2, 30, 74.31, 21.94, 0.38346, 31, 4.8, 21.74, 0.61653, 2, 29, 84.99, 20.65, 0.163, 30, 12.67, 19.92, 0.83699, 2, 29, 76.75, 20.65, 0.36357, 30, 4.44, 19.65, 0.63642, 2, 29, 69.54, 20.65, 0.57614, 30, -2.76, 19.41, 0.42385, 3, 27, 161.55, 18.04999, 4.0E-5, 28, 88.52, 20.79999, 0.24126, 29, 10.21, 20.65, 0.75869, 3, 27, 152.51, 18.19, 1.0E-4, 28, 79.48, 20.66, 0.46416, 29, 1.16999, 20.65, 0.53573, 3, 27, 145.28, 18.31, 1.6E-4, 28, 72.25, 20.56, 0.66231, 29, -6.05, 20.65, 0.33752, 3, 27, 88.34, 19.23, 0.10686, 28, 15.31, 19.71999, 0.89272, 29, -63, 20.65, 4.0E-4, 3, 27, 81.11, 19.34, 0.25518, 28, 8.08, 19.61, 0.74452, 29, -70.23, 20.65, 2.8E-4, 3, 27, 72.07, 19.49, 0.49304, 28, -0.95, 19.48, 0.5068, 29, -79.26999, 20.65, 1.5E-4, 3, 25, 184.65, 18.70999, 1.0E-5, 26, 94.73, 20.45, 0.15907, 27, 13.84, 20.43, 0.8409, 3, 25, 178.14, 18.79999, 5.0E-5, 26, 88.21, 20.54999, 0.30278, 27, 7.32, 20.53, 0.69714, 3, 25, 170.9, 18.89, 1.1E-4, 26, 80.97, 20.65, 0.49651, 27, 0.08, 20.65, 0.50335, 3, 25, 110.8, 19.69, 0.06655, 26, 20.87999, 21.51, 0.93338, 27, -60, 21.62, 5.0E-5, 3, 25, 102.84, 19.79, 0.21511, 26, 12.92, 21.62, 0.78483, 27, -67.96, 21.75, 5.0E-5, 3, 25, 93.43, 19.91, 0.46596, 26, 3.5, 21.76, 0.53399, 27, -77.37, 21.9, 3.0E-5, 1, 25, 35.50999, 20.68, 1, 1, 25, -4.3, 21.2, 1, 1, 25, -4.91, -19.79, 1, 1, 25, 33.52, -20.29, 1, 2, 25, 92.16, -21.06, 0.50815, 26, 2.19, -19.21999, 0.49184, 2, 25, 101.57, -21.19, 0.24867, 26, 11.61, -19.35, 0.75132, 2, 25, 110.26, -21.3, 0.10105, 26, 20.29, -19.48, 0.89894, 2, 26, 80.9, -20.34, 0.48777, 27, -0.06, -20.34, 0.51222, 2, 26, 88.86, -20.45999, 0.2757, 27, 7.9, -20.46999, 0.72429, 2, 26, 97.55, -20.58, 0.11497, 27, 16.58, -20.61, 0.88502, 2, 27, 71.83, -21.5, 0.49367, 28, 0.06, -21.5, 0.50632, 2, 27, 80.51999, -21.64, 0.26733, 28, 8.75, -21.37, 0.73266, 2, 27, 88.48, -21.77, 0.10874, 28, 16.70999, -21.25, 0.89125, 2, 28, 73.61, -20.42, 0.62774, 29, -5.3, -20.34, 0.37224, 2, 28, 82.3, -20.29, 0.37728, 29, 3.38, -20.34, 0.62271, 2, 28, 90.26, -20.17, 0.16971, 29, 11.34, -20.34, 0.83028, 2, 29, 70.4, -20.34, 0.53761, 30, -0.56, -21.53, 0.46238, 2, 29, 79.08999, -20.34, 0.29578, 30, 8.12, -21.24, 0.7042, 2, 29, 87.78, -20.34, 0.0932, 30, 16.79999, -20.95999, 0.90679, 2, 30, 74.15, -19.08, 0.42395, 31, 2.69, -19.23, 0.57604, 2, 30, 82.83999, -18.79, 0.21386, 31, 11.38, -19.36, 0.78613, 2, 30, 95.14, -18.39, 0.04384, 31, 23.68, -19.54, 0.95615, 2, 31, 73.29, -20.27, 0.63559, 32, -5.65, -20.17, 0.3644, 2, 31, 82.69999, -20.4, 0.38615, 32, 3.75, -20.46999, 0.61385, 2, 31, 95.01, -20.58, 0.11851, 32, 16.04999, -20.85, 0.88148, 2, 31, 154.94, -21.47, 6.9E-4, 32, 75.96, -22.73, 0.9993 ],
"hull": 48,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 0, 94 ],
"width": 41,
"height": 624
}
},
"images/HM_5": {
"images/HM_0002": {
"type": "mesh",
"uvs": [ 0, 0, 0, 0.10209, 0, 0.11235, 0, 0.1261, 0, 0.21823, 0, 0.22923, 0, 0.2416, 0, 0.34044, 0, 0.35364, 0, 0.3652, 0, 0.46028, 0, 0.47476, 0, 0.48635, 0, 0.57762, 0, 0.58921, 0, 0.6037, 0, 0.69703, 0, 0.70747, 0, 0.71908, 0, 0.81539, 0, 0.82816, 0, 0.84324, 0, 0.93606, 0, 0.99987, 1, 1, 1, 0.93838, 1, 0.8444, 1, 0.82932, 1, 0.81539, 1, 0.71825, 1, 0.70549, 1, 0.69157, 1, 0.60302, 1, 0.5891, 1, 0.57634, 1, 0.48515, 1, 0.47123, 1, 0.45846, 1, 0.36382, 1, 0.3499, 1, 0.33597, 1, 0.24401, 1, 0.23009, 1, 0.21037, 1, 0.13086, 1, 0.11577, 1, 0.09605, 1, 0 ],
"triangles": [ 3, 2, 45, 45, 1, 46, 45, 2, 1, 1, 0, 46, 0, 47, 46, 6, 42, 41, 6, 5, 42, 42, 4, 43, 42, 5, 4, 4, 3, 43, 3, 44, 43, 3, 45, 44, 9, 8, 38, 8, 39, 38, 8, 7, 39, 7, 40, 39, 7, 6, 40, 6, 41, 40, 11, 36, 35, 11, 10, 36, 10, 37, 36, 10, 9, 37, 9, 38, 37, 15, 14, 32, 14, 33, 32, 14, 13, 33, 13, 34, 33, 13, 12, 34, 12, 35, 34, 12, 11, 35, 18, 17, 29, 17, 30, 29, 17, 16, 30, 16, 31, 30, 16, 15, 31, 15, 32, 31, 21, 27, 26, 21, 20, 27, 20, 28, 27, 20, 19, 28, 28, 18, 29, 28, 19, 18, 23, 25, 24, 23, 22, 25, 22, 26, 25, 22, 21, 26 ],
"vertices": [ 1, 40, 77.24, 18.24, 1, 2, 39, 91.84, 20.45999, 0.1579, 40, 13.56, 20.23, 0.84209, 2, 39, 85.44, 20.54999, 0.30761, 40, 7.16, 20.43, 0.69237, 2, 39, 76.86, 20.68, 0.54322, 40, -1.4, 20.7, 0.45677, 2, 38, 88.89, 22.42, 0.0912, 39, 19.37999, 21.52, 0.90879, 2, 38, 82.03, 22.19, 0.20072, 39, 12.52, 21.62, 0.79927, 2, 38, 74.31, 21.94, 0.38346, 39, 4.8, 21.74, 0.61653, 2, 37, 84.99, 20.65, 0.163, 38, 12.67, 19.92, 0.83699, 2, 37, 76.75, 20.65, 0.36357, 38, 4.44, 19.65, 0.63642, 2, 37, 69.54, 20.65, 0.57614, 38, -2.76, 19.41, 0.42385, 3, 35, 161.55, 18.04999, 4.0E-5, 36, 88.52, 20.79999, 0.24126, 37, 10.21, 20.65, 0.75869, 3, 35, 152.51, 18.19, 1.0E-4, 36, 79.48, 20.66, 0.46416, 37, 1.16999, 20.65, 0.53573, 3, 35, 145.28, 18.31, 1.6E-4, 36, 72.25, 20.56, 0.66231, 37, -6.05, 20.65, 0.33752, 3, 35, 88.34, 19.23, 0.10686, 36, 15.31, 19.71999, 0.89272, 37, -63, 20.65, 4.0E-4, 3, 35, 81.11, 19.34, 0.25518, 36, 8.08, 19.61, 0.74452, 37, -70.23, 20.65, 2.8E-4, 3, 35, 72.07, 19.49, 0.49304, 36, -0.95, 19.48, 0.5068, 37, -79.26999, 20.65, 1.5E-4, 3, 33, 184.65, 18.70999, 1.0E-5, 34, 94.73, 20.45, 0.15907, 35, 13.84, 20.43, 0.8409, 3, 33, 178.14, 18.79999, 5.0E-5, 34, 88.21, 20.54999, 0.30278, 35, 7.32, 20.53, 0.69714, 3, 33, 170.9, 18.89, 1.1E-4, 34, 80.97, 20.65, 0.49651, 35, 0.08, 20.65, 0.50335, 3, 33, 110.8, 19.69, 0.06655, 34, 20.87999, 21.51, 0.93338, 35, -60, 21.62, 5.0E-5, 3, 33, 102.84, 19.79, 0.21511, 34, 12.92, 21.62, 0.78483, 35, -67.96, 21.75, 5.0E-5, 3, 33, 93.43, 19.91, 0.46596, 34, 3.5, 21.76, 0.53399, 35, -77.37, 21.9, 3.0E-5, 1, 33, 35.50999, 20.68, 1, 1, 33, -4.3, 21.2, 1, 1, 33, -4.91, -19.79, 1, 1, 33, 33.52, -20.29, 1, 2, 33, 92.16, -21.06, 0.50815, 34, 2.19, -19.21999, 0.49184, 2, 33, 101.57, -21.19, 0.24867, 34, 11.61, -19.35, 0.75132, 2, 33, 110.26, -21.3, 0.10105, 34, 20.29, -19.48, 0.89894, 2, 34, 80.9, -20.34, 0.48777, 35, -0.06, -20.34, 0.51222, 2, 34, 88.86, -20.45999, 0.2757, 35, 7.9, -20.46999, 0.72429, 2, 34, 97.55, -20.58, 0.11497, 35, 16.58, -20.61, 0.88502, 2, 35, 71.83, -21.5, 0.49367, 36, 0.06, -21.5, 0.50632, 2, 35, 80.51999, -21.64, 0.26733, 36, 8.75, -21.37, 0.73266, 2, 35, 88.48, -21.77, 0.10874, 36, 16.70999, -21.25, 0.89125, 2, 36, 73.61, -20.42, 0.62774, 37, -5.3, -20.34, 0.37224, 2, 36, 82.3, -20.29, 0.37728, 37, 3.38, -20.34, 0.62271, 2, 36, 90.26, -20.17, 0.16971, 37, 11.34, -20.34, 0.83028, 2, 37, 70.4, -20.34, 0.53761, 38, -0.56, -21.53, 0.46238, 2, 37, 79.08999, -20.34, 0.29578, 38, 8.12, -21.24, 0.7042, 2, 37, 87.78, -20.34, 0.0932, 38, 16.79999, -20.95999, 0.90679, 2, 38, 74.15, -19.08, 0.42395, 39, 2.69, -19.23, 0.57604, 2, 38, 82.83999, -18.79, 0.21386, 39, 11.38, -19.36, 0.78613, 2, 38, 95.14, -18.39, 0.04384, 39, 23.68, -19.54, 0.95615, 2, 39, 73.29, -20.27, 0.63559, 40, -5.65, -20.17, 0.3644, 2, 39, 82.69999, -20.4, 0.38615, 40, 3.75, -20.46999, 0.61385, 2, 39, 95.01, -20.58, 0.11851, 40, 16.04999, -20.85, 0.88148, 2, 39, 154.94, -21.47, 6.9E-4, 40, 75.96, -22.73, 0.9993 ],
"hull": 48,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 0, 94 ],
"width": 41,
"height": 624
}
},
"images/HM_6": {
"images/HM_0002": {
"type": "mesh",
"uvs": [ 0, 0, 0, 0.10209, 0, 0.11235, 0, 0.1261, 0, 0.21823, 0, 0.22923, 0, 0.2416, 0, 0.34044, 0, 0.35364, 0, 0.3652, 0, 0.46028, 0, 0.47476, 0, 0.48635, 0, 0.57762, 0, 0.58921, 0, 0.6037, 0, 0.69703, 0, 0.70747, 0, 0.71908, 0, 0.81539, 0, 0.82816, 0, 0.84324, 0, 0.93606, 0, 0.99987, 1, 1, 1, 0.93838, 1, 0.8444, 1, 0.82932, 1, 0.81539, 1, 0.71825, 1, 0.70549, 1, 0.69157, 1, 0.60302, 1, 0.5891, 1, 0.57634, 1, 0.48515, 1, 0.47123, 1, 0.45846, 1, 0.36382, 1, 0.3499, 1, 0.33597, 1, 0.24401, 1, 0.23009, 1, 0.21037, 1, 0.13086, 1, 0.11577, 1, 0.09605, 1, 0 ],
"triangles": [ 3, 2, 45, 45, 1, 46, 45, 2, 1, 1, 0, 46, 0, 47, 46, 6, 42, 41, 6, 5, 42, 42, 4, 43, 42, 5, 4, 4, 3, 43, 3, 44, 43, 3, 45, 44, 9, 8, 38, 8, 39, 38, 8, 7, 39, 7, 40, 39, 7, 6, 40, 6, 41, 40, 11, 36, 35, 11, 10, 36, 10, 37, 36, 10, 9, 37, 9, 38, 37, 15, 14, 32, 14, 33, 32, 14, 13, 33, 13, 34, 33, 13, 12, 34, 12, 35, 34, 12, 11, 35, 18, 17, 29, 17, 30, 29, 17, 16, 30, 16, 31, 30, 16, 15, 31, 15, 32, 31, 21, 27, 26, 21, 20, 27, 20, 28, 27, 20, 19, 28, 28, 18, 29, 28, 19, 18, 23, 25, 24, 23, 22, 25, 22, 26, 25, 22, 21, 26 ],
"vertices": [ 1, 48, 77.24, 18.24, 1, 2, 47, 91.84, 20.45999, 0.1579, 48, 13.56, 20.23, 0.84209, 2, 47, 85.44, 20.54999, 0.30761, 48, 7.16, 20.43, 0.69237, 2, 47, 76.86, 20.68, 0.54322, 48, -1.4, 20.7, 0.45677, 2, 46, 88.89, 22.42, 0.0912, 47, 19.37999, 21.52, 0.90879, 2, 46, 82.03, 22.19, 0.20072, 47, 12.52, 21.62, 0.79927, 2, 46, 74.31, 21.94, 0.38346, 47, 4.8, 21.74, 0.61653, 2, 45, 84.99, 20.65, 0.163, 46, 12.67, 19.92, 0.83699, 2, 45, 76.75, 20.65, 0.36357, 46, 4.44, 19.65, 0.63642, 2, 45, 69.54, 20.65, 0.57614, 46, -2.76, 19.41, 0.42385, 3, 43, 161.55, 18.04999, 4.0E-5, 44, 88.52, 20.79999, 0.24126, 45, 10.21, 20.65, 0.75869, 3, 43, 152.51, 18.19, 1.0E-4, 44, 79.48, 20.66, 0.46416, 45, 1.16999, 20.65, 0.53573, 3, 43, 145.28, 18.31, 1.6E-4, 44, 72.25, 20.56, 0.66231, 45, -6.05, 20.65, 0.33752, 3, 43, 88.34, 19.23, 0.10686, 44, 15.31, 19.71999, 0.89272, 45, -63, 20.65, 4.0E-4, 3, 43, 81.11, 19.34, 0.25518, 44, 8.08, 19.61, 0.74452, 45, -70.23, 20.65, 2.8E-4, 3, 43, 72.07, 19.49, 0.49304, 44, -0.95, 19.48, 0.5068, 45, -79.26999, 20.65, 1.5E-4, 3, 41, 184.65, 18.70999, 1.0E-5, 42, 94.73, 20.45, 0.15907, 43, 13.84, 20.43, 0.8409, 3, 41, 178.14, 18.79999, 5.0E-5, 42, 88.21, 20.54999, 0.30278, 43, 7.32, 20.53, 0.69714, 3, 41, 170.9, 18.89, 1.1E-4, 42, 80.97, 20.65, 0.49651, 43, 0.08, 20.65, 0.50335, 3, 41, 110.8, 19.69, 0.06655, 42, 20.87999, 21.51, 0.93338, 43, -60, 21.62, 5.0E-5, 3, 41, 102.84, 19.79, 0.21511, 42, 12.92, 21.62, 0.78483, 43, -67.96, 21.75, 5.0E-5, 3, 41, 93.43, 19.91, 0.46596, 42, 3.5, 21.76, 0.53399, 43, -77.37, 21.9, 3.0E-5, 1, 41, 35.50999, 20.68, 1, 1, 41, -4.3, 21.2, 1, 1, 41, -4.91, -19.79, 1, 1, 41, 33.52, -20.29, 1, 2, 41, 92.16, -21.06, 0.50815, 42, 2.19, -19.21999, 0.49184, 2, 41, 101.57, -21.19, 0.24867, 42, 11.61, -19.35, 0.75132, 2, 41, 110.26, -21.3, 0.10105, 42, 20.29, -19.48, 0.89894, 2, 42, 80.9, -20.34, 0.48777, 43, -0.06, -20.34, 0.51222, 2, 42, 88.86, -20.45999, 0.2757, 43, 7.9, -20.46999, 0.72429, 2, 42, 97.55, -20.58, 0.11497, 43, 16.58, -20.61, 0.88502, 2, 43, 71.83, -21.5, 0.49367, 44, 0.06, -21.5, 0.50632, 2, 43, 80.51999, -21.64, 0.26733, 44, 8.75, -21.37, 0.73266, 2, 43, 88.48, -21.77, 0.10874, 44, 16.70999, -21.25, 0.89125, 2, 44, 73.61, -20.42, 0.62774, 45, -5.3, -20.34, 0.37224, 2, 44, 82.3, -20.29, 0.37728, 45, 3.38, -20.34, 0.62271, 2, 44, 90.26, -20.17, 0.16971, 45, 11.34, -20.34, 0.83028, 2, 45, 70.4, -20.34, 0.53761, 46, -0.56, -21.53, 0.46238, 2, 45, 79.08999, -20.34, 0.29578, 46, 8.12, -21.24, 0.7042, 2, 45, 87.78, -20.34, 0.0932, 46, 16.79999, -20.95999, 0.90679, 2, 46, 74.15, -19.08, 0.42395, 47, 2.69, -19.23, 0.57604, 2, 46, 82.83999, -18.79, 0.21386, 47, 11.38, -19.36, 0.78613, 2, 46, 95.14, -18.39, 0.04384, 47, 23.68, -19.54, 0.95615, 2, 47, 73.29, -20.27, 0.63559, 48, -5.65, -20.17, 0.3644, 2, 47, 82.69999, -20.4, 0.38615, 48, 3.75, -20.46999, 0.61385, 2, 47, 95.01, -20.58, 0.11851, 48, 16.04999, -20.85, 0.88148, 2, 47, 154.94, -21.47, 6.9E-4, 48, 75.96, -22.73, 0.9993 ],
"hull": 48,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 0, 94 ],
"width": 41,
"height": 624
}
}
}
},
"events": {
"special": {}
},
"animations": {
"skillA1": {
"slots": {
"images/HM_0002": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
},
"images/HM_2": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
},
"images/HM_3": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
},
"images/HM_4": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
},
"images/HM_5": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
},
"images/HM_6": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
}
},
"bones": {
"images/HM_0002": {
"rotate": [
{ "time": 0, "angle": -10.31 },
{ "time": 0.1666, "angle": -28.4, "curve": "stepped" },
{ "time": 0.2666, "angle": -28.4, "curve": "stepped" },
{ "time": 0.9666, "angle": -28.4 }
],
"translate": [
{ "time": 0, "x": 363.83, "y": -476.99 },
{ "time": 0.1666, "x": 704.82, "y": -44.7, "curve": "stepped" },
{ "time": 0.2666, "x": 704.82, "y": -44.7, "curve": "stepped" },
{ "time": 0.9666, "x": 704.82, "y": -44.7 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1666, "x": 1.06, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone": {
"rotate": [
{ "time": 0, "angle": -17.53 },
{ "time": 0.1, "angle": -20.23 },
{ "time": 0.1666, "angle": 0.22, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.22 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone2": {
"rotate": [
{ "time": 0, "angle": -17.53 },
{ "time": 0.1, "angle": -19.43 },
{ "time": 0.1666, "angle": -1.42, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.42 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone3": {
"rotate": [
{ "time": 0, "angle": -17.53 },
{ "time": 0.1, "angle": 16.29 },
{ "time": 0.1666, "angle": 2.85, "curve": "stepped" },
{ "time": 0.9666, "angle": 2.85 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone4": {
"rotate": [
{ "time": 0, "angle": 7.05 },
{ "time": 0.1, "angle": 10.49 },
{ "time": 0.1666, "angle": -2.5, "curve": "stepped" },
{ "time": 0.9666, "angle": -2.5 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone5": {
"rotate": [
{ "time": 0, "angle": 7.05 },
{ "time": 0.1, "angle": 10.59 },
{ "time": 0.1666, "angle": 0.95, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.95 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone6": {
"rotate": [
{ "time": 0, "angle": 7.05 },
{ "time": 0.1, "angle": -0.7 },
{ "time": 0.1666, "angle": 0.07, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.07 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone7": {
"rotate": [
{ "time": 0, "angle": 7.05 },
{ "time": 0.1, "angle": -14.09 },
{ "time": 0.1666, "angle": -1.45, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.45 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"root": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1333, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_2": {
"rotate": [
{ "time": 0, "angle": -147.2 },
{ "time": 0.1666, "angle": -143.62, "curve": "stepped" },
{ "time": 0.2666, "angle": -143.62, "curve": "stepped" },
{ "time": 0.9666, "angle": -143.62 }
],
"translate": [
{ "time": 0, "x": 391.28, "y": 1001.86 },
{ "time": 0.1, "x": 631.52, "y": 598.51 },
{ "time": 0.1666, "x": 813.35, "y": 471.78, "curve": "stepped" },
{ "time": 0.2666, "x": 813.35, "y": 471.78, "curve": "stepped" },
{ "time": 0.9666, "x": 813.35, "y": 471.78 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone8": {
"rotate": [
{ "time": 0, "angle": -12.23 },
{ "time": 0.1, "angle": 4.81 },
{ "time": 0.1666, "angle": -0.05, "curve": "stepped" },
{ "time": 0.2666, "angle": -0.05, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.05 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone9": {
"rotate": [
{ "time": 0, "angle": -12.23 },
{ "time": 0.1, "angle": -0.05, "curve": "stepped" },
{ "time": 0.1666, "angle": -0.05, "curve": "stepped" },
{ "time": 0.2666, "angle": -0.05, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.05 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone10": {
"rotate": [
{ "time": 0, "angle": 29.56 },
{ "time": 0.1666, "angle": -1.87, "curve": "stepped" },
{ "time": 0.2666, "angle": -1.87, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.87 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone11": {
"rotate": [
{ "time": 0, "angle": 29.56 },
{ "time": 0.1, "angle": -30.36 },
{ "time": 0.1666, "angle": -3.42, "curve": "stepped" },
{ "time": 0.2666, "angle": -3.42, "curve": "stepped" },
{ "time": 0.9666, "angle": -3.42 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone12": {
"rotate": [
{ "time": 0, "angle": 29.56 },
{ "time": 0.1, "angle": -22.12 },
{ "time": 0.1666, "angle": 1.84, "curve": "stepped" },
{ "time": 0.2666, "angle": 1.84, "curve": "stepped" },
{ "time": 0.9666, "angle": 1.84 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone13": {
"rotate": [
{ "time": 0, "angle": -12.23 },
{ "time": 0.1, "angle": -4.17 },
{ "time": 0.1666, "angle": -1.2, "curve": "stepped" },
{ "time": 0.2666, "angle": -1.2, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.2 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone14": {
"rotate": [
{ "time": 0, "angle": -12.23 },
{ "time": 0.1, "angle": 2.9 },
{ "time": 0.1666, "angle": 0.04, "curve": "stepped" },
{ "time": 0.2666, "angle": 0.04, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.04 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_3": {
"rotate": [
{ "time": 0, "angle": 19.27 },
{ "time": 0.1, "angle": -6.39 },
{ "time": 0.1666, "angle": 4.68, "curve": "stepped" },
{ "time": 0.2333, "angle": 4.68, "curve": "stepped" },
{ "time": 0.9666, "angle": 4.68 }
],
"translate": [
{ "time": 0, "x": 1646.35, "y": -680.74 },
{ "time": 0.1, "x": 1629.12, "y": -563.06 },
{ "time": 0.1666, "x": 1586.95, "y": -134.32, "curve": "stepped" },
{ "time": 0.2333, "x": 1586.95, "y": -134.32, "curve": "stepped" },
{ "time": 0.9666, "x": 1586.95, "y": -134.32 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1 },
{ "time": 0.1666, "x": 1.108, "y": 1 },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone15": {
"rotate": [
{ "time": 0, "angle": 14.54 },
{ "time": 0.1, "angle": 26.9 },
{ "time": 0.1666, "angle": 3.34, "curve": "stepped" },
{ "time": 0.2333, "angle": 3.34, "curve": "stepped" },
{ "time": 0.9666, "angle": 3.34 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone16": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": -8.94 },
{ "time": 0.1666, "angle": -1.98, "curve": "stepped" },
{ "time": 0.2333, "angle": -1.98, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.98 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone17": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": -32.56 },
{ "time": 0.1666, "angle": 0.32, "curve": "stepped" },
{ "time": 0.2333, "angle": 0.32, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.32 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone18": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": 4.69 },
{ "time": 0.1666, "angle": 1.7, "curve": "stepped" },
{ "time": 0.2333, "angle": 1.7, "curve": "stepped" },
{ "time": 0.9666, "angle": 1.7 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone19": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": 17.87 },
{ "time": 0.1666, "angle": -1.54, "curve": "stepped" },
{ "time": 0.2333, "angle": -1.54, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.54 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone20": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": 17.87 },
{ "time": 0.1666, "angle": 0.28, "curve": "stepped" },
{ "time": 0.2333, "angle": 0.28, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.28 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone21": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": 17.87 },
{ "time": 0.1666, "angle": -0.19, "curve": "stepped" },
{ "time": 0.2333, "angle": -0.19, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.19 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_4": {
"rotate": [
{ "time": 0, "angle": 38.27 },
{ "time": 0.1, "angle": 17.04 },
{ "time": 0.1333, "angle": 36.56 },
{ "time": 0.1666, "angle": 38.3, "curve": "stepped" },
{ "time": 0.9666, "angle": 38.3 }
],
"translate": [
{ "time": 0, "x": 1451.99, "y": -743.79 },
{ "time": 0.1, "x": 1227.8, "y": -302.63 },
{ "time": 0.1333, "x": 1162.71, "y": -107.37, "curve": "stepped" },
{ "time": 0.9666, "x": 1162.71, "y": -107.37 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1333, "x": 1.247, "y": 1 },
{ "time": 0.1666, "x": 1.181, "y": 1 },
{ "time": 0.2, "x": 1.039, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1.039, "y": 1 }
]
},
"bone22": {
"rotate": [
{ "time": 0, "angle": 9.83 },
{ "time": 0.1, "angle": 17.04 },
{ "time": 0.1333, "angle": -0.02, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.02 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone23": {
"rotate": [
{ "time": 0, "angle": -18.82 },
{ "time": 0.1, "angle": -0.84 },
{ "time": 0.1333, "angle": 0.94, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.94 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone24": {
"rotate": [
{ "time": 0, "angle": -18.83 },
{ "time": 0.1, "angle": -0.84 },
{ "time": 0.1333, "angle": 4.05, "curve": "stepped" },
{ "time": 0.9666, "angle": 4.05 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone25": {
"rotate": [
{ "time": 0, "angle": -32.35 },
{ "time": 0.1, "angle": -0.84, "curve": "stepped" },
{ "time": 0.1333, "angle": -0.84, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.84 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone26": {
"rotate": [
{ "time": 0, "angle": 25.89 },
{ "time": 0.1, "angle": -0.84 },
{ "time": 0.1333, "angle": -1.62, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.62 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone27": {
"rotate": [
{ "time": 0, "angle": 25.89 },
{ "time": 0.1, "angle": -0.84, "curve": "stepped" },
{ "time": 0.1333, "angle": -0.84, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.84 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone28": {
"rotate": [
{ "time": 0, "angle": 25.89 },
{ "time": 0.1, "angle": -0.84, "curve": "stepped" },
{ "time": 0.1333, "angle": -0.84, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.84 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_5": {
"rotate": [
{ "time": 0, "angle": -150.8 },
{ "time": 0.1, "angle": -166.38, "curve": "stepped" },
{ "time": 0.1666, "angle": -166.38, "curve": "stepped" },
{ "time": 0.9666, "angle": -166.38 }
],
"translate": [
{ "time": 0, "x": 292.47, "y": 989.05 },
{ "time": 0.1, "x": 585.65, "y": 467.84, "curve": "stepped" },
{ "time": 0.1666, "x": 585.65, "y": 467.84, "curve": "stepped" },
{ "time": 0.9666, "x": 585.65, "y": 467.84 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone29": {
"rotate": [
{ "time": 0, "angle": -30.36 },
{ "time": 0.1, "angle": 2.19, "curve": "stepped" },
{ "time": 0.1666, "angle": 2.19, "curve": "stepped" },
{ "time": 0.9666, "angle": 2.19 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone30": {
"rotate": [
{ "time": 0, "angle": -12.21 },
{ "time": 0.1, "angle": -1.57, "curve": "stepped" },
{ "time": 0.1666, "angle": -1.57, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.57 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone31": {
"rotate": [
{ "time": 0, "angle": 36.89 },
{ "time": 0.1, "angle": -0.14, "curve": "stepped" },
{ "time": 0.1666, "angle": -0.14, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.14 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone32": {
"rotate": [
{ "time": 0, "angle": 20.96 },
{ "time": 0.1, "angle": 0.74, "curve": "stepped" },
{ "time": 0.1666, "angle": 0.74, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.74 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone33": {
"rotate": [
{ "time": 0, "angle": 20.96 },
{ "time": 0.1, "angle": -0.43, "curve": "stepped" },
{ "time": 0.1666, "angle": -0.43, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.43 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone34": {
"rotate": [
{ "time": 0, "angle": -20.52 },
{ "time": 0.1, "angle": 0.11, "curve": "stepped" },
{ "time": 0.1666, "angle": 0.11, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.11 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone35": {
"rotate": [
{ "time": 0, "angle": -14.34 },
{ "time": 0.1, "angle": -0.36, "curve": "stepped" },
{ "time": 0.1666, "angle": -0.36, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.36 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_6": {
"rotate": [
{ "time": 0, "angle": -213.6 },
{ "time": 0.1666, "angle": -210.37 },
{ "time": 0.9666, "angle": 149.62 }
],
"translate": [
{ "time": 0, "x": 1515.55, "y": 1074.19 },
{ "time": 0.1666, "x": 1249.34, "y": 507.79, "curve": "stepped" },
{ "time": 0.9666, "x": 1249.34, "y": 507.79 }
],
"scale": [
{ "time": 0.1666, "x": 1.326, "y": 1 },
{ "time": 0.2, "x": 1.21, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1.21, "y": 1 }
]
},
"bone36": {
"rotate": [
{ "time": 0, "angle": 16.81 },
{ "time": 0.1666, "angle": -4.82, "curve": "stepped" },
{ "time": 0.9666, "angle": -4.82 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone37": {
"rotate": [
{ "time": 0, "angle": -0.44, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.44 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone38": {
"rotate": [
{ "time": 0, "angle": -16.82 },
{ "time": 0.1666, "angle": 1.72, "curve": "stepped" },
{ "time": 0.9666, "angle": 1.72 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone39": {
"rotate": [
{ "time": 0, "angle": -16.82 },
{ "time": 0.1666, "angle": -0.49, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.49 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone41": {
"rotate": [
{ "time": 0, "angle": 15.4 },
{ "time": 0.1666, "angle": -2.12, "curve": "stepped" },
{ "time": 0.9666, "angle": -2.12 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone42": {
"rotate": [
{ "time": 0, "angle": 15.4 },
{ "time": 0.1666, "angle": 1.11, "curve": "stepped" },
{ "time": 0.9666, "angle": 1.11 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone40": {
"rotate": [
{ "time": 0.9666, "angle": 0 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
}
}
},
"special": {
"slots": {
"images/HM_0002": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
},
"images/HM_2": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
},
"images/HM_3": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
},
"images/HM_4": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
},
"images/HM_5": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
},
"images/HM_6": {
"attachment": [
{ "time": 0, "name": "images/HM_0002" }
]
}
},
"bones": {
"bone16": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": -8.94 },
{ "time": 0.1666, "angle": -1.98, "curve": "stepped" },
{ "time": 0.2333, "angle": -1.98, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.98 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_3": {
"rotate": [
{ "time": 0, "angle": 19.27 },
{ "time": 0.1, "angle": -6.39 },
{ "time": 0.1666, "angle": 4.68, "curve": "stepped" },
{ "time": 0.2333, "angle": 4.68, "curve": "stepped" },
{ "time": 0.9666, "angle": 4.68 }
],
"translate": [
{ "time": 0, "x": 1646.35, "y": -680.74 },
{ "time": 0.1, "x": 1629.12, "y": -563.06 },
{ "time": 0.1666, "x": 1586.95, "y": -134.32, "curve": "stepped" },
{ "time": 0.2333, "x": 1586.95, "y": -134.32, "curve": "stepped" },
{ "time": 0.9666, "x": 1586.95, "y": -134.32 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1 },
{ "time": 0.1666, "x": 1.108, "y": 1 },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone2": {
"rotate": [
{ "time": 0, "angle": -17.53 },
{ "time": 0.1, "angle": -19.43 },
{ "time": 0.1666, "angle": -1.42, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.42 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone10": {
"rotate": [
{ "time": 0, "angle": 29.56 },
{ "time": 0.1666, "angle": -1.87, "curve": "stepped" },
{ "time": 0.2666, "angle": -1.87, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.87 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone9": {
"rotate": [
{ "time": 0, "angle": -12.23 },
{ "time": 0.1, "angle": -0.05, "curve": "stepped" },
{ "time": 0.1666, "angle": -0.05, "curve": "stepped" },
{ "time": 0.2666, "angle": -0.05, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.05 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_0002": {
"rotate": [
{ "time": 0, "angle": -10.31 },
{ "time": 0.1666, "angle": -28.4, "curve": "stepped" },
{ "time": 0.2666, "angle": -28.4, "curve": "stepped" },
{ "time": 0.9666, "angle": -28.4 }
],
"translate": [
{ "time": 0, "x": 363.83, "y": -476.99 },
{ "time": 0.1666, "x": 704.82, "y": -44.7, "curve": "stepped" },
{ "time": 0.2666, "x": 704.82, "y": -44.7, "curve": "stepped" },
{ "time": 0.9666, "x": 704.82, "y": -44.7 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1666, "x": 1.06, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone4": {
"rotate": [
{ "time": 0, "angle": 7.05 },
{ "time": 0.1, "angle": 10.49 },
{ "time": 0.1666, "angle": -2.5, "curve": "stepped" },
{ "time": 0.9666, "angle": -2.5 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone6": {
"rotate": [
{ "time": 0, "angle": 7.05 },
{ "time": 0.1, "angle": -0.7 },
{ "time": 0.1666, "angle": 0.07, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.07 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone17": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": -32.56 },
{ "time": 0.1666, "angle": 0.32, "curve": "stepped" },
{ "time": 0.2333, "angle": 0.32, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.32 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_4": {
"rotate": [
{ "time": 0, "angle": 38.27 },
{ "time": 0.1, "angle": 17.04 },
{ "time": 0.1333, "angle": 36.56 },
{ "time": 0.1666, "angle": 38.3, "curve": "stepped" },
{ "time": 0.9666, "angle": 38.3 }
],
"translate": [
{ "time": 0, "x": 1451.99, "y": -743.79 },
{ "time": 0.1, "x": 1227.8, "y": -302.63 },
{ "time": 0.1333, "x": 1162.71, "y": -107.37, "curve": "stepped" },
{ "time": 0.9666, "x": 1162.71, "y": -107.37 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1333, "x": 1.247, "y": 1 },
{ "time": 0.1666, "x": 1.181, "y": 1 },
{ "time": 0.2, "x": 1.039, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1.039, "y": 1 }
]
},
"bone22": {
"rotate": [
{ "time": 0, "angle": 9.83 },
{ "time": 0.1, "angle": 17.04 },
{ "time": 0.1333, "angle": -0.02, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.02 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone32": {
"rotate": [
{ "time": 0, "angle": 20.96 },
{ "time": 0.1, "angle": 0.74, "curve": "stepped" },
{ "time": 0.1666, "angle": 0.74, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.74 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone35": {
"rotate": [
{ "time": 0, "angle": -14.34 },
{ "time": 0.1, "angle": -0.36, "curve": "stepped" },
{ "time": 0.1666, "angle": -0.36, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.36 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone3": {
"rotate": [
{ "time": 0, "angle": -17.53 },
{ "time": 0.1, "angle": 16.29 },
{ "time": 0.1666, "angle": 2.85, "curve": "stepped" },
{ "time": 0.9666, "angle": 2.85 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone20": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": 17.87 },
{ "time": 0.1666, "angle": 0.28, "curve": "stepped" },
{ "time": 0.2333, "angle": 0.28, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.28 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_6": {
"rotate": [
{ "time": 0, "angle": -213.6 },
{ "time": 0.1666, "angle": -210.37 },
{ "time": 0.9666, "angle": 149.62 }
],
"translate": [
{ "time": 0, "x": 1515.55, "y": 1074.19 },
{ "time": 0.1666, "x": 1249.34, "y": 507.79, "curve": "stepped" },
{ "time": 0.9666, "x": 1249.34, "y": 507.79 }
],
"scale": [
{ "time": 0.1666, "x": 1.326, "y": 1 },
{ "time": 0.2, "x": 1.21, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1.21, "y": 1 }
]
},
"bone26": {
"rotate": [
{ "time": 0, "angle": 25.89 },
{ "time": 0.1, "angle": -0.84 },
{ "time": 0.1333, "angle": -1.62, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.62 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone37": {
"rotate": [
{ "time": 0, "angle": -0.44, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.44 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_5": {
"rotate": [
{ "time": 0, "angle": -150.8 },
{ "time": 0.1, "angle": -166.38, "curve": "stepped" },
{ "time": 0.1666, "angle": -166.38, "curve": "stepped" },
{ "time": 0.9666, "angle": -166.38 }
],
"translate": [
{ "time": 0, "x": 292.47, "y": 989.05 },
{ "time": 0.1, "x": 585.65, "y": 467.84, "curve": "stepped" },
{ "time": 0.1666, "x": 585.65, "y": 467.84, "curve": "stepped" },
{ "time": 0.9666, "x": 585.65, "y": 467.84 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone5": {
"rotate": [
{ "time": 0, "angle": 7.05 },
{ "time": 0.1, "angle": 10.59 },
{ "time": 0.1666, "angle": 0.95, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.95 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone31": {
"rotate": [
{ "time": 0, "angle": 36.89 },
{ "time": 0.1, "angle": -0.14, "curve": "stepped" },
{ "time": 0.1666, "angle": -0.14, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.14 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone7": {
"rotate": [
{ "time": 0, "angle": 7.05 },
{ "time": 0.1, "angle": -14.09 },
{ "time": 0.1666, "angle": -1.45, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.45 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone25": {
"rotate": [
{ "time": 0, "angle": -32.35 },
{ "time": 0.1, "angle": -0.84, "curve": "stepped" },
{ "time": 0.1333, "angle": -0.84, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.84 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone29": {
"rotate": [
{ "time": 0, "angle": -30.36 },
{ "time": 0.1, "angle": 2.19, "curve": "stepped" },
{ "time": 0.1666, "angle": 2.19, "curve": "stepped" },
{ "time": 0.9666, "angle": 2.19 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"root": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1333, "angle": 0, "curve": "stepped" },
{ "time": 0.1666, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone15": {
"rotate": [
{ "time": 0, "angle": 14.54 },
{ "time": 0.1, "angle": 26.9 },
{ "time": 0.1666, "angle": 3.34, "curve": "stepped" },
{ "time": 0.2333, "angle": 3.34, "curve": "stepped" },
{ "time": 0.9666, "angle": 3.34 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone13": {
"rotate": [
{ "time": 0, "angle": -12.23 },
{ "time": 0.1, "angle": -4.17 },
{ "time": 0.1666, "angle": -1.2, "curve": "stepped" },
{ "time": 0.2666, "angle": -1.2, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.2 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone23": {
"rotate": [
{ "time": 0, "angle": -18.82 },
{ "time": 0.1, "angle": -0.84 },
{ "time": 0.1333, "angle": 0.94, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.94 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone19": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": 17.87 },
{ "time": 0.1666, "angle": -1.54, "curve": "stepped" },
{ "time": 0.2333, "angle": -1.54, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.54 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone11": {
"rotate": [
{ "time": 0, "angle": 29.56 },
{ "time": 0.1, "angle": -30.36 },
{ "time": 0.1666, "angle": -3.42, "curve": "stepped" },
{ "time": 0.2666, "angle": -3.42, "curve": "stepped" },
{ "time": 0.9666, "angle": -3.42 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone28": {
"rotate": [
{ "time": 0, "angle": 25.89 },
{ "time": 0.1, "angle": -0.84, "curve": "stepped" },
{ "time": 0.1333, "angle": -0.84, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.84 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone42": {
"rotate": [
{ "time": 0, "angle": 15.4 },
{ "time": 0.1666, "angle": 1.11, "curve": "stepped" },
{ "time": 0.9666, "angle": 1.11 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone12": {
"rotate": [
{ "time": 0, "angle": 29.56 },
{ "time": 0.1, "angle": -22.12 },
{ "time": 0.1666, "angle": 1.84, "curve": "stepped" },
{ "time": 0.2666, "angle": 1.84, "curve": "stepped" },
{ "time": 0.9666, "angle": 1.84 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone14": {
"rotate": [
{ "time": 0, "angle": -12.23 },
{ "time": 0.1, "angle": 2.9 },
{ "time": 0.1666, "angle": 0.04, "curve": "stepped" },
{ "time": 0.2666, "angle": 0.04, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.04 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone24": {
"rotate": [
{ "time": 0, "angle": -18.83 },
{ "time": 0.1, "angle": -0.84 },
{ "time": 0.1333, "angle": 4.05, "curve": "stepped" },
{ "time": 0.9666, "angle": 4.05 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone8": {
"rotate": [
{ "time": 0, "angle": -12.23 },
{ "time": 0.1, "angle": 4.81 },
{ "time": 0.1666, "angle": -0.05, "curve": "stepped" },
{ "time": 0.2666, "angle": -0.05, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.05 }
],
"translate": [
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone39": {
"rotate": [
{ "time": 0, "angle": -16.82 },
{ "time": 0.1666, "angle": -0.49, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.49 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone": {
"rotate": [
{ "time": 0, "angle": -17.53 },
{ "time": 0.1, "angle": -20.23 },
{ "time": 0.1666, "angle": 0.22, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.22 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone27": {
"rotate": [
{ "time": 0, "angle": 25.89 },
{ "time": 0.1, "angle": -0.84, "curve": "stepped" },
{ "time": 0.1333, "angle": -0.84, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.84 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone40": {
"rotate": [
{ "time": 0.9666, "angle": 0 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone41": {
"rotate": [
{ "time": 0, "angle": 15.4 },
{ "time": 0.1666, "angle": -2.12, "curve": "stepped" },
{ "time": 0.9666, "angle": -2.12 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone30": {
"rotate": [
{ "time": 0, "angle": -12.21 },
{ "time": 0.1, "angle": -1.57, "curve": "stepped" },
{ "time": 0.1666, "angle": -1.57, "curve": "stepped" },
{ "time": 0.9666, "angle": -1.57 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"images/HM_2": {
"rotate": [
{ "time": 0, "angle": -147.2 },
{ "time": 0.1666, "angle": -143.62, "curve": "stepped" },
{ "time": 0.2666, "angle": -143.62, "curve": "stepped" },
{ "time": 0.9666, "angle": -143.62 }
],
"translate": [
{ "time": 0, "x": 391.28, "y": 1001.86 },
{ "time": 0.1, "x": 631.52, "y": 598.51 },
{ "time": 0.1666, "x": 813.35, "y": 471.78, "curve": "stepped" },
{ "time": 0.2666, "x": 813.35, "y": 471.78, "curve": "stepped" },
{ "time": 0.9666, "x": 813.35, "y": 471.78 }
],
"scale": [
{ "time": 0.1666, "x": 1.029, "y": 1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone33": {
"rotate": [
{ "time": 0, "angle": 20.96 },
{ "time": 0.1, "angle": -0.43, "curve": "stepped" },
{ "time": 0.1666, "angle": -0.43, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.43 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone21": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": 17.87 },
{ "time": 0.1666, "angle": -0.19, "curve": "stepped" },
{ "time": 0.2333, "angle": -0.19, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.19 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone18": {
"rotate": [
{ "time": 0, "angle": -10.06 },
{ "time": 0.1, "angle": 4.69 },
{ "time": 0.1666, "angle": 1.7, "curve": "stepped" },
{ "time": 0.2333, "angle": 1.7, "curve": "stepped" },
{ "time": 0.9666, "angle": 1.7 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone34": {
"rotate": [
{ "time": 0, "angle": -20.52 },
{ "time": 0.1, "angle": 0.11, "curve": "stepped" },
{ "time": 0.1666, "angle": 0.11, "curve": "stepped" },
{ "time": 0.9666, "angle": 0.11 }
],
"translate": [
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.1, "x": 1.038, "y": 1 },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone36": {
"rotate": [
{ "time": 0, "angle": 16.81 },
{ "time": 0.1666, "angle": -4.82, "curve": "stepped" },
{ "time": 0.9666, "angle": -4.82 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
},
"bone38": {
"rotate": [
{ "time": 0, "angle": -16.82 },
{ "time": 0.1666, "angle": 1.72, "curve": "stepped" },
{ "time": 0.9666, "angle": 1.72 }
],
"translate": [
{ "time": 0.9666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0.9666, "x": 1, "y": 1 }
]
}
},
"events": [
{ "time": 0, "name": "special" }
]
}
}
}