Newer
Older
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
this.shape_30 = new cjs.Shape();
this.shape_30.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("AAAkeQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUQhShUAAh3QAAh2BShUQBShUBzAAg");
this.shape_30.setTransform(1410.075,96.175);
this.shape_31 = new cjs.Shape();
this.shape_31.graphics.f("#3771C8").s().p("AjFDLQhShUAAh3QAAh2BShUQBShUBzAAQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUg");
this.shape_31.setTransform(1410.075,96.175);
this.shape_32 = new cjs.Shape();
this.shape_32.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("AAAkeQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUQhShUAAh3QAAh2BShUQBShUBzAAg");
this.shape_32.setTransform(1305.25,246.975);
this.shape_33 = new cjs.Shape();
this.shape_33.graphics.f("#3771C8").s().p("AjFDLQhShUAAh3QAAh2BShUQBShUBzAAQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUg");
this.shape_33.setTransform(1305.25,246.975);
this.shape_34 = new cjs.Shape();
this.shape_34.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("AAAkeQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUQhShUAAh3QAAh2BShUQBShUBzAAg");
this.shape_34.setTransform(1180.3,334.575);
this.shape_35 = new cjs.Shape();
this.shape_35.graphics.f("#3771C8").s().p("AjFDLQhShUAAh3QAAh2BShUQBShUBzAAQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUg");
this.shape_35.setTransform(1180.3,334.575);
this.shape_36 = new cjs.Shape();
this.shape_36.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("AAAkeQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUQhShUAAh3QAAh2BShUQBShUBzAAg");
this.shape_36.setTransform(1108.475,202.475);
this.shape_37 = new cjs.Shape();
this.shape_37.graphics.f("#3771C8").s().p("AjFDLQhShUAAh3QAAh2BShUQBShUBzAAQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUg");
this.shape_37.setTransform(1108.475,202.475);
this.shape_38 = new cjs.Shape();
this.shape_38.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("AAAkeQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUQhShUAAh3QAAh2BShUQBShUBzAAg");
this.shape_38.setTransform(1052.45,86.675);
this.shape_39 = new cjs.Shape();
this.shape_39.graphics.f("#3771C8").s().p("AjFDLQhShUAAh3QAAh2BShUQBShUBzAAQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUg");
this.shape_39.setTransform(1052.45,86.675);
this.shape_40 = new cjs.Shape();
this.shape_40.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("AAAkeQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUQhShUAAh3QAAh2BShUQBShUBzAAg");
this.shape_40.setTransform(911.7,194.275);
this.shape_41 = new cjs.Shape();
this.shape_41.graphics.f("#3771C8").s().p("AjFDLQhShUAAh3QAAh2BShUQBShUBzAAQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUg");
this.shape_41.setTransform(911.7,194.275);
this.shape_42 = new cjs.Shape();
this.shape_42.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("AAAkeQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUQhShUAAh3QAAh2BShUQBShUBzAAg");
this.shape_42.setTransform(863.6,340.325);
this.shape_43 = new cjs.Shape();
this.shape_43.graphics.f("#3771C8").s().p("AjFDLQhShUAAh3QAAh2BShUQBShUBzAAQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUg");
this.shape_43.setTransform(863.6,340.325);
this.shape_44 = new cjs.Shape();
this.shape_44.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("AAAkeQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUQhShUAAh3QAAh2BShUQBShUBzAAg");
this.shape_44.setTransform(807.6,262.775);
this.shape_45 = new cjs.Shape();
this.shape_45.graphics.f("#3771C8").s().p("AjFDLQhShUAAh3QAAh2BShUQBShUBzAAQB0AABSBUQBSBUAAB2QAAB3hSBUQhSBUh0AAQhzAAhShUg");
this.shape_45.setTransform(807.6,262.775);
this.shape_46 = new cjs.Shape();
this.shape_46.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("Eg+1AAAMB9rAAA");
this.shape_46.setTransform(1103.45,389.15);
this.shape_47 = new cjs.Shape();
this.shape_47.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("Eg+1AAAMB9rAAA");
this.shape_47.setTransform(1103.05,39.35);
this.shape_48 = new cjs.Shape();
this.shape_48.graphics.f("#FFF6D5").s().p("Eg9/AbjQgXAAgRgQQgRgSAAgYMAAAg1SQAAgXARgRQARgRAXAAMB7+AAAQAYAAARARQARARAAAXMAAAA1SQAAAYgRASQgRAQgYAAg");
this.shape_48.setTransform(1102.375,214.3);
this.bloodstream = new lib.Symbol3();
this.bloodstream.name = "bloodstream";
this.bloodstream.setTransform(1101.65,214.2,1,1,0,0,0,0.5,-0.1);
this.instance_15 = new lib.Tween254("synched",0);
this.instance_15.setTransform(1102.75,214.3);
this.instance_15._off = true;
this.instance_16 = new lib.Tween255("synched",0);
this.instance_16.setTransform(1102.75,214.3);
this.instance_16.alpha = 0;
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.instance_13}]},225).to({state:[{t:this.instance_14}]},4).to({state:[{t:this.glucose_1}]},3).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:807.6,y:262.775}},{t:this.shape_44,p:{x:807.6,y:262.775}},{t:this.shape_43,p:{x:863.6,y:340.325}},{t:this.shape_42,p:{x:863.6,y:340.325}},{t:this.shape_41,p:{x:911.7,y:194.275}},{t:this.shape_40,p:{x:911.7,y:194.275}},{t:this.shape_39,p:{x:1052.45,y:86.675}},{t:this.shape_38,p:{x:1052.45,y:86.675}},{t:this.shape_37,p:{x:1108.475,y:202.475}},{t:this.shape_36,p:{x:1108.475,y:202.475}},{t:this.shape_35,p:{x:1180.3,y:334.575}},{t:this.shape_34,p:{x:1180.3,y:334.575}},{t:this.shape_33,p:{x:1305.25,y:246.975}},{t:this.shape_32,p:{x:1305.25,y:246.975}},{t:this.shape_31,p:{x:1410.075,y:96.175}},{t:this.shape_30,p:{x:1410.075,y:96.175}},{t:this.shape_29,p:{y:205.325,x:1450.3}},{t:this.shape_28,p:{y:205.325,x:1450.3}},{t:this.shape_27,p:{x:1293.75,y:93.325}},{t:this.shape_26,p:{x:1293.75,y:93.325}},{t:this.shape_25,p:{x:929.05,y:107.375}},{t:this.shape_24,p:{x:929.05,y:107.375}},{t:this.shape_23,p:{x:1011.9687,y:264.0516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1011.9687,y:264.0516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:1006.9806,y:270.5382,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:1006.4527,y:271.4755,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:1,scaleY:1,rotation:0,x:1206.4864,y:161.4492}},{t:this.shape_18,p:{scaleX:1,scaleY:1,rotation:0,x:1206.4864,y:161.4492}},{t:this.shape_17,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1403.5883,y:301.2277}},{t:this.shape_16,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1403.5883,y:301.2277}},{t:this.shape_15,p:{scaleX:0.9998,scaleY:0.9998,rotation:-14.9973,x:803.9445,y:137.8346}},{t:this.shape_14,p:{scaleX:0.9998,scaleY:0.9998,rotation:-14.9973,x:803.9445,y:137.8346}},{t:this.shape_13,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:782.7444,y:125.4295}},{t:this.shape_12,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:781.7,y:124.8502}}]},4).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:798.55,y:262.775}},{t:this.shape_44,p:{x:798.55,y:262.775}},{t:this.shape_43,p:{x:873.05,y:340.325}},{t:this.shape_42,p:{x:873.05,y:340.325}},{t:this.shape_41,p:{x:901.65,y:205.325}},{t:this.shape_40,p:{x:901.65,y:205.325}},{t:this.shape_39,p:{x:1055.35,y:74.625}},{t:this.shape_38,p:{x:1055.35,y:74.625}},{t:this.shape_37,p:{x:1111.375,y:210.475}},{t:this.shape_36,p:{x:1111.375,y:210.475}},{t:this.shape_35,p:{x:1186.3,y:332.375}},{t:this.shape_34,p:{x:1186.3,y:332.375}},{t:this.shape_33,p:{x:1313.3,y:248.575}},{t:this.shape_32,p:{x:1313.3,y:248.575}},{t:this.shape_31,p:{x:1402.025,y:107.225}},{t:this.shape_30,p:{x:1402.025,y:107.225}},{t:this.shape_29,p:{y:191.125,x:1450.3}},{t:this.shape_28,p:{y:191.125,x:1450.3}},{t:this.shape_27,p:{x:1292,y:102.325}},{t:this.shape_26,p:{x:1292,y:102.325}},{t:this.shape_25,p:{x:918.9,y:93.325}},{t:this.shape_24,p:{x:918.9,y:93.325}},{t:this.shape_23,p:{x:1000.9187,y:274.1016,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1000.9187,y:274.1016,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:995.9306,y:280.5882,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:995.4027,y:281.5255,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1209.1792,y:166.5362}},{t:this.shape_18,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1209.1792,y:166.5362}},{t:this.shape_17,p:{scaleX:1,scaleY:1,rotation:0,x:1412.0128,y:300.5538}},{t:this.shape_16,p:{scaleX:1,scaleY:1,rotation:0,x:1412.0128,y:300.5538}},{t:this.shape_15,p:{scaleX:1,scaleY:1,rotation:0,x:803.9754,y:137.8988}},{t:this.shape_14,p:{scaleX:1,scaleY:1,rotation:0,x:803.9754,y:137.8988}},{t:this.shape_13,p:{scaleX:1,scaleY:1,rotation:0,x:786.725,y:120.45}},{t:this.shape_12,p:{scaleX:1,scaleY:1,rotation:0,x:785.8657,y:119.6198}}]},4).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:787.65,y:283.325}},{t:this.shape_44,p:{x:787.65,y:283.325}},{t:this.shape_43,p:{x:881.4,y:326.825}},{t:this.shape_42,p:{x:881.4,y:326.825}},{t:this.shape_41,p:{x:913.9,y:195.675}},{t:this.shape_40,p:{x:913.9,y:195.675}},{t:this.shape_39,p:{x:1047,y:84.875}},{t:this.shape_38,p:{x:1047,y:84.875}},{t:this.shape_37,p:{x:1103.025,y:219.625}},{t:this.shape_36,p:{x:1103.025,y:219.625}},{t:this.shape_35,p:{x:1192.75,y:332.375}},{t:this.shape_34,p:{x:1192.75,y:332.375}},{t:this.shape_33,p:{x:1322.3,y:240.225}},{t:this.shape_32,p:{x:1322.3,y:240.225}},{t:this.shape_31,p:{x:1405.875,y:93.325}},{t:this.shape_30,p:{x:1405.875,y:93.325}},{t:this.shape_29,p:{y:191.125,x:1440.65}},{t:this.shape_28,p:{y:191.125,x:1440.65}},{t:this.shape_27,p:{x:1278.95,y:93.325}},{t:this.shape_26,p:{x:1278.95,y:93.325}},{t:this.shape_25,p:{x:925.95,y:104.225}},{t:this.shape_24,p:{x:925.95,y:104.225}},{t:this.shape_23,p:{x:1013.7509,y:285.1473,scaleX:0.9999,scaleY:0.9999,rotation:-22.2322}},{t:this.shape_22,p:{x:1013.7509,y:285.1473,scaleX:0.9999,scaleY:0.9999,rotation:-22.2322}},{t:this.shape_21,p:{x:1011.5498,y:293.0293,scaleX:0.9998,scaleY:0.9998,rotation:-22.2317}},{t:this.shape_20,p:{x:1011.4159,y:294.0964,scaleX:0.9998,scaleY:0.9998,rotation:-22.2317}},{t:this.shape_19,p:{scaleX:1,scaleY:1,rotation:0,x:1209.1287,y:179.8473}},{t:this.shape_18,p:{scaleX:1,scaleY:1,rotation:0,x:1209.1287,y:179.8473}},{t:this.shape_17,p:{scaleX:0.9997,scaleY:0.9997,rotation:-14.9982,x:1411.7373,y:306.9772}},{t:this.shape_16,p:{scaleX:0.9997,scaleY:0.9997,rotation:-14.9982,x:1411.7373,y:306.9772}},{t:this.shape_15,p:{scaleX:0.9998,scaleY:0.9998,rotation:-23.9566,x:803.9531,y:137.8103}},{t:this.shape_14,p:{scaleX:0.9998,scaleY:0.9998,rotation:-23.9566,x:803.9531,y:137.8103}},{t:this.shape_13,p:{scaleX:0.9997,scaleY:0.9997,rotation:-23.9564,x:781.0955,y:128.8661}},{t:this.shape_12,p:{scaleX:0.9997,scaleY:0.9997,rotation:-23.9564,x:779.9734,y:128.4565}}]},4).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:782.45,y:254.175}},{t:this.shape_44,p:{x:782.45,y:254.175}},{t:this.shape_43,p:{x:889.9,y:340.325}},{t:this.shape_42,p:{x:889.9,y:340.325}},{t:this.shape_41,p:{x:907.3,y:183.275}},{t:this.shape_40,p:{x:907.3,y:183.275}},{t:this.shape_39,p:{x:1049.15,y:82.325}},{t:this.shape_38,p:{x:1049.15,y:82.325}},{t:this.shape_37,p:{x:1108.475,y:214.775}},{t:this.shape_36,p:{x:1108.475,y:214.775}},{t:this.shape_35,p:{x:1188,y:328.875}},{t:this.shape_34,p:{x:1188,y:328.875}},{t:this.shape_33,p:{x:1293.75,y:256.225}},{t:this.shape_32,p:{x:1293.75,y:256.225}},{t:this.shape_31,p:{x:1403.875,y:108.475}},{t:this.shape_30,p:{x:1403.875,y:108.475}},{t:this.shape_29,p:{y:198.775,x:1439.55}},{t:this.shape_28,p:{y:198.775,x:1439.55}},{t:this.shape_27,p:{x:1302.5,y:87.125}},{t:this.shape_26,p:{x:1302.5,y:87.125}},{t:this.shape_25,p:{x:926.1,y:87.125}},{t:this.shape_24,p:{x:926.1,y:87.125}},{t:this.shape_23,p:{x:1000.9187,y:285.4516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1000.9187,y:285.4516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:995.9306,y:291.9382,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:995.4027,y:292.8755,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:1,scaleY:1,rotation:0,x:1214.8864,y:173.2992}},{t:this.shape_18,p:{scaleX:1,scaleY:1,rotation:0,x:1214.8864,y:173.2992}},{t:this.shape_17,p:{scaleX:1,scaleY:1,rotation:0,x:1423.2128,y:312.0038}},{t:this.shape_16,p:{scaleX:1,scaleY:1,rotation:0,x:1423.2128,y:312.0038}},{t:this.shape_15,p:{scaleX:1,scaleY:1,rotation:0,x:811.6754,y:156.6488}},{t:this.shape_14,p:{scaleX:1,scaleY:1,rotation:0,x:811.6754,y:156.6488}},{t:this.shape_13,p:{scaleX:1,scaleY:1,rotation:0,x:794.425,y:139.2}},{t:this.shape_12,p:{scaleX:1,scaleY:1,rotation:0,x:793.5657,y:138.3698}}]},4).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:793.5,y:262.775}},{t:this.shape_44,p:{x:793.5,y:262.775}},{t:this.shape_43,p:{x:880.1,y:340.325}},{t:this.shape_42,p:{x:880.1,y:340.325}},{t:this.shape_41,p:{x:901.65,y:196.975}},{t:this.shape_40,p:{x:901.65,y:196.975}},{t:this.shape_39,p:{x:1044.3,y:86.675}},{t:this.shape_38,p:{x:1044.3,y:86.675}},{t:this.shape_37,p:{x:1097.225,y:205.325}},{t:this.shape_36,p:{x:1097.225,y:205.325}},{t:this.shape_35,p:{x:1179.6,y:320.225}},{t:this.shape_34,p:{x:1179.6,y:320.225}},{t:this.shape_33,p:{x:1295.2,y:246.575}},{t:this.shape_32,p:{x:1295.2,y:246.575}},{t:this.shape_31,p:{x:1422.125,y:105.375}},{t:this.shape_30,p:{x:1422.125,y:105.375}},{t:this.shape_29,p:{y:205.325,x:1439.1}},{t:this.shape_28,p:{y:205.325,x:1439.1}},{t:this.shape_27,p:{x:1305.25,y:96.175}},{t:this.shape_26,p:{x:1305.25,y:96.175}},{t:this.shape_25,p:{x:928.95,y:105.375}},{t:this.shape_24,p:{x:928.95,y:105.375}},{t:this.shape_23,p:{x:1012.9856,y:262.9585,scaleX:0.9998,scaleY:0.9998,rotation:-14.9973}},{t:this.shape_22,p:{x:1012.9856,y:262.9585,scaleX:0.9998,scaleY:0.9998,rotation:-14.9973}},{t:this.shape_21,p:{x:1009.7595,y:270.472,scaleX:0.9995,scaleY:0.9995,rotation:-14.9975}},{t:this.shape_20,p:{x:1009.4923,y:271.5134,scaleX:0.9995,scaleY:0.9995,rotation:-14.9975}},{t:this.shape_19,p:{scaleX:0.9995,scaleY:0.9995,rotation:14.9975,x:1222.2081,y:163.9451}},{t:this.shape_18,p:{scaleX:0.9995,scaleY:0.9995,rotation:14.9975,x:1222.2081,y:163.9451}},{t:this.shape_17,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1411.6383,y:291.8277}},{t:this.shape_16,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1411.6383,y:291.8277}},{t:this.shape_15,p:{scaleX:0.9998,scaleY:0.9998,rotation:14.9973,x:803.9696,y:147.8858}},{t:this.shape_14,p:{scaleX:0.9998,scaleY:0.9998,rotation:14.9973,x:803.9696,y:147.8858}},{t:this.shape_13,p:{scaleX:0.9995,scaleY:0.9995,rotation:14.9975,x:791.8093,y:126.5444}},{t:this.shape_12,p:{scaleX:0.9995,scaleY:0.9995,rotation:14.9975,x:791.1944,y:125.5206}}]},4).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:807.6,y:262.775}},{t:this.shape_44,p:{x:807.6,y:262.775}},{t:this.shape_43,p:{x:863.6,y:340.325}},{t:this.shape_42,p:{x:863.6,y:340.325}},{t:this.shape_41,p:{x:911.7,y:194.275}},{t:this.shape_40,p:{x:911.7,y:194.275}},{t:this.shape_39,p:{x:1052.45,y:86.675}},{t:this.shape_38,p:{x:1052.45,y:86.675}},{t:this.shape_37,p:{x:1108.475,y:202.475}},{t:this.shape_36,p:{x:1108.475,y:202.475}},{t:this.shape_35,p:{x:1180.3,y:334.575}},{t:this.shape_34,p:{x:1180.3,y:334.575}},{t:this.shape_33,p:{x:1305.25,y:246.975}},{t:this.shape_32,p:{x:1305.25,y:246.975}},{t:this.shape_31,p:{x:1410.075,y:96.175}},{t:this.shape_30,p:{x:1410.075,y:96.175}},{t:this.shape_29,p:{y:205.325,x:1450.3}},{t:this.shape_28,p:{y:205.325,x:1450.3}},{t:this.shape_27,p:{x:1293.75,y:93.325}},{t:this.shape_26,p:{x:1293.75,y:93.325}},{t:this.shape_25,p:{x:929.05,y:107.375}},{t:this.shape_24,p:{x:929.05,y:107.375}},{t:this.shape_23,p:{x:1011.9687,y:264.0516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1011.9687,y:264.0516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:1006.9806,y:270.5382,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:1006.4527,y:271.4755,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:1,scaleY:1,rotation:0,x:1206.4864,y:161.4492}},{t:this.shape_18,p:{scaleX:1,scaleY:1,rotation:0,x:1206.4864,y:161.4492}},{t:this.shape_17,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1403.5883,y:301.2277}},{t:this.shape_16,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1403.5883,y:301.2277}},{t:this.shape_15,p:{scaleX:0.9998,scaleY:0.9998,rotation:-14.9973,x:803.9445,y:137.8346}},{t:this.shape_14,p:{scaleX:0.9998,scaleY:0.9998,rotation:-14.9973,x:803.9445,y:137.8346}},{t:this.shape_13,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:782.7444,y:125.4295}},{t:this.shape_12,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:781.7,y:124.8502}}]},4).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:798.55,y:262.775}},{t:this.shape_44,p:{x:798.55,y:262.775}},{t:this.shape_43,p:{x:873.05,y:340.325}},{t:this.shape_42,p:{x:873.05,y:340.325}},{t:this.shape_41,p:{x:901.65,y:205.325}},{t:this.shape_40,p:{x:901.65,y:205.325}},{t:this.shape_39,p:{x:1055.35,y:74.625}},{t:this.shape_38,p:{x:1055.35,y:74.625}},{t:this.shape_37,p:{x:1111.375,y:210.475}},{t:this.shape_36,p:{x:1111.375,y:210.475}},{t:this.shape_35,p:{x:1186.3,y:332.375}},{t:this.shape_34,p:{x:1186.3,y:332.375}},{t:this.shape_33,p:{x:1313.3,y:248.575}},{t:this.shape_32,p:{x:1313.3,y:248.575}},{t:this.shape_31,p:{x:1402.025,y:107.225}},{t:this.shape_30,p:{x:1402.025,y:107.225}},{t:this.shape_29,p:{y:191.125,x:1450.3}},{t:this.shape_28,p:{y:191.125,x:1450.3}},{t:this.shape_27,p:{x:1292,y:102.325}},{t:this.shape_26,p:{x:1292,y:102.325}},{t:this.shape_25,p:{x:918.9,y:93.325}},{t:this.shape_24,p:{x:918.9,y:93.325}},{t:this.shape_23,p:{x:1000.9187,y:274.1016,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1000.9187,y:274.1016,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:995.9306,y:280.5882,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:995.4027,y:281.5255,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1209.1792,y:166.5362}},{t:this.shape_18,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1209.1792,y:166.5362}},{t:this.shape_17,p:{scaleX:1,scaleY:1,rotation:0,x:1412.0128,y:300.5538}},{t:this.shape_16,p:{scaleX:1,scaleY:1,rotation:0,x:1412.0128,y:300.5538}},{t:this.shape_15,p:{scaleX:1,scaleY:1,rotation:0,x:803.9754,y:137.8988}},{t:this.shape_14,p:{scaleX:1,scaleY:1,rotation:0,x:803.9754,y:137.8988}},{t:this.shape_13,p:{scaleX:1,scaleY:1,rotation:0,x:786.725,y:120.45}},{t:this.shape_12,p:{scaleX:1,scaleY:1,rotation:0,x:785.8657,y:119.6198}}]},4).to({state:[{t:this.instance_13}]},5).to({state:[{t:this.instance_14}]},5).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:807.6,y:262.775}},{t:this.shape_44,p:{x:807.6,y:262.775}},{t:this.shape_43,p:{x:863.6,y:340.325}},{t:this.shape_42,p:{x:863.6,y:340.325}},{t:this.shape_41,p:{x:911.7,y:194.275}},{t:this.shape_40,p:{x:911.7,y:194.275}},{t:this.shape_39,p:{x:1052.45,y:86.675}},{t:this.shape_38,p:{x:1052.45,y:86.675}},{t:this.shape_37,p:{x:1108.475,y:202.475}},{t:this.shape_36,p:{x:1108.475,y:202.475}},{t:this.shape_35,p:{x:1180.3,y:334.575}},{t:this.shape_34,p:{x:1180.3,y:334.575}},{t:this.shape_33,p:{x:1305.25,y:246.975}},{t:this.shape_32,p:{x:1305.25,y:246.975}},{t:this.shape_31,p:{x:1410.075,y:96.175}},{t:this.shape_30,p:{x:1410.075,y:96.175}},{t:this.shape_29,p:{y:205.325,x:1450.3}},{t:this.shape_28,p:{y:205.325,x:1450.3}},{t:this.shape_27,p:{x:1293.75,y:93.325}},{t:this.shape_26,p:{x:1293.75,y:93.325}},{t:this.shape_25,p:{x:929.05,y:107.375}},{t:this.shape_24,p:{x:929.05,y:107.375}},{t:this.shape_23,p:{x:1011.9687,y:264.0516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1011.9687,y:264.0516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:1006.9806,y:270.5382,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:1006.4527,y:271.4755,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:1,scaleY:1,rotation:0,x:1206.4864,y:161.4492}},{t:this.shape_18,p:{scaleX:1,scaleY:1,rotation:0,x:1206.4864,y:161.4492}},{t:this.shape_17,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1403.5883,y:301.2277}},{t:this.shape_16,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1403.5883,y:301.2277}},{t:this.shape_15,p:{scaleX:0.9998,scaleY:0.9998,rotation:-14.9973,x:803.9445,y:137.8346}},{t:this.shape_14,p:{scaleX:0.9998,scaleY:0.9998,rotation:-14.9973,x:803.9445,y:137.8346}},{t:this.shape_13,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:782.7444,y:125.4295}},{t:this.shape_12,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:781.7,y:124.8502}}]},5).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:798.55,y:262.775}},{t:this.shape_44,p:{x:798.55,y:262.775}},{t:this.shape_43,p:{x:873.05,y:340.325}},{t:this.shape_42,p:{x:873.05,y:340.325}},{t:this.shape_41,p:{x:901.65,y:205.325}},{t:this.shape_40,p:{x:901.65,y:205.325}},{t:this.shape_39,p:{x:1055.35,y:74.625}},{t:this.shape_38,p:{x:1055.35,y:74.625}},{t:this.shape_37,p:{x:1111.375,y:210.475}},{t:this.shape_36,p:{x:1111.375,y:210.475}},{t:this.shape_35,p:{x:1186.3,y:332.375}},{t:this.shape_34,p:{x:1186.3,y:332.375}},{t:this.shape_33,p:{x:1313.3,y:248.575}},{t:this.shape_32,p:{x:1313.3,y:248.575}},{t:this.shape_31,p:{x:1402.025,y:107.225}},{t:this.shape_30,p:{x:1402.025,y:107.225}},{t:this.shape_29,p:{y:191.125,x:1450.3}},{t:this.shape_28,p:{y:191.125,x:1450.3}},{t:this.shape_27,p:{x:1292,y:102.325}},{t:this.shape_26,p:{x:1292,y:102.325}},{t:this.shape_25,p:{x:918.9,y:93.325}},{t:this.shape_24,p:{x:918.9,y:93.325}},{t:this.shape_23,p:{x:1000.9187,y:274.1016,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1000.9187,y:274.1016,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:995.9306,y:280.5882,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:995.4027,y:281.5255,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1209.1792,y:166.5362}},{t:this.shape_18,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1209.1792,y:166.5362}},{t:this.shape_17,p:{scaleX:1,scaleY:1,rotation:0,x:1412.0128,y:300.5538}},{t:this.shape_16,p:{scaleX:1,scaleY:1,rotation:0,x:1412.0128,y:300.5538}},{t:this.shape_15,p:{scaleX:1,scaleY:1,rotation:0,x:803.9754,y:137.8988}},{t:this.shape_14,p:{scaleX:1,scaleY:1,rotation:0,x:803.9754,y:137.8988}},{t:this.shape_13,p:{scaleX:1,scaleY:1,rotation:0,x:786.725,y:120.45}},{t:this.shape_12,p:{scaleX:1,scaleY:1,rotation:0,x:785.8657,y:119.6198}}]},4).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:787.65,y:283.325}},{t:this.shape_44,p:{x:787.65,y:283.325}},{t:this.shape_43,p:{x:881.4,y:326.825}},{t:this.shape_42,p:{x:881.4,y:326.825}},{t:this.shape_41,p:{x:913.9,y:195.675}},{t:this.shape_40,p:{x:913.9,y:195.675}},{t:this.shape_39,p:{x:1047,y:84.875}},{t:this.shape_38,p:{x:1047,y:84.875}},{t:this.shape_37,p:{x:1103.025,y:219.625}},{t:this.shape_36,p:{x:1103.025,y:219.625}},{t:this.shape_35,p:{x:1192.75,y:332.375}},{t:this.shape_34,p:{x:1192.75,y:332.375}},{t:this.shape_33,p:{x:1322.3,y:240.225}},{t:this.shape_32,p:{x:1322.3,y:240.225}},{t:this.shape_31,p:{x:1405.875,y:93.325}},{t:this.shape_30,p:{x:1405.875,y:93.325}},{t:this.shape_29,p:{y:191.125,x:1440.65}},{t:this.shape_28,p:{y:191.125,x:1440.65}},{t:this.shape_27,p:{x:1278.95,y:93.325}},{t:this.shape_26,p:{x:1278.95,y:93.325}},{t:this.shape_25,p:{x:925.95,y:104.225}},{t:this.shape_24,p:{x:925.95,y:104.225}},{t:this.shape_23,p:{x:1013.7463,y:285.1437,scaleX:0.9999,scaleY:0.9999,rotation:-22.2325}},{t:this.shape_22,p:{x:1013.7463,y:285.1437,scaleX:0.9999,scaleY:0.9999,rotation:-22.2325}},{t:this.shape_21,p:{x:1011.5289,y:293.0273,scaleX:0.9997,scaleY:0.9997,rotation:-22.2311}},{t:this.shape_20,p:{x:1011.3949,y:294.0942,scaleX:0.9997,scaleY:0.9997,rotation:-22.2311}},{t:this.shape_19,p:{scaleX:1,scaleY:1,rotation:0,x:1209.1287,y:179.8473}},{t:this.shape_18,p:{scaleX:1,scaleY:1,rotation:0,x:1209.1287,y:179.8473}},{t:this.shape_17,p:{scaleX:0.9996,scaleY:0.9996,rotation:-14.9983,x:1411.6898,y:306.972}},{t:this.shape_16,p:{scaleX:0.9996,scaleY:0.9996,rotation:-14.9983,x:1411.6898,y:306.972}},{t:this.shape_15,p:{scaleX:0.9998,scaleY:0.9998,rotation:-23.957,x:803.9515,y:137.8086}},{t:this.shape_14,p:{scaleX:0.9998,scaleY:0.9998,rotation:-23.957,x:803.9515,y:137.8086}},{t:this.shape_13,p:{scaleX:0.9997,scaleY:0.9997,rotation:-23.957,x:781.0888,y:128.8617}},{t:this.shape_12,p:{scaleX:0.9997,scaleY:0.9997,rotation:-23.957,x:779.9667,y:128.4521}}]},5).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:782.45,y:254.175}},{t:this.shape_44,p:{x:782.45,y:254.175}},{t:this.shape_43,p:{x:889.9,y:340.325}},{t:this.shape_42,p:{x:889.9,y:340.325}},{t:this.shape_41,p:{x:907.3,y:183.275}},{t:this.shape_40,p:{x:907.3,y:183.275}},{t:this.shape_39,p:{x:1049.15,y:82.325}},{t:this.shape_38,p:{x:1049.15,y:82.325}},{t:this.shape_37,p:{x:1108.475,y:214.775}},{t:this.shape_36,p:{x:1108.475,y:214.775}},{t:this.shape_35,p:{x:1188,y:328.875}},{t:this.shape_34,p:{x:1188,y:328.875}},{t:this.shape_33,p:{x:1293.75,y:256.225}},{t:this.shape_32,p:{x:1293.75,y:256.225}},{t:this.shape_31,p:{x:1403.875,y:108.475}},{t:this.shape_30,p:{x:1403.875,y:108.475}},{t:this.shape_29,p:{y:198.775,x:1439.55}},{t:this.shape_28,p:{y:198.775,x:1439.55}},{t:this.shape_27,p:{x:1302.5,y:87.125}},{t:this.shape_26,p:{x:1302.5,y:87.125}},{t:this.shape_25,p:{x:926.1,y:87.125}},{t:this.shape_24,p:{x:926.1,y:87.125}},{t:this.shape_23,p:{x:1000.9187,y:285.4516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1000.9187,y:285.4516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:995.9306,y:291.9382,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:995.4027,y:292.8755,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:1,scaleY:1,rotation:0,x:1214.8864,y:173.2992}},{t:this.shape_18,p:{scaleX:1,scaleY:1,rotation:0,x:1214.8864,y:173.2992}},{t:this.shape_17,p:{scaleX:1,scaleY:1,rotation:0,x:1423.2128,y:312.0038}},{t:this.shape_16,p:{scaleX:1,scaleY:1,rotation:0,x:1423.2128,y:312.0038}},{t:this.shape_15,p:{scaleX:1,scaleY:1,rotation:0,x:811.6754,y:156.6488}},{t:this.shape_14,p:{scaleX:1,scaleY:1,rotation:0,x:811.6754,y:156.6488}},{t:this.shape_13,p:{scaleX:1,scaleY:1,rotation:0,x:794.425,y:139.2}},{t:this.shape_12,p:{scaleX:1,scaleY:1,rotation:0,x:793.5657,y:138.3698}}]},4).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:793.5,y:262.775}},{t:this.shape_44,p:{x:793.5,y:262.775}},{t:this.shape_43,p:{x:880.1,y:340.325}},{t:this.shape_42,p:{x:880.1,y:340.325}},{t:this.shape_41,p:{x:901.65,y:196.975}},{t:this.shape_40,p:{x:901.65,y:196.975}},{t:this.shape_39,p:{x:1044.3,y:86.675}},{t:this.shape_38,p:{x:1044.3,y:86.675}},{t:this.shape_37,p:{x:1097.225,y:205.325}},{t:this.shape_36,p:{x:1097.225,y:205.325}},{t:this.shape_35,p:{x:1179.6,y:320.225}},{t:this.shape_34,p:{x:1179.6,y:320.225}},{t:this.shape_33,p:{x:1295.2,y:246.575}},{t:this.shape_32,p:{x:1295.2,y:246.575}},{t:this.shape_31,p:{x:1422.125,y:105.375}},{t:this.shape_30,p:{x:1422.125,y:105.375}},{t:this.shape_29,p:{y:205.325,x:1439.1}},{t:this.shape_28,p:{y:205.325,x:1439.1}},{t:this.shape_27,p:{x:1305.25,y:96.175}},{t:this.shape_26,p:{x:1305.25,y:96.175}},{t:this.shape_25,p:{x:928.95,y:105.375}},{t:this.shape_24,p:{x:928.95,y:105.375}},{t:this.shape_23,p:{x:1012.9718,y:262.9477,scaleX:0.9997,scaleY:0.9997,rotation:-14.9979}},{t:this.shape_22,p:{x:1012.9718,y:262.9477,scaleX:0.9997,scaleY:0.9997,rotation:-14.9979}},{t:this.shape_21,p:{x:1009.734,y:270.4662,scaleX:0.9995,scaleY:0.9995,rotation:-14.9967}},{t:this.shape_20,p:{x:1009.4668,y:271.5075,scaleX:0.9995,scaleY:0.9995,rotation:-14.9967}},{t:this.shape_19,p:{scaleX:0.9995,scaleY:0.9995,rotation:14.9967,x:1222.181,y:163.9221}},{t:this.shape_18,p:{scaleX:0.9995,scaleY:0.9995,rotation:14.9967,x:1222.181,y:163.9221}},{t:this.shape_17,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9967,x:1411.5868,y:291.8333}},{t:this.shape_16,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9967,x:1411.5868,y:291.8333}},{t:this.shape_15,p:{scaleX:0.9997,scaleY:0.9997,rotation:14.9979,x:803.9648,y:147.8808}},{t:this.shape_14,p:{scaleX:0.9997,scaleY:0.9997,rotation:14.9979,x:803.9648,y:147.8808}},{t:this.shape_13,p:{scaleX:0.9995,scaleY:0.9995,rotation:14.9967,x:791.8069,y:126.536}},{t:this.shape_12,p:{scaleX:0.9995,scaleY:0.9995,rotation:14.9967,x:791.192,y:125.5123}}]},4).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:807.6,y:262.775}},{t:this.shape_44,p:{x:807.6,y:262.775}},{t:this.shape_43,p:{x:863.6,y:340.325}},{t:this.shape_42,p:{x:863.6,y:340.325}},{t:this.shape_41,p:{x:911.7,y:194.275}},{t:this.shape_40,p:{x:911.7,y:194.275}},{t:this.shape_39,p:{x:1052.45,y:86.675}},{t:this.shape_38,p:{x:1052.45,y:86.675}},{t:this.shape_37,p:{x:1108.475,y:202.475}},{t:this.shape_36,p:{x:1108.475,y:202.475}},{t:this.shape_35,p:{x:1180.3,y:334.575}},{t:this.shape_34,p:{x:1180.3,y:334.575}},{t:this.shape_33,p:{x:1305.25,y:246.975}},{t:this.shape_32,p:{x:1305.25,y:246.975}},{t:this.shape_31,p:{x:1410.075,y:96.175}},{t:this.shape_30,p:{x:1410.075,y:96.175}},{t:this.shape_29,p:{y:205.325,x:1450.3}},{t:this.shape_28,p:{y:205.325,x:1450.3}},{t:this.shape_27,p:{x:1293.75,y:93.325}},{t:this.shape_26,p:{x:1293.75,y:93.325}},{t:this.shape_25,p:{x:929.05,y:107.375}},{t:this.shape_24,p:{x:929.05,y:107.375}},{t:this.shape_23,p:{x:1011.9687,y:264.0516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1011.9687,y:264.0516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:1006.9806,y:270.5382,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:1006.4527,y:271.4755,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:1,scaleY:1,rotation:0,x:1206.4864,y:161.4492}},{t:this.shape_18,p:{scaleX:1,scaleY:1,rotation:0,x:1206.4864,y:161.4492}},{t:this.shape_17,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9967,x:1403.5368,y:301.2333}},{t:this.shape_16,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9967,x:1403.5368,y:301.2333}},{t:this.shape_15,p:{scaleX:0.9997,scaleY:0.9997,rotation:-14.9979,x:803.9397,y:137.8295}},{t:this.shape_14,p:{scaleX:0.9997,scaleY:0.9997,rotation:-14.9979,x:803.9397,y:137.8295}},{t:this.shape_13,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9967,x:782.7363,y:125.4265}},{t:this.shape_12,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9967,x:781.692,y:124.8472}}]},4).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:798.55,y:262.775}},{t:this.shape_44,p:{x:798.55,y:262.775}},{t:this.shape_43,p:{x:873.05,y:340.325}},{t:this.shape_42,p:{x:873.05,y:340.325}},{t:this.shape_41,p:{x:901.65,y:205.325}},{t:this.shape_40,p:{x:901.65,y:205.325}},{t:this.shape_39,p:{x:1055.35,y:74.625}},{t:this.shape_38,p:{x:1055.35,y:74.625}},{t:this.shape_37,p:{x:1111.375,y:210.475}},{t:this.shape_36,p:{x:1111.375,y:210.475}},{t:this.shape_35,p:{x:1186.3,y:332.375}},{t:this.shape_34,p:{x:1186.3,y:332.375}},{t:this.shape_33,p:{x:1313.3,y:248.575}},{t:this.shape_32,p:{x:1313.3,y:248.575}},{t:this.shape_31,p:{x:1402.025,y:107.225}},{t:this.shape_30,p:{x:1402.025,y:107.225}},{t:this.shape_29,p:{y:191.125,x:1450.3}},{t:this.shape_28,p:{y:191.125,x:1450.3}},{t:this.shape_27,p:{x:1292,y:102.325}},{t:this.shape_26,p:{x:1292,y:102.325}},{t:this.shape_25,p:{x:918.9,y:93.325}},{t:this.shape_24,p:{x:918.9,y:93.325}},{t:this.shape_23,p:{x:1000.9187,y:274.1016,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1000.9187,y:274.1016,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:995.9306,y:280.5882,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:995.4027,y:281.5255,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9967,x:1209.1445,y:166.5441}},{t:this.shape_18,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9967,x:1209.1445,y:166.5441}},{t:this.shape_17,p:{scaleX:1,scaleY:1,rotation:0,x:1412.0128,y:300.5538}},{t:this.shape_16,p:{scaleX:1,scaleY:1,rotation:0,x:1412.0128,y:300.5538}},{t:this.shape_15,p:{scaleX:1,scaleY:1,rotation:0,x:803.9754,y:137.8988}},{t:this.shape_14,p:{scaleX:1,scaleY:1,rotation:0,x:803.9754,y:137.8988}},{t:this.shape_13,p:{scaleX:1,scaleY:1,rotation:0,x:786.725,y:120.45}},{t:this.shape_12,p:{scaleX:1,scaleY:1,rotation:0,x:785.8657,y:119.6198}}]},4).to({state:[{t:this.instance_13}]},5).to({state:[{t:this.instance_14}]},5).to({state:[{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45,p:{x:807.6,y:262.775}},{t:this.shape_44,p:{x:807.6,y:262.775}},{t:this.shape_43,p:{x:863.6,y:340.325}},{t:this.shape_42,p:{x:863.6,y:340.325}},{t:this.shape_41,p:{x:911.7,y:194.275}},{t:this.shape_40,p:{x:911.7,y:194.275}},{t:this.shape_39,p:{x:1052.45,y:86.675}},{t:this.shape_38,p:{x:1052.45,y:86.675}},{t:this.shape_37,p:{x:1108.475,y:202.475}},{t:this.shape_36,p:{x:1108.475,y:202.475}},{t:this.shape_35,p:{x:1180.3,y:334.575}},{t:this.shape_34,p:{x:1180.3,y:334.575}},{t:this.shape_33,p:{x:1305.25,y:246.975}},{t:this.shape_32,p:{x:1305.25,y:246.975}},{t:this.shape_31,p:{x:1410.075,y:96.175}},{t:this.shape_30,p:{x:1410.075,y:96.175}},{t:this.shape_29,p:{y:205.325,x:1450.3}},{t:this.shape_28,p:{y:205.325,x:1450.3}},{t:this.shape_27,p:{x:1293.75,y:93.325}},{t:this.shape_26,p:{x:1293.75,y:93.325}},{t:this.shape_25,p:{x:929.05,y:107.375}},{t:this.shape_24,p:{x:929.05,y:107.375}},{t:this.shape_23,p:{x:1011.9687,y:264.0516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_22,p:{x:1011.9687,y:264.0516,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_21,p:{x:1006.9806,y:270.5382,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_20,p:{x:1006.4527,y:271.4755,scaleX:1,scaleY:1,rotation:0}},{t:this.shape_19,p:{scaleX:1,scaleY:1,rotation:0,x:1206.4864,y:161.4492}},{t:this.shape_18,p:{scaleX:1,scaleY:1,rotation:0,x:1206.4864,y:161.4492}},{t:this.shape_17,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1403.5883,y:301.2277}},{t:this.shape_16,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:1403.5883,y:301.2277}},{t:this.shape_15,p:{scaleX:0.9998,scaleY:0.9998,rotation:-14.9973,x:803.9445,y:137.8346}},{t:this.shape_14,p:{scaleX:0.9998,scaleY:0.9998,rotation:-14.9973,x:803.9445,y:137.8346}},{t:this.shape_13,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:782.7444,y:125.4295}},{t:this.shape_12,p:{scaleX:0.9995,scaleY:0.9995,rotation:-14.9975,x:781.7,y:124.8502}}]},5).to({state:[{t:this.bloodstream}]},6).to({state:[{t:this.instance_15}]},159).to({state:[{t:this.instance_16}]},5).to({state:[]},24).wait(655));
this.timeline.addTween(cjs.Tween.get(this.instance_13).wait(225).to({_off:false},0).to({_off:true,alpha:1},4).wait(36).to({_off:false},0).to({_off:true},5).wait(35).to({_off:false},0).to({_off:true},5).wait(854));
this.timeline.addTween(cjs.Tween.get(this.instance_15).wait(480).to({_off:false},0).to({_off:true,alpha:0},5).wait(679));
// lockBarrier
this.shape_49 = new cjs.Shape();
this.shape_49.graphics.f().s("#7C949A").ss(2.5,0,0,11.3).p("AivDzIH3kLQkTg1jJisQgsB3ibAiIgGAEAlhhrIAGALICsFTAi4D4IAJgFIALAW");
this.shape_49.setTransform(1175.6201,378.0415);
this.shape_50 = new cjs.Shape();
this.shape_50.graphics.f("#7C949A").s().p("AlRhdQCbgiAsh3QDJCsETA1In3EMg");
this.shape_50.setTransform(1174.6125,377.7125);
this.shape_51 = new cjs.Shape();
this.shape_51.graphics.f().s("#7C949A").ss(2.5,0,0,11.3).p("AitDyIH3kLQkQhEjNidQg/BsiIAsIgFAEAlfhsIAFAKICtFUAi2D3IAJgFIALAW");
this.shape_51.setTransform(1175.4992,378.1683);
this.shape_52 = new cjs.Shape();
this.shape_52.graphics.f("#7C949A").s().p("AlRhdQCIgtA/hsQDNCeEPBDIn3EMg");
this.shape_52.setTransform(1174.6125,377.7125);
this.shape_53 = new cjs.Shape();
this.shape_53.graphics.f().s("#7C949A").ss(2.5,0,0,11.3).p("AlkhuIAFAKIgFAEAiyDwIH3kLQjXgPgthrIjZhnIjHCYICtFUIALAWAi7D1IAJgF");
this.shape_53.setTransform(1175.9808,378.3633);
this.shape_54 = new cjs.Shape();
this.shape_54.graphics.f("#7C8A90").s().p("Ag2gMIBUgeIAZBVg");
this.shape_54.setTransform(1177.575,358.2);
this.shape_55 = new cjs.Shape();
this.shape_55.graphics.f("#7C949A").s().p("AlRhdIDHiZIDZBnQAsBsDXAOIn3EMg");
this.shape_55.setTransform(1174.6125,377.7125);
this.shape_56 = new cjs.Shape();
this.shape_56.graphics.f().s("#7C949A").ss(2.5,0,0,11.3).p("AiyDwIH3kLQjXgPgthrIjZhnIjHCYIgFAEAlkhuIAFAKICtFUAi7D1IAJgFIALAW");
this.shape_56.setTransform(1175.9808,378.3633);
this.instance_17 = new lib.Tween272("synched",0);
this.instance_17.setTransform(1174.35,378.8);
this.instance_17._off = true;
this.instance_18 = new lib.Tween273("synched",0);
this.instance_18.setTransform(1174.35,847.3);
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_50},{t:this.shape_49}]},710).to({state:[{t:this.shape_52},{t:this.shape_51}]},2).to({state:[{t:this.shape_55},{t:this.shape_54},{t:this.shape_53}]},1).to({state:[{t:this.shape_55},{t:this.shape_54},{t:this.shape_56}]},40).to({state:[{t:this.instance_17}]},46).to({state:[{t:this.instance_18}]},17).to({state:[{t:this.instance_18}]},77).to({state:[]},1).wait(270));
this.timeline.addTween(cjs.Tween.get(this.instance_17).wait(799).to({_off:false},0).to({_off:true,y:847.3},17).wait(348));
// barette
this.shape_57 = new cjs.Shape();
this.shape_57.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("AxYBFQAIgDBCgSQBBgRAbgGQBjgWB7gSQB7gTBugLQCOgOBygFQBzgFCiAAQC3AACMAGQCPAGFyAXQDjAOAIAAQAMABkMAZQjkAWg9AEQg9ADkyAGItvATQloAIgkABQgoABACgBg");
this.shape_57.setTransform(414.1612,366.598,0.9997,0.9997,1.4685);
this.shape_58 = new cjs.Shape();
this.shape_58.graphics.f("#D35F5F").s().p("AxYBFQAIgDBCgSQBBgRAbgGQBjgWB7gSQB7gTBugLQCOgOBygFQBzgFCiAAQC3AACMAGQCPAGFyAXIDrAOQAMABkMAZQjkAWg9AEQg9ADkyAGItvATImMAJIgeABIgIgBg");
this.shape_58.setTransform(414.1612,366.598,0.9997,0.9997,1.4685);
this.shape_59 = new cjs.Shape();
this.shape_59.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("Aw9EJQgDgRgRgZQgRgZgqgwQgsgygRgaQgSgZgDgSQgCgRAZgUQBXhKEGhFQEHhFE/giQBtgLB1gHQA3gDChAAQCkgBAuAEQEWATDFA1QDrA/CTBrQAXARAEAIQAFAHgDAPQgFAdgjA1QgkA2gzA4IgPAQIhWgFQgrgDjJgMQkpgTiTgHQiXgHiegCQpDgHnTBjQgxAKgEABQgFAAgCgKg");
this.shape_59.setTransform(423.8275,340.8193,0.9997,0.9997,1.4685);
this.shape_60 = new cjs.Shape();
this.shape_60.graphics.f("#D35F5F").s().p("Aw9EJQgDgRgRgZQgRgZgqgwQgsgygRgaQgSgZgDgSQgCgRAZgUQBXhKEGhFQEHhFE/giQBtgLB1gHQA3gDChAAQCkgBAuAEQEWATDFA1QDrA/CTBrQAXARAEAIQAFAHgDAPQgFAdgjA1QgkA2gzA4IgPAQIhWgFIj0gPQkpgTiTgHQiXgHiegCQpDgHnTBjIg1ALQgFAAgCgKg");
this.shape_60.setTransform(423.8275,340.8193,0.9997,0.9997,1.4685);
this.shape_61 = new cjs.Shape();
this.shape_61.graphics.f().s("#D35F5F").ss(0.3,0,0,4).p("AglAVQgdgPAOgQQAOgRAnAAQAVAAAQAIQARAIACALQAEARgmAIQglAIgXgMg");
this.shape_61.setTransform(424.6798,308.5158,0.9997,0.9997,1.4685);
this.shape_62 = new cjs.Shape();
this.shape_62.graphics.f("#D35F5F").s().p("AglAVQgdgPAOgQQAOgRAnAAQAVAAAQAIQARAIACALQAEARgmAIQgPADgMAAQgTAAgOgHg");
this.shape_62.setTransform(424.6798,308.5158,0.9997,0.9997,1.4685);
this.shape_63 = new cjs.Shape();
this.shape_63.graphics.f().s("#000000").ss(0.4,0,0,4).p("AAAgoQAdAAAVAMQAVAMAAAQQAAARgVAMQgVAMgdAAQgcAAgVgMQgVgMAAgRQAAgQAVgMQAVgMAcAAg");
this.shape_63.setTransform(424.6324,308.4926,0.9997,0.9997,1.4685);
this.shape_64 = new cjs.Shape();
this.shape_64.graphics.f("#000000").s().p("AgxAdQgVgMAAgRQAAgQAVgMQAVgMAcAAQAdAAAVAMQAVAMAAAQQAAARgVAMQgVAMgdAAQgcAAgVgMg");
this.shape_64.setTransform(424.6324,308.4926,0.9997,0.9997,1.4685);
this.shape_65 = new cjs.Shape();
this.shape_65.graphics.f().s("#000000").ss(0.4,0,0,4).p("AxLA2QH6hyJsAHQDcADE/ATQCyALFlAV");
this.shape_65.setTransform(423.2389,364.2549,0.9993,0.9993,1.4682);
this.shape_66 = new cjs.Shape();
this.shape_66.graphics.f("#000000").s().p("AAag1QDcADFAATIIWAgMgiXAA1QH6hyJrAHg");
this.shape_66.setTransform(423.2789,364.2622,0.9993,0.9993,1.4682);
this.shape_67 = new cjs.Shape();
this.shape_67.graphics.f().s("#000000").ss(0.4,0,0,4).p("AvWgFIjGA1IbrgmIJig6");
this.shape_67.setTransform(412.5808,369.831,0.9993,0.9993,1.4682);
this.shape_68 = new cjs.Shape();
this.shape_68.graphics.f("#000000").s().p("AvggFMAiHgAqIpiA5I7rAng");
this.shape_68.setTransform(413.5646,369.834,0.9993,0.9993,1.4682);
this.shape_69 = new cjs.Shape();
this.shape_69.graphics.f().s("#000000").ss(0.4,0,0,4).p("ARMDyIBghyQBZh4gogfQjbiumfg9Qljg1m4AjQmEAfk8BVQkzBSg3BSQgQAWAcAsQAQAaAzA6QAyA4AOAYQAYAngUAS");
this.shape_69.setTransform(423.8143,341.1573,0.9993,0.9993,1.4682);
this.shape_70 = new cjs.Shape();
this.shape_70.graphics.f("#000000").s().p("AxTDqQgOgYgyg4Qgzg6gQgaQgcgrAQgYQA3hQEzhSQE8hWGEgeQG4gkFjA1QGfA+DbCtQAoAfhZB4IhgByMgibAAxQAUgRgYgog");
this.shape_70.setTransform(423.8143,341.1573,0.9993,0.9993,1.4682);
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_70,p:{rotation:1.4682,x:423.8143,y:341.1573,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_69,p:{rotation:1.4682,x:423.8143,y:341.1573,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_68,p:{rotation:1.4682,x:413.5646,y:369.834,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_67,p:{rotation:1.4682,x:412.5808,y:369.831,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_66,p:{rotation:1.4682,x:423.2789,y:364.2622,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_65,p:{rotation:1.4682,x:423.2389,y:364.2549,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_64,p:{x:424.6324,y:308.4926,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_63,p:{x:424.6324,y:308.4926,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_62,p:{x:424.6798,y:308.5158,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_61,p:{x:424.6798,y:308.5158,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_60,p:{x:423.8275,y:340.8193,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_59,p:{x:423.8275,y:340.8193,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_58,p:{x:414.1612,y:366.598,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_57,p:{x:414.1612,y:366.598,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}}]},1055).to({state:[{t:this.shape_70,p:{rotation:1.4683,x:423.8084,y:341.1556,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_69,p:{rotation:1.4683,x:423.8084,y:341.1556,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_68,p:{rotation:1.4683,x:413.5591,y:369.8309,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_67,p:{rotation:1.4683,x:412.5754,y:369.828,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_66,p:{rotation:1.4683,x:423.273,y:364.2595,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_65,p:{rotation:1.4683,x:423.233,y:364.2522,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_64,p:{x:424.6304,y:308.4925,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_63,p:{x:424.6304,y:308.4925,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_62,p:{x:424.6778,y:308.5157,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_61,p:{x:424.6778,y:308.5157,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_60,p:{x:423.8256,y:340.8187,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_59,p:{x:423.8256,y:340.8187,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_58,p:{x:414.1593,y:366.597,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_57,p:{x:414.1593,y:366.597,rotation:1.4685,scaleX:0.9997,scaleY:0.9997}}]},39).to({state:[{t:this.shape_70,p:{rotation:1.4683,x:423.8045,y:341.1544,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_69,p:{rotation:1.4683,x:423.8045,y:341.1544,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_68,p:{rotation:1.4683,x:413.5555,y:369.8289,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_67,p:{rotation:1.4683,x:412.5718,y:369.826,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_66,p:{rotation:1.4683,x:423.269,y:364.2576,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_65,p:{rotation:1.4683,x:423.2291,y:364.2503,scaleX:0.9993,scaleY:0.9993}},{t:this.shape_64,p:{x:424.6265,y:308.4924,rotation:1.4686,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_63,p:{x:424.6265,y:308.4924,rotation:1.4686,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_62,p:{x:424.6739,y:308.5156,rotation:1.4686,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_61,p:{x:424.6739,y:308.5156,rotation:1.4686,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_60,p:{x:423.8216,y:340.8176,rotation:1.4686,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_59,p:{x:423.8216,y:340.8176,rotation:1.4686,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_58,p:{x:414.1557,y:366.5951,rotation:1.4686,scaleX:0.9997,scaleY:0.9997}},{t:this.shape_57,p:{x:414.1557,y:366.5951,rotation:1.4686,scaleX:0.9997,scaleY:0.9997}}]},33).to({state:[{t:this.shape_70,p:{rotation:1.4684,x:423.8005,y:341.1533,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_69,p:{rotation:1.4684,x:423.8005,y:341.1533,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_68,p:{rotation:1.4684,x:413.5518,y:369.8269,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_67,p:{rotation:1.4684,x:412.5682,y:369.824,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_66,p:{rotation:1.4684,x:423.2651,y:364.2558,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_65,p:{rotation:1.4684,x:423.2251,y:364.2485,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_64,p:{x:424.6246,y:308.4923,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_63,p:{x:424.6246,y:308.4923,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_62,p:{x:424.6719,y:308.5155,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_61,p:{x:424.6719,y:308.5155,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_60,p:{x:423.8197,y:340.8171,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_59,p:{x:423.8197,y:340.8171,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_58,p:{x:414.1539,y:366.5941,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_57,p:{x:414.1539,y:366.5941,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}}]},24).to({state:[{t:this.shape_70,p:{rotation:1.4684,x:423.7966,y:341.1522,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_69,p:{rotation:1.4684,x:423.7966,y:341.1522,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_68,p:{rotation:1.4684,x:413.5482,y:369.8249,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_67,p:{rotation:1.4684,x:412.5646,y:369.822,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_66,p:{rotation:1.4684,x:423.2612,y:364.254,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_65,p:{rotation:1.4684,x:423.2212,y:364.2467,scaleX:0.9992,scaleY:0.9992}},{t:this.shape_64,p:{x:424.6226,y:308.4922,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_63,p:{x:424.6226,y:308.4922,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_62,p:{x:424.67,y:308.5155,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_61,p:{x:424.67,y:308.5155,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_60,p:{x:423.8177,y:340.8165,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_59,p:{x:423.8177,y:340.8165,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_58,p:{x:414.152,y:366.5932,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}},{t:this.shape_57,p:{x:414.152,y:366.5932,rotation:1.4686,scaleX:0.9996,scaleY:0.9996}}]},12).wait(1));
// hairLine
this.shape_71 = new cjs.Shape();
this.shape_71.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AJwjOQi8BahdAtQioBQh6AvQlVCGlUAQ");
this.shape_71.setTransform(399.011,403.3356);
this.shape_71._off = true;
this.timeline.addTween(cjs.Tween.get(this.shape_71).wait(1055).to({_off:false},0).wait(109));
// hair
this.shape_72 = new cjs.Shape();
this.shape_72.graphics.f("#502D16").s().p("AN8IeQgPhVAAh1IAEjHQACjohJhsQhmiYkngoIkaCHQinBRh5AvQlWCFlVAQQgZFrgPBrQgjD6hNCEQhPhrg7i7Qg8i/gRjPQgTjfAmi1QApjLBsh0QDkj2F4hTQFDhIF7A3QFPAvEKB9QEAB4ApB2QA9CxgPHLQgPHZhUEaQiziOgpjlg");
this.shape_72.setTransform(420.1554,421.8091);
this.shape_72._off = true;
this.timeline.addTween(cjs.Tween.get(this.shape_72).wait(1055).to({_off:false},0).wait(109));
// rEyelid
this.shape_73 = new cjs.Shape();
this.shape_73.graphics.f("#FFE6D5").s().p("ADrIOQhFgogVg5QgWg6gEh0QgEhzDygEQDxgEAGB4QAGB4gOA3QgNA2grAqQgsAqhgAAQhhAAhEgngAmyIFQhFgogVg5QgWg6gEh0QgEhzDygEQDxgEAGB4QAGB4gOA3QgNA2grAqQgsAqhgAAQhhAAhEgngAnhmiQh8hDAAgXQAAgWBagRQBagPB/AAQB/AABaAPQAWAEAQAFQATgFAYgFQBagQB/AAQB/AABaAQQBaAQAAAXIgCBPQgDA6i0AKQi0AKh8hDIgdgRIgBAIQgCA5izAKIguABQiXAAhsg6g");
this.shape_73.setTransform(421.1046,452.05);
this.shape_74 = new cjs.Shape();
this.shape_74.graphics.f("#FFE6D5").s().p("ADqHLQhEgogWg5QgVg6gEh0QgEhzDxgEQDygEAGB4QAFB4gNA3QgOA2grAqQgrAqhhAAQhgAAhFgngAmzHCQhEgogWg5QgVg6gEh0QgEhzDxgEQDygEAGB4QAFB4gNA3QgOA2grAqQgrAqhhAAQhgAAhFgngAnglfQh8hEAAgWQAAgXBagQQBagQB/AAQB/AABaAQQAWAEAQAFQATgGAYgEQBagQB/AAQB/AABaAQQBaAQAAAWIgCBQQgDA5i0AKQi0AKh8hDIgdgQIgBAIQgCA5izAKIguABQiXAAhsg6g");
this.shape_74.setTransform(421.1796,450.125);
this.shape_75 = new cjs.Shape();
this.shape_75.graphics.f("#FFE6D5").s().p("ADqF3QhEgogWg5QgVg6gEh0QgEhyDxgDQDygEAGB3QAFB4gNA2QgOA3grApQgrArhhAAQhgAAhFgogAmzFuQhEgogWg5QgVg6gEh0QgEhyDxgEQDygDAGB3QAFB4gNA2QgOA3grApQgrArhhAAQhgAAhFgogAngkLQh8hEAAgWQAAgXBagQQBagQB/AAQB/AABaAQQAWAEAQAEQATgFAYgFQBagPB/AAQB/AABaAPQBaARAAAWIgCBQQgDA5i0AKQi0AKh8hDIgdgQIgBAIQgCA4izAKIguACQiXAAhsg6g");
this.shape_75.setTransform(421.1796,450.55);
this.shape_76 = new cjs.Shape();
this.shape_76.graphics.f("#FFE6D5").s().p("ADqEkQhEgogpg5Qgog4gDh0QgChyEDgFQEDgFAGB3QAFB4gNA3QgOA2grAqQgrAqhhAAQhgAAhFgngAmzEbQhEgogWg5QgVg6gEh0QgEhyDxgEQDygEAGB3QAFB4gNA3QgOA2grAqQgrAqhhAAQhgAAhFgngAngi4Qh8hEAAgWQAAgXBagQQBagQB/AAQB/AABaAQQAWAEAQAFQATgGAYgEQBagQB/AAQB/AABaAQQBaAQAAAWIgCBQQgDA5i0AKQi0AKh8hDIgdgQIgBAIQgCA5izAKIguABQiXAAhsg6g");
this.shape_76.setTransform(421.1796,449.325);
this.shape_77 = new cjs.Shape();
this.shape_77.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("ABrAsQD5jADIDAAosA3QD5jADIDA");
this.shape_77.setTransform(422.9751,439.6596);
this.shape_78 = new cjs.Shape();
this.shape_78.graphics.f("#FFE6D5").s().p("ADnEKQhEgogpg4Qgog5gdiWQgThgAqgGQgWgJgVgMIgdgQIgBAIQgBAegzARQAgAPgQBLQgeCGgNA3QgOA2grAqQgrAqhhAAQhgAAhFgnQhEgogWg5QgVg6ABicQAAgeAFgVQAPg5A0AHIgHgDQh8hEAAgWQAAgXBagQQBagQB/AAQB/AABaAQQAWAEAQAFQATgGAZgEQBZgQB/AAQB/AABaAQQBaAQAAAWIgCBQIgCAKQBbglgBCFQgBCwgOA3QgOA2grAqQgrAqhhAAQhgAAhFgngAhcgIQjIjBj5DBQB8hgBxAAQBwAABkBggAI7gTQjIjBj5DBQB9hgBwAAQBwAABkBgg");
this.shape_78.setTransform(421.4507,446.075);
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_73}]},1151).to({state:[{t:this.shape_74}]},1).to({state:[{t:this.shape_75}]},1).to({state:[{t:this.shape_76}]},1).to({state:[{t:this.shape_78},{t:this.shape_77}]},1).wait(9));
// head
this.shape_79 = new cjs.Shape();
this.shape_79.graphics.f("#FF8080").s().p("AgyAkQgVgPAAgVQAAgUAVgPQAVgPAdAAQAeAAAVAPQAVAPAAAUQAAAVgVAPQgVAPgeAAQgdAAgVgPg");
this.shape_79.setTransform(421.025,467.925);
this.shape_80 = new cjs.Shape();
this.shape_80.graphics.f("#000000").s().p("AgnAuQgQgTAAgbQAAgaAQgTQAQgTAXAAQAXAAARATQAQATAAAaQAAAbgQATQgRATgXAAQgXAAgQgTg");
this.shape_80.setTransform(450.6,438.425);
this.shape_81 = new cjs.Shape();
this.shape_81.graphics.f("#004455").s().p("AhSBbQgiglAAg2QAAg1AiglQAigmAwAAQAwAAAjAmQAiAlAAA1QAAA2giAlQgjAmgwAAQgwAAgigmg");
this.shape_81.setTransform(450.575,440.45);
this.shape_82 = new cjs.Shape();
this.shape_82.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AAAjcQBLAAA0BBQA1BAAABbQAABcg1BBQg1BBhKAAQhJAAg1hBQg0hBAAhcQAAhbA0hAQA1hBBJAAg");
this.shape_82.setTransform(450.6,439.3);
this.shape_83 = new cjs.Shape();
this.shape_83.graphics.f("#FFFFFF").s().p("Ah+CcQg0hAgBhcQABhbA0hAQA0hCBKAAQBKAAA1BCQA1BAgBBbQABBcg1BAQg1BChKAAQhJAAg1hCg");
this.shape_83.setTransform(450.6,439.3);
this.shape_84 = new cjs.Shape();
this.shape_84.graphics.f("#000000").s().p("AgnAuQgRgSAAgcQAAgaARgTQARgTAWAAQAXAAARATQARATAAAaQAAAcgRASQgRATgXAAQgXAAgQgTg");
this.shape_84.setTransform(392.775,438.75);
this.shape_85 = new cjs.Shape();
this.shape_85.graphics.f("#004455").s().p("AhSBbQgiglAAg2QAAg0AigmQAjgmAvAAQAxAAAiAmQAiAmAAA0QAAA1giAmQgiAmgxAAQgvAAgjgmg");
this.shape_85.setTransform(392.725,441.275);
this.shape_86 = new cjs.Shape();
this.shape_86.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AAAjcQBKAAA1BBQA0BAAABbQAABcg0BBQg1BAhKAAQhJAAg1hAQg0hBAAhcQAAhbA0hAQA1hBBJAAg");
this.shape_86.setTransform(392.275,439.625);
this.shape_87 = new cjs.Shape();
this.shape_87.graphics.f("#FFFFFF").s().p("Ah+CdQg0hBAAhcQAAhbA0hAQA1hBBJAAQBKAAA1BBQA0BAAABbQAABcg0BBQg1BAhKAAQhJAAg1hAg");
this.shape_87.setTransform(392.275,439.625);
this.shape_88 = new cjs.Shape();
this.shape_88.graphics.f().s("#000000").ss(1.7,0,0,11.3).p("AtdnEIgHBuQgHCHABB1QAEF2BYBAQB0BVIkALQDlAFDYgNQDdgOB6gbQCXgiApjBQANg8AAhFIgCg4");
this.shape_88.setTransform(420.0188,470.5674);
this.shape_89 = new cjs.Shape();
this.shape_89.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("AxYBFQAIgDBCgSQBBgRAbgGQBjgWB7gSQB7gTBugLQCOgOBygFQBzgFCiAAQC3AACMAGQCPAGFyAXQDjAOAIAAQAMABkMAZQjkAWg9AEQg9ADkyAGItvATQloAIgkABQgoABACgBg");
this.shape_89.setTransform(410.3435,366.1229);
this.shape_90 = new cjs.Shape();
this.shape_90.graphics.f("#D35F5F").s().p("AxYBFQAIgDBCgSQBBgRAbgGQBjgWB7gSQB7gTBugLQCOgOBygFQBzgFCiAAQC3AACMAGQCPAGFyAXIDrAOQAMABkMAZQjkAWg9AEQg9ADkyAGItvATImMAJIgeABIgIgBg");
this.shape_90.setTransform(410.3435,366.1229);
this.shape_91 = new cjs.Shape();
this.shape_91.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("Aw9EJQgDgRgRgZQgRgZgqgwQgsgygRgaQgSgZgDgSQgCgRAZgUQBXhKEGhFQEHhFE/giQBtgLB1gHQA3gDChAAQCkgBAuAEQEWATDFA1QDrA/CTBrQAXARAEAIQAFAHgDAPQgFAdgjA1QgkA2gzA4IgPAQIhWgFQgrgDjJgMQkpgTiTgHQiXgHiegCQpDgHnTBjQgxAKgEABQgFAAgCgKg");
this.shape_91.setTransform(419.3488,340.0969);
this.shape_92 = new cjs.Shape();
this.shape_92.graphics.f("#D35F5F").s().p("Aw9EJQgDgRgRgZQgRgZgqgwQgsgygRgaQgSgZgDgSQgCgRAZgUQBXhKEGhFQEHhFE/giQBtgLB1gHQA3gDChAAQCkgBAuAEQEWATDFA1QDrA/CTBrQAXARAEAIQAFAHgDAPQgFAdgjA1QgkA2gzA4IgPAQIhWgFIj0gPQkpgTiTgHQiXgHiegCQpDgHnTBjIg1ALQgFAAgCgKg");
this.shape_92.setTransform(419.3488,340.0969);
this.shape_93 = new cjs.Shape();
this.shape_93.graphics.f().s("#D35F5F").ss(0.3,0,0,4).p("AglAVQgdgPAOgQQAOgRAnAAQAVAAAQAIQARAIACALQAEARgmAIQglAIgXgMg");
this.shape_93.setTransform(419.373,307.772);
this.shape_94 = new cjs.Shape();
this.shape_94.graphics.f("#D35F5F").s().p("AglAVQgdgPAOgQQAOgRAnAAQAVAAAQAIQARAIACALQAEARgmAIQgPADgMAAQgTAAgOgHg");
this.shape_94.setTransform(419.373,307.772);
this.shape_95 = new cjs.Shape();
this.shape_95.graphics.f().s("#000000").ss(0.4,0,0,4).p("AAAgoQAdAAAVAMQAVAMAAAQQAAARgVAMQgVAMgdAAQgcAAgVgMQgVgMAAgRQAAgQAVgMQAVgMAcAAg");
this.shape_95.setTransform(419.325,307.75);
this.shape_96 = new cjs.Shape();
this.shape_96.graphics.f("#000000").s().p("AgxAdQgVgMAAgRQAAgQAVgMQAVgMAcAAQAdAAAVAMQAVAMAAAQQAAARgVAMQgVAMgdAAQgcAAgVgMg");
this.shape_96.setTransform(419.325,307.75);
this.shape_97 = new cjs.Shape();
this.shape_97.graphics.f().s("#000000").ss(0.4,0,0,4).p("AxLA2QH6hyJsAHQDcADE/ATQCyALFlAV");
this.shape_97.setTransform(419.4098,363.5709);
this.shape_98 = new cjs.Shape();
this.shape_98.graphics.f("#000000").s().p("AAag1QDcADFAATIIWAgMgiXAA1QH6hyJrAHg");
this.shape_98.setTransform(419.45,363.5771);
this.shape_99 = new cjs.Shape();
this.shape_99.graphics.f().s("#000000").ss(0.4,0,0,4).p("AvWgFIjGA1IbrgmIJig6");
this.shape_99.setTransform(408.8908,369.4223);
this.shape_100 = new cjs.Shape();
this.shape_100.graphics.f("#000000").s().p("AvggFMAiHgAqIpiA5I7rAng");
this.shape_100.setTransform(409.875,369.4);
this.shape_101 = new cjs.Shape();
this.shape_101.graphics.f().s("#000000").ss(0.4,0,0,4).p("ARMDyIBghyQBZh4gogfQjbiumfg9Qljg1m4AjQmEAfk8BVQkzBSg3BSQgQAWAcAsQAQAaAzA6QAyA4AOAYQAYAngUAS");
this.shape_101.setTransform(419.3932,340.45);
this.shape_102 = new cjs.Shape();
this.shape_102.graphics.f("#000000").s().p("AxTDqQgOgYgyg4Qgzg6gQgaQgcgrAQgYQA3hQEzhSQE8hWGEgeQG4gkFjA1QGfA+DbCtQAoAfhZB4IhgByMgibAAxQAUgRgYgog");
this.shape_102.setTransform(419.3932,340.45);
this.shape_103 = new cjs.Shape();
this.shape_103.graphics.f("#FFE6D5").s().p("AjsKOQjhgKiPgaQiPgagmglQgbgcgThGQgShFgIhnQgKiGAGhcQADgqAFh9QAGhmABgBQABgBAygGQCNgQB/geQCBggCHgyQBcgjBmgwQBlgwC3heICohWIAjAFQCjAYBoBCQAUAMAfAgQAiAhAUAlQAUAlAOA0QAMAwAEA0QAFA1ACCQQADCCACAxQADA0AHAsQADAYgBAxQgCAxgGAhQgMBEgdA4QgVApgkAfQglAegrAMQg6AQh6ANQh7ANicAHQhIADicAAQigAAhDgEg");
this.shape_103.setTransform(420.0217,448.15);
this.shape_104 = new cjs.Shape();
this.shape_104.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AGSmPQi6BfhcAvQilBVh4AzQlTCNlUAZQgQFrgMBsQgdD7hKCFQhRhohAi6QhAi9gXjOQgZjfAhi2QAljMBoh3QDej7F2heQFBhQF8AtQFQAnENB2QEEBxArB1QBCCwgDHLQgDHahNEbQi3iJgujkQgShUgDh2QAAiGgBhAQgEjohLhqQhriWknggg");
this.shape_104.setTransform(417.8096,420.9346);
this.shape_105 = new cjs.Shape();
this.shape_105.graphics.f("#502D16").s().p("AxcJnQhAi9gXjOQgZjfAhi2QAljMBoh3QDej7F2heQFBhQF8AtQFQAnENB2QEEBxArB1QBCCwgDHLQgDHahNEbQi3iJgujkQgShUgDh2IgBjGQgEjohLhqQhriWknggIkWCOQilBVh4AzQlTCNlUAZQgQFrgMBsQgdD7hKCFQhRhohAi6g");
this.shape_105.setTransform(417.8096,420.44);
this.shape_106 = new cjs.Shape();
this.shape_106.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AtIARQgZFrgPBrQgjD6hNCEQhPhrg7i7Qg8i/gRjPQgTjfAmi1QApjLBsh0QDkj2F4hTQFDhIF7A3QFPAvEKB9QEAB4ApB2QA9CxgPHLQgPHZhUEaQiziOgpjlQgPhVAAh1QADiHABhAQACjohJhsQhmiYkngo");
this.shape_106.setTransform(420.1554,422.2362);
this.shape_107 = new cjs.Shape();
this.shape_107.graphics.f("#FFE6D5").s().p("AgVKLQiggEhDgFQjggQiPgeQiOgeglgmQgagcgRhGQgRhHgFhnQgGiGAIhcQAEgpAIh9QAJhmABgBQABgCAygEQCNgMCAgcQCBgbCJgwQBdghBngsQBmguC6hZICqhSIAjAGQCiAcBmBEQAUAOAeAgQAhAjATAlQATAlANA1QALAwADA0QADA2gBCPQgBCCABAxQABA0AGAsQADAZgDAxQgDAwgGAiQgPBEgdA2QgXApglAeQglAdgrALQg7AOh7AKQh6ALidACIggABQhHAAh9gEg");
this.shape_107.setTransform(421.2714,449.51);
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_105,p:{rotation:0,x:417.8096,y:420.44}},{t:this.shape_104,p:{rotation:0,x:417.8096,y:420.9346}},{t:this.shape_103,p:{rotation:0,x:420.0217,y:448.15}},{t:this.shape_102,p:{scaleX:1,scaleY:1,rotation:0,x:419.3932,y:340.45}},{t:this.shape_101,p:{scaleX:1,scaleY:1,rotation:0,x:419.3932,y:340.45}},{t:this.shape_100,p:{scaleX:1,scaleY:1,rotation:0,x:409.875,y:369.4}},{t:this.shape_99,p:{scaleX:1,scaleY:1,rotation:0,x:408.8908,y:369.4223}},{t:this.shape_98,p:{scaleX:1,scaleY:1,rotation:0,x:419.45,y:363.5771}},{t:this.shape_97,p:{scaleX:1,scaleY:1,rotation:0,x:419.4098,y:363.5709}},{t:this.shape_96,p:{scaleX:1,scaleY:1,rotation:0,x:419.325,y:307.75}},{t:this.shape_95,p:{scaleX:1,scaleY:1,rotation:0,x:419.325,y:307.75}},{t:this.shape_94,p:{scaleX:1,scaleY:1,rotation:0,x:419.373,y:307.772}},{t:this.shape_93,p:{scaleX:1,scaleY:1,rotation:0,x:419.373,y:307.772}},{t:this.shape_92,p:{scaleX:1,scaleY:1,rotation:0,x:419.3488,y:340.0969}},{t:this.shape_91,p:{scaleX:1,scaleY:1,rotation:0,x:419.3488,y:340.0969}},{t:this.shape_90,p:{scaleX:1,scaleY:1,rotation:0,x:410.3435,y:366.1229}},{t:this.shape_89,p:{scaleX:1,scaleY:1,rotation:0,x:410.3435,y:366.1229}},{t:this.shape_88,p:{rotation:0,x:420.0188,y:470.5674}},{t:this.shape_87,p:{scaleX:1,scaleY:1,rotation:0,x:392.275,y:439.625}},{t:this.shape_86,p:{scaleX:1,scaleY:1,rotation:0,x:392.275,y:439.625}},{t:this.shape_85,p:{scaleX:1,scaleY:1,rotation:0,x:392.725,y:441.275}},{t:this.shape_84,p:{scaleX:1,scaleY:1,rotation:0,x:392.775,y:438.75}},{t:this.shape_83,p:{scaleX:1,scaleY:1,rotation:0,x:450.6,y:439.3}},{t:this.shape_82,p:{scaleX:1,scaleY:1,rotation:0,x:450.6,y:439.3}},{t:this.shape_81,p:{scaleX:1,scaleY:1,rotation:0,x:450.575,y:440.45}},{t:this.shape_80,p:{scaleX:1,scaleY:1,rotation:0,x:450.6,y:438.425}},{t:this.shape_79,p:{rotation:0,x:421.025,y:467.925}}]},782).to({state:[{t:this.shape_105,p:{rotation:0,x:417.8096,y:420.44}},{t:this.shape_104,p:{rotation:0,x:417.8096,y:420.9346}},{t:this.shape_103,p:{rotation:0,x:420.0217,y:448.15}},{t:this.shape_102,p:{scaleX:1,scaleY:1,rotation:0,x:419.3932,y:340.45}},{t:this.shape_101,p:{scaleX:1,scaleY:1,rotation:0,x:419.3932,y:340.45}},{t:this.shape_100,p:{scaleX:1,scaleY:1,rotation:0,x:409.875,y:369.4}},{t:this.shape_99,p:{scaleX:1,scaleY:1,rotation:0,x:408.8908,y:369.4223}},{t:this.shape_98,p:{scaleX:1,scaleY:1,rotation:0,x:419.45,y:363.5771}},{t:this.shape_97,p:{scaleX:1,scaleY:1,rotation:0,x:419.4098,y:363.5709}},{t:this.shape_96,p:{scaleX:1,scaleY:1,rotation:0,x:419.325,y:307.75}},{t:this.shape_95,p:{scaleX:1,scaleY:1,rotation:0,x:419.325,y:307.75}},{t:this.shape_94,p:{scaleX:1,scaleY:1,rotation:0,x:419.373,y:307.772}},{t:this.shape_93,p:{scaleX:1,scaleY:1,rotation:0,x:419.373,y:307.772}},{t:this.shape_92,p:{scaleX:1,scaleY:1,rotation:0,x:419.3488,y:340.0969}},{t:this.shape_91,p:{scaleX:1,scaleY:1,rotation:0,x:419.3488,y:340.0969}},{t:this.shape_90,p:{scaleX:1,scaleY:1,rotation:0,x:410.3435,y:366.1229}},{t:this.shape_89,p:{scaleX:1,scaleY:1,rotation:0,x:410.3435,y:366.1229}},{t:this.shape_88,p:{rotation:0,x:420.0188,y:470.5674}},{t:this.shape_87,p:{scaleX:1,scaleY:1,rotation:0,x:392.275,y:439.625}},{t:this.shape_86,p:{scaleX:1,scaleY:1,rotation:0,x:392.275,y:439.625}},{t:this.shape_85,p:{scaleX:1,scaleY:1,rotation:0,x:392.725,y:441.275}},{t:this.shape_84,p:{scaleX:1,scaleY:1,rotation:0,x:392.775,y:438.75}},{t:this.shape_83,p:{scaleX:1,scaleY:1,rotation:0,x:450.6,y:439.3}},{t:this.shape_82,p:{scaleX:1,scaleY:1,rotation:0,x:450.6,y:439.3}},{t:this.shape_81,p:{scaleX:1,scaleY:1,rotation:0,x:450.575,y:440.45}},{t:this.shape_80,p:{scaleX:1,scaleY:1,rotation:0,x:450.6,y:438.425}},{t:this.shape_79,p:{rotation:0,x:421.025,y:467.925}}]},63).to({state:[{t:this.shape_105,p:{rotation:1.4838,x:420.2375,y:420.3421}},{t:this.shape_104,p:{rotation:1.4838,x:420.2247,y:420.8365}},{t:this.shape_103,p:{rotation:1.4838,x:421.7314,y:448.1001}},{t:this.shape_102,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4823,x:423.8695,y:340.4093}},{t:this.shape_101,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4823,x:423.8695,y:340.4093}},{t:this.shape_100,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4823,x:413.6075,y:369.0981}},{t:this.shape_99,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4823,x:412.6232,y:369.0949}},{t:this.shape_98,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4823,x:423.3281,y:363.5259}},{t:this.shape_97,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4823,x:423.2881,y:363.5186}},{t:this.shape_96,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:424.6548,y:307.7267}},{t:this.shape_95,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:424.6548,y:307.7267}},{t:this.shape_94,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:424.7022,y:307.75}},{t:this.shape_93,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:424.7022,y:307.75}},{t:this.shape_92,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:423.8416,y:340.0594}},{t:this.shape_91,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:423.8416,y:340.0594}},{t:this.shape_90,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:414.1668,y:365.8405}},{t:this.shape_89,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:414.1668,y:365.8405}},{t:this.shape_88,p:{rotation:1.4838,x:421.148,y:470.5099}},{t:this.shape_87,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:394.2044,y:438.8413}},{t:this.shape_86,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:394.2044,y:438.8413}},{t:this.shape_85,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:394.6115,y:440.5022}},{t:this.shape_84,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:394.7269,y:437.9797}},{t:this.shape_83,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:452.5112,y:440.0258}},{t:this.shape_82,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:452.5112,y:440.0258}},{t:this.shape_81,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:452.4564,y:441.1747}},{t:this.shape_80,p:{scaleX:0.9999,scaleY:0.9999,rotation:1.4831,x:452.5338,y:439.1513}},{t:this.shape_79,p:{rotation:1.4838,x:422.2223,y:467.8944}}]},16).to({state:[{t:this.shape_105,p:{rotation:2.952,x:422.6641,y:420.3788}},{t:this.shape_104,p:{rotation:2.952,x:422.6386,y:420.8727}},{t:this.shape_103,p:{rotation:2.952,x:423.4462,y:448.1656}},{t:this.shape_102,p:{scaleX:0.9998,scaleY:0.9998,rotation:2.9509,x:428.3386,y:340.566}},{t:this.shape_101,p:{scaleX:0.9998,scaleY:0.9998,rotation:2.9509,x:428.3386,y:340.566}},{t:this.shape_100,p:{scaleX:0.9998,scaleY:0.9998,rotation:2.9509,x:417.3452,y:368.981}},{t:this.shape_99,p:{scaleX:0.9998,scaleY:0.9998,rotation:2.9509,x:416.3614,y:368.9527}},{t:this.shape_98,p:{scaleX:0.9998,scaleY:0.9998,rotation:2.9509,x:427.205,y:363.66}},{t:this.shape_97,p:{scaleX:0.9998,scaleY:0.9998,rotation:2.9509,x:427.1652,y:363.6517}},{t:this.shape_96,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:429.9672,y:307.9158}},{t:this.shape_95,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:429.9672,y:307.9158}},{t:this.shape_94,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:430.0139,y:307.9402}},{t:this.shape_93,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:430.0139,y:307.9402}},{t:this.shape_92,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:428.3257,y:340.217}},{t:this.shape_91,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:428.3257,y:340.217}},{t:this.shape_90,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:417.9935,y:365.7417}},{t:this.shape_89,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:417.9935,y:365.7417}},{t:this.shape_88,p:{rotation:2.952,x:422.2889,y:470.5527}},{t:this.shape_87,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:396.167,y:438.207}},{t:this.shape_86,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:396.167,y:438.207}},{t:this.shape_85,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:396.5314,y:439.8778}},{t:this.shape_84,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:396.7114,y:437.359}},{t:this.shape_83,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:454.4242,y:440.8852}},{t:this.shape_82,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:454.4242,y:440.8852}},{t:this.shape_81,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:454.3401,y:442.0323}},{t:this.shape_80,p:{scaleX:0.9999,scaleY:0.9999,rotation:2.9514,x:454.4693,y:440.0115}},{t:this.shape_79,p:{rotation:2.952,x:423.4298,y:467.9657}}]},1).to({state:[{t:this.shape_105,p:{rotation:5.202,x:426.3787,y:420.8328}},{t:this.shape_104,p:{rotation:5.202,x:426.3338,y:421.3253}},{t:this.shape_103,p:{rotation:5.202,x:426.0693,y:448.6292}},{t:this.shape_102,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2014,x:435.1819,y:341.3041}},{t:this.shape_101,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2014,x:435.1819,y:341.3041}},{t:this.shape_100,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2014,x:423.081,y:369.2659}},{t:this.shape_99,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2014,x:422.0991,y:369.1989}},{t:this.shape_98,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2014,x:433.1423,y:364.3361}},{t:this.shape_97,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2014,x:433.1029,y:364.3262}},{t:this.shape_96,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:438.0876,y:308.7419}},{t:this.shape_95,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:438.0876,y:308.7419}},{t:this.shape_94,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:438.1334,y:308.7681}},{t:this.shape_93,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:438.1334,y:308.7681}},{t:this.shape_92,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:435.179,y:340.9532}},{t:this.shape_91,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:435.179,y:340.9532}},{t:this.shape_90,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:423.8527,y:366.0521}},{t:this.shape_89,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:423.8527,y:366.0521}},{t:this.shape_88,p:{rotation:5.202,x:424.0339,y:470.954}},{t:this.shape_87,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:399.198,y:437.6033}},{t:this.shape_86,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:399.198,y:437.6033}},{t:this.shape_85,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:399.4965,y:439.2871}},{t:this.shape_84,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:399.7752,y:436.7774}},{t:this.shape_83,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:457.3041,y:442.567}},{t:this.shape_82,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:457.3041,y:442.567}},{t:this.shape_81,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:457.175,y:443.7098}},{t:this.shape_80,p:{scaleX:0.9999,scaleY:0.9999,rotation:5.2019,x:457.3835,y:441.6957}},{t:this.shape_79,p:{rotation:5.202,x:425.2755,y:468.4137}}]},1).to({state:[{t:this.shape_105,p:{rotation:5.202,x:426.3787,y:420.8328}},{t:this.shape_104,p:{rotation:5.202,x:426.3338,y:421.3253}},{t:this.shape_103,p:{rotation:5.202,x:426.0693,y:448.6292}},{t:this.shape_102,p:{scaleX:0.9997,scaleY:0.9997,rotation:5.2017,x:435.1741,y:341.3018}},{t:this.shape_101,p:{scaleX:0.9997,scaleY:0.9997,rotation:5.2017,x:435.1741,y:341.3018}},{t:this.shape_100,p:{scaleX:0.9997,scaleY:0.9997,rotation:5.2017,x:423.0738,y:369.2619}},{t:this.shape_99,p:{scaleX:0.9997,scaleY:0.9997,rotation:5.2017,x:422.0919,y:369.1949}},{t:this.shape_98,p:{scaleX:0.9997,scaleY:0.9997,rotation:5.2017,x:433.1344,y:364.3324}},{t:this.shape_97,p:{scaleX:0.9997,scaleY:0.9997,rotation:5.2017,x:433.095,y:364.3226}},{t:this.shape_96,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:438.0818,y:308.7397}},{t:this.shape_95,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:438.0818,y:308.7397}},{t:this.shape_94,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:438.1276,y:308.766}},{t:this.shape_93,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:438.1276,y:308.766}},{t:this.shape_92,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:435.1737,y:340.9496}},{t:this.shape_91,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:435.1737,y:340.9496}},{t:this.shape_90,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:423.8482,y:366.0474}},{t:this.shape_89,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:423.8482,y:366.0474}},{t:this.shape_88,p:{rotation:5.202,x:424.0339,y:470.954}},{t:this.shape_87,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:399.1954,y:437.5955}},{t:this.shape_86,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:399.1954,y:437.5955}},{t:this.shape_85,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:399.4939,y:439.2792}},{t:this.shape_84,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:399.7726,y:436.7696}},{t:this.shape_83,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:457.2989,y:442.5583}},{t:this.shape_82,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:457.2989,y:442.5583}},{t:this.shape_81,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:457.1698,y:443.7011}},{t:this.shape_80,p:{scaleX:0.9998,scaleY:0.9998,rotation:5.2012,x:457.3782,y:441.6871}},{t:this.shape_79,p:{rotation:5.202,x:425.2755,y:468.4137}}]},30).to({state:[{t:this.shape_105,p:{rotation:3.2505,x:423.1204,y:420.8081}},{t:this.shape_104,p:{rotation:3.2505,x:423.0924,y:421.3019}},{t:this.shape_103,p:{rotation:3.2505,x:423.7578,y:448.5987}},{t:this.shape_102,p:{scaleX:0.9997,scaleY:0.9997,rotation:3.2499,x:429.195,y:341.0209}},{t:this.shape_101,p:{scaleX:0.9997,scaleY:0.9997,rotation:3.2499,x:429.195,y:341.0209}},{t:this.shape_100,p:{scaleX:0.9997,scaleY:0.9997,rotation:3.2499,x:418.0548,y:369.375}},{t:this.shape_99,p:{scaleX:0.9997,scaleY:0.9997,rotation:3.2499,x:417.0713,y:369.3415}},{t:this.shape_98,p:{scaleX:0.9997,scaleY:0.9997,rotation:3.2499,x:427.9411,y:364.1061}},{t:this.shape_97,p:{scaleX:0.9997,scaleY:0.9997,rotation:3.2499,x:427.9013,y:364.0976}},{t:this.shape_96,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:430.9997,y:308.3835}},{t:this.shape_95,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:430.9997,y:308.3835}},{t:this.shape_94,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:431.0463,y:308.4082}},{t:this.shape_93,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:431.0463,y:308.4082}},{t:this.shape_92,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:429.1898,y:340.6735}},{t:this.shape_91,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:429.1898,y:340.6735}},{t:this.shape_90,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:418.7254,y:366.1422}},{t:this.shape_89,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:418.7254,y:366.1422}},{t:this.shape_88,p:{rotation:3.2505,x:422.4838,y:470.9797}},{t:this.shape_87,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:396.5228,y:438.4877}},{t:this.shape_86,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:396.5228,y:438.4877}},{t:this.shape_85,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:396.8785,y:440.1603}},{t:this.shape_84,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:397.0715,y:437.6427}},{t:this.shape_83,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:454.7612,y:441.4696}},{t:this.shape_82,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:454.7612,y:441.4696}},{t:this.shape_81,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:454.6711,y:442.6161}},{t:this.shape_80,p:{scaleX:0.9998,scaleY:0.9998,rotation:3.2503,x:454.8108,y:440.5961}},{t:this.shape_79,p:{rotation:3.2505,x:423.6382,y:468.3986}}]},1).to({state:[{t:this.shape_105,p:{rotation:1.7348,x:420.6578,y:420.7327}},{t:this.shape_104,p:{rotation:1.7348,x:420.6428,y:421.227}},{t:this.shape_103,p:{rotation:1.7348,x:422.0299,y:448.4966}},{t:this.shape_102,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.7336,x:424.6221,y:340.8127}},{t:this.shape_101,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.7336,x:424.6221,y:340.8127}},{t:this.shape_100,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.7336,x:414.2359,y:369.4519}},{t:this.shape_99,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.7336,x:413.2518,y:369.4444}},{t:this.shape_98,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.7336,x:423.9794,y:363.9232}},{t:this.shape_97,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.7336,x:423.9395,y:363.9157}},{t:this.shape_96,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:425.5566,y:308.139}},{t:this.shape_95,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:425.5566,y:308.139}},{t:this.shape_94,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:425.6038,y:308.1625}},{t:this.shape_93,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:425.6038,y:308.1625}},{t:this.shape_92,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:424.6016,y:340.4644}},{t:this.shape_91,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:424.6016,y:340.4644}},{t:this.shape_90,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:414.815,y:366.2001}},{t:this.shape_89,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:414.815,y:366.2001}},{t:this.shape_88,p:{rotation:1.7348,x:421.3484,y:470.9033}},{t:this.shape_87,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:394.5348,y:439.105}},{t:this.shape_86,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:394.5348,y:439.105}},{t:this.shape_85,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:394.9346,y:440.7675}},{t:this.shape_84,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:395.061,y:438.2457}},{t:this.shape_83,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:452.8296,y:440.545}},{t:this.shape_82,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:452.8296,y:440.545}},{t:this.shape_81,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:452.7699,y:441.6935}},{t:this.shape_80,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.7343,x:452.8561,y:439.6706}},{t:this.shape_79,p:{rotation:1.7348,x:422.4341,y:468.2926}}]},1).to({state:[{t:this.shape_105,p:{rotation:1.4689,x:420.2679,y:421.1092}},{t:this.shape_104,p:{rotation:1.4689,x:420.2552,y:421.6035}},{t:this.shape_103,p:{rotation:1.4689,x:421.7689,y:448.8666}},{t:this.shape_102,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4678,x:423.8457,y:341.1663}},{t:this.shape_101,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4678,x:423.8457,y:341.1663}},{t:this.shape_100,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4678,x:413.5937,y:369.8501}},{t:this.shape_99,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4678,x:412.6097,y:369.8471}},{t:this.shape_98,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4678,x:423.3103,y:364.2769}},{t:this.shape_97,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4678,x:423.2703,y:364.2696}},{t:this.shape_96,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:424.6422,y:308.4929}},{t:this.shape_95,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:424.6422,y:308.4929}},{t:this.shape_94,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:424.6896,y:308.5161}},{t:this.shape_93,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:424.6896,y:308.5161}},{t:this.shape_92,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:423.8373,y:340.8221}},{t:this.shape_91,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:423.8373,y:340.8221}},{t:this.shape_90,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:414.1703,y:366.6027}},{t:this.shape_89,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:414.1703,y:366.6027}},{t:this.shape_88,p:{rotation:1.4689,x:421.1914,y:471.2764}},{t:this.shape_87,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:394.2289,y:439.6004}},{t:this.shape_86,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:394.2289,y:439.6004}},{t:this.shape_85,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:394.6364,y:441.261}},{t:this.shape_84,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:394.7511,y:438.7387}},{t:this.shape_83,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:452.5293,y:440.7699}},{t:this.shape_82,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:452.5293,y:440.7699}},{t:this.shape_81,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:452.4749,y:441.9186}},{t:this.shape_80,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:452.5517,y:439.8954}},{t:this.shape_79,p:{rotation:1.4689,x:422.265,y:468.6606}}]},1).to({state:[{t:this.shape_105,p:{rotation:1.4689,x:420.2679,y:421.1092}},{t:this.shape_104,p:{rotation:1.4689,x:420.2552,y:421.6035}},{t:this.shape_103,p:{rotation:1.4689,x:421.7689,y:448.8666}},{t:this.shape_102,p:{scaleX:0.9995,scaleY:0.9995,rotation:1.468,x:423.83,y:341.1618}},{t:this.shape_101,p:{scaleX:0.9995,scaleY:0.9995,rotation:1.468,x:423.83,y:341.1618}},{t:this.shape_100,p:{scaleX:0.9995,scaleY:0.9995,rotation:1.468,x:413.5791,y:369.842}},{t:this.shape_99,p:{scaleX:0.9995,scaleY:0.9995,rotation:1.468,x:412.5952,y:369.8391}},{t:this.shape_98,p:{scaleX:0.9995,scaleY:0.9995,rotation:1.468,x:423.2946,y:364.2696}},{t:this.shape_97,p:{scaleX:0.9995,scaleY:0.9995,rotation:1.468,x:423.2546,y:364.2623}},{t:this.shape_96,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:424.6383,y:308.4928}},{t:this.shape_95,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:424.6383,y:308.4928}},{t:this.shape_94,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:424.6857,y:308.516}},{t:this.shape_93,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:424.6857,y:308.516}},{t:this.shape_92,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:423.8334,y:340.821}},{t:this.shape_91,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:423.8334,y:340.821}},{t:this.shape_90,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:414.1666,y:366.6008}},{t:this.shape_89,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:414.1666,y:366.6008}},{t:this.shape_88,p:{rotation:1.4689,x:421.1914,y:471.2764}},{t:this.shape_87,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:394.2258,y:439.5963}},{t:this.shape_86,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:394.2258,y:439.5963}},{t:this.shape_85,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:394.6333,y:441.2568}},{t:this.shape_84,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:394.7479,y:438.7346}},{t:this.shape_83,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:452.5244,y:440.7657}},{t:this.shape_82,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:452.5244,y:440.7657}},{t:this.shape_81,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:452.47,y:441.9144}},{t:this.shape_80,p:{scaleX:0.9998,scaleY:0.9998,rotation:1.4684,x:452.5469,y:439.8912}},{t:this.shape_79,p:{rotation:1.4689,x:422.265,y:468.6606}}]},59).to({state:[{t:this.shape_105,p:{rotation:1.4689,x:420.2679,y:421.1092}},{t:this.shape_104,p:{rotation:1.4689,x:420.2552,y:421.6035}},{t:this.shape_103,p:{rotation:1.4689,x:421.7689,y:448.8666}},{t:this.shape_102,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:423.8143,y:341.1573}},{t:this.shape_101,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:423.8143,y:341.1573}},{t:this.shape_100,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:413.5646,y:369.834}},{t:this.shape_99,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:412.5808,y:369.831}},{t:this.shape_98,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:423.2789,y:364.2622}},{t:this.shape_97,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:423.2389,y:364.2549}},{t:this.shape_96,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:424.6324,y:308.4926}},{t:this.shape_95,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:424.6324,y:308.4926}},{t:this.shape_94,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:424.6798,y:308.5158}},{t:this.shape_93,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:424.6798,y:308.5158}},{t:this.shape_92,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:423.8275,y:340.8193}},{t:this.shape_91,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:423.8275,y:340.8193}},{t:this.shape_90,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:414.1612,y:366.598}},{t:this.shape_89,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:414.1612,y:366.598}},{t:this.shape_88,p:{rotation:1.4689,x:421.1914,y:471.2764}},{t:this.shape_87,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:394.2212,y:439.59}},{t:this.shape_86,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:394.2212,y:439.59}},{t:this.shape_85,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:394.6286,y:441.2505}},{t:this.shape_84,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:394.7433,y:438.7284}},{t:this.shape_83,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:452.5171,y:440.7595}},{t:this.shape_82,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:452.5171,y:440.7595}},{t:this.shape_81,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:452.4627,y:441.9081}},{t:this.shape_80,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:452.5395,y:439.8851}},{t:this.shape_79,p:{rotation:1.4689,x:422.265,y:468.6606}}]},52).to({state:[{t:this.shape_105,p:{rotation:1.4689,x:420.2679,y:421.1092}},{t:this.shape_104,p:{rotation:1.4689,x:420.2552,y:421.6035}},{t:this.shape_103,p:{rotation:1.4689,x:421.7689,y:448.8666}},{t:this.shape_102,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:423.8143,y:341.1573}},{t:this.shape_101,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:423.8143,y:341.1573}},{t:this.shape_100,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:413.5646,y:369.834}},{t:this.shape_99,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:412.5808,y:369.831}},{t:this.shape_98,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:423.2789,y:364.2622}},{t:this.shape_97,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4682,x:423.2389,y:364.2549}},{t:this.shape_96,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:424.6324,y:308.4926}},{t:this.shape_95,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:424.6324,y:308.4926}},{t:this.shape_94,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:424.6798,y:308.5158}},{t:this.shape_93,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:424.6798,y:308.5158}},{t:this.shape_92,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:423.8275,y:340.8193}},{t:this.shape_91,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:423.8275,y:340.8193}},{t:this.shape_90,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:414.1612,y:366.598}},{t:this.shape_89,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:414.1612,y:366.598}},{t:this.shape_88,p:{rotation:1.4689,x:421.1914,y:471.2764}},{t:this.shape_87,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:394.2212,y:439.59}},{t:this.shape_86,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:394.2212,y:439.59}},{t:this.shape_85,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:394.6286,y:441.2505}},{t:this.shape_84,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:394.7433,y:438.7284}},{t:this.shape_83,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:452.5171,y:440.7595}},{t:this.shape_82,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:452.5171,y:440.7595}},{t:this.shape_81,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:452.4627,y:441.9081}},{t:this.shape_80,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4685,x:452.5395,y:439.8851}},{t:this.shape_79,p:{rotation:1.4689,x:422.265,y:468.6606}}]},12).to({state:[{t:this.shape_105,p:{rotation:1.4689,x:420.2679,y:421.1092}},{t:this.shape_104,p:{rotation:1.4689,x:420.2552,y:421.6035}},{t:this.shape_103,p:{rotation:1.4689,x:421.7689,y:448.8666}},{t:this.shape_102,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4683,x:423.8045,y:341.1544}},{t:this.shape_101,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4683,x:423.8045,y:341.1544}},{t:this.shape_100,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4683,x:413.5555,y:369.8289}},{t:this.shape_99,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4683,x:412.5718,y:369.826}},{t:this.shape_98,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4683,x:423.269,y:364.2576}},{t:this.shape_97,p:{scaleX:0.9993,scaleY:0.9993,rotation:1.4683,x:423.2291,y:364.2503}},{t:this.shape_96,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:424.6265,y:308.4924}},{t:this.shape_95,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:424.6265,y:308.4924}},{t:this.shape_94,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:424.6739,y:308.5156}},{t:this.shape_93,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:424.6739,y:308.5156}},{t:this.shape_92,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:423.8216,y:340.8176}},{t:this.shape_91,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:423.8216,y:340.8176}},{t:this.shape_90,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:414.1557,y:366.5951}},{t:this.shape_89,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:414.1557,y:366.5951}},{t:this.shape_88,p:{rotation:1.4689,x:421.1914,y:471.2764}},{t:this.shape_87,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:394.2165,y:439.5838}},{t:this.shape_86,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:394.2165,y:439.5838}},{t:this.shape_85,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:394.6239,y:441.2442}},{t:this.shape_84,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:394.7386,y:438.7222}},{t:this.shape_83,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:452.5098,y:440.7533}},{t:this.shape_82,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:452.5098,y:440.7533}},{t:this.shape_81,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:452.4554,y:441.9018}},{t:this.shape_80,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:452.5322,y:439.8789}},{t:this.shape_79,p:{rotation:1.4689,x:422.265,y:468.6606}}]},71).to({state:[{t:this.shape_107},{t:this.shape_106},{t:this.shape_88,p:{rotation:1.4689,x:421.1914,y:471.2764}},{t:this.shape_87,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:394.2165,y:439.5838}},{t:this.shape_86,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:394.2165,y:439.5838}},{t:this.shape_85,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:394.6239,y:441.2442}},{t:this.shape_84,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:394.7386,y:438.7222}},{t:this.shape_83,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:452.5098,y:440.7533}},{t:this.shape_82,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:452.5098,y:440.7533}},{t:this.shape_81,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:452.4554,y:441.9018}},{t:this.shape_80,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4686,x:452.5322,y:439.8789}},{t:this.shape_79,p:{rotation:1.4689,x:422.265,y:468.6606}}]},37).to({state:[{t:this.shape_107},{t:this.shape_106},{t:this.shape_88,p:{rotation:1.4689,x:421.1914,y:471.2764}},{t:this.shape_87,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:394.215,y:439.5817}},{t:this.shape_86,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:394.215,y:439.5817}},{t:this.shape_85,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:394.6224,y:441.2421}},{t:this.shape_84,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:394.737,y:438.7201}},{t:this.shape_83,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:452.5074,y:440.7512}},{t:this.shape_82,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:452.5074,y:440.7512}},{t:this.shape_81,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:452.4529,y:441.8998}},{t:this.shape_80,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:452.5298,y:439.8768}},{t:this.shape_79,p:{rotation:1.4689,x:422.265,y:468.6606}}]},24).to({state:[{t:this.shape_107},{t:this.shape_106},{t:this.shape_88,p:{rotation:1.4689,x:421.1914,y:471.2764}},{t:this.shape_87,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:394.2134,y:439.5796}},{t:this.shape_86,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:394.2134,y:439.5796}},{t:this.shape_85,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:394.6208,y:441.24}},{t:this.shape_84,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:394.7355,y:438.7181}},{t:this.shape_83,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:452.5049,y:440.7491}},{t:this.shape_82,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:452.5049,y:440.7491}},{t:this.shape_81,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:452.4505,y:441.8977}},{t:this.shape_80,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.4686,x:452.5273,y:439.8748}},{t:this.shape_79,p:{rotation:1.4689,x:422.265,y:468.6606}}]},12).wait(1));
// Larm
this.shape_108 = new cjs.Shape();
this.shape_108.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AAijYIjwFtIChBDID7mig");
this.shape_108.setTransform(368.6509,534.682);
this.shape_109 = new cjs.Shape();
this.shape_109.graphics.f().s("#5599FF").ss(0.4,0,0,11.3).p("Ah7C0QhIgcgBgCQgBAAB4iyQBOh3AWggQAUgcADAAICNAMIAIACIj1GQQgBABhIgcg");
this.shape_109.setTransform(367.6496,534.6017);
this.shape_110 = new cjs.Shape();
this.shape_110.graphics.f("#5599FF").s().p("Ah5C0QhIgcgCgCQgBAAB4iyIBliXQATgcAEAAICNAMIAHACIj0GQIgBABQgDAAhFgcg");
this.shape_110.setTransform(367.4996,534.6017);
this.shape_111 = new cjs.Shape();
this.shape_111.graphics.f().s("#FFE6D5").ss(0.7,0,0,11.3).p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQggAQghgMg");
this.shape_111.setTransform(351.5303,559.5786);
this.shape_112 = new cjs.Shape();
this.shape_112.graphics.f("#FFE6D5").s().p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQgSAJgTAAQgOAAgOgFg");
this.shape_112.setTransform(351.5303,559.5786);
this.shape_113 = new cjs.Shape();
this.shape_113.graphics.f().s("#000000").ss(1.4,0,0,11.3).p("AAShCQAiAIATAaQATAagHAbQgHAbgeAOQgdAOgigJQgigIgTgaQgTgaAHgbQAIgcAdgNQAdgOAiAJg");
this.shape_113.setTransform(351.5369,559.575);
this.instance_19 = new lib.Tween264("synched",0);
this.instance_19.setTransform(386.75,514.2,1,1,0,0,0,20.6,-25.6);
this.instance_19._off = true;
this.instance_20 = new lib.Tween265("synched",0);
this.instance_20.setTransform(389.1,516.9,1,1,-107.2925,0,0,22.9,-22.9);
this.instance_20._off = true;
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_113},{t:this.shape_112},{t:this.shape_111},{t:this.shape_110},{t:this.shape_109},{t:this.shape_108}]},622).to({state:[{t:this.shape_113},{t:this.shape_112},{t:this.shape_111},{t:this.shape_110},{t:this.shape_109},{t:this.shape_108}]},67).to({state:[{t:this.instance_19}]},11).to({state:[{t:this.instance_20}]},5).to({state:[{t:this.instance_20}]},48).to({state:[{t:this.instance_20}]},29).to({state:[{t:this.instance_20}]},63).to({state:[{t:this.instance_20}]},7).to({state:[{t:this.instance_20}]},41).to({state:[{t:this.instance_20}]},62).to({state:[{t:this.instance_20}]},4).to({state:[{t:this.instance_20}]},48).to({state:[{t:this.instance_20}]},2).to({state:[{t:this.instance_20}]},4).to({state:[{t:this.instance_20}]},6).to({state:[{t:this.instance_20}]},71).to({state:[{t:this.instance_20}]},37).to({state:[{t:this.instance_20}]},24).to({state:[{t:this.instance_20}]},12).wait(1));
this.timeline.addTween(cjs.Tween.get(this.instance_19).wait(700).to({_off:false},0).to({_off:true,regX:22.9,regY:-22.9,rotation:-107.2925,x:389.1,y:516.9},5).wait(459));
this.timeline.addTween(cjs.Tween.get(this.instance_20).wait(700).to({_off:false},5).wait(48).to({startPosition:0},0).wait(29).to({startPosition:0},0).wait(63).to({startPosition:0},0).to({rotation:0.5237,y:516.95},7).wait(41).to({rotation:0.5237},0).wait(62).to({startPosition:0},0).to({regX:23,rotation:15.5229,x:389.25},4).wait(48).to({regX:22.9,rotation:0.5237,x:389.1},0).wait(2).to({regX:23,rotation:15.5229,x:389.25},0).to({regY:-22.8,scaleX:0.9999,scaleY:0.9999,rotation:0.5237,x:389.2,y:517},4).wait(6).to({regX:22.9,regY:-22.9,scaleX:1,scaleY:1,rotation:0.5237,x:389.1,y:516.95},0).wait(71).to({startPosition:0},0).to({scaleX:0.9999,scaleY:0.9999,rotation:45.5237,x:389.15,y:516.9},37).wait(24).to({startPosition:0},0).wait(12).to({startPosition:0},0).wait(1));
// move5
this.shape_114 = new cjs.Shape();
this.shape_114.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AAijYIjwFtIChBDID7mig");
this.shape_114.setTransform(368.6509,534.682);
this.shape_115 = new cjs.Shape();
this.shape_115.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("AxYBFQAIgDBCgSQBBgRAbgGQBjgWB7gSQB7gTBugLQCOgOBygFQBzgFCiAAQC3AACMAGQCPAGFyAXQDjAOAIAAQAMABkMAZQjkAWg9AEQg9ADkyAGItvATQloAIgkABQgoABACgBg");
this.shape_115.setTransform(410.3435,366.1229);
this.shape_116 = new cjs.Shape();
this.shape_116.graphics.f("#D35F5F").s().p("AxYBFQAIgDBCgSQBBgRAbgGQBjgWB7gSQB7gTBugLQCOgOBygFQBzgFCiAAQC3AACMAGQCPAGFyAXIDrAOQAMABkMAZQjkAWg9AEQg9ADkyAGItvATImMAJIgeABIgIgBg");
this.shape_116.setTransform(410.3435,366.1229);
this.shape_117 = new cjs.Shape();
this.shape_117.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("Aw9EJQgDgRgRgZQgRgZgqgwQgsgygRgaQgSgZgDgSQgCgRAZgUQBXhKEGhFQEHhFE/giQBtgLB1gHQA3gDChAAQCkgBAuAEQEWATDFA1QDrA/CTBrQAXARAEAIQAFAHgDAPQgFAdgjA1QgkA2gzA4IgPAQIhWgFQgrgDjJgMQkpgTiTgHQiXgHiegCQpDgHnTBjQgxAKgEABQgFAAgCgKg");
this.shape_117.setTransform(419.3488,340.0969);
this.shape_118 = new cjs.Shape();
this.shape_118.graphics.f("#D35F5F").s().p("Aw9EJQgDgRgRgZQgRgZgqgwQgsgygRgaQgSgZgDgSQgCgRAZgUQBXhKEGhFQEHhFE/giQBtgLB1gHQA3gDChAAQCkgBAuAEQEWATDFA1QDrA/CTBrQAXARAEAIQAFAHgDAPQgFAdgjA1QgkA2gzA4IgPAQIhWgFIj0gPQkpgTiTgHQiXgHiegCQpDgHnTBjIg1ALQgFAAgCgKg");
this.shape_118.setTransform(419.3488,340.0969);
this.shape_119 = new cjs.Shape();
this.shape_119.graphics.f().s("#D35F5F").ss(0.3,0,0,4).p("AglAVQgdgPAOgQQAOgRAnAAQAVAAAQAIQARAIACALQAEARgmAIQglAIgXgMg");
this.shape_119.setTransform(419.373,307.772);
this.shape_120 = new cjs.Shape();
this.shape_120.graphics.f("#D35F5F").s().p("AglAVQgdgPAOgQQAOgRAnAAQAVAAAQAIQARAIACALQAEARgmAIQgPADgMAAQgTAAgOgHg");
this.shape_120.setTransform(419.373,307.772);
this.shape_121 = new cjs.Shape();
this.shape_121.graphics.f().s("#000000").ss(0.4,0,0,4).p("AAAgoQAdAAAVAMQAVAMAAAQQAAARgVAMQgVAMgdAAQgcAAgVgMQgVgMAAgRQAAgQAVgMQAVgMAcAAg");
this.shape_121.setTransform(419.325,307.75);
this.shape_122 = new cjs.Shape();
this.shape_122.graphics.f("#000000").s().p("AgxAdQgVgMAAgRQAAgQAVgMQAVgMAcAAQAdAAAVAMQAVAMAAAQQAAARgVAMQgVAMgdAAQgcAAgVgMg");
this.shape_122.setTransform(419.325,307.75);
this.shape_123 = new cjs.Shape();
this.shape_123.graphics.f().s("#000000").ss(0.4,0,0,4).p("AxLA2QH6hyJsAHQDcADE/ATQCyALFlAV");
this.shape_123.setTransform(419.4098,363.5709);
this.shape_124 = new cjs.Shape();
this.shape_124.graphics.f("#000000").s().p("AAag1QDcADFAATIIWAgMgiXAA1QH6hyJrAHg");
this.shape_124.setTransform(419.45,363.5771);
this.shape_125 = new cjs.Shape();
this.shape_125.graphics.f().s("#000000").ss(0.4,0,0,4).p("AvWgFIjGA1IbrgmIJig6");
this.shape_125.setTransform(408.8908,369.4223);
this.shape_126 = new cjs.Shape();
this.shape_126.graphics.f("#000000").s().p("AvggFMAiHgAqIpiA5I7rAng");
this.shape_126.setTransform(409.875,369.4);
this.shape_127 = new cjs.Shape();
this.shape_127.graphics.f().s("#000000").ss(0.4,0,0,4).p("ARMDyIBghyQBZh4gogfQjbiumfg9Qljg1m4AjQmEAfk8BVQkzBSg3BSQgQAWAcAsQAQAaAzA6QAyA4AOAYQAYAngUAS");
this.shape_127.setTransform(419.3932,340.45);
this.shape_128 = new cjs.Shape();
this.shape_128.graphics.f("#000000").s().p("AxTDqQgOgYgyg4Qgzg6gQgaQgcgrAQgYQA3hQEzhSQE8hWGEgeQG4gkFjA1QGfA+DbCtQAoAfhZB4IhgByMgibAAxQAUgRgYgog");
this.shape_128.setTransform(419.3932,340.45);
this.shape_129 = new cjs.Shape();
this.shape_129.graphics.f("#FF8080").s().p("AgyAkQgVgPAAgVQAAgUAVgPQAVgPAdAAQAeAAAVAPQAVAPAAAUQAAAVgVAPQgVAPgeAAQgdAAgVgPg");
this.shape_129.setTransform(421.025,467.925);
this.shape_130 = new cjs.Shape();
this.shape_130.graphics.f("#000000").s().p("AgnAuQgQgTAAgbQAAgaAQgTQAQgTAXAAQAXAAARATQAQATAAAaQAAAbgQATQgRATgXAAQgXAAgQgTg");
this.shape_130.setTransform(450.6,438.425);
this.shape_131 = new cjs.Shape();
this.shape_131.graphics.f("#004455").s().p("AhSBbQgiglAAg2QAAg1AiglQAigmAwAAQAwAAAjAmQAiAlAAA1QAAA2giAlQgjAmgwAAQgwAAgigmg");
this.shape_131.setTransform(450.575,440.45);
this.shape_132 = new cjs.Shape();
this.shape_132.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AAAjcQBLAAA0BBQA1BAAABbQAABcg1BBQg1BBhKAAQhJAAg1hBQg0hBAAhcQAAhbA0hAQA1hBBJAAg");
this.shape_132.setTransform(450.6,439.3);
this.shape_133 = new cjs.Shape();
this.shape_133.graphics.f("#FFFFFF").s().p("Ah+CcQg0hAgBhcQABhbA0hAQA0hCBKAAQBKAAA1BCQA1BAgBBbQABBcg1BAQg1BChKAAQhJAAg1hCg");
this.shape_133.setTransform(450.6,439.3);
this.shape_134 = new cjs.Shape();
this.shape_134.graphics.f("#000000").s().p("AgnAuQgRgSAAgcQAAgaARgTQARgTAWAAQAXAAARATQARATAAAaQAAAcgRASQgRATgXAAQgXAAgQgTg");
this.shape_134.setTransform(392.775,438.75);
this.shape_135 = new cjs.Shape();
this.shape_135.graphics.f("#004455").s().p("AhSBbQgiglAAg2QAAg0AigmQAjgmAvAAQAxAAAiAmQAiAmAAA0QAAA1giAmQgiAmgxAAQgvAAgjgmg");
this.shape_135.setTransform(392.725,441.275);
this.shape_136 = new cjs.Shape();
this.shape_136.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AAAjcQBKAAA1BBQA0BAAABbQAABcg0BBQg1BAhKAAQhJAAg1hAQg0hBAAhcQAAhbA0hAQA1hBBJAAg");
this.shape_136.setTransform(392.275,439.625);
this.shape_137 = new cjs.Shape();
this.shape_137.graphics.f("#FFFFFF").s().p("Ah+CdQg0hBAAhcQAAhbA0hAQA1hBBJAAQBKAAA1BBQA0BAAABbQAABcg0BBQg1BAhKAAQhJAAg1hAg");
this.shape_137.setTransform(392.275,439.625);
this.shape_138 = new cjs.Shape();
this.shape_138.graphics.f("#FFE6D5").s().p("AjsKOQjhgKiPgaQiPgagmglQgbgcgThGQgShFgIhnQgKiGAGhcQADgqAFh9QAGhmABgBQABgBAygGQCNgQB/geQCBggCHgyQBcgjBmgwQBlgwC3heICohWIAjAFQCjAYBoBCQAUAMAfAgQAiAhAUAlQAUAlAOA0QAMAwAEA0QAFA1ACCQQADCCACAxQADA0AHAsQADAYgBAxQgCAxgGAhQgMBEgdA4QgVApgkAfQglAegrAMQg6AQh6ANQh7ANicAHQhIADicAAQigAAhDgEg");
this.shape_138.setTransform(420.0217,448.15);
this.shape_139 = new cjs.Shape();
this.shape_139.graphics.f("#E3DBDB").s().p("AFJCHIhMh0IhtgDQhpgEiSAAIiPAAIhJB1QhIB1gCgCQgCgDg1jwQg0jwACgBQPogKAFACQABABgwD3QgwD3gCACIAAAAQgDAAhKhyg");
this.shape_139.setTransform(421.6224,603.5593);
this.shape_140 = new cjs.Shape();
this.shape_140.graphics.f().s("#5599FF").ss(0.4,0,0,11.3).p("Ah7C0QhIgcgBgCQgBAAB4iyQBOh3AWggQAUgcADAAICNAMIAIACIj1GQQgBABhIgcg");
this.shape_140.setTransform(367.6496,534.6017);
this.shape_141 = new cjs.Shape();
this.shape_141.graphics.f("#5599FF").s().p("Ah5C0QhIgcgCgCQgBAAB4iyIBliXQATgcAEAAICNAMIAHACIj0GQIgBABQgDAAhFgcg");
this.shape_141.setTransform(367.4996,534.6017);
this.shape_142 = new cjs.Shape();
this.shape_142.graphics.f().s("#FFE6D5").ss(0.7,0,0,11.3).p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQggAQghgMg");
this.shape_142.setTransform(351.5303,559.5786);
this.shape_143 = new cjs.Shape();
this.shape_143.graphics.f("#FFE6D5").s().p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQgSAJgTAAQgOAAgOgFg");
this.shape_143.setTransform(351.5303,559.5786);
this.shape_144 = new cjs.Shape();
this.shape_144.graphics.f().s("#000000").ss(1.7,0,0,11.3).p("AtdnEIgHBuQgHCHABB1QAEF2BYBAQB0BVIkALQDlAFDYgNQDdgOB6gbQCXgiApjBQANg8AAhFIgCg4");
this.shape_144.setTransform(420.0188,470.5674);
this.shape_145 = new cjs.Shape();
this.shape_145.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AGSmPQi6BfhcAvQilBVh4AzQlTCNlUAZQgQFrgMBsQgdD7hKCFQhRhohAi6QhAi9gXjOQgZjfAhi2QAljMBoh3QDej7F2heQFBhQF8AtQFQAnENB2QEEBxArB1QBCCwgDHLQgDHahNEbQi3iJgujkQgShUgDh2QAAiGgBhAQgEjohLhqQhriWknggg");
this.shape_145.setTransform(417.8096,420.9346);
this.shape_146 = new cjs.Shape();
this.shape_146.graphics.f("#502D16").s().p("AxcJnQhAi9gXjOQgZjfAhi2QAljMBoh3QDej7F2heQFBhQF8AtQFQAnENB2QEEBxArB1QBCCwgDHLQgDHahNEbQi3iJgujkQgShUgDh2IgBjGQgEjohLhqQhriWknggIkWCOQilBVh4AzQlTCNlUAZQgQFrgMBsQgdD7hKCFQhRhohAi6g");
this.shape_146.setTransform(417.8096,420.44);
this.shape_147 = new cjs.Shape();
this.shape_147.graphics.f().s("#000000").ss(1.4,0,0,11.3).p("AAShCQAiAIATAaQATAagHAbQgHAbgeAOQgdAOgigJQgigIgTgaQgTgaAHgbQAIgcAdgNQAdgOAiAJg");
this.shape_147.setTransform(351.5369,559.575);
this.shape_148 = new cjs.Shape();
this.shape_148.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AoJkcIB2IaICjkGIHiAEICuEHIBqoi");
this.shape_148.setTransform(421.503,607.1279);
this.shape_149 = new cjs.Shape();
this.shape_149.graphics.f().s("#000000").ss(1.7,0,0,11.3).p("AlOlDImJKDIWvgKImPp3");
this.shape_149.setTransform(422.4828,546.3526);
this.shape_150 = new cjs.Shape();
this.shape_150.graphics.f("#5599FF").s().p("AlOlBIKXADIGPJ3I2vAJg");
this.shape_150.setTransform(422.475,546.15);
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_147},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_143},{t:this.shape_142},{t:this.shape_141},{t:this.shape_140},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115},{t:this.shape_114}]},120).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_147},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_143},{t:this.shape_142},{t:this.shape_141},{t:this.shape_140},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115},{t:this.shape_114}]},95).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_147},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_143},{t:this.shape_142},{t:this.shape_141},{t:this.shape_140},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115},{t:this.shape_114}]},49).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_147},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_143},{t:this.shape_142},{t:this.shape_141},{t:this.shape_140},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115},{t:this.shape_114}]},80).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_147},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_143},{t:this.shape_142},{t:this.shape_141},{t:this.shape_140},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115},{t:this.shape_114}]},159).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_147},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_143},{t:this.shape_142},{t:this.shape_141},{t:this.shape_140},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115},{t:this.shape_114}]},5).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_147},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_143},{t:this.shape_142},{t:this.shape_141},{t:this.shape_140},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115},{t:this.shape_114}]},11).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_147},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_143},{t:this.shape_142},{t:this.shape_141},{t:this.shape_140},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115},{t:this.shape_114}]},32).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115}]},71).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115}]},67).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115}]},64).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_139}]},29).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_139}]},63).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_139}]},48).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_139}]},62).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_139}]},52).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_139}]},12).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_139}]},71).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_139}]},37).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_139}]},24).to({state:[{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_139}]},12).wait(1));
// Rarm
this.instance_21 = new lib.Tween233("synched",0);
this.instance_21.setTransform(463.1,526.9,1,1,0,0,0,-15.4,-12.2);
this.instance_21._off = true;
this.timeline.addTween(cjs.Tween.get(this.instance_21).wait(120).to({_off:false},0).wait(95).to({startPosition:0},0).to({rotation:-54.9568,x:463.05,y:526.85},8).wait(41).to({startPosition:0},0).wait(80).to({startPosition:0},0).wait(159).to({startPosition:0},0).to({regY:-12.1,rotation:-0.7449,x:463.15,y:526.9},5).wait(43).to({rotation:-0.7449},0).wait(71).to({startPosition:0},0).wait(67).to({regX:-15.3,rotation:8.2108,x:463.25},0).wait(1).to({rotation:14.2536,x:463.2},0).wait(1).to({scaleX:0.9999,scaleY:0.9999,rotation:22.1909,x:463.15},0).wait(1).to({regX:-15.4,regY:-12.2,scaleX:1,scaleY:1,rotation:29.2534,y:526.85},0).wait(1).to({regX:-15.3,regY:-12.1,scaleX:0.9999,scaleY:0.9999,rotation:44.2531,x:463.25,y:527.05},0).wait(1).to({scaleX:1,scaleY:1,rotation:14.2536,x:463.2,y:526.9},0).wait(1).to({scaleX:0.9999,scaleY:0.9999,rotation:-0.7449},0).wait(1).to({rotation:-5.7198},0).wait(1).to({regY:-12,rotation:-9.4241,y:527},0).wait(2).to({scaleX:0.9857,scaleY:1.0854,rotation:-9.4239,x:463.1,y:526.95},0).wait(1).to({regX:-15.2,regY:-11.9,scaleX:0.9946,scaleY:1.0248,rotation:-9.4231,x:463.2},0).wait(1).to({scaleX:0.9945,scaleY:1.0249,rotation:-15.1403,y:527.05},0).wait(1).to({scaleY:1.0248,rotation:-21.336},0).wait(1).to({rotation:-36.3355,y:527.1},0).wait(1).to({startPosition:0},0).wait(49).to({regX:-13.2,regY:-10.3,rotation:-51.3349,x:465.8,y:527.15},0).wait(29).to({startPosition:0},0).wait(63).to({startPosition:0},0).wait(2).to({startPosition:0},0).to({regY:-10.2,rotation:-0.1135,y:527.35},7).wait(2).to({rotation:-0.1135},0).to({scaleX:0.9944,scaleY:1.0247,rotation:-23.6068,y:527.3},7).wait(30).to({startPosition:0},0).to({regY:-10.1,rotation:-0.1357,x:465.9,y:527.4},10).wait(52).to({rotation:-0.1357},0).to({regY:-10,rotation:-23.0853,x:465.95,y:527.45},4).wait(7).to({startPosition:0},0).wait(62).to({startPosition:0},0).to({regX:-13.1,regY:-9.9,rotation:-0.3908,x:466,y:527.55},12).wait(50).to({regX:-19.2,regY:-21.5,rotation:-0.3908,x:459.85,y:515.7},0).to({scaleY:1.0246,rotation:-41.8357},38).wait(11).to({regX:-18.6,scaleX:0.9943,rotation:-45.3898,x:460.45,y:515.75},0).wait(25));
// key
this.instance_22 = new lib.keysvg("synched",0);
this.instance_22.setTransform(418.6,515.1,0.5725,0.5197,139.8029,0,0,67.5,142.8);
this.instance_22._off = true;
this.instance_23 = new lib.Tween274("synched",0);
this.instance_23.setTransform(1113.95,391.15);
this.instance_23._off = true;
this.instance_24 = new lib.Tween275("synched",0);
this.instance_24.setTransform(1113.95,859.65);
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.instance_22}]},691).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},15).to({state:[{t:this.instance_22}]},38).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},3).to({state:[{t:this.instance_22}]},4).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},17).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_22}]},1).to({state:[{t:this.instance_23}]},1).to({state:[{t:this.instance_23}]},3).to({state:[{t:this.instance_24}]},17).to({state:[{t:this.instance_24}]},77).to({state:[]},1).wait(270));
this.timeline.addTween(cjs.Tween.get(this.instance_22).wait(691).to({_off:false},0).wait(1).to({rotation:109.8039,x:431.1,y:565.1},0).wait(1).to({regY:142.7,rotation:79.8053,x:447.8,y:602.35},0).wait(1).to({regX:67.7,rotation:49.8067,x:465.15,y:621.5},0).wait(1).to({regX:67.8,regY:142.8,scaleX:0.5724,rotation:8.0666,x:492.1,y:633.05},0).wait(1).to({rotation:-12.1573,x:520.85,y:632.9},0).wait(1).to({scaleY:0.5196,rotation:-42.1578,x:545.55,y:617.35},0).wait(1).to({rotation:-72.1557,x:566.1,y:589.5},0).wait(1).to({rotation:-87.1554,x:577.25,y:567.4},0).wait(1).to({regX:67.7,rotation:-109.8445,x:567.4,y:536.25},0).wait(15).to({startPosition:0},0).wait(38).to({x:589.05,y:501.7},0).wait(1).to({x:599.5,y:477.05},0).wait(1).to({x:620.75,y:441.65},0).wait(1).to({x:656.25,y:412.75},0).to({x:825.55,y:345},3).to({x:1040.05,y:401.2},4).wait(1).to({x:1073.9},0).wait(1).to({x:1084.2},0).wait(1).to({x:1097.55,y:396.2},0).wait(1).to({x:1114.05,y:391},0).wait(17).to({regX:67.6,scaleX:0.511,x:1114},0).wait(1).to({regX:67.5,scaleX:0.4417,x:1114.05},0).wait(1).to({regX:67.4,scaleX:0.2738},0).wait(1).to({regX:67.2,regY:142.9,scaleX:0.129},0).wait(1).to({regX:66.6,scaleX:0.0462},0).wait(1).to({regX:65.8,regY:143,scaleX:0.0059,rotation:0,skewX:-109.8445,skewY:70.2067,x:1114.1,y:390.95},0).wait(1).to({regX:68.7,scaleX:0.0337,skewY:-109.7881,x:1114,y:390.85},0).wait(1).to({regX:68.5,scaleX:0.0966,skewY:-109.7853},0).wait(1).to({regX:67.9,scaleX:0.193,skewY:-109.7861,y:390.95},0).wait(1).to({regX:67.7,regY:143.1,scaleX:0.2648,skewY:-109.7817,x:1114.05},0).wait(1).to({regX:67.4,scaleX:0.4139,skewY:-109.7804,y:391},0).wait(1).to({regX:67.3,regY:143.2,scaleX:0.4555,skewY:-109.7806,x:1114.1},0).to({_off:true},1).wait(368));
this.timeline.addTween(cjs.Tween.get(this.instance_23).wait(796).to({_off:false},0).wait(3).to({startPosition:0},0).to({_off:true,y:859.65},17).wait(348));
// lock
this.instance_25 = new lib.locksvg("synched",0);
this.instance_25.setTransform(1136.25,305.15,1,1,0,0,0,81.2,108.9);
this.instance_25.alpha = 0;
this.instance_25._off = true;
this.instance_26 = new lib.path6892();
this.instance_26.setTransform(1135.6,385.15,1,1,0,0,0,21.2,18.9);
this.instance_26.alpha = 0.9102;
this.instance_27 = new lib.path6784();
this.instance_27.setTransform(1134.9,354.7,1,1,0,0,0,15.1,14.3);
this.instance_27.alpha = 0.9102;
this.instance_28 = new lib.path6730();
this.instance_28.setTransform(1088.75,303.65,1,1,-4.6957,0,0,22.7,107.4);
this.instance_28.alpha = 0.9102;
this.instance_29 = new lib.rect6622();
this.instance_29.setTransform(1136.25,364.75,1,1,0,0,0,81.2,69.4);
this.instance_29.alpha = 0.9102;
this.instance_30 = new lib.Tween270("synched",0);
this.instance_30.setTransform(1122.75,294.85);
this.instance_30._off = true;
this.instance_31 = new lib.Tween271("synched",0);
this.instance_31.setTransform(1122.75,763.35);
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.instance_25}]},609).to({state:[{t:this.instance_25}]},13).to({state:[{t:this.instance_25}]},1).to({state:[{t:this.instance_25}]},130).to({state:[{t:this.instance_25}]},32).to({state:[{t:this.instance_25}]},11).to({state:[{t:this.instance_29},{t:this.instance_28,p:{rotation:-4.6957}},{t:this.instance_27},{t:this.instance_26}]},1).to({state:[{t:this.instance_29},{t:this.instance_28,p:{rotation:-11.6628}},{t:this.instance_27},{t:this.instance_26}]},1).to({state:[{t:this.instance_30}]},1).to({state:[{t:this.instance_31}]},17).to({state:[{t:this.instance_31}]},77).to({state:[]},1).wait(270));
this.timeline.addTween(cjs.Tween.get(this.instance_25).wait(609).to({_off:false},0).to({alpha:1},13).wait(1).to({startPosition:0},0).wait(130).to({startPosition:0},0).wait(32).to({startPosition:0},0).wait(11).to({startPosition:0},0).to({_off:true},1).wait(367));
this.timeline.addTween(cjs.Tween.get(this.instance_30).wait(799).to({_off:false},0).to({_off:true,y:763.35},17).wait(348));
// cell
this.instance_32 = new lib.cellsvg("synched",0);
this.instance_32.setTransform(1842.35,223.65,1,1,0,0,0,163,158.7);
this.instance_32._off = true;
this.timeline.addTween(cjs.Tween.get(this.instance_32).wait(519).to({_off:false},0).to({x:1260},32).wait(71).to({startPosition:0},0).wait(131).to({startPosition:0},0).wait(29).to({startPosition:0},0).wait(90).to({startPosition:0},0).to({alpha:0},21).to({_off:true},1).wait(270));
// move4
this.shape_151 = new cjs.Shape();
this.shape_151.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("AxYBFQAIgDBCgSQBBgRAbgGQBjgWB7gSQB7gTBugLQCOgOBygFQBzgFCiAAQC3AACMAGQCPAGFyAXQDjAOAIAAQAPAAkPAaQjkAWg9AEQg9ADkyAGIz7AcQgqACAEgCg");
this.shape_151.setTransform(409.297,367.8571);
this.shape_152 = new cjs.Shape();
this.shape_152.graphics.f("#D35F5F").s().p("AxYBFQAIgDBCgSQBBgRAbgGQBjgWB7gSQB7gTBugLQCOgOBygFQBzgFCiAAQC3AACMAGQCPAGFyAXIDrAOQAPAAkPAaQjkAWg9AEQg9ADkyAGIz7AcIghABQgHAAACgBg");
this.shape_152.setTransform(409.297,367.8571);
this.shape_153 = new cjs.Shape();
this.shape_153.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("Aw9EKQgDgSgRgYQgRgagqgwQgsgygRgZQgSgagDgSQgCgRAZgVQBXhJEGhFQEHhFE/giQBagKCIgIQA2gECiAAQCjAAAvAEQEWATDFA1QDrA/CTBrQAXASAEAHQAFAHgDAPQgFAdgjA1QgkA2gzA5IgPAPIlKgUQkpgTiTgGQiXgHiegCQpBgInVBjQgwAKgFAAQgFAAgCgIg");
this.shape_153.setTransform(418.2988,341.8);
this.shape_154 = new cjs.Shape();
this.shape_154.graphics.f("#D35F5F").s().p("Aw9EJQgDgRgRgYQgRgagqgxQgsgxgRgaQgSgZgDgSQgCgRAZgUQBXhKEGhFQEHhFE/ghQBagKCIgJQA2gDCigBQCjABAvADQEWAUDFA0QDrA/CTBsQAXAQAEAIQAFAGgDAQQgFAdgjA1QgkA2gzA4IgPAQIlKgUQkpgTiTgGQiXgIiegBQpBgInVBjQgwAKgFAAQgFABgCgKg");
this.shape_154.setTransform(418.2988,341.8);
this.shape_155 = new cjs.Shape();
this.shape_155.graphics.f().s("#D35F5F").ss(0.3,0,0,4).p("AglAVQgdgPAOgQQAOgRAnAAQAVgBAQAJQARAIACALQAEARgmAIQglAIgXgMg");
this.shape_155.setTransform(418.323,309.5206);
this.shape_156 = new cjs.Shape();
this.shape_156.graphics.f("#D35F5F").s().p("AglAVQgdgPAOgQQAOgRAnAAQAVgBAQAJQARAIACALQAEARgmAIQgPADgMAAQgTAAgOgHg");
this.shape_156.setTransform(418.323,309.5206);
this.shape_157 = new cjs.Shape();
this.shape_157.graphics.f().s("#000000").ss(0.4,0,0,4).p("AAAgoQAdAAAVAMQAVAMAAAQQAAARgVAMQgVAMgdAAQgcAAgVgMQgVgMAAgRQAAgQAVgMQAUgMAdAAg");
this.shape_157.setTransform(418.275,309.5);
this.shape_158 = new cjs.Shape();
this.shape_158.graphics.f("#000000").s().p("AgxAdQgVgMAAgRQAAgQAVgMQAUgMAdAAQAdAAAVAMQAVAMAAAQQAAARgVAMQgVAMgdAAQgcAAgVgMg");
this.shape_158.setTransform(418.275,309.5);
this.shape_159 = new cjs.Shape();
this.shape_159.graphics.f().s("#000000").ss(0.4,0,0,4).p("AxLA2QH7hyJrAHQDcADE/ATQCyALFlAV");
this.shape_159.setTransform(418.3604,365.2737);
this.shape_160 = new cjs.Shape();
this.shape_160.graphics.f("#000000").s().p("AAag1QDdADE/ATIIWAgMgiXAA1QH6hyJrAHg");
this.shape_160.setTransform(418.4,365.2799);
this.shape_161 = new cjs.Shape();
this.shape_161.graphics.f().s("#000000").ss(0.4,0,0,4).p("AvWgGIjGA2IbrgmIJig6");
this.shape_161.setTransform(407.841,371.1723);
this.shape_162 = new cjs.Shape();
this.shape_162.graphics.f("#000000").s().p("AvggGMAiHgAqIpiA6I7rAmg");
this.shape_162.setTransform(408.825,371.15);
this.shape_163 = new cjs.Shape();
this.shape_163.graphics.f().s("#000000").ss(0.4,0,0,4).p("ARMDyIBghyQBZh4gogeQjbiumfg+Qljg1m4AkQmEAfk8BUQkzBTg3BRQgQAXAcArQAQAbAzA5QAyA4AOAYQAYAogUAR");
this.shape_163.setTransform(418.3432,342.188);
this.shape_164 = new cjs.Shape();
this.shape_164.graphics.f("#000000").s().p("AxTDqQgOgYgyg4Qgzg5gQgbQgcgrAQgXQA3hREzhTQE8hUGEgfQG4gkFjA1QGfA+DbCuQAoAehZB4IhgByMgibAAxQAUgRgYgog");
this.shape_164.setTransform(418.3432,342.188);
this.shape_165 = new cjs.Shape();
this.shape_165.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AGqm6QoIEFjCBLQj3BfkjAgQgMCAgPE2QgXEQhGB+QhRhohAi6QhBi9gXjOQgYjfAgi2QAljMBph3QDcj5F1gxQE3gqF1BmQCfAsCYBBQCMA8BnAiQBoAhAkgcQAjgdB1CvQB2CvgaGbQgaGchLDvQiihjg/oQQg+oPl0hVg");
this.shape_165.setTransform(415.3838,425.2201);
this.shape_166 = new cjs.Shape();
this.shape_166.graphics.f("#502D16").s().p("AxDI8QhBi9gXjOQgYjfAgi2QAljMBph3QDcj5F1gxQE3gqF1BmQCfAsCYBBQCMA8BnAiQBoAhAkgcQAjgdB1CvQB2CvgaGbQgaGchLDvQiihjg/oQQg+oPl0hVQoIEFjCBLQj3BfkjAgQgMCAgPE2QgXEQhGB+QhRhohAi6g");
this.shape_166.setTransform(415.3838,424.7249);
this.shape_167 = new cjs.Shape();
this.shape_167.graphics.f("#000000").s().p("AgnAuQgRgTAAgbQAAgaARgTQARgTAWAAQAXAAARATQARATAAAaQAAAbgRATQgRATgXAAQgWAAgRgTg");
this.shape_167.setTransform(461.175,438.1);
this.shape_168 = new cjs.Shape();
this.shape_168.graphics.f("#004455").s().p("AhSBbQgigmAAg1QAAg0AigmQAigmAwAAQAwAAAjAmQAiAlAAA1QAAA1giAmQgiAmgxAAQgwAAgigmg");
this.shape_168.setTransform(460.425,438.475);
this.shape_169 = new cjs.Shape();
this.shape_169.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AAAjcQBKAAA1BBQA0BBAABaQAABcg0BBQg1BBhKAAQhJAAg1hBQg0hBAAhcQAAhaA0hBQA1hBBJAAg");
this.shape_169.setTransform(459.475,439.3);
this.shape_170 = new cjs.Shape();
this.shape_170.graphics.f("#FFFFFF").s().p("Ah+CdQg0hBAAhcQAAhaA0hBQA1hBBJAAQBKAAA1BBQA0BBAABaQAABcg0BBQg1BAhKABQhJgBg1hAg");
this.shape_170.setTransform(459.475,439.3);
this.shape_171 = new cjs.Shape();
this.shape_171.graphics.f("#000000").s().p("AgnAuQgRgTAAgbQAAgaARgTQAQgTAXAAQAXAAARATQARATAAAaQAAAbgRATQgRATgXAAQgXAAgQgTg");
this.shape_171.setTransform(402.475,438.075);
this.shape_172 = new cjs.Shape();
this.shape_172.graphics.f("#004455").s().p("AhSBbQgigmAAg1QAAg1AiglQAigmAwAAQAwAAAjAmQAiAlAAA1QAAA1giAmQgjAmgwAAQgwAAgigmg");
this.shape_172.setTransform(401.725,438.45);
this.shape_173 = new cjs.Shape();
this.shape_173.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AAAjcQBKAAA1BBQA0BAAABbQAABcg0BAQg1BBhKAAQhJAAg1hBQg0hAAAhcQAAhbA0hAQA1hBBJAAg");
this.shape_173.setTransform(400.775,439.3);
this.shape_174 = new cjs.Shape();
this.shape_174.graphics.f("#FFFFFF").s().p("Ah+CdQg0hBAAhcQAAhbA0hAQA1hCBJABQBKgBA1BCQA0BAAABbQAABcg0BBQg1BBhKgBQhJABg1hBg");
this.shape_174.setTransform(400.775,439.3);
this.shape_175 = new cjs.Shape();
this.shape_175.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AgmjSID2FqIiYA6IkGmVg");
this.shape_175.setTransform(475.9195,533.6734);
this.shape_176 = new cjs.Shape();
this.shape_176.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AAijYIjwFtICiBDID6mig");
this.shape_176.setTransform(368.6754,534.682);
this.shape_177 = new cjs.Shape();
this.shape_177.graphics.f("#FF8080").s().p("AgyAkQgVgPAAgVQAAgUAVgPQAVgPAdAAQAeAAAVAPQAVAPAAAUQAAAVgVAPQgVAPgeAAQgdAAgVgPg");
this.shape_177.setTransform(431.475,468.525);
this.shape_178 = new cjs.Shape();
this.shape_178.graphics.f("#FFE6D5").s().p("AjtKPQjggLiQgaQiPgaglglQgbgbgThGQgThGgHhnQgKiAAGhiIAIinQAFhlACgCQAAgBAzgGQCNgQB/geQCBggCGgzQBdgjBmgvQBmgxC2hdICohWIAjAFQCiAXBpBCQAWAQAdAcQAhAjAUAkQAUAkAOA1QANAvAEA1QAEAzADCSQACB/ADA0QADAyAHAuQAEAYgCAxQgCAxgGAhQgLBBgeA7QgWAqgkAeQgkAegrAMQg6AQh6ANQh7AOidAGQhHADicAAQigAAhEgDg");
this.shape_178.setTransform(420.0708,448.15);
this.shape_179 = new cjs.Shape();
this.shape_179.graphics.f("#E3DBDB").s().p("AFJCHIhMh0IhtgDQhqgEiRAAIiPAAIhIB1QhJB1gCgCQgCgDg0jwQg1jwACgBQPpgKAEACQACABgwD3QgxD3gBACIAAAAQgEAAhKhyg");
this.shape_179.setTransform(421.6252,603.5593);
this.shape_180 = new cjs.Shape();
this.shape_180.graphics.f().s("#5599FF").ss(0.4,0,0,11.3).p("Ah7C0QhIgcgBgCIB3iyQBRh7ATgcQAUgcADAAICOAMIAHACIj0GQQgBABhJgcg");
this.shape_180.setTransform(367.6037,534.6004);
this.shape_181 = new cjs.Shape();
this.shape_181.graphics.f("#5599FF").s().p("Ah6C0QhIgcgBgCIB3iyIBkiXQAUgcADAAICOAMIAHACIj0GQIAAABIhKgcg");
this.shape_181.setTransform(367.525,534.6004);
this.shape_182 = new cjs.Shape();
this.shape_182.graphics.f().s("#5599FF").ss(0.4,0,0,11.3).p("AhHAJIh9jFQgBgCAygEIBjgJIAGAAIB3CvQB4CtAAACQAAABhIAcIhIAcQgBABh7jEg");
this.shape_182.setTransform(476.6728,533.9253);
this.shape_183 = new cjs.Shape();
this.shape_183.graphics.f("#5599FF").s().p("AhHAJIh9jFQgBgCAygEIBjgJIAGAAIB3CvQB4CtAAACQAAABhIAcIhIAcIAAAAQgBAAh7jDg");
this.shape_183.setTransform(476.6728,533.9253);
this.shape_184 = new cjs.Shape();
this.shape_184.graphics.f().s("#FFE6D5").ss(0.7,0,0,11.3).p("AgpA1QgQgIgJgNQgNgUAKgXQAKgYAagOQAZgNAYADQAZADATARQAKAKADAFQACAFAAAOQAAALgCAGQgCAHgHAIQgTAYgfAHQgeAIgZgNg");
this.shape_184.setTransform(493.2994,558.592);
this.shape_185 = new cjs.Shape();
this.shape_185.graphics.f("#FFE6D5").s().p("AgpA1QgQgIgJgNQgNgUAKgXQAKgYAagOQAZgNAYADQAZADATARQAKAKADAFQACAFAAAOQAAALgCAGQgCAHgHAIQgTAYgfAHQgLADgKAAQgSAAgQgIg");
this.shape_185.setTransform(493.2994,558.592);
this.shape_186 = new cjs.Shape();
this.shape_186.graphics.f().s("#FFE6D5").ss(0.7,0,0,11.3).p("AgXA4QgggMgNgaQgOgaAQgXQAagoA5AQQA6AQAAAuQAAAdggAQQghAQghgMg");
this.shape_186.setTransform(351.5608,559.5786);
this.shape_187 = new cjs.Shape();
this.shape_187.graphics.f("#FFE6D5").s().p("AgXA4QgggMgNgaQgOgaAQgXQAagoA5AQQA6AQAAAuQAAAdggAQQgTAJgTAAQgNAAgPgFg");
this.shape_187.setTransform(351.5608,559.5786);
this.shape_188 = new cjs.Shape();
this.shape_188.graphics.f().s("#000000").ss(1.7,0,0,11.3).p("Atdl1IgHBuQgHCGABB2QAEF2BYBAQB0BVIkALQDlAFDYgNQDdgOB6gbQBTgTAzhIQAqg6ARhYQAMg8AAhLQAAgBgGgwQgHg0gCgkIgIjMQgCgpABhCQABhCgBgZIgFhe");
this.shape_188.setTransform(420.0688,462.6756);
this.shape_189 = new cjs.Shape();
this.shape_189.graphics.f().s("#000000").ss(1.4,0,0,11.3).p("AARBDQAjgIATgaQATgZgHgbQgIgcgdgOQgegNghAIQgiAJgTAZQgTAaAHAbQAHAcAeANQAdAOAhgJg");
this.shape_189.setTransform(493.3631,558.6);
this.shape_190 = new cjs.Shape();
this.shape_190.graphics.f().s("#000000").ss(1.4,0,0,11.3).p("AARhCQAjAIATAaQATAagHAbQgIAbgdAOQgeAOghgJQgigIgTgaQgTgaAHgbQAHgcAegNQAdgOAhAJg");
this.shape_190.setTransform(351.5631,559.575);
this.shape_191 = new cjs.Shape();
this.shape_191.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AoJkcIB2IaICjkGIHjAEICtEHIBqoi");
this.shape_191.setTransform(421.528,607.1307);
this.shape_192 = new cjs.Shape();
this.shape_192.graphics.f().s("#000000").ss(1.7,0,0,11.3).p("AlPlDImIKDIWvgKImQp3");
this.shape_192.setTransform(422.5338,546.3528);
this.shape_193 = new cjs.Shape();
this.shape_193.graphics.f("#5599FF").s().p("AlPlBIKXACIGQJ4I2vAJg");
this.shape_193.setTransform(422.525,546.15);
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_193},{t:this.shape_192},{t:this.shape_191},{t:this.shape_190},{t:this.shape_189},{t:this.shape_188},{t:this.shape_187},{t:this.shape_186},{t:this.shape_185},{t:this.shape_184},{t:this.shape_183},{t:this.shape_182},{t:this.shape_181},{t:this.shape_180},{t:this.shape_179},{t:this.shape_178},{t:this.shape_177},{t:this.shape_176},{t:this.shape_175},{t:this.shape_174},{t:this.shape_173},{t:this.shape_172},{t:this.shape_171},{t:this.shape_170},{t:this.shape_169},{t:this.shape_168},{t:this.shape_167},{t:this.shape_166},{t:this.shape_165},{t:this.shape_164},{t:this.shape_163},{t:this.shape_162},{t:this.shape_161},{t:this.shape_160},{t:this.shape_159},{t:this.shape_158},{t:this.shape_157},{t:this.shape_156},{t:this.shape_155},{t:this.shape_154},{t:this.shape_153},{t:this.shape_152},{t:this.shape_151}]},117).to({state:[{t:this.shape_193},{t:this.shape_192},{t:this.shape_191},{t:this.shape_190},{t:this.shape_189},{t:this.shape_188},{t:this.shape_187},{t:this.shape_186},{t:this.shape_185},{t:this.shape_184},{t:this.shape_183},{t:this.shape_182},{t:this.shape_181},{t:this.shape_180},{t:this.shape_179},{t:this.shape_178},{t:this.shape_177},{t:this.shape_176},{t:this.shape_175},{t:this.shape_174},{t:this.shape_173},{t:this.shape_172},{t:this.shape_171},{t:this.shape_170},{t:this.shape_169},{t:this.shape_168},{t:this.shape_167},{t:this.shape_166},{t:this.shape_165},{t:this.shape_164},{t:this.shape_163},{t:this.shape_162},{t:this.shape_161},{t:this.shape_160},{t:this.shape_159},{t:this.shape_158},{t:this.shape_157},{t:this.shape_156},{t:this.shape_155},{t:this.shape_154},{t:this.shape_153},{t:this.shape_152},{t:this.shape_151}]},2).to({state:[]},1).wait(1044));
// move3
this.shape_194 = new cjs.Shape();
this.shape_194.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("AQlhbQjFgbkRgGQiNgCh0AEQhxADilANQi0APiNARQiLARlxA1IkiAmQgLABB7BaQAEADCRgOQBJgGBHgIQACgBHkgYIKXgnQDDgLBggIQAUgBA0gFQA4gFANgDQANgOBRglQA/gcgTgPg");
this.shape_194.setTransform(408.3488,379.1042);
this.shape_195 = new cjs.Shape();
this.shape_195.graphics.f("#D35F5F").s().p("Au3B9Qh7haALgBIEigmQFxg1CLgRQCNgRC0gPQClgNBxgDQB0gECNACQERAGDFAbQATAPg/AcQhRAlgNAOQgNADg4AFIhIAGQhgAIjDALIqXAnQnkAYgCABIiQAOQh3AMgYAAIgGgBg");
this.shape_195.setTransform(408.3488,379.1042);
this.shape_196 = new cjs.Shape();
this.shape_196.graphics.f().s("#000000").ss(0.4,0,0,4).p("ARChvIirBrI9fB0Ih5he");
this.shape_196.setTransform(409.2547,381.1437);
this.shape_197 = new cjs.Shape();
this.shape_197.graphics.f("#000000").s().p("AxBASMAiDgCBIirBrI9fB0g");
this.shape_197.setTransform(409.275,381.1);
this.shape_198 = new cjs.Shape();
this.shape_198.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("AROCgQACgRAPgaQAPgbAmgzQAng0AQgbQAPgbACgSQABgRgbgUQhchCkLgwQkLgwlBgJQhcgCiHACQg0ABijANQiiAMgvAHQiRAWhvAaQhxAahkAkQjjBPiLB3QgWATgEAIQgEAIAEAQQAHAcAoAyQAnAyA4A1IAQAPIFIgvQEggpCYgTQCTgSChgPQI/g2HbA/QAxAGAFAAQAFAAAAgKg");
this.shape_198.setTransform(407.7598,351.7199);
this.shape_199 = new cjs.Shape();
this.shape_199.graphics.f("#D35F5F").s().p("AxLEYQg4g1gngyQgogygHgcQgEgQAEgIQAEgIAWgTQCLh3DjhPQBkgkBxgaQBvgaCRgWQAvgHCigMQCjgNA0gBQCHgCBcACQFBAJELAwQELAwBcBCQAbAUgBARQgCASgPAbQgQAbgnA0QgmAzgPAbQgPAagCARQAAAKgFAAQgFAAgxgGQnbg/o/A2QihAPiTASQiYATkgApIlIAvg");
this.shape_199.setTransform(407.7598,351.7056);
this.shape_200 = new cjs.Shape();
this.shape_200.graphics.f().s("#D35F5F").ss(0.3,0,0,4).p("AAoASQAbgRgPgPQgPgQgnADQgVACgQAKQgQAJgBALQgCARAmAFQAlAFAXgOg");
this.shape_200.setTransform(405.0848,317.6289);
this.shape_201 = new cjs.Shape();
this.shape_201.graphics.f("#D35F5F").s().p("AgUAbQgmgFACgRQABgLAQgJQAQgKAVgCQAngDAPAQQAPAPgbARQgRAKgXAAIgUgBg");
this.shape_201.setTransform(405.0848,317.6289);
this.shape_202 = new cjs.Shape();
this.shape_202.graphics.f().s("#000000").ss(0.4,0,0,4).p("AgCgoQgeADgTANQgUAOABAQQACARAVAKQAWAKAcgCQAegCATgOQAUgOgBgQQgCgRgVgKQgWgKgcACg");
this.shape_202.setTransform(405.125,317.626);
this.shape_203 = new cjs.Shape();
this.shape_203.graphics.f("#000000").s().p("AgvAhQgVgKgCgRQgBgQAUgOQATgNAegDQAcgCAWAKQAVAKACARQABAQgUAOQgTAOgeACIgKAAQgWAAgSgIg");
this.shape_203.setTransform(405.125,317.626);
this.shape_204 = new cjs.Shape();
this.shape_204.graphics.f().s("#000000").ss(0.4,0,0,4).p("ARLgmQoChLppA4QjbAUk8AsQliAzixAY");
this.shape_204.setTransform(409.6033,373.8759);
this.shape_205 = new cjs.Shape();
this.shape_205.graphics.f("#000000").s().p("Ao3AHQE8gsDbgUQJpg4ICBLMgiVAB4QCygYFhgzg");
this.shape_205.setTransform(409.6,373.8781);
this.shape_206 = new cjs.Shape();
this.shape_206.graphics.f().s("#000000").ss(0.4,0,0,4).p("Aw1E2Qg4gygxg4QhihxAlgjQDNi9GZheQFdhRG5ABQGGAAFCA7QE5A6A9BNQARAWgYAuQgOAcguA8QguA8gMAZQgVApAWAP");
this.shape_206.setTransform(407.7204,352.0872);
this.shape_207 = new cjs.Shape();
this.shape_207.graphics.f("#000000").s().p("AyeDLQhihxAlgjQDNi9GZheQFdhRG5ABQGGAAFCA8QE5A6A9BNQARAVgYAuQgOAcguA8QguA8gMAZQgVAqAWAPMgiYAB9Qg4gxgxg5g");
this.shape_207.setTransform(407.7204,352.1498);
this.shape_208 = new cjs.Shape();
this.shape_208.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AIFm6QgNAGkUCIQkUCHheAoQheAohaAYQhbAZk5BzQgCBZAABHQgBBHgQBjQgRBkgcCdQgZB+gkBBQhShog/i6QhBi9gXjOQgZjfAhi2QAljMBoh3QDdj5F1gxQChgWC3ASQClARCvAvQCfAsCYBBQCLA8ByBGQBoBBAqAyQAnAuACA4QALEGgCBOQgJElhJCRQg5lZiGjeQh3jHi+h0g");
this.shape_208.setTransform(405.7022,425.2347);
this.shape_209 = new cjs.Shape();
this.shape_209.graphics.f("#502D16").s().p("AvoI8QhBi9gXjOQgZjfAhi2QAljMBoh3QDdj5F1gxQChgWC3ASQClARCvAvQCfAsCYBBQCLA8ByBGQBoBBAqAyQAnAuACA4QALEGgCBOQgJElhJCRQg5lZiGjeQh3jHi+h0IkhCOQkUCHheAoQheAohaAYQhbAZk5BzIgCCgQgBBHgQBjIgtEBQgZB+gkBBQhShog/i6g");
this.shape_209.setTransform(405.7022,424.7399);
this.shape_210 = new cjs.Shape();
this.shape_210.graphics.f("#000000").s().p("AgnAuQgRgTAAgbQAAgaARgTQARgTAWAAQAYAAAQATQAQATABAaQgBAbgQATQgQATgYAAQgWAAgRgTg");
this.shape_210.setTransform(479.5,435.375);
this.shape_211 = new cjs.Shape();
this.shape_211.graphics.f("#004455").s().p("AhSBbQgiglAAg2QAAg1AiglQAjgmAvAAQAwAAAjAmQAiAlAAA1QAAA2giAlQgjAmgwAAQgvAAgjgmg");
this.shape_211.setTransform(478.75,435.75);
this.shape_212 = new cjs.Shape();
this.shape_212.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AAAjdQBLAAA0BBQA1BBAABbQAABcg1BAQg0BBhLAAQhJAAg1hBQg0hAAAhcQAAhbA0hBQA1hBBJAAg");
this.shape_212.setTransform(477.8,436.6);
this.shape_213 = new cjs.Shape();
this.shape_213.graphics.f("#FFFFFF").s().p("Ah+CdQg1hBAAhcQAAhbA1hAQA0hBBKAAQBKAAA1BBQA0BAAABbQAABcg0BBQg1BAhKABQhKgBg0hAg");
this.shape_213.setTransform(477.8,436.6);
this.shape_214 = new cjs.Shape();
this.shape_214.graphics.f("#000000").s().p("AgnAuQgQgTgBgbQABgaAQgTQAQgTAXAAQAXAAARATQAQATABAaQgBAbgQATQgRATgXAAQgXAAgQgTg");
this.shape_214.setTransform(417.8,435.375);
this.shape_215 = new cjs.Shape();
this.shape_215.graphics.f("#004455").s().p("AhSBbQgigmAAg1QAAg1AiglQAjgmAvAAQAxAAAiAmQAiAlAAA1QAAA1giAmQgiAmgxAAQgvAAgjgmg");
this.shape_215.setTransform(417.025,435.75);
this.shape_216 = new cjs.Shape();
this.shape_216.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AAAjcQBLAAA0BBQA0BAAABbQAABcg0BBQg1BBhKAAQhJAAg1hBQg0hBAAhcQAAhbA0hAQA1hBBJAAg");
this.shape_216.setTransform(416.075,436.6);
this.shape_217 = new cjs.Shape();
this.shape_217.graphics.f("#FFFFFF").s().p("Ah+CdQg0hBAAhcQAAhbA0hAQA1hCBJABQBLgBA0BCQA0BAAABbQAABcg0BBQg1BBhKgBQhJABg1hBg");
this.shape_217.setTransform(416.075,436.6);
this.shape_218 = new cjs.Shape();
this.shape_218.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AgmjSID2FqIiYA6IkGmVg");
this.shape_218.setTransform(475.345,533.6734);
this.shape_219 = new cjs.Shape();
this.shape_219.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AAijYIjwFtIChBDID7mig");
this.shape_219.setTransform(368.1009,534.682);
this.shape_220 = new cjs.Shape();
this.shape_220.graphics.f("#FF8080").s().p("AgyAkQgVgPAAgVQAAgUAVgPQAVgPAdAAQAeAAAVAPQAVAPAAAUQAAAVgVAPQgVAPgeAAQgdAAgVgPg");
this.shape_220.setTransform(455.425,463.825);
this.shape_221 = new cjs.Shape();
this.shape_221.graphics.f("#FFE6D5").s().p("AjsKPQjhgLiPgaQiQgaglglQgbgbgThGQgShGgIhnQgKiAAGhiIAIinQAFhlACgCQABgBAygGQCNgQB/gfQCBgfCHgzQBdgiBlgwQBmgxC2hdICohWIAjAFQCjAXBoBCQAWAPAdAdQAiAjAUAkQAUAlAOA0QAMAwAEA0QAFA2ACCPQACCAADAzQADAzAHAtQADAYgBAxQgCAxgGAiQgMBBgdA6QgWAqgkAeQgkAegrAMQg6AQh6ANQh7AOicAGQhIADicAAQigAAhDgDg");
this.shape_221.setTransform(419.46,448.15);
this.shape_222 = new cjs.Shape();
this.shape_222.graphics.f("#E3DBDB").s().p("AFJCHIhMh0IhtgDQhpgEiSAAIiPAAIhIB1QhIB0gDgBQgCgDg0jwQg1jwACgBQPpgKAEACQACABgwD3QgwD3gCACIAAAAQgEAAhKhyg");
this.shape_222.setTransform(421.0252,603.5593);
this.shape_223 = new cjs.Shape();
this.shape_223.graphics.f().s("#5599FF").ss(0.4,0,0,11.3).p("Ah7C0IhJgeQgBAAB3iyQBPh3AWggQAUgcADAAICNAMIAIACIj1GQQAAABhJgcg");
this.shape_223.setTransform(367.0996,534.6004);
this.shape_224 = new cjs.Shape();
this.shape_224.graphics.f("#5599FF").s().p("Ah6C0IhJgeQgBAAB4iyIBliXQATgcADAAICOAMIAHACIj0GQIgBABIhJgcg");
this.shape_224.setTransform(366.9496,534.6004);
this.shape_225 = new cjs.Shape();
this.shape_225.graphics.f().s("#5599FF").ss(0.4,0,0,11.3).p("AhHAJIh9jFQgBgCAygEIBjgJIAGAAIB3CvQB4CuAAABIiQA5QAAABh8jEg");
this.shape_225.setTransform(476.074,533.9251);
this.shape_226 = new cjs.Shape();
this.shape_226.graphics.f("#5599FF").s().p("AhHAJIh9jFQgBgCAygEIBjgJIAGAAIB3CvQB4CuAAABIiQA5IAAAAIh8jDg");
this.shape_226.setTransform(476.074,533.9251);
this.shape_227 = new cjs.Shape();
this.shape_227.graphics.f().s("#FFE6D5").ss(0.7,0,0,11.3).p("AgpA1QgQgIgJgNQgNgUAJgXQAKgYAagOQAagNAYADQAYADATARQALAKACAFQACAFAAAOQAAALgCAGQgCAHgHAIQgSAYgfAHQgeAIgZgNg");
this.shape_227.setTransform(492.7038,558.592);
this.shape_228 = new cjs.Shape();
this.shape_228.graphics.f("#FFE6D5").s().p("AgpA1QgQgIgJgNQgNgUAJgXQAKgYAagOQAagNAYADQAYADATARQALAKACAFQACAFAAAOQAAALgCAGQgCAHgHAIQgSAYgfAHQgLADgKAAQgSAAgQgIg");
this.shape_228.setTransform(492.7038,558.592);
this.shape_229 = new cjs.Shape();
this.shape_229.graphics.f().s("#FFE6D5").ss(0.7,0,0,11.3).p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQggAQghgMg");
this.shape_229.setTransform(350.9803,559.5786);
this.shape_230 = new cjs.Shape();
this.shape_230.graphics.f("#FFE6D5").s().p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQgSAJgTAAQgOAAgOgFg");
this.shape_230.setTransform(350.9803,559.5786);
this.shape_231 = new cjs.Shape();
this.shape_231.graphics.f().s("#000000").ss(1.7,0,0,11.3).p("Atdl1IgHBuQgHCHABB1QAEF2BYBAQB0BVIkALQDlAFDYgNQDdgOB6gbQBUgTAzhIQApg6ARhYQANg/AAhIQgEgYgDgZQgHg0gCgkQgEh/gEhNQgCgoABhDQABhAgBgbIgFhe");
this.shape_231.setTransform(419.4938,462.6756);
this.shape_232 = new cjs.Shape();
this.shape_232.graphics.f().s("#000000").ss(1.4,0,0,11.3).p("AASBDQAigIATgaQATgZgHgbQgIgdgdgNQgdgNgiAIQgiAIgTAaQgTAaAHAaQAHAdAeANQAdANAigIg");
this.shape_232.setTransform(492.7631,558.6);
this.shape_233 = new cjs.Shape();
this.shape_233.graphics.f().s("#000000").ss(1.4,0,0,11.3).p("AAShCQAiAIATAaQATAagHAbQgHAbgeAOQgdAOgigJQgigIgTgaQgTgaAHgbQAHgcAegNQAdgOAiAJg");
this.shape_233.setTransform(350.975,559.575);
this.shape_234 = new cjs.Shape();
this.shape_234.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AoJkcIB2IaICjkGIHjAEICtEHIBqoi");
this.shape_234.setTransform(420.928,607.1307);
this.shape_235 = new cjs.Shape();
this.shape_235.graphics.f().s("#000000").ss(1.7,0,0,11.3).p("AlOlDImJKDIWvgKImPp3");
this.shape_235.setTransform(421.9328,546.3526);
this.shape_236 = new cjs.Shape();
this.shape_236.graphics.f("#5599FF").s().p("AlOlBIKXACIGPJ4I2vAJg");
this.shape_236.setTransform(421.925,546.15);
this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_236},{t:this.shape_235},{t:this.shape_234},{t:this.shape_233},{t:this.shape_232},{t:this.shape_231},{t:this.shape_230},{t:this.shape_229},{t:this.shape_228},{t:this.shape_227},{t:this.shape_226},{t:this.shape_225},{t:this.shape_224},{t:this.shape_223},{t:this.shape_222},{t:this.shape_221},{t:this.shape_220},{t:this.shape_219},{t:this.shape_218},{t:this.shape_217},{t:this.shape_216},{t:this.shape_215},{t:this.shape_214},{t:this.shape_213,p:{x:477.8}},{t:this.shape_212,p:{x:477.8}},{t:this.shape_211,p:{x:478.75}},{t:this.shape_210,p:{x:479.5}},{t:this.shape_209},{t:this.shape_208},{t:this.shape_207},{t:this.shape_206},{t:this.shape_205},{t:this.shape_204},{t:this.shape_203},{t:this.shape_202},{t:this.shape_201},{t:this.shape_200},{t:this.shape_199},{t:this.shape_198},{t:this.shape_197},{t:this.shape_196},{t:this.shape_195},{t:this.shape_194}]},114).to({state:[{t:this.shape_236},{t:this.shape_235},{t:this.shape_234},{t:this.shape_233},{t:this.shape_232},{t:this.shape_231},{t:this.shape_230},{t:this.shape_229},{t:this.shape_228},{t:this.shape_227},{t:this.shape_226},{t:this.shape_225},{t:this.shape_224},{t:this.shape_223},{t:this.shape_222},{t:this.shape_221},{t:this.shape_220},{t:this.shape_219},{t:this.shape_218},{t:this.shape_217},{t:this.shape_216},{t:this.shape_215},{t:this.shape_214},{t:this.shape_213,p:{x:478.2}},{t:this.shape_212,p:{x:478.2}},{t:this.shape_211,p:{x:479.15}},{t:this.shape_210,p:{x:479.9}},{t:this.shape_209},{t:this.shape_208},{t:this.shape_207},{t:this.shape_206},{t:this.shape_205},{t:this.shape_204},{t:this.shape_203},{t:this.shape_202},{t:this.shape_201},{t:this.shape_200},{t:this.shape_199},{t:this.shape_198},{t:this.shape_197},{t:this.shape_196},{t:this.shape_195},{t:this.shape_194}]},2).to({state:[]},1).wait(1047));
// move2
this.shape_237 = new cjs.Shape();
this.shape_237.graphics.f("#000000").s().p("AgnAvQgQgUgBgbQABgaAQgTQAQgUAXAAQAXAAARAUQAQATAAAaQAAAbgQAUQgRASgXABQgXgBgQgSg");
this.shape_237.setTransform(455.75,422.75);
this.shape_238 = new cjs.Shape();
this.shape_238.graphics.f("#004455").s().p("AhSBbQgjglAAg2QAAg0AjgmQAigmAwAAQAxAAAiAmQAjAmgBA0QABA2gjAlQgjAmgwAAQgwAAgigmg");
this.shape_238.setTransform(455,423.125);
this.shape_239 = new cjs.Shape();
this.shape_239.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AAAjcQBKAAA1BBQA0BAAABbQAABcg0BBQg1BAhKAAQhJAAg1hAQg0hBAAhcQAAhbA0hAQA1hBBJAAg");
this.shape_239.setTransform(452.025,423.975);
this.shape_240 = new cjs.Shape();
this.shape_240.graphics.f("#FFFFFF").s().p("Ah+CdQg0hBAAhcQAAhbA0hAQA1hBBJAAQBKAAA1BBQA0BAAABbQAABcg0BBQg1BAhKAAQhJAAg1hAg");
this.shape_240.setTransform(452.025,423.975);
this.shape_241 = new cjs.Shape();
this.shape_241.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AgmjSID2FqIiYA6IkGmVg");
this.shape_241.setTransform(473.695,530.7234);
this.shape_242 = new cjs.Shape();
this.shape_242.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AAijYIjwFtIChBDID7mig");
this.shape_242.setTransform(366.4509,531.732);
this.shape_243 = new cjs.Shape();
this.shape_243.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("APwhCQjFgbkSgGQiNgChzAEQhyADikANQi0APiNARQiMARlxA0IjpAgIAXAEQAzAIBXARQAbAGCSANQACgBOthCQBegFGcgaQB2gGA6gGQAdgCASgCQAFAAA6AAQAwABAMgDQgegXgJgIQgHgHgPgMg");
this.shape_243.setTransform(412.027,373.6564);
this.shape_244 = new cjs.Shape();
this.shape_244.graphics.f("#D35F5F").s().p("AuIBRQhWgRgzgIIgXgEIDpggQFxg0CMgRQCMgRC1gPQCkgNBxgDQB0gECNACQESAGDEAbIAXATIAnAfQgMADgxgBIg+AAIgvAEQg7AGh2AGIn6AfQusBCgDABQiRgNgcgGg");
this.shape_244.setTransform(412.45,373.6519);
this.shape_245 = new cjs.Shape();
this.shape_245.graphics.f().s("#000000").ss(0.4,0,0,4).p("AQqhYIAoA+I8bBxImQgu");
this.shape_245.setTransform(410.0377,375.8654);
this.shape_246 = new cjs.Shape();
this.shape_246.graphics.f("#000000").s().p("AxVAqMAiDgCBIAoA+I8bBxg");
this.shape_246.setTransform(409.625,375.75);
this.shape_247 = new cjs.Shape();
this.shape_247.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("AROCgQACgRAPgaQAPgbAmgzQAng0AQgbQAPgbACgSQABgRgbgUQhchCkLgwQkLgwlBgJQhcgCiHACQg0ABijANQiiAMgvAHQiRAWhvAaQhxAahkAkQjjBPiLB3QgWATgEAIQgEAIAEAQQAHAcAoAyQAnAyA4A1IAQAPIFIgvQEggpCYgTQCTgSChgPQI/g2HbA/QAxAGAFAAQAFAAAAgKg");