heigu_skillD.json
71 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
{
"skeleton": { "hash": "hP0iBNBTbNyv9Est3o2fZDYQNT0", "spine": "3.4.02", "width": 727.5, "height": 303.89, "images": "" },
"bones": [
{ "name": "root", "scaleX": 0.5, "scaleY": 0.5 },
{ "name": "images/ci", "parent": "root", "length": 197.26, "rotation": 88.79, "x": -171.34, "y": 60.34 },
{ "name": "images/ci2", "parent": "root", "length": 197.26, "rotation": 88.79, "x": -118.45, "y": 184.64 },
{ "name": "images/ci3", "parent": "root", "length": 197.26, "rotation": 88.79, "x": -65.55, "y": 250.76 },
{ "name": "images/ci4", "parent": "root", "length": 197.26, "rotation": 88.79, "x": -7.37, "y": 311.58 },
{ "name": "images/ci5", "parent": "root", "length": 197.26, "rotation": 88.79, "x": 277.89, "y": 30.52 },
{ "name": "images/ci6", "parent": "root", "length": 197.26, "rotation": 88.79, "x": 379.05, "y": 177.12 },
{ "name": "images/ci7", "parent": "root", "length": 197.26, "rotation": 88.79, "x": 501.89, "y": 262.29 },
{ "name": "images/ci8", "parent": "root", "length": 197.26, "rotation": 88.79, "x": 628.35, "y": 207.56 },
{ "name": "images/ci9", "parent": "root", "length": 197.26, "rotation": 88.79, "x": -746.66, "y": 60.68 },
{ "name": "images/ci10", "parent": "root", "length": 197.26, "rotation": 88.79, "x": -629.93, "y": 170.33 },
{ "name": "images/ci11", "parent": "root", "length": 197.26, "rotation": 88.79, "x": -509.68, "y": 255.22 },
{ "name": "images/ci12", "parent": "root", "length": 197.26, "rotation": 88.79, "x": -392.96, "y": 329.49 },
{ "name": "stoneAll", "parent": "root", "length": 114.07, "rotation": 88.97, "x": -358.05, "y": 40.49 },
{ "name": "images/stone001", "parent": "stoneAll", "x": 15.23, "y": 59.34 },
{ "name": "images/stone002", "parent": "stoneAll", "x": 94.98, "y": 42.43 },
{ "name": "images/stone003", "parent": "stoneAll", "x": 134.58, "y": -7.78 },
{ "name": "images/stone004", "parent": "stoneAll", "x": 65.71, "y": -29.38 },
{ "name": "images/stone005", "parent": "stoneAll", "x": 19.2, "y": -48.54 },
{ "name": "sanshe", "parent": "root", "x": 71.73, "y": 147.37 },
{ "name": "sanshe2", "parent": "root", "x": 139.65, "y": 190.59 },
{ "name": "sanshe3", "parent": "root", "x": 203.44, "y": 239.98 },
{ "name": "sanshe4", "parent": "root", "x": 252.84, "y": 274.96 },
{ "name": "sanshe5", "parent": "root", "x": 302.23, "y": 309.95 },
{ "name": "sanshe6", "parent": "root", "x": 584, "y": 3.05 }
],
"slots": [
{ "name": "images/stone001", "bone": "images/stone001" },
{ "name": "images/stone002", "bone": "images/stone002" },
{ "name": "images/stone003", "bone": "images/stone003" },
{ "name": "images/stone004", "bone": "images/stone004" },
{ "name": "images/stone005", "bone": "images/stone005" },
{ "name": "images/ci", "bone": "images/ci", "color": "1c1c1cff" },
{ "name": "images/ci2", "bone": "images/ci2", "color": "171717ff" },
{ "name": "images/ci3", "bone": "images/ci3", "color": "171717ff" },
{ "name": "images/ci4", "bone": "images/ci4", "color": "171717ff" },
{ "name": "images/ci5", "bone": "images/ci5", "color": "171717ff", "attachment": "images/ci" },
{ "name": "images/ci6", "bone": "images/ci6", "color": "171717ff", "attachment": "images/ci" },
{ "name": "images/ci7", "bone": "images/ci7", "color": "171717ff", "attachment": "images/ci" },
{ "name": "images/ci9", "bone": "images/ci9", "color": "171717ff", "attachment": "images/ci" },
{ "name": "images/ci10", "bone": "images/ci10", "color": "171717ff", "attachment": "images/ci" },
{ "name": "images/ci11", "bone": "images/ci11", "color": "171717ff", "attachment": "images/ci" },
{ "name": "images/ci12", "bone": "images/ci12", "color": "171717ff", "attachment": "images/ci" },
{ "name": "images/ci8", "bone": "images/ci8", "color": "171717ff", "attachment": "images/ci" },
{ "name": "images/sanshe0001", "bone": "sanshe", "color": "171717ff", "attachment": "images/sanshe0006" },
{ "name": "images/sanshe1", "bone": "sanshe2", "color": "171717ff" },
{ "name": "images/sanshe2", "bone": "sanshe3", "color": "171717ff" },
{ "name": "images/sanshe3", "bone": "sanshe4", "color": "171717ff" },
{ "name": "images/sanshe4", "bone": "sanshe5", "color": "171717ff" },
{ "name": "images/sanshe5", "bone": "sanshe6", "color": "171717ff" }
],
"skins": {
"default": {
"images/ci": {
"images/ci": { "x": 154.8, "y": -5.04, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci10": {
"images/ci": { "x": 154.8, "y": -5.04, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci11": {
"images/ci": { "x": 154.8, "y": -5.04, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci12": {
"images/ci": { "x": 154.8, "y": -5.04, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci2": {
"images/ci": { "x": 154.8, "y": -5.04, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci3": {
"images/ci": { "x": 154.8, "y": -5.04, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci4": {
"images/ci": { "x": 154.8, "y": -5.04, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci5": {
"images/ci": { "x": 190.93, "y": -4.28, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci6": {
"images/ci": { "x": 154.8, "y": -5.04, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci7": {
"images/ci": { "x": 154.8, "y": -5.04, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci8": {
"images/ci": { "x": 270.93, "y": -2.6, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/ci9": {
"images/ci": { "x": 154.8, "y": -5.04, "rotation": -88.79, "width": 80, "height": 336 }
},
"images/sanshe0001": {
"images/sanshe0001": { "width": 219, "height": 206 },
"images/sanshe0002": { "width": 219, "height": 206 },
"images/sanshe0003": { "width": 219, "height": 206 },
"images/sanshe0004": { "width": 219, "height": 206 },
"images/sanshe0005": { "width": 219, "height": 206 },
"images/sanshe0006": { "width": 219, "height": 206 },
"images/sanshe0007": { "width": 219, "height": 206 },
"images/sanshe0008": { "width": 219, "height": 206 },
"images/sanshe0009": { "width": 219, "height": 206 },
"images/sanshe0010": { "width": 219, "height": 206 }
},
"images/sanshe1": {
"images/sanshe0001": { "width": 219, "height": 206 },
"images/sanshe0002": { "width": 219, "height": 206 },
"images/sanshe0003": { "width": 219, "height": 206 },
"images/sanshe0004": { "width": 219, "height": 206 },
"images/sanshe0005": { "width": 219, "height": 206 },
"images/sanshe0006": { "width": 219, "height": 206 },
"images/sanshe0007": { "width": 219, "height": 206 },
"images/sanshe0008": { "width": 219, "height": 206 },
"images/sanshe0009": { "width": 219, "height": 206 },
"images/sanshe0010": { "width": 219, "height": 206 }
},
"images/sanshe2": {
"images/sanshe0001": { "width": 219, "height": 206 },
"images/sanshe0002": { "width": 219, "height": 206 },
"images/sanshe0003": { "width": 219, "height": 206 },
"images/sanshe0004": { "width": 219, "height": 206 },
"images/sanshe0005": { "width": 219, "height": 206 },
"images/sanshe0006": { "width": 219, "height": 206 },
"images/sanshe0007": { "width": 219, "height": 206 },
"images/sanshe0008": { "width": 219, "height": 206 },
"images/sanshe0009": { "width": 219, "height": 206 },
"images/sanshe0010": { "width": 219, "height": 206 }
},
"images/sanshe3": {
"images/sanshe0001": { "width": 219, "height": 206 },
"images/sanshe0002": { "width": 219, "height": 206 },
"images/sanshe0003": { "width": 219, "height": 206 },
"images/sanshe0004": { "width": 219, "height": 206 },
"images/sanshe0005": { "width": 219, "height": 206 },
"images/sanshe0006": { "width": 219, "height": 206 },
"images/sanshe0007": { "width": 219, "height": 206 },
"images/sanshe0008": { "width": 219, "height": 206 },
"images/sanshe0009": { "width": 219, "height": 206 },
"images/sanshe0010": { "width": 219, "height": 206 }
},
"images/sanshe4": {
"images/sanshe0001": { "width": 219, "height": 206 },
"images/sanshe0002": { "width": 219, "height": 206 },
"images/sanshe0003": { "width": 219, "height": 206 },
"images/sanshe0004": { "width": 219, "height": 206 },
"images/sanshe0005": { "width": 219, "height": 206 },
"images/sanshe0006": { "width": 219, "height": 206 },
"images/sanshe0007": { "width": 219, "height": 206 },
"images/sanshe0008": { "width": 219, "height": 206 },
"images/sanshe0009": { "width": 219, "height": 206 },
"images/sanshe0010": { "width": 219, "height": 206 }
},
"images/sanshe5": {
"images/sanshe0001": { "width": 219, "height": 206 },
"images/sanshe0002": { "width": 219, "height": 206 },
"images/sanshe0003": { "width": 219, "height": 206 },
"images/sanshe0004": { "width": 219, "height": 206 },
"images/sanshe0005": { "width": 219, "height": 206 },
"images/sanshe0006": { "width": 219, "height": 206 },
"images/sanshe0007": { "width": 219, "height": 206 },
"images/sanshe0008": { "width": 219, "height": 206 },
"images/sanshe0009": { "width": 219, "height": 206 },
"images/sanshe0010": { "width": 219, "height": 206 }
},
"images/stone001": {
"images/stone001": { "x": -0.88, "y": 1.99, "rotation": -88.97, "width": 53, "height": 54 }
},
"images/stone002": {
"images/stone002": { "x": -0.24, "y": -0.82, "rotation": -88.97, "width": 22, "height": 27 }
},
"images/stone003": {
"images/stone003": { "x": 1.71, "y": 1.28, "rotation": -88.97, "width": 26, "height": 43 }
},
"images/stone004": {
"images/stone004": { "x": 1.71, "y": 0.84, "rotation": -88.97, "width": 26, "height": 43 }
},
"images/stone005": {
"images/stone005": { "x": -0.75, "y": 5.94, "rotation": -88.97, "width": 40, "height": 40 }
}
}
},
"events": {
"special": {}
},
"animations": {
"special": {
"slots": {
"images/ci": {
"color": [
{ "time": 0.0333, "color": "1c1c1cff" },
{ "time": 0.1666, "color": "1c1c1c03", "curve": "stepped" },
{ "time": 0.4666, "color": "1c1c1c03" },
{ "time": 0.5333, "color": "1c1c1cff" },
{ "time": 0.6, "color": "1c1c1c03", "curve": "stepped" },
{ "time": 0.6666, "color": "1c1c1c03" },
{ "time": 0.7333, "color": "1c1c1cff" },
{ "time": 0.8333, "color": "1c1c1c00" },
{ "time": 1.1333, "color": "1c1c1c03" },
{ "time": 1.1666, "color": "1c1c1cff", "curve": "stepped" },
{ "time": 1.2, "color": "1c1c1cff" },
{ "time": 1.2666, "color": "1c1c1c00" },
{ "time": 1.5333, "color": "1c1c1c03", "curve": "stepped" },
{ "time": 1.5666, "color": "1c1c1c03" },
{ "time": 1.6, "color": "1c1c1cff", "curve": "stepped" },
{ "time": 1.6333, "color": "1c1c1cff", "curve": "stepped" },
{ "time": 2.0333, "color": "1c1c1cff" },
{ "time": 2.1666, "color": "1c1c1c00" }
],
"attachment": [
{ "time": 0, "name": "images/ci" },
{ "time": 0.6666, "name": "images/ci" }
]
},
"images/ci2": {
"color": [
{ "time": 0, "color": "17171700" },
{ "time": 0.0333, "color": "1717170b" },
{ "time": 0.1, "color": "171717ff", "curve": "stepped" },
{ "time": 0.1333, "color": "171717ff" },
{ "time": 0.2333, "color": "17171700" },
{ "time": 0.6, "color": "171717ff", "curve": "stepped" },
{ "time": 0.6666, "color": "171717ff", "curve": "stepped" },
{ "time": 0.7333, "color": "171717ff", "curve": "stepped" },
{ "time": 0.7666, "color": "171717ff", "curve": "stepped" },
{ "time": 0.8, "color": "171717ff" },
{ "time": 0.9, "color": "17171700" },
{ "time": 1.2333, "color": "1717170b" },
{ "time": 1.3, "color": "171717ff", "curve": "stepped" },
{ "time": 1.4, "color": "171717ff" },
{ "time": 1.5, "color": "1717170b", "curve": "stepped" },
{ "time": 1.5333, "color": "1717170b", "curve": "stepped" },
{ "time": 1.5666, "color": "1717170b" },
{ "time": 1.6, "color": "171717ff", "curve": "stepped" },
{ "time": 1.6333, "color": "171717ff", "curve": "stepped" },
{ "time": 2.0333, "color": "171717ff" },
{ "time": 2.1666, "color": "17171700" }
],
"attachment": [
{ "time": 0.0333, "name": "images/ci" },
{ "time": 0.1, "name": "images/ci" },
{ "time": 0.1333, "name": "images/ci" },
{ "time": 0.2333, "name": "images/ci" },
{ "time": 0.6, "name": "images/ci" },
{ "time": 0.6666, "name": "images/ci" },
{ "time": 0.7333, "name": "images/ci" },
{ "time": 0.7666, "name": "images/ci" },
{ "time": 0.8, "name": "images/ci" },
{ "time": 0.9, "name": "images/ci" },
{ "time": 1.2333, "name": "images/ci" },
{ "time": 1.3, "name": "images/ci" },
{ "time": 1.4, "name": "images/ci" },
{ "time": 1.5, "name": "images/ci" }
]
},
"images/ci3": {
"color": [
{ "time": 0.1666, "color": "17171707" },
{ "time": 0.2, "color": "171717ff", "curve": "stepped" },
{ "time": 0.2666, "color": "171717ff" },
{ "time": 0.3666, "color": "17171707", "curve": "stepped" },
{ "time": 0.8666, "color": "17171707" },
{ "time": 0.9, "color": "171717ff", "curve": "stepped" },
{ "time": 0.9333, "color": "171717ff" },
{ "time": 1.0333, "color": "1717170e", "curve": "stepped" },
{ "time": 1.5333, "color": "1717170e", "curve": "stepped" },
{ "time": 1.5666, "color": "1717170e" },
{ "time": 1.6, "color": "171717ff", "curve": "stepped" },
{ "time": 1.6333, "color": "171717ff", "curve": "stepped" },
{ "time": 2.0333, "color": "171717ff" },
{ "time": 2.1666, "color": "17171700" }
],
"attachment": [
{ "time": 0.1666, "name": "images/ci" },
{ "time": 0.8666, "name": "images/ci" }
]
},
"images/ci4": {
"color": [
{ "time": 0.2666, "color": "17171700" },
{ "time": 0.3, "color": "171717ff", "curve": "stepped" },
{ "time": 0.3666, "color": "171717ff" },
{ "time": 0.4333, "color": "1717170a" },
{ "time": 0.9333, "color": "17171700" },
{ "time": 1, "color": "171717ff", "curve": "stepped" },
{ "time": 1.0666, "color": "171717ff" },
{ "time": 1.1333, "color": "1717170a", "curve": "stepped" },
{ "time": 1.5333, "color": "1717170a", "curve": "stepped" },
{ "time": 1.5666, "color": "1717170a" },
{ "time": 1.6, "color": "171717ff", "curve": "stepped" },
{ "time": 1.6333, "color": "171717ff", "curve": "stepped" },
{ "time": 2.0333, "color": "171717ff" },
{ "time": 2.1666, "color": "17171700" }
],
"attachment": [
{ "time": 0.2666, "name": "images/ci" },
{ "time": 0.9333, "name": "images/ci" }
]
},
"images/ci5": {
"color": [
{ "time": 0, "color": "171717ff" },
{ "time": 0.0333, "color": "1c1c1cff" },
{ "time": 0.1666, "color": "1c1c1c03" },
{ "time": 0.4666, "color": "1c1c1cff", "curve": "stepped" },
{ "time": 0.5333, "color": "1c1c1cff" },
{ "time": 0.6, "color": "1c1c1c03", "curve": "stepped" },
{ "time": 0.6666, "color": "1c1c1c03" },
{ "time": 0.7333, "color": "1c1c1cff" },
{ "time": 0.8333, "color": "1c1c1c00" },
{ "time": 1.1333, "color": "1c1c1c03" },
{ "time": 1.1666, "color": "1c1c1cff", "curve": "stepped" },
{ "time": 1.2, "color": "1c1c1cff" },
{ "time": 1.2666, "color": "1c1c1c00" },
{ "time": 1.5333, "color": "1c1c1c03", "curve": "stepped" },
{ "time": 1.5666, "color": "1c1c1c03" },
{ "time": 1.6, "color": "1c1c1cff", "curve": "stepped" },
{ "time": 1.6333, "color": "1c1c1cff", "curve": "stepped" },
{ "time": 2.0333, "color": "1c1c1cff" },
{ "time": 2.1666, "color": "1c1c1c00" }
]
},
"images/ci6": {
"color": [
{ "time": 0, "color": "17171700" },
{ "time": 0.0333, "color": "1717170b" },
{ "time": 0.1, "color": "171717ff", "curve": "stepped" },
{ "time": 0.1333, "color": "171717ff" },
{ "time": 0.2333, "color": "17171700" },
{ "time": 0.6, "color": "171717ff", "curve": "stepped" },
{ "time": 0.6666, "color": "171717ff", "curve": "stepped" },
{ "time": 0.7333, "color": "171717ff", "curve": "stepped" },
{ "time": 0.7666, "color": "171717ff", "curve": "stepped" },
{ "time": 0.8, "color": "171717ff" },
{ "time": 0.9, "color": "17171700" },
{ "time": 1.2333, "color": "1717170b" },
{ "time": 1.3, "color": "171717ff", "curve": "stepped" },
{ "time": 1.4, "color": "171717ff" },
{ "time": 1.5, "color": "1717170b", "curve": "stepped" },
{ "time": 1.5333, "color": "1717170b", "curve": "stepped" },
{ "time": 1.5666, "color": "1717170b" },
{ "time": 1.6, "color": "171717ff", "curve": "stepped" },
{ "time": 1.6333, "color": "171717ff", "curve": "stepped" },
{ "time": 2.0333, "color": "171717ff" },
{ "time": 2.1666, "color": "17171700" }
]
},
"images/ci7": {
"color": [
{ "time": 0, "color": "17171700" },
{ "time": 0.1666, "color": "17171707" },
{ "time": 0.2, "color": "171717ff", "curve": "stepped" },
{ "time": 0.2666, "color": "171717ff" },
{ "time": 0.3666, "color": "17171707", "curve": "stepped" },
{ "time": 0.8666, "color": "17171707" },
{ "time": 0.9, "color": "171717ff", "curve": "stepped" },
{ "time": 0.9333, "color": "171717ff" },
{ "time": 1.0333, "color": "1717170e", "curve": "stepped" },
{ "time": 1.5333, "color": "1717170e", "curve": "stepped" },
{ "time": 1.5666, "color": "1717170e" },
{ "time": 1.6, "color": "171717ff", "curve": "stepped" },
{ "time": 1.6333, "color": "171717ff", "curve": "stepped" },
{ "time": 2.0333, "color": "171717ff" },
{ "time": 2.1666, "color": "17171700" }
]
},
"images/ci8": {
"color": [
{ "time": 0, "color": "17171700" },
{ "time": 0.1666, "color": "17171707" },
{ "time": 0.2, "color": "171717ff", "curve": "stepped" },
{ "time": 0.2666, "color": "171717ff" },
{ "time": 0.3666, "color": "17171707", "curve": "stepped" },
{ "time": 0.8666, "color": "17171707" },
{ "time": 0.9, "color": "171717ff", "curve": "stepped" },
{ "time": 0.9333, "color": "171717ff" },
{ "time": 1.0333, "color": "1717170e", "curve": "stepped" },
{ "time": 1.5333, "color": "1717170e", "curve": "stepped" },
{ "time": 1.5666, "color": "1717170e" },
{ "time": 1.6, "color": "171717ff", "curve": "stepped" },
{ "time": 1.6333, "color": "171717ff", "curve": "stepped" },
{ "time": 2.0333, "color": "171717ff" },
{ "time": 2.1666, "color": "17171700" }
]
},
"images/ci9": {
"color": [
{ "time": 0.0333, "color": "1c1c1cff" },
{ "time": 0.1666, "color": "1c1c1c03", "curve": "stepped" },
{ "time": 0.4666, "color": "1c1c1c03" },
{ "time": 0.5333, "color": "1c1c1cff" },
{ "time": 0.6, "color": "1c1c1c03", "curve": "stepped" },
{ "time": 0.6666, "color": "1c1c1c03" },
{ "time": 0.7333, "color": "1c1c1cff" },
{ "time": 0.8333, "color": "1c1c1c00" },
{ "time": 1.1333, "color": "1c1c1c03" },
{ "time": 1.1666, "color": "1c1c1cff", "curve": "stepped" },
{ "time": 1.2, "color": "1c1c1cff" },
{ "time": 1.2666, "color": "1c1c1c00" },
{ "time": 1.5333, "color": "1c1c1c03", "curve": "stepped" },
{ "time": 1.5666, "color": "1c1c1c03" },
{ "time": 1.6, "color": "1c1c1cff", "curve": "stepped" },
{ "time": 1.6333, "color": "1c1c1cff", "curve": "stepped" },
{ "time": 2.0333, "color": "1c1c1cff" },
{ "time": 2.1666, "color": "1c1c1c00" }
]
},
"images/ci10": {
"color": [
{ "time": 0, "color": "17171700" },
{ "time": 0.0333, "color": "1717170b" },
{ "time": 0.1, "color": "171717ff", "curve": "stepped" },
{ "time": 0.1333, "color": "171717ff" },
{ "time": 0.2333, "color": "17171700" },
{ "time": 0.6, "color": "171717ff", "curve": "stepped" },
{ "time": 0.6666, "color": "171717ff" },
{ "time": 0.7333, "color": "1717170b" },
{ "time": 0.7666, "color": "171717ff", "curve": "stepped" },
{ "time": 0.8, "color": "171717ff" },
{ "time": 0.9, "color": "17171700" },
{ "time": 1.2333, "color": "1717170b" },
{ "time": 1.3, "color": "171717ff", "curve": "stepped" },
{ "time": 1.4, "color": "171717ff" },
{ "time": 1.5, "color": "1717170b", "curve": "stepped" },
{ "time": 1.5333, "color": "1717170b", "curve": "stepped" },
{ "time": 1.5666, "color": "1717170b" },
{ "time": 1.6, "color": "171717ff", "curve": "stepped" },
{ "time": 1.6333, "color": "171717ff", "curve": "stepped" },
{ "time": 2.0333, "color": "171717ff" },
{ "time": 2.1666, "color": "17171700" }
]
},
"images/ci11": {
"color": [
{ "time": 0, "color": "17171700", "curve": "stepped" },
{ "time": 0.2333, "color": "17171700" },
{ "time": 0.3, "color": "171717ff", "curve": "stepped" },
{ "time": 0.3666, "color": "171717ff" },
{ "time": 0.4, "color": "1717170a" },
{ "time": 0.9333, "color": "17171700" },
{ "time": 0.9666, "color": "171717ff", "curve": "stepped" },
{ "time": 1.0333, "color": "171717ff" },
{ "time": 1.1, "color": "1717170a", "curve": "stepped" },
{ "time": 1.5, "color": "1717170a", "curve": "stepped" },
{ "time": 1.5666, "color": "1717170a" },
{ "time": 1.6, "color": "171717ff", "curve": "stepped" },
{ "time": 2, "color": "171717ff" },
{ "time": 2.1333, "color": "17171700" }
]
},
"images/ci12": {
"color": [
{ "time": 0, "color": "17171700" },
{ "time": 0.1666, "color": "17171707" },
{ "time": 0.2, "color": "171717ff", "curve": "stepped" },
{ "time": 0.2666, "color": "171717ff" },
{ "time": 0.3666, "color": "17171707", "curve": "stepped" },
{ "time": 0.8666, "color": "17171707" },
{ "time": 0.9, "color": "171717ff", "curve": "stepped" },
{ "time": 0.9333, "color": "171717ff" },
{ "time": 1.0333, "color": "1717170e", "curve": "stepped" },
{ "time": 1.5333, "color": "1717170e", "curve": "stepped" },
{ "time": 1.5666, "color": "1717170e" },
{ "time": 1.6, "color": "171717ff", "curve": "stepped" },
{ "time": 1.6333, "color": "171717ff", "curve": "stepped" },
{ "time": 2.0333, "color": "171717ff" },
{ "time": 2.1666, "color": "17171700" }
]
},
"images/sanshe0001": {
"attachment": [
{ "time": 0.0333, "name": "images/sanshe0001" },
{ "time": 0.0666, "name": "images/sanshe0002" },
{ "time": 0.1, "name": "images/sanshe0003" },
{ "time": 0.1333, "name": "images/sanshe0005" },
{ "time": 0.1666, "name": "images/sanshe0007" },
{ "time": 0.2, "name": null },
{ "time": 0.7333, "name": "images/sanshe0002" },
{ "time": 0.7666, "name": "images/sanshe0003" },
{ "time": 0.8, "name": "images/sanshe0004" },
{ "time": 0.8333, "name": "images/sanshe0007" },
{ "time": 0.8666, "name": null },
{ "time": 1.3, "name": "images/sanshe0002" },
{ "time": 1.3333, "name": "images/sanshe0003" },
{ "time": 1.3666, "name": "images/sanshe0004" },
{ "time": 1.4, "name": "images/sanshe0005" },
{ "time": 1.4333, "name": "images/sanshe0007" },
{ "time": 1.4666, "name": "images/sanshe0008" },
{ "time": 1.5, "name": "images/sanshe0010" },
{ "time": 1.5333, "name": null }
]
},
"images/sanshe1": {
"attachment": [
{ "time": 0.1, "name": "images/sanshe0002" },
{ "time": 0.1333, "name": "images/sanshe0004" },
{ "time": 0.1666, "name": "images/sanshe0006" },
{ "time": 0.2, "name": "images/sanshe0010" },
{ "time": 0.2333, "name": null },
{ "time": 0.6, "name": "images/sanshe0001" },
{ "time": 0.6333, "name": "images/sanshe0002" },
{ "time": 0.6666, "name": "images/sanshe0006" },
{ "time": 0.7, "name": "images/sanshe0008" },
{ "time": 0.7333, "name": "images/sanshe0010" },
{ "time": 0.7666, "name": "images/sanshe0001" },
{ "time": 0.8, "name": "images/sanshe0004" },
{ "time": 0.8333, "name": "images/sanshe0006" },
{ "time": 0.8666, "name": "images/sanshe0010" },
{ "time": 0.9, "name": null },
{ "time": 1.3, "name": "images/sanshe0002" },
{ "time": 1.3333, "name": "images/sanshe0004" },
{ "time": 1.3666, "name": "images/sanshe0006" },
{ "time": 1.4, "name": "images/sanshe0010" },
{ "time": 1.4333, "name": null }
]
},
"images/sanshe2": {
"attachment": [
{ "time": 0.3333, "name": "images/sanshe0001" },
{ "time": 0.3666, "name": "images/sanshe0002" },
{ "time": 0.4, "name": "images/sanshe0008" },
{ "time": 0.4333, "name": "images/sanshe0010" },
{ "time": 0.4666, "name": null },
{ "time": 1, "name": "images/sanshe0001" },
{ "time": 1.0333, "name": "images/sanshe0002" },
{ "time": 1.0666, "name": "images/sanshe0006" },
{ "time": 1.1, "name": "images/sanshe0008" },
{ "time": 1.1333, "name": "images/sanshe0010" }
]
},
"images/sanshe3": {
"attachment": [
{ "time": 0.2333, "name": "images/sanshe0001" },
{ "time": 0.2666, "name": "images/sanshe0005" },
{ "time": 0.3, "name": "images/sanshe0006" },
{ "time": 0.3333, "name": "images/sanshe0008" },
{ "time": 0.3666, "name": "images/sanshe0009" },
{ "time": 0.4, "name": null },
{ "time": 0.9, "name": "images/sanshe0001" },
{ "time": 0.9333, "name": "images/sanshe0005" },
{ "time": 0.9666, "name": "images/sanshe0006" },
{ "time": 1, "name": "images/sanshe0008" },
{ "time": 1.0333, "name": "images/sanshe0009" },
{ "time": 1.0666, "name": null }
]
},
"images/sanshe4": {
"attachment": [
{ "time": 0.4333, "name": "images/sanshe0001" },
{ "time": 0.4666, "name": "images/sanshe0003" },
{ "time": 0.5, "name": "images/sanshe0007" },
{ "time": 0.5333, "name": "images/sanshe0010" },
{ "time": 0.5666, "name": null },
{ "time": 1.1333, "name": "images/sanshe0003" },
{ "time": 1.1666, "name": "images/sanshe0005" },
{ "time": 1.2, "name": "images/sanshe0009" },
{ "time": 1.2333, "name": "images/sanshe0010" }
]
},
"images/sanshe5": {
"attachment": [
{ "time": 0.4666, "name": "images/sanshe0002" },
{ "time": 0.5, "name": "images/sanshe0003" },
{ "time": 0.5333, "name": "images/sanshe0004" },
{ "time": 0.5666, "name": "images/sanshe0008" },
{ "time": 0.6, "name": null },
{ "time": 1.1333, "name": "images/sanshe0001" },
{ "time": 1.1666, "name": "images/sanshe0003" },
{ "time": 1.2, "name": "images/sanshe0004" },
{ "time": 1.2333, "name": "images/sanshe0006" },
{ "time": 1.2666, "name": "images/sanshe0010" },
{ "time": 1.3, "name": null }
]
}
},
"bones": {
"images/ci": {
"rotate": [
{ "time": 0, "angle": -47.9 },
{ "time": 0.0333, "angle": -50.23, "curve": "stepped" },
{ "time": 0.1666, "angle": -50.23 },
{ "time": 0.4666, "angle": 4.76 },
{ "time": 0.5333, "angle": 17.44 },
{ "time": 0.6, "angle": 20.95 },
{ "time": 0.6666, "angle": -42.07 },
{ "time": 0.7333, "angle": -47.65 },
{ "time": 0.8333, "angle": -48.11 },
{ "time": 1.1333, "angle": 4.76 },
{ "time": 1.1666, "angle": 15.06, "curve": "stepped" },
{ "time": 1.2, "angle": 15.06, "curve": "stepped" },
{ "time": 1.2666, "angle": 15.06 },
{ "time": 1.5333, "angle": 20.95, "curve": "stepped" },
{ "time": 1.5666, "angle": 20.95 },
{ "time": 1.6, "angle": 1.24, "curve": "stepped" },
{ "time": 1.6333, "angle": 1.24, "curve": "stepped" },
{ "time": 1.6666, "angle": 1.24, "curve": "stepped" },
{ "time": 1.7, "angle": 1.24, "curve": "stepped" },
{ "time": 1.7666, "angle": 1.24, "curve": "stepped" },
{ "time": 1.8, "angle": 1.24, "curve": "stepped" },
{ "time": 2.0333, "angle": 1.24, "curve": "stepped" },
{ "time": 2.1666, "angle": 1.24 }
],
"translate": [
{ "time": 0, "x": -38.84, "y": -35.33 },
{ "time": 0.0333, "x": 69.02, "y": 48.9, "curve": "stepped" },
{ "time": 0.1666, "x": 69.02, "y": 48.9 },
{ "time": 0.4666, "x": 390.73, "y": -30.97 },
{ "time": 0.5333, "x": 385.78, "y": -10.92 },
{ "time": 0.6, "x": 392.29, "y": 19.61 },
{ "time": 0.6666, "x": 1.69, "y": -77.1 },
{ "time": 0.7333, "x": 80.18, "y": 45.18 },
{ "time": 0.8333, "x": 87.75, "y": 51.69 },
{ "time": 1.1333, "x": 380.47, "y": -138.6 },
{ "time": 1.1666, "x": 390.73, "y": -30.97 },
{ "time": 1.2, "x": 388.24, "y": -20.91, "curve": "stepped" },
{ "time": 1.2666, "x": 388.24, "y": -20.91 },
{ "time": 1.5333, "x": 392.29, "y": 19.61, "curve": "stepped" },
{ "time": 1.5666, "x": 392.29, "y": 19.61 },
{ "time": 1.6, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.6333, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.6666, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.7, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.7666, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.8, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 2.0333, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 2.1666, "x": 359.53, "y": -55.61 }
],
"scale": [
{ "time": 0.4666, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 0.5333, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 0.6, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 0.6666, "x": 1.409, "y": 1.409 },
{ "time": 1.1333, "x": 1, "y": 1 },
{ "time": 1.1666, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.2, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.2666, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.5333, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.5666, "x": 1.409, "y": 1.409 },
{ "time": 1.6, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.6333, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.6666, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.7, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.7666, "x": 0.12, "y": 0.367 },
{ "time": 1.8, "x": 1.146, "y": 1.306, "curve": "stepped" },
{ "time": 2.0333, "x": 1.146, "y": 1.306, "curve": "stepped" },
{ "time": 2.1666, "x": 1.146, "y": 1.306 }
]
},
"sanshe": {
"rotate": [
{ "time": 0.8666, "angle": 0 }
],
"translate": [
{ "time": 0.0333, "x": -30.23, "y": 94.3, "curve": "stepped" },
{ "time": 0.7333, "x": -30.23, "y": 94.3, "curve": "stepped" },
{ "time": 0.8666, "x": -30.23, "y": 94.3 },
{ "time": 1.3, "x": 146.2, "y": 26.44 }
],
"scale": [
{ "time": 0.8666, "x": 1, "y": 1 },
{ "time": 1.3, "x": 1.909, "y": 1.909 }
]
},
"images/ci2": {
"rotate": [
{ "time": 0.0333, "angle": 51.7, "curve": "stepped" },
{ "time": 0.1, "angle": 51.7, "curve": "stepped" },
{ "time": 0.1333, "angle": 51.7, "curve": "stepped" },
{ "time": 0.2333, "angle": 51.7 },
{ "time": 0.6, "angle": 74.92 },
{ "time": 0.6666, "angle": 75.19 },
{ "time": 0.7333, "angle": 77.28 },
{ "time": 0.7666, "angle": 51.7, "curve": "stepped" },
{ "time": 0.8, "angle": 51.7, "curve": "stepped" },
{ "time": 0.9, "angle": 51.7 },
{ "time": 1.2333, "angle": -66.02 },
{ "time": 1.3, "angle": -79.79, "curve": "stepped" },
{ "time": 1.4, "angle": -79.79 },
{ "time": 1.5, "angle": -78.14, "curve": "stepped" },
{ "time": 1.5333, "angle": -78.14, "curve": "stepped" },
{ "time": 1.5666, "angle": -78.14 },
{ "time": 1.6, "angle": 6.5, "curve": "stepped" },
{ "time": 1.6333, "angle": 6.5, "curve": "stepped" },
{ "time": 1.6666, "angle": 6.5, "curve": "stepped" },
{ "time": 1.7, "angle": 6.5, "curve": "stepped" },
{ "time": 1.7666, "angle": 6.5, "curve": "stepped" },
{ "time": 1.8, "angle": 6.5 },
{ "time": 1.8333, "angle": -6.72, "curve": "stepped" },
{ "time": 2.0333, "angle": -6.72, "curve": "stepped" },
{ "time": 2.1666, "angle": -6.72 }
],
"translate": [
{ "time": 0.0333, "x": 767.71, "y": -276.81 },
{ "time": 0.1, "x": 649.6, "y": -166.09 },
{ "time": 0.1333, "x": 609, "y": -136.56, "curve": "stepped" },
{ "time": 0.2333, "x": 609, "y": -136.56 },
{ "time": 0.6, "x": 459.77, "y": -101.27 },
{ "time": 0.6666, "x": 422.58, "y": -88.36, "curve": "stepped" },
{ "time": 0.7333, "x": 422.58, "y": -88.36 },
{ "time": 0.7666, "x": 649.6, "y": -166.09 },
{ "time": 0.8, "x": 609, "y": -136.56, "curve": "stepped" },
{ "time": 0.9, "x": 609, "y": -136.56 },
{ "time": 1.2333, "x": -38.83, "y": -141.59 },
{ "time": 1.3, "x": 57.13, "y": -83.17 },
{ "time": 1.4, "x": 76.18, "y": -80.15 },
{ "time": 1.5, "x": 106.38, "y": -75.37, "curve": "stepped" },
{ "time": 1.5333, "x": 106.38, "y": -75.37, "curve": "stepped" },
{ "time": 1.5666, "x": 106.38, "y": -75.37 },
{ "time": 1.6, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.6333, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.6666, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.7, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.7666, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.8, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.8333, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 2.0333, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 2.1666, "x": 399.23, "y": -181.57 }
],
"scale": [
{ "time": 0.0333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.1, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.1333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.2333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.6, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.6666, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.7333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.7666, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.8, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.9, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.2333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.3, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.4, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.5, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.5333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.5666, "x": 1.297, "y": 1.297 },
{ "time": 1.6, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.6333, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.6666, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.7, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.7666, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.8, "x": 0.103, "y": 0.293 },
{ "time": 1.8333, "x": 1.495, "y": 1.359, "curve": "stepped" },
{ "time": 2.0333, "x": 1.495, "y": 1.359, "curve": "stepped" },
{ "time": 2.1666, "x": 1.495, "y": 1.359 }
]
},
"sanshe2": {
"rotate": [
{ "time": 0.1, "angle": -27.31, "curve": "stepped" },
{ "time": 0.2333, "angle": -27.31, "curve": "stepped" },
{ "time": 0.6, "angle": -27.31, "curve": "stepped" },
{ "time": 0.7666, "angle": -27.31, "curve": "stepped" },
{ "time": 0.9, "angle": -27.31, "curve": "stepped" },
{ "time": 1.3, "angle": -27.31 }
],
"translate": [
{ "time": 0.1, "x": 195.61, "y": -18.45, "curve": "stepped" },
{ "time": 0.2333, "x": 195.61, "y": -18.45 },
{ "time": 0.6, "x": -7.84, "y": -28.97 },
{ "time": 0.7666, "x": 195.61, "y": -18.45, "curve": "stepped" },
{ "time": 0.9, "x": 195.61, "y": -18.45 },
{ "time": 1.3, "x": -7.84, "y": -28.97 }
],
"scale": [
{ "time": 0.1, "x": 1.756, "y": 1.756, "curve": "stepped" },
{ "time": 0.2333, "x": 1.756, "y": 1.756, "curve": "stepped" },
{ "time": 0.6, "x": 1.756, "y": 1.756, "curve": "stepped" },
{ "time": 0.7666, "x": 1.756, "y": 1.756, "curve": "stepped" },
{ "time": 0.9, "x": 1.756, "y": 1.756, "curve": "stepped" },
{ "time": 1.3, "x": 1.756, "y": 1.756 }
]
},
"images/ci3": {
"rotate": [
{ "time": 0.1666, "angle": -27.55 },
{ "time": 0.2, "angle": -31.18 },
{ "time": 0.2666, "angle": -31.07, "curve": "stepped" },
{ "time": 0.3666, "angle": -31.07 },
{ "time": 0.8666, "angle": -27.55 },
{ "time": 0.9, "angle": -31.18 },
{ "time": 0.9333, "angle": -31.07 },
{ "time": 1.0333, "angle": -32.81, "curve": "stepped" },
{ "time": 1.5333, "angle": -32.81, "curve": "stepped" },
{ "time": 1.5666, "angle": -32.81 },
{ "time": 1.6, "angle": -0.21, "curve": "stepped" },
{ "time": 1.6333, "angle": -0.21, "curve": "stepped" },
{ "time": 1.6666, "angle": -0.21, "curve": "stepped" },
{ "time": 2.0333, "angle": -0.21, "curve": "stepped" },
{ "time": 2.1666, "angle": -0.21 }
],
"translate": [
{ "time": 0.1666, "x": 23.24, "y": -329.7 },
{ "time": 0.2, "x": 58.85, "y": -258.47 },
{ "time": 0.2666, "x": 81.51, "y": -216.39, "curve": "stepped" },
{ "time": 0.3666, "x": 81.51, "y": -216.39 },
{ "time": 0.8666, "x": 23.24, "y": -329.7 },
{ "time": 0.9, "x": 58.85, "y": -258.47 },
{ "time": 0.9333, "x": 81.51, "y": -216.39 },
{ "time": 1.0333, "x": 97.7, "y": -193.73, "curve": "stepped" },
{ "time": 1.5333, "x": 97.7, "y": -193.73, "curve": "stepped" },
{ "time": 1.5666, "x": 97.7, "y": -193.73 },
{ "time": 1.6, "x": 54.96, "y": -246.78, "curve": "stepped" },
{ "time": 1.6333, "x": 54.96, "y": -246.78, "curve": "stepped" },
{ "time": 1.6666, "x": 54.96, "y": -246.78, "curve": "stepped" },
{ "time": 2.0333, "x": 54.96, "y": -246.78, "curve": "stepped" },
{ "time": 2.1666, "x": 54.96, "y": -246.78 }
],
"scale": [
{ "time": 0.1666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.2, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.2666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.3666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.8666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.9, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.9333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.0333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.5333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.5666, "x": 1.05, "y": 1.05 },
{ "time": 1.6, "x": 0.071, "y": 0.218, "curve": "stepped" },
{ "time": 1.6333, "x": 0.071, "y": 0.218, "curve": "stepped" },
{ "time": 1.6666, "x": 0.071, "y": 0.218 },
{ "time": 1.7, "x": 0.598, "y": 0.804, "curve": "stepped" },
{ "time": 2.0333, "x": 0.598, "y": 0.804, "curve": "stepped" },
{ "time": 2.1666, "x": 0.598, "y": 0.804 }
]
},
"sanshe4": {
"translate": [
{ "time": 0.2333, "x": -174.81, "y": -168.34, "curve": "stepped" },
{ "time": 0.9, "x": -174.81, "y": -168.34 }
],
"scale": [
{ "time": 0.2333, "x": 1.542, "y": 1.542, "curve": "stepped" },
{ "time": 0.9, "x": 1.542, "y": 1.542 }
]
},
"images/ci4": {
"rotate": [
{ "time": 0.2666, "angle": -130.06, "curve": "stepped" },
{ "time": 0.3, "angle": -130.06, "curve": "stepped" },
{ "time": 0.3666, "angle": -130.06, "curve": "stepped" },
{ "time": 0.4333, "angle": -130.06, "curve": "stepped" },
{ "time": 0.9333, "angle": -130.06, "curve": "stepped" },
{ "time": 1, "angle": -130.06, "curve": "stepped" },
{ "time": 1.0666, "angle": -130.06, "curve": "stepped" },
{ "time": 1.1333, "angle": -130.06, "curve": "stepped" },
{ "time": 1.5333, "angle": -130.06, "curve": "stepped" },
{ "time": 1.5666, "angle": -130.06 },
{ "time": 1.6, "angle": 6.57, "curve": "stepped" },
{ "time": 1.6333, "angle": 6.57, "curve": "stepped" },
{ "time": 1.6666, "angle": 6.57, "curve": "stepped" },
{ "time": 1.7, "angle": 6.57 },
{ "time": 1.7666, "angle": 2.38, "curve": "stepped" },
{ "time": 2.0333, "angle": 2.38, "curve": "stepped" },
{ "time": 2.1666, "angle": 2.38 }
],
"translate": [
{ "time": 0.2666, "x": -152.3, "y": 27.03 },
{ "time": 0.3, "x": -52.73, "y": -60.34 },
{ "time": 0.3666, "x": -38.05, "y": -73.22 },
{ "time": 0.4333, "x": -15.79, "y": -92.76 },
{ "time": 0.9333, "x": -152.3, "y": 27.03 },
{ "time": 1, "x": -52.73, "y": -60.34 },
{ "time": 1.0666, "x": -38.05, "y": -73.22 },
{ "time": 1.1333, "x": -15.79, "y": -92.76, "curve": "stepped" },
{ "time": 1.5333, "x": -15.79, "y": -92.76, "curve": "stepped" },
{ "time": 1.5666, "x": -15.79, "y": -92.76 },
{ "time": 1.6, "x": 104.54, "y": -304.93, "curve": "stepped" },
{ "time": 1.6333, "x": 104.54, "y": -304.93, "curve": "stepped" },
{ "time": 1.6666, "x": 104.54, "y": -304.93, "curve": "stepped" },
{ "time": 1.7, "x": 104.54, "y": -304.93 },
{ "time": 1.7666, "x": 104.54, "y": -309.79, "curve": "stepped" },
{ "time": 2.0333, "x": 104.54, "y": -309.79, "curve": "stepped" },
{ "time": 2.1666, "x": 104.54, "y": -309.79 }
],
"scale": [
{ "time": 0.2666, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 0.3, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 0.3666, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 0.4333, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 0.9333, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 1, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 1.0666, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 1.1333, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 1.5333, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 1.5666, "x": 1.172, "y": 1.172 },
{ "time": 1.6, "x": 0.134, "y": 0.409, "curve": "stepped" },
{ "time": 1.6333, "x": 0.134, "y": 0.409, "curve": "stepped" },
{ "time": 1.6666, "x": 0.134, "y": 0.409, "curve": "stepped" },
{ "time": 1.7, "x": 0.134, "y": 0.409 },
{ "time": 1.7666, "x": 0.939, "y": 0.828, "curve": "stepped" },
{ "time": 2.0333, "x": 0.939, "y": 0.828, "curve": "stepped" },
{ "time": 2.1666, "x": 0.939, "y": 0.828 }
]
},
"sanshe3": {
"translate": [
{ "time": 0.3333, "x": -32.73, "y": -152.24, "curve": "stepped" },
{ "time": 1, "x": -32.73, "y": -152.24 }
],
"scale": [
{ "time": 0.3333, "x": 1.399, "y": 1.399, "curve": "stepped" },
{ "time": 1, "x": 1.399, "y": 1.399 }
]
},
"sanshe5": {
"translate": [
{ "time": 0.4333, "x": -291.6, "y": -110.16, "curve": "stepped" },
{ "time": 1.1333, "x": -291.6, "y": -110.16 }
],
"scale": [
{ "time": 0.4333, "x": 1.551, "y": 1.551, "curve": "stepped" },
{ "time": 1.1333, "x": 1.551, "y": 1.551 }
]
},
"sanshe6": {
"rotate": [
{ "time": 0.4666, "angle": -107.77, "curve": "stepped" },
{ "time": 1.1333, "angle": -107.77 }
],
"translate": [
{ "time": 0.4666, "x": -69.22, "y": 242.43 },
{ "time": 1.1333, "x": -10.8, "y": 367.06 },
{ "time": 2.0333, "x": 12.56, "y": 137.28 }
],
"scale": [
{ "time": 0.4666, "x": 1.816, "y": 1.816, "curve": "stepped" },
{ "time": 1.1333, "x": 1.816, "y": 1.816 }
]
},
"images/ci5": {
"rotate": [
{ "time": 0, "angle": -47.9 },
{ "time": 0.0333, "angle": -50.23, "curve": "stepped" },
{ "time": 0.1666, "angle": -50.23 },
{ "time": 0.4666, "angle": 4.76 },
{ "time": 0.5333, "angle": 17.44 },
{ "time": 0.6, "angle": 20.95 },
{ "time": 0.6666, "angle": -42.07 },
{ "time": 0.7333, "angle": -47.65 },
{ "time": 0.8333, "angle": -48.11 },
{ "time": 1.1333, "angle": 4.76 },
{ "time": 1.1666, "angle": 15.06, "curve": "stepped" },
{ "time": 1.2, "angle": 15.06, "curve": "stepped" },
{ "time": 1.2666, "angle": 15.06 },
{ "time": 1.5333, "angle": 20.95, "curve": "stepped" },
{ "time": 1.5666, "angle": 20.95 },
{ "time": 1.6, "angle": 1.24, "curve": "stepped" },
{ "time": 1.6333, "angle": 1.24, "curve": "stepped" },
{ "time": 1.6666, "angle": 1.24, "curve": "stepped" },
{ "time": 1.7, "angle": 1.24, "curve": "stepped" },
{ "time": 1.7666, "angle": 1.24, "curve": "stepped" },
{ "time": 1.8, "angle": 1.24, "curve": "stepped" },
{ "time": 2.0333, "angle": 1.24, "curve": "stepped" },
{ "time": 2.1666, "angle": 1.24 }
],
"translate": [
{ "time": 0, "x": -38.84, "y": -35.33 },
{ "time": 0.0333, "x": 69.02, "y": 48.9, "curve": "stepped" },
{ "time": 0.1666, "x": 69.02, "y": 48.9 },
{ "time": 0.4666, "x": 380.47, "y": -138.6 },
{ "time": 0.5333, "x": 385.78, "y": -10.92 },
{ "time": 0.6, "x": 392.29, "y": 19.61 },
{ "time": 0.6666, "x": 1.69, "y": -77.1 },
{ "time": 0.7333, "x": 80.18, "y": 45.18 },
{ "time": 0.8333, "x": 87.75, "y": 51.69 },
{ "time": 1.1333, "x": 380.47, "y": -138.6 },
{ "time": 1.1666, "x": 390.73, "y": -30.97 },
{ "time": 1.2, "x": 388.24, "y": -20.91, "curve": "stepped" },
{ "time": 1.2666, "x": 388.24, "y": -20.91 },
{ "time": 1.5333, "x": 392.29, "y": 19.61, "curve": "stepped" },
{ "time": 1.5666, "x": 392.29, "y": 19.61 },
{ "time": 1.6, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.6333, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.6666, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.7, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.7666, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.8, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 2.0333, "x": 359.53, "y": -55.61 },
{ "time": 2.1, "x": 359.5, "y": -55.61 },
{ "time": 2.1666, "x": 359.53, "y": -55.61 }
],
"scale": [
{ "time": 0.4666, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 0.5333, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 0.6, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 0.6666, "x": 1.409, "y": 1.409 },
{ "time": 1.1333, "x": 1, "y": 1 },
{ "time": 1.1666, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.2, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.2666, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.5333, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.5666, "x": 1.409, "y": 1.409 },
{ "time": 1.6, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.6333, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.6666, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.7, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.7666, "x": 0.12, "y": 0.367 },
{ "time": 1.8, "x": 1.146, "y": 1.306, "curve": "stepped" },
{ "time": 2.0333, "x": 1.146, "y": 1.306, "curve": "stepped" },
{ "time": 2.1666, "x": 1.146, "y": 1.306 }
]
},
"images/ci6": {
"rotate": [
{ "time": 0.0333, "angle": 51.7, "curve": "stepped" },
{ "time": 0.1, "angle": 51.7, "curve": "stepped" },
{ "time": 0.1333, "angle": 51.7, "curve": "stepped" },
{ "time": 0.2333, "angle": 51.7 },
{ "time": 0.6, "angle": 72.05 },
{ "time": 0.6666, "angle": 75.19 },
{ "time": 0.7333, "angle": 77.28 },
{ "time": 0.7666, "angle": 51.7, "curve": "stepped" },
{ "time": 0.8, "angle": 51.7, "curve": "stepped" },
{ "time": 0.9, "angle": 51.7 },
{ "time": 1.2333, "angle": -66.02 },
{ "time": 1.3, "angle": -79.79, "curve": "stepped" },
{ "time": 1.4, "angle": -79.79 },
{ "time": 1.5, "angle": -78.14, "curve": "stepped" },
{ "time": 1.5333, "angle": -78.14, "curve": "stepped" },
{ "time": 1.5666, "angle": -78.14 },
{ "time": 1.6, "angle": 6.5, "curve": "stepped" },
{ "time": 1.6333, "angle": 6.5, "curve": "stepped" },
{ "time": 1.6666, "angle": 6.5, "curve": "stepped" },
{ "time": 1.7, "angle": 6.5, "curve": "stepped" },
{ "time": 1.7666, "angle": 6.5, "curve": "stepped" },
{ "time": 1.8, "angle": 6.5 },
{ "time": 1.8333, "angle": -6.72, "curve": "stepped" },
{ "time": 2.0333, "angle": -6.72, "curve": "stepped" },
{ "time": 2.1666, "angle": -6.72 }
],
"translate": [
{ "time": 0.0333, "x": 767.71, "y": -276.81 },
{ "time": 0.1, "x": 649.6, "y": -166.09 },
{ "time": 0.1333, "x": 609, "y": -136.56, "curve": "stepped" },
{ "time": 0.2333, "x": 609, "y": -136.56 },
{ "time": 0.6, "x": 712.15, "y": -100.87 },
{ "time": 0.6666, "x": 422.58, "y": -88.36, "curve": "stepped" },
{ "time": 0.7333, "x": 422.58, "y": -88.36 },
{ "time": 0.7666, "x": 649.6, "y": -166.09 },
{ "time": 0.8, "x": 609, "y": -136.56, "curve": "stepped" },
{ "time": 0.9, "x": 609, "y": -136.56 },
{ "time": 1.2333, "x": -38.83, "y": -141.59 },
{ "time": 1.3, "x": 57.13, "y": -83.17 },
{ "time": 1.4, "x": 76.18, "y": -80.15 },
{ "time": 1.5, "x": 106.38, "y": -75.37, "curve": "stepped" },
{ "time": 1.5333, "x": 106.38, "y": -75.37, "curve": "stepped" },
{ "time": 1.5666, "x": 106.38, "y": -75.37 },
{ "time": 1.6, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.6333, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.6666, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.7, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.7666, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.8, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.8333, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 2.0333, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 2.1666, "x": 399.23, "y": -181.57 }
],
"scale": [
{ "time": 0.0333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.1, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.1333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.2333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.6, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.6666, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.7333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.7666, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.8, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.9, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.2333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.3, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.4, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.5, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.5333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.5666, "x": 1.297, "y": 1.297 },
{ "time": 1.6, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.6333, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.6666, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.7, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.7666, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.8, "x": 0.103, "y": 0.293 },
{ "time": 1.8333, "x": 1.495, "y": 1.359, "curve": "stepped" },
{ "time": 2.0333, "x": 1.495, "y": 1.359, "curve": "stepped" },
{ "time": 2.1666, "x": 1.495, "y": 1.359 }
]
},
"images/ci7": {
"rotate": [
{ "time": 0.1666, "angle": -27.55 },
{ "time": 0.2, "angle": -31.18 },
{ "time": 0.2666, "angle": -31.07, "curve": "stepped" },
{ "time": 0.3666, "angle": -31.07 },
{ "time": 0.8666, "angle": -27.55 },
{ "time": 0.9, "angle": -31.18 },
{ "time": 0.9333, "angle": -31.07 },
{ "time": 1.0333, "angle": -32.81, "curve": "stepped" },
{ "time": 1.5333, "angle": -32.81, "curve": "stepped" },
{ "time": 1.5666, "angle": -32.81 },
{ "time": 1.6, "angle": -0.21, "curve": "stepped" },
{ "time": 1.6333, "angle": -0.21, "curve": "stepped" },
{ "time": 1.6666, "angle": -0.21, "curve": "stepped" },
{ "time": 2.0333, "angle": -0.21, "curve": "stepped" },
{ "time": 2.1666, "angle": -0.21 }
],
"translate": [
{ "time": 0, "x": 0, "y": -0.09 },
{ "time": 0.1666, "x": 23.24, "y": -329.7 },
{ "time": 0.2, "x": 58.85, "y": -258.47 },
{ "time": 0.2666, "x": 81.51, "y": -216.39, "curve": "stepped" },
{ "time": 0.3666, "x": 81.51, "y": -216.39 },
{ "time": 0.8666, "x": 23.24, "y": -329.7 },
{ "time": 0.9, "x": 58.85, "y": -258.47 },
{ "time": 0.9333, "x": 81.51, "y": -216.39 },
{ "time": 1.0333, "x": 97.7, "y": -193.73, "curve": "stepped" },
{ "time": 1.5333, "x": 97.7, "y": -193.73, "curve": "stepped" },
{ "time": 1.5666, "x": 97.7, "y": -193.73 },
{ "time": 1.6, "x": 57.95, "y": -258.73, "curve": "stepped" },
{ "time": 1.6333, "x": 57.95, "y": -258.73 },
{ "time": 1.6666, "x": 54.96, "y": -246.78, "curve": "stepped" },
{ "time": 2.0333, "x": 54.96, "y": -246.78, "curve": "stepped" },
{ "time": 2.1666, "x": 54.96, "y": -246.78 }
],
"scale": [
{ "time": 0.1666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.2, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.2666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.3666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.8666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.9, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.9333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.0333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.5333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.5666, "x": 1.05, "y": 1.05 },
{ "time": 1.6, "x": 0.071, "y": 0.218, "curve": "stepped" },
{ "time": 1.6333, "x": 0.071, "y": 0.218, "curve": "stepped" },
{ "time": 1.6666, "x": 0.071, "y": 0.218 },
{ "time": 1.7, "x": 0.598, "y": 0.804, "curve": "stepped" },
{ "time": 2.0333, "x": 0.598, "y": 0.804, "curve": "stepped" },
{ "time": 2.1666, "x": 0.598, "y": 0.804 }
]
},
"images/ci8": {
"rotate": [
{ "time": 0.1666, "angle": -27.55 },
{ "time": 0.2, "angle": -31.18 },
{ "time": 0.2666, "angle": -31.07, "curve": "stepped" },
{ "time": 0.3666, "angle": -31.07 },
{ "time": 0.8666, "angle": -27.55 },
{ "time": 0.9, "angle": -31.18 },
{ "time": 0.9333, "angle": -31.07 },
{ "time": 1.0333, "angle": -32.81, "curve": "stepped" },
{ "time": 1.5333, "angle": -32.81, "curve": "stepped" },
{ "time": 1.5666, "angle": -32.81 },
{ "time": 1.6, "angle": -0.21, "curve": "stepped" },
{ "time": 1.6333, "angle": -0.21, "curve": "stepped" },
{ "time": 1.6666, "angle": -0.21, "curve": "stepped" },
{ "time": 2.0333, "angle": -0.21, "curve": "stepped" },
{ "time": 2.1666, "angle": -0.21 }
],
"translate": [
{ "time": 0.1666, "x": 23.24, "y": -329.7 },
{ "time": 0.2, "x": 58.85, "y": -258.47 },
{ "time": 0.2666, "x": 81.51, "y": -216.39, "curve": "stepped" },
{ "time": 0.3666, "x": 81.51, "y": -216.39 },
{ "time": 0.8666, "x": 23.24, "y": -329.7 },
{ "time": 0.9, "x": 58.85, "y": -258.47 },
{ "time": 0.9333, "x": 81.51, "y": -216.39 },
{ "time": 1.0333, "x": 97.7, "y": -193.73, "curve": "stepped" },
{ "time": 1.5333, "x": 97.7, "y": -193.73, "curve": "stepped" },
{ "time": 1.5666, "x": 97.7, "y": -193.73 },
{ "time": 1.6, "x": 54.96, "y": -246.78, "curve": "stepped" },
{ "time": 1.6333, "x": 54.96, "y": -246.78, "curve": "stepped" },
{ "time": 1.6666, "x": 54.96, "y": -246.78, "curve": "stepped" },
{ "time": 2.0333, "x": 54.96, "y": -246.78, "curve": "stepped" },
{ "time": 2.1666, "x": 54.96, "y": -246.78 }
],
"scale": [
{ "time": 0.1666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.2, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.2666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.3666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.8666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.9, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.9333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.0333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.5333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.5666, "x": 1.05, "y": 1.05 },
{ "time": 1.6, "x": 0.071, "y": 0.218, "curve": "stepped" },
{ "time": 1.6333, "x": 0.071, "y": 0.218, "curve": "stepped" },
{ "time": 1.6666, "x": 0.071, "y": 0.218 },
{ "time": 1.7, "x": 0.598, "y": 0.804, "curve": "stepped" },
{ "time": 2.0333, "x": 0.598, "y": 0.804, "curve": "stepped" },
{ "time": 2.1666, "x": 0.598, "y": 0.804 }
]
},
"images/ci9": {
"rotate": [
{ "time": 0, "angle": -47.9 },
{ "time": 0.0333, "angle": -50.23, "curve": "stepped" },
{ "time": 0.1666, "angle": -50.23 },
{ "time": 0.4666, "angle": 15.06 },
{ "time": 0.5333, "angle": 17.44 },
{ "time": 0.6, "angle": 20.95 },
{ "time": 0.6666, "angle": -42.07 },
{ "time": 0.7333, "angle": -47.65 },
{ "time": 0.8333, "angle": -48.11 },
{ "time": 1.1333, "angle": 4.76 },
{ "time": 1.1666, "angle": 15.06, "curve": "stepped" },
{ "time": 1.2, "angle": 15.06, "curve": "stepped" },
{ "time": 1.2666, "angle": 15.06 },
{ "time": 1.5333, "angle": 20.95, "curve": "stepped" },
{ "time": 1.5666, "angle": 20.95 },
{ "time": 1.6, "angle": 1.24, "curve": "stepped" },
{ "time": 1.6333, "angle": 1.24, "curve": "stepped" },
{ "time": 1.6666, "angle": 1.24, "curve": "stepped" },
{ "time": 1.7, "angle": 1.24, "curve": "stepped" },
{ "time": 1.7666, "angle": 1.24, "curve": "stepped" },
{ "time": 1.8, "angle": 1.24, "curve": "stepped" },
{ "time": 2.0333, "angle": 1.24, "curve": "stepped" },
{ "time": 2.1666, "angle": 1.24 }
],
"translate": [
{ "time": 0, "x": -38.84, "y": -35.33 },
{ "time": 0.0333, "x": 69.02, "y": 48.9, "curve": "stepped" },
{ "time": 0.1666, "x": 69.02, "y": 48.9 },
{ "time": 0.4666, "x": 380.47, "y": -138.6 },
{ "time": 0.5333, "x": 385.78, "y": -10.92 },
{ "time": 0.6, "x": 392.29, "y": 19.61 },
{ "time": 0.6666, "x": 1.69, "y": -77.1 },
{ "time": 0.7333, "x": 80.18, "y": 45.18 },
{ "time": 0.8333, "x": 87.75, "y": 51.69 },
{ "time": 1.1333, "x": 380.47, "y": -138.6 },
{ "time": 1.1666, "x": 390.73, "y": -30.97 },
{ "time": 1.2, "x": 388.24, "y": -20.91, "curve": "stepped" },
{ "time": 1.2666, "x": 388.24, "y": -20.91 },
{ "time": 1.5333, "x": 392.29, "y": 19.61, "curve": "stepped" },
{ "time": 1.5666, "x": 392.29, "y": 19.61 },
{ "time": 1.6, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.6333, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.6666, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.7, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.7666, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 1.8, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 2.0333, "x": 359.53, "y": -55.61, "curve": "stepped" },
{ "time": 2.1666, "x": 359.53, "y": -55.61 }
],
"scale": [
{ "time": 0.4666, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 0.5333, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 0.6, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 0.6666, "x": 1.409, "y": 1.409 },
{ "time": 1.1333, "x": 1, "y": 1 },
{ "time": 1.1666, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.2, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.2666, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.5333, "x": 1.409, "y": 1.409, "curve": "stepped" },
{ "time": 1.5666, "x": 1.409, "y": 1.409 },
{ "time": 1.6, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.6333, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.6666, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.7, "x": 0.12, "y": 0.367, "curve": "stepped" },
{ "time": 1.7666, "x": 0.12, "y": 0.367 },
{ "time": 1.8, "x": 1.146, "y": 1.306, "curve": "stepped" },
{ "time": 2.0333, "x": 1.146, "y": 1.306, "curve": "stepped" },
{ "time": 2.1666, "x": 1.146, "y": 1.306 }
]
},
"images/ci10": {
"rotate": [
{ "time": 0.0333, "angle": 51.7, "curve": "stepped" },
{ "time": 0.1, "angle": 51.7, "curve": "stepped" },
{ "time": 0.1333, "angle": 51.7, "curve": "stepped" },
{ "time": 0.2333, "angle": 51.7 },
{ "time": 0.6, "angle": 72.05 },
{ "time": 0.6666, "angle": 75.19 },
{ "time": 0.7333, "angle": 77.28 },
{ "time": 0.7666, "angle": 51.7, "curve": "stepped" },
{ "time": 0.8, "angle": 51.7, "curve": "stepped" },
{ "time": 0.9, "angle": 51.7 },
{ "time": 1.2333, "angle": -66.02 },
{ "time": 1.3, "angle": -79.79, "curve": "stepped" },
{ "time": 1.4, "angle": -79.79 },
{ "time": 1.5, "angle": -78.14, "curve": "stepped" },
{ "time": 1.5333, "angle": -78.14, "curve": "stepped" },
{ "time": 1.5666, "angle": -78.14 },
{ "time": 1.6, "angle": 6.5, "curve": "stepped" },
{ "time": 1.6333, "angle": 6.5, "curve": "stepped" },
{ "time": 1.6666, "angle": 6.5, "curve": "stepped" },
{ "time": 1.7, "angle": 6.5, "curve": "stepped" },
{ "time": 1.7666, "angle": 6.5, "curve": "stepped" },
{ "time": 1.8, "angle": 6.5 },
{ "time": 1.8333, "angle": -6.72, "curve": "stepped" },
{ "time": 2.0333, "angle": -6.72, "curve": "stepped" },
{ "time": 2.1666, "angle": -6.72 }
],
"translate": [
{ "time": 0.0333, "x": 767.71, "y": -276.81 },
{ "time": 0.1, "x": 649.6, "y": -166.09 },
{ "time": 0.1333, "x": 609, "y": -136.56, "curve": "stepped" },
{ "time": 0.2333, "x": 609, "y": -136.56 },
{ "time": 0.6, "x": 459.77, "y": -101.27 },
{ "time": 0.6666, "x": 422.58, "y": -88.36, "curve": "stepped" },
{ "time": 0.7333, "x": 422.58, "y": -88.36 },
{ "time": 0.7666, "x": 649.6, "y": -166.09 },
{ "time": 0.8, "x": 609, "y": -136.56, "curve": "stepped" },
{ "time": 0.9, "x": 609, "y": -136.56 },
{ "time": 1.2333, "x": -38.83, "y": -141.59 },
{ "time": 1.3, "x": 57.13, "y": -83.17 },
{ "time": 1.4, "x": 76.18, "y": -80.15 },
{ "time": 1.5, "x": 106.38, "y": -75.37, "curve": "stepped" },
{ "time": 1.5333, "x": 106.38, "y": -75.37, "curve": "stepped" },
{ "time": 1.5666, "x": 106.38, "y": -75.37 },
{ "time": 1.6, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.6333, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.6666, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.7, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.7666, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.8, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 1.8333, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 2.0333, "x": 399.23, "y": -181.57, "curve": "stepped" },
{ "time": 2.1666, "x": 399.23, "y": -181.57 }
],
"scale": [
{ "time": 0.0333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.1, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.1333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.2333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.6, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.6666, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.7333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.7666, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.8, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 0.9, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.2333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.3, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.4, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.5, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.5333, "x": 1.297, "y": 1.297, "curve": "stepped" },
{ "time": 1.5666, "x": 1.297, "y": 1.297 },
{ "time": 1.6, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.6333, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.6666, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.7, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.7666, "x": 0.103, "y": 0.293, "curve": "stepped" },
{ "time": 1.8, "x": 0.103, "y": 0.293 },
{ "time": 1.8333, "x": 1.495, "y": 1.359, "curve": "stepped" },
{ "time": 2.0333, "x": 1.495, "y": 1.359, "curve": "stepped" },
{ "time": 2.1666, "x": 1.495, "y": 1.359 }
]
},
"images/ci11": {
"rotate": [
{ "time": 0.2333, "angle": -130.06, "curve": "stepped" },
{ "time": 0.3, "angle": -130.06, "curve": "stepped" },
{ "time": 0.3666, "angle": -130.06, "curve": "stepped" },
{ "time": 0.4, "angle": -130.06, "curve": "stepped" },
{ "time": 0.9333, "angle": -130.06, "curve": "stepped" },
{ "time": 0.9666, "angle": -130.06, "curve": "stepped" },
{ "time": 1.0333, "angle": -130.06, "curve": "stepped" },
{ "time": 1.1, "angle": -130.06, "curve": "stepped" },
{ "time": 1.5, "angle": -130.06, "curve": "stepped" },
{ "time": 1.5666, "angle": -130.06 },
{ "time": 1.6, "angle": 6.57, "curve": "stepped" },
{ "time": 1.6333, "angle": 6.57, "curve": "stepped" },
{ "time": 1.7, "angle": 6.57 },
{ "time": 1.7333, "angle": 2.38, "curve": "stepped" },
{ "time": 2, "angle": 2.38, "curve": "stepped" },
{ "time": 2.1333, "angle": 2.38 }
],
"translate": [
{ "time": 0.0333, "x": 0, "y": -0.02, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": -0.02 },
{ "time": 0.1333, "x": 0, "y": 0.02, "curve": "stepped" },
{ "time": 0.1666, "x": 0, "y": 0.02 },
{ "time": 0.2, "x": -76.15, "y": 13.57 },
{ "time": 0.2333, "x": -152.3, "y": 27.03 },
{ "time": 0.2666, "x": -102.52, "y": -16.64 },
{ "time": 0.3, "x": -52.73, "y": -60.34 },
{ "time": 0.3333, "x": -45.39, "y": -66.78 },
{ "time": 0.3666, "x": -38.05, "y": -73.22 },
{ "time": 0.4, "x": -15.79, "y": -92.76 },
{ "time": 0.5, "x": -41.39, "y": -70.24 },
{ "time": 0.5666, "x": -58.45, "y": -55.21 },
{ "time": 0.6, "x": -66.98, "y": -47.62 },
{ "time": 0.6333, "x": -75.51, "y": -40.22 },
{ "time": 0.6666, "x": -84.05, "y": -32.63 },
{ "time": 0.7, "x": -92.58, "y": -25.23 },
{ "time": 0.7333, "x": -101.11, "y": -17.84 },
{ "time": 0.7666, "x": -109.64, "y": -10.45 },
{ "time": 0.8, "x": -118.17, "y": -2.85 },
{ "time": 0.8333, "x": -126.71, "y": 4.73 },
{ "time": 0.8666, "x": -135.24, "y": 12.13 },
{ "time": 0.9, "x": -143.77, "y": 19.52 },
{ "time": 0.9333, "x": -152.3, "y": 27.12 },
{ "time": 0.9666, "x": -52.73, "y": -60.34 },
{ "time": 1, "x": -45.39, "y": -66.78 },
{ "time": 1.0333, "x": -38.05, "y": -73.22 },
{ "time": 1.1, "x": -15.79, "y": -92.76, "curve": "stepped" },
{ "time": 1.5, "x": -15.79, "y": -92.76, "curve": "stepped" },
{ "time": 1.5666, "x": -15.79, "y": -92.76 },
{ "time": 1.6, "x": 104.54, "y": -304.94 },
{ "time": 1.6333, "x": 19.66, "y": -266.02, "curve": "stepped" },
{ "time": 1.7, "x": 19.66, "y": -266.02, "curve": "stepped" },
{ "time": 1.7333, "x": 19.66, "y": -266.02, "curve": "stepped" },
{ "time": 2, "x": 19.66, "y": -266.02, "curve": "stepped" },
{ "time": 2.1333, "x": 19.66, "y": -266.02 }
],
"scale": [
{ "time": 0.2333, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 0.3, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 0.3666, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 0.4, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 0.9333, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 0.9666, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 1.0333, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 1.1, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 1.5, "x": 1.172, "y": 1.172, "curve": "stepped" },
{ "time": 1.5666, "x": 1.172, "y": 1.172 },
{ "time": 1.6, "x": 0.134, "y": 0.409, "curve": "stepped" },
{ "time": 1.6333, "x": 0.134, "y": 0.409, "curve": "stepped" },
{ "time": 1.7, "x": 0.134, "y": 0.409 },
{ "time": 1.7333, "x": 0.939, "y": 0.828, "curve": "stepped" },
{ "time": 2, "x": 0.939, "y": 0.828, "curve": "stepped" },
{ "time": 2.1333, "x": 0.939, "y": 0.828 }
]
},
"images/ci12": {
"rotate": [
{ "time": 0.1666, "angle": -27.55 },
{ "time": 0.2, "angle": -31.18 },
{ "time": 0.2666, "angle": -31.07, "curve": "stepped" },
{ "time": 0.3666, "angle": -31.07 },
{ "time": 0.8666, "angle": -27.55 },
{ "time": 0.9, "angle": -31.18 },
{ "time": 0.9333, "angle": -31.07 },
{ "time": 1.0333, "angle": -32.81, "curve": "stepped" },
{ "time": 1.5333, "angle": -32.81, "curve": "stepped" },
{ "time": 1.5666, "angle": -32.81 },
{ "time": 1.6, "angle": -0.21, "curve": "stepped" },
{ "time": 1.6333, "angle": -0.21, "curve": "stepped" },
{ "time": 1.6666, "angle": -0.21, "curve": "stepped" },
{ "time": 2.0333, "angle": -0.21, "curve": "stepped" },
{ "time": 2.1666, "angle": -0.21 }
],
"translate": [
{ "time": 0.1666, "x": 23.24, "y": -329.7 },
{ "time": 0.2, "x": 58.85, "y": -258.47 },
{ "time": 0.2666, "x": 81.51, "y": -216.39, "curve": "stepped" },
{ "time": 0.3666, "x": 81.51, "y": -216.39 },
{ "time": 0.8666, "x": 23.24, "y": -329.7 },
{ "time": 0.9, "x": 58.85, "y": -258.47 },
{ "time": 0.9333, "x": 81.51, "y": -216.39 },
{ "time": 1.0333, "x": 97.7, "y": -193.73, "curve": "stepped" },
{ "time": 1.5333, "x": 97.7, "y": -193.73, "curve": "stepped" },
{ "time": 1.5666, "x": 97.7, "y": -193.73 },
{ "time": 1.6, "x": 54.96, "y": -246.78 },
{ "time": 1.6333, "x": -153.72, "y": -338.75, "curve": "stepped" },
{ "time": 1.6666, "x": -153.72, "y": -338.75, "curve": "stepped" },
{ "time": 2.0333, "x": -153.72, "y": -338.75, "curve": "stepped" },
{ "time": 2.1666, "x": -153.72, "y": -338.75 }
],
"scale": [
{ "time": 0.1666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.2, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.2666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.3666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.8666, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.9, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 0.9333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.0333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.5333, "x": 1.05, "y": 1.05, "curve": "stepped" },
{ "time": 1.5666, "x": 1.05, "y": 1.05 },
{ "time": 1.6, "x": 0.071, "y": 0.218, "curve": "stepped" },
{ "time": 1.6333, "x": 0.071, "y": 0.218, "curve": "stepped" },
{ "time": 1.6666, "x": 0.071, "y": 0.218 },
{ "time": 1.7, "x": 0.598, "y": 0.804, "curve": "stepped" },
{ "time": 2.0333, "x": 0.598, "y": 0.804, "curve": "stepped" },
{ "time": 2.1666, "x": 0.598, "y": 0.804 }
]
},
"root": {
"rotate": [
{ "time": 0.1333, "angle": -0.03 }
]
}
},
"events": [
{ "time": 0.0333, "name": "special" }
]
}
}
}