-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflappy.js
1983 lines (1526 loc) · 94.4 KB
/
flappy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(function (cjs, an) {
var p; // shortcut to reference prototypes
var lib={};var ss={};var img={};
lib.ssMetadata = [];
// symbols:
// helper functions:
function mc_symbol_clone() {
var clone = this._cloneProps(new this.constructor(this.mode, this.startPosition, this.loop));
clone.gotoAndStop(this.currentFrame);
clone.paused = this.paused;
clone.framerate = this.framerate;
return clone;
}
function getMCSymbolPrototype(symbol, nominalBounds, frameBounds) {
var prototype = cjs.extend(symbol, cjs.MovieClip);
prototype.clone = mc_symbol_clone;
prototype.nominalBounds = nominalBounds;
prototype.frameBounds = frameBounds;
return prototype;
}
(lib.StartInstructions = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Text Body
this.shape = new cjs.Shape();
this.shape.graphics.f("#FFFFFF").s().p("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");
this.shape.setTransform(-0.5,2.3);
this.timeline.addTween(cjs.Tween.get(this.shape).wait(1));
// Text Shadow
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#333333").s().p("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");
this.shape_1.setTransform(-0.5,3.6481);
this.timeline.addTween(cjs.Tween.get(this.shape_1).wait(1));
}).prototype = getMCSymbolPrototype(lib.StartInstructions, new cjs.Rectangle(-125.1,-6.1,249.3,19.6), null);
(lib.ScreenFlash = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Camada_1
this.shape = new cjs.Shape();
this.shape.graphics.f().s("#FFFFFF").ss(5,1,1).p("EhuxhLOMDdjAAAMAAACWdMjdjAAAg");
this.shape.setTransform(0.0205,0.0136,0.2116,0.4154);
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#FFFFFF").s().p("EhuxBLOMAAAiWcMDdjAAAMAAACWcg");
this.shape_1.setTransform(0.0205,0.0136,0.2116,0.4154);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_1},{t:this.shape}]}).wait(1));
}).prototype = getMCSymbolPrototype(lib.ScreenFlash, new cjs.Rectangle(-152.5,-202.5,305,405), null);
(lib.GetReady = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Text Body
this.shape = new cjs.Shape();
this.shape.graphics.f("#FFFFFF").s().p("AtXCHIgGgPQgKAGgLAEQgKADgJAAIgBAAIAAAAIgpgCQgXgCgSgMQgTgLgMgUQgKgTgBgXIAAhHQABgfAIgVQAIgVANgNQANgNAPgFQAPgFAPAAIAkAAQAUAAASALQATAMAMASQAMATAAAVIAAAZIgzACQAAgNgDgMQgEgMgIgHQgHgIgMAAIgDAAIgDABIgcAFQgMACgGAQQgGAQAAAgIAAAWQAAAOAFAPQAEAPAIAKQAHAKALAAIAYAAQADAAAGgDQAFgCADgFQADgEABgFIAAgCIgBgBIgfgDIgEggIBhAAIgBB2gANhCFIACiJIhKiGIBRAJIAmBTIAhhbIBRgBIhNCKIgMCFgAI2CFIAAkNIB3AAQAsABAVASQATATAAAhIAACQQAAANgCAKQgCAKgGAHQgIAHgOAEQgOADgYAAgAKDBcIAaAAQATAAAJgDQAIgDACgGQACgHAAgJIABghIACgqQACgXAAgZQAAgOgEgGQgDgHgGgBQgFgCgGAAIgxAAgAHPCFIgKhWIg9AAIgJBWIhHAAIA4kOIBnAAIBPEOgAGMgCIA1gDIgdhigABqCFIgBkOIC3AAIAAAyIhvAGIAAAvIBmAIIAAAyIhhAAIAAAkIByAIIAABBgAAPCFIAAhRQAAgJgHgGQgGgFgHgDIgPgEIgGgBIAABtIhKAAIAAkOIBuAAQAaAAAPAFQAPAEAIAJQAHAIADAMQACAMAAAPQAAAdgFASQgEATgOAHQgOAJgbAAIAGACIAQAHIATAJQAJAGAHAGQAGAFABAGIAABSgAgcgpIAiAAQALAAAEgCQAFgDABgEQACgEgBgGQAAgLgDgJQgFgJgOAAIgiAAgAoPCFIAKi2IhIgCIgFhWIDfACIABBPIhMAMIAACxgAshCFIAAkOIC3AAIAAAyIhwAGIAAAvIBmAIIAAAyIhgAAIAAAkIByAIIAABBg");
this.shape.setTransform(-1.1,10.425);
this.timeline.addTween(cjs.Tween.get(this.shape).wait(1));
// Text Shadow
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#333333").s().p("As7C7IgfgEQgIgBgHgFIgBAAQgOAEgNAAIgBAAIgBAAIgBAAIgpgCIAAAAQgfgCgYgQIgBAAQgYgQgPgZIgBgBQgOgZgBgfIAAgBIAAgjIAAgBIAAhHQABglAKgaIAAAAQAKgcASgQIAAgBQASgRAVgHIAAAAQAVgHATAAIAjAAIABAAQAcAAAaAQIAAAAQAJAFAIAHQAAgMAJgIQAJgJAMAAIC3AAQAHAAAFACQAGgCAGAAIDfACQANAAAIAJQAJAJAAAMIABBPIgBAGIABAeQAAALgHAJQgHAIgLACIg0AIIAACXQAAANgIAJQgJAIgNAAIhQAAQgIAAgIgEQgHgEgEgIQgDgHAAgIIABgaQgBgFAAgFIAGh0IgngBIgIgBIAAAbQAGACAEAFQAIAIAAAMIAABlQAAANgJAJQgJAIgMAAIi/AAIgFAAIgFADQgGADgHAAIgDAAgAImC1IhXAAQgLAAgJgHQgJgIgBgLIgHg8IgHAAIgGA7QgBAMgJAIQgJAHgLAAIhHAAIgHgBIgJABIi+AAQgGAAgEgBQgFABgGAAIhHAAQgMAAgHgIQgJAIgMAAIhKAAQgMAAgJgIQgJgJAAgNIAAkyQAAgNAJgIQAJgJAMAAIBuAAQAfAAATAGIABAAQAKAEAJAEIAEgFQAJgJAMAAIC3AAQANAAAJAJQAIAIAAANIAAAxIAAADIAAAiQAAAMgIAJIgBABIAAADIAAAbIAdiQQADgLAIgGQAIgHALAAIBnAAQAKAAAIAGQAIAGADAKIAkB8IAAhzQAAgMAJgJQAJgJAMAAIB3AAQA0ABAbAVIAAAAQACgMAJgGQAKgHALACIBRAIQAIABAGAFQAHAEADAIIAIARIAIgYQAEgJAHgFQAIgFAJAAIBRgBQALAAAIAHQAJAHACALQACAKgFAKIgCAEQAEAFABAHQACAKgFAKIhLCDIgLCAQgBAMgJAHQgIAIgMAAIhIAAQgIAAgHgEQgHgEgEgHQgEgHAAgIIABggIgBgEIABhfIglhDIAAAAIgBBsIAAABIAAAIIAAAEIAAAWIAAABQABARgDAMQgDATgNANIAAABQgMAMgXAGQgRAEgdAAIiFAAIgIgBIgIABIAAAAg");
this.shape_1.setTransform(-1.0946,12.2219);
this.timeline.addTween(cjs.Tween.get(this.shape_1).wait(1));
}).prototype = getMCSymbolPrototype(lib.GetReady, new cjs.Rectangle(-106.7,-6.4,211.3,37.3), null);
(lib.GameOver = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Text Body
this.shape = new cjs.Shape();
this.shape.graphics.f("#FFFFFF").s().p("AtsCIIgGgPQgKAGgLADQgKAEgJAAIgBAAIgBAAIgogDQgXgBgTgMQgSgMgMgTQgKgTgBgXIAAhHQABgfAIgVQAIgWANgMQANgNAPgFQAPgGAPAAIAjAAQAVABASALQATAMAMASQAMASAAAWIAAAZIgzABQAAgNgEgLQgEgMgHgIQgIgHgLAAIgDAAIgEABIgbAFQgMACgGAQQgGAPAAAhIAAAVQAAAPAEAPQAFAOAHAKQAIALAKgBIAZAAQADABAFgDQAFgDAEgEQADgFABgEIgBgCIAAgBIgfgDIgFggIBhAAIAAB1gAo5CGIAAkPIBOAAIBBCeIAwieIBTADIAGEMIhPAAIAAh/IghB/IhBAAIgZh1IgGB6gAPRCGIAAhSQAAgIgGgGQgHgFgIgDIgOgFIgHAAIAABtIhJAAIAAkPIBuAAQAaAAAQAGQAPAEAHAIQAIAJACAMQACAMAAAOQAAAegEASQgFATgOAHQgNAJgcAAIAHACIAPAHIATAJQAKAGAGAFQAGAGABAGIAABSgAOlgoIAjAAQALAAAEgCQAFgDABgEQACgEgBgGQABgLgEgJQgFgJgOAAIgjAAgAKPCGIAAkPIC3AAIAAAzIhwAGIAAAvIBmAIIAAAyIhhAAIAAAjIBzAIIAABCgAIwCGIgTgBIgYgBIgUAAIgKgBIhOkMIBQAIIArDPIAfjXIBQgCIhLERIgIAAgAE1CGIgBAAIgpgDQgXgBgSgMQgTgLgLgUQgLgSAAgYIAAhGQAAggAIgVQAIgWANgMQANgMAPgGQAQgGAPAAIAjAAQAUABATAMQASAKAMATQAMASABAWIAABjQgBAVgHARQgIAQgMAMQgMALgNAGQgOAGgNAAIgBAAgAEihLIgUACQgMABgFAQQgGAQgBAhIAAAWQAAAOAFAOQAEANAIAKQAIAIAKABIAQAAQAMgBAHgHQAIgIADgKQAEgLAAgHIgBgoQAAgagGgOQgGgPgJgFQgJgGgJAAIgBAAgAkLCGIAAkPIC3AAIAAAzIhwAGIAAAvIBmAIIAAAyIhhAAIAAAjIBzAIIAABCgAqgCGIgKhWIg9AAIgJBWIhGAAIA3kPIBnAAIBPEPgArigCIA0gCIgdhig");
this.shape.setTransform(-1.1725,10.35);
this.timeline.addTween(cjs.Tween.get(this.shape).wait(1));
// Text Shadow
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#333333").s().p("AtQC9IgfgDQgJgBgGgFIgBAAQgOAEgNAAIgBAAIgBAAIgBAAIgpgCIAAAAQgfgDgZgPIAAgBQgYgPgQgaIAAAAQgOgagBgeIAAgBIAAgnIAAgBIAAghIAAgBIAAglQABglAKgaIAAAAQAKgcARgRIABAAQASgSAVgGIAAAAQAUgIAUABIAjAAIABAAQAcAAAZAPIABABQAYAOAQAYIAAABQAOAWADAYIAQhOQACgLAIgHQAJgGAKAAIBnAAQAKAAAIAGQAIAGADAJIAkB9IAAh0QAAgNAJgJQAJgIAMAAIBOAAQAJgBAIAGQAIAFADAIIAhBRIAXhOQAEgKAIgGQAIgGAKABIBTACQAFAAAFACQAHgEAKAAIC3AAQAMAAAJAIQAJAJAAANIAAAwIAAAEIAAAmQAAAMgJAJIgBABIAAAlIAAAEIAAAYQAFADAFAEQAIAJAAAMIAAAoIAAACIAAA/QAAAMgJAJQgJAJgMAAIi/AAQgGAAgFgCQgFACgGAAIhPAAQgJAAgHgFQgIAFgJAAIhBAAQgGAAgFgCIgHAEQgHAEgIgBIhIgFIgGgBIgIABIhXAAQgLAAgJgIQgIgHgCgLIgHg8IgHAAIgGA7QgBALgJAIQgIAIgMAAIhGAAIgFAAIgFADQgGACgHAAIgDAAgAIuC4IgRgBIgCAAIgXAAIgTgBIgCAAIgIAAQgKAAgIgGQgIgHgDgJIgmiFIAAAmIAAABQgBAbgKAWQgKAWgQAPQgQAQgSAIIgBAAQgUAIgSAAIgBAAIgBAAIgCAAIgogCIgBAAQgegDgZgPIgBgBQgYgPgPgZIgBgBQgNgZgBgfIAAgBIAAgnIAAgBIAAhHQAAglAKgaIAAAAQALgcARgQQASgSAVgHIAAAAQAVgIAUABIAjAAIABAAQAcABAZAPQAJAFAIAHQAAgFACgGQAEgJAJgGQAIgFAKABIBQAJQAKABAHAGQAIAHACAKIAHAmIAHgtQACgLAIgHQAIgHALAAIBQgCQAGgBAFADIACAAIC3AAQAGAAAGACQAFgCAHAAIBuAAQAfAAATAGIABAAQAYAHAMAPQANAOADAVQADAOAAASIgBAaIAAAAIAAABIABAMIAAABQAAAigFATIgCAHQAHAKAAALIAAACIAAAmIAAAFIAABPQAAAMgJAJQgJAJgMAAIhHAAQgMAAgJgIQgJAIgMAAIhJAAIgIgBIgIABIi/AAQgMAAgJgJQgJgJAAgMIAAheIgcBmQgCAKgJAGQgIAGgKAAIgIAAIgBAAIgBAAg");
this.shape_1.setTransform(-1.1694,12.3466);
this.timeline.addTween(cjs.Tween.get(this.shape_1).wait(1));
}).prototype = getMCSymbolPrototype(lib.GameOver, new cjs.Rectangle(-108.9,-6.6,215.5,37.9), null);
(lib.ChooseBird = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Text Body
this.shape = new cjs.Shape();
this.shape.graphics.f("#FFFFFF").s().p("AAuBqQgGgHAAgKIAAgFQgIAJgHAHQgIAFgJADQgJADgKAAQgPAAgMgGQgMgGgJgLQgJgMgFgPQgEgPAAgRQAAglASgVQASgVAeAAQAQAAAMAGQAMAGALAMIAAg7QAAgMAFgHQAFgGAJAAQAJAAAFAGQAFAFAAAMIAACwQAAAKgFAHQgFAFgJAAQgIAAgFgFgAgTgPQgJAHgEAKQgFAMAAAPQAAARAFALQAFAMAJAFQAIAHAKAAQAKgBAJgFQAJgGAFgLQAFgMAAgRQAAgQgFgLQgFgKgJgHQgJgFgKgBQgKABgJAFg");
this.shape.setTransform(117.875,19.65);
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#FFFFFF").s().p("AgwBLQgGgGAAgMIAAhuQAAgbAUAAQAKAAAEAGQAEAGABANQAHgNAIgGQAGgGANAAQAMAAAMAGQAMAGAAALQAAAHgFAFQgFAFgGAAIgLgDQgIgDgGAAQgJAAgFAFQgFAEgDAKQgEAJgBAMIgBAeIAAAhQAAAMgGAGQgFAGgJAAQgJAAgFgGg");
this.shape_1.setTransform(103.275,22.625);
this.shape_2 = new cjs.Shape();
this.shape_2.graphics.f("#FFFFFF").s().p("AgOBoQgFgGAAgMIAAhxQAAgNAFgFQAGgHAIAAQAJAAAFAHQAGAFAAAMIAAByQAAAMgGAGQgFAGgJAAQgIAAgGgGgAgNhLQgGgFAAgJQAAgJAGgGQAGgFAIAAQAHAAAGAFQAGAFAAAKQAAAJgGAFQgGAFgHAAQgIAAgGgFg");
this.shape_2.setTransform(91.65,19.75);
this.shape_3 = new cjs.Shape();
this.shape_3.graphics.f("#FFFFFF").s().p("Ag+BrQgOAAgGgGQgGgGAAgOIAAihQAAgOAGgGQAGgGAOAAIBFAAQAPAAAMABQALACAJAGQAHAEAGAHQAGAHADAJQADAIAAAJQAAAhggAPQAqAMAAAnQAAASgJAPQgJAOgQAHQgKAEgMACQgNABgRAAgAgtBLIAuAAQAsAAAAggQAAgQgLgIQgMgHgWAAIgtAAgAgtgSIAoAAQAQAAAIgDQAJgDAFgJQAEgGAAgIQAAgQgMgFQgMgGgWAAIgkAAg");
this.shape_3.setTransform(77.225,19.675);
this.shape_4 = new cjs.Shape();
this.shape_4.graphics.f("#FFFFFF").s().p("AgwBLQgGgGAAgMIAAhuQAAgbAUAAQAKAAAEAGQAEAGABANQAHgNAIgGQAGgGANAAQAMAAAMAGQAMAGAAALQAAAHgFAFQgFAFgGAAIgLgDQgIgDgGAAQgJAAgFAFQgFAEgDAKQgEAJgBAMIgBAeIAAAhQAAAMgGAGQgFAGgJAAQgJAAgFgGg");
this.shape_4.setTransform(52.875,22.625);
this.shape_5 = new cjs.Shape();
this.shape_5.graphics.f("#FFFFFF").s().p("AAnBMQgFgGAAgLIAAgFQgHAJgIAGQgIAGgKADQgIADgMAAQgOAAgMgGQgLgGgHgKQgHgNAAgYIAAhOQAAgMAFgGQAGgGAJAAQAJAAAFAGQAGAGAAAMIAAA/QAAAOACAJQACAKAHAFQAGAFAKAAQAJAAAJgGQAJgGAEgJQADgJAAgcIAAgwQAAgMAGgGQAGgGAIAAQAJAAAGAGQAFAGAAAMIAABzQAAALgFAGQgFAFgIAAQgJAAgFgFg");
this.shape_5.setTransform(36.325,22.625);
this.shape_6 = new cjs.Shape();
this.shape_6.graphics.f("#FFFFFF").s().p("AggBMQgOgGgLgLQgLgLgFgPQgGgPAAgSQAAgRAGgPQAGgPAKgLQAKgLAPgFQAPgGARAAQASAAAPAGQAPAGAKAKQALALAFAPQAGAPAAARQAAASgGAPQgGAPgKALQgLALgOAGQgPAFgSAAQgRAAgPgFgAgUgsQgJAGgFALQgEAMAAAPQAAAQAEAMQAFALAJAHQAJAGALAAQASAAALgOQAKgOAAgYQAAgXgKgOQgLgOgSAAQgLAAgJAHg");
this.shape_6.setTransform(18.225,22.625);
this.shape_7 = new cjs.Shape();
this.shape_7.graphics.f("#FFFFFF").s().p("AgPBoQgGgGAAgOIAAhDIg1hRIgKgRQgCgGAAgEQAAgIAFgGQAGgFAJAAQAJAAAEAFQAFAFAJAPIAnBCIAphCIAGgKIAFgIQADgDAEgCQAEgCAFAAQAIAAAGAFQAFAGAAAHQAAAFgDAGQgCAGgHAKIg2BSIAABDQAAAOgGAGQgGAHgJAAQgJAAgGgHg");
this.shape_7.setTransform(-0.225,19.65);
this.shape_8 = new cjs.Shape();
this.shape_8.graphics.f("#FFFFFF").s().p("Ag2A7QgVgWAAglQAAgRAFgPQAGgPAKgLQAKgLAPgGQAPgFAQAAQAYAAARAJQARAKAIAQQAIAQAAAQQAAAOgIAFQgJAEgPAAIhOAAQAAAOAGAKQAFAKAJAGQAJAFAKAAQAHAAAFgCQAGgBAGgEIAKgIIANgLQADgDAFAAQAHAAADAEQAEADAAAGQAAAGgEAHQgFAHgIAHQgJAHgNAEQgNAEgQAAQgmAAgWgWgAgWgqQgKAKgCAUIBHAAQgBgUgKgKQgJgLgQAAQgNAAgKALg");
this.shape_8.setTransform(-26.05,22.625);
this.shape_9 = new cjs.Shape();
this.shape_9.graphics.f("#FFFFFF").s().p("AgmBLQgPgHgHgKQgIgKAAgKQABgGAEgFQAEgEAIAAQAGAAAEADQADADADAFQAGALAJAFQAIAFAOAAQAMAAAIgFQAHgFABgHQAAgLgJgEQgIgFgRgFQgVgFgNgFQgNgFgHgJQgIgKAAgNQAAgMAHgLQAHgKAOgHQAOgGAUAAQAPAAAMADQAMADAJAGQAIAFAFAHQADAGAAAHQABAGgFAFQgEAEgJAAQgGAAgFgDQgEgEgGgHQgEgGgGgDQgHgEgJAAQgLAAgHAFQgHAFAAAGQAAAHAGAEQAFAEAIACIAYAHQATAEAMAHQALAFAHAJQAFAIAAALQABARgJAMQgHALgQAGQgQAGgWAAQgWAAgPgGg");
this.shape_9.setTransform(-43.1,22.625);
this.shape_10 = new cjs.Shape();
this.shape_10.graphics.f("#FFFFFF").s().p("AggBMQgOgGgLgLQgLgLgFgPQgGgPAAgSQAAgRAGgPQAGgPAKgLQAKgLAPgFQAPgGARAAQASAAAPAGQAPAGAKAKQALALAFAPQAGAPAAARQAAASgGAPQgGAPgKALQgLALgOAGQgPAFgSAAQgRAAgPgFgAgUgsQgJAGgFALQgEAMAAAPQAAAQAEAMQAFALAJAHQAJAGALAAQASAAALgOQAKgOAAgYQAAgXgKgOQgLgOgSAAQgLAAgJAHg");
this.shape_10.setTransform(-60.225,22.625);
this.shape_11 = new cjs.Shape();
this.shape_11.graphics.f("#FFFFFF").s().p("AggBMQgOgGgLgLQgLgLgFgPQgGgPAAgSQAAgRAGgPQAGgPAKgLQAKgLAPgFQAPgGARAAQASAAAPAGQAPAGAKAKQALALAFAPQAGAPAAARQAAASgGAPQgGAPgKALQgLALgOAGQgPAFgSAAQgRAAgPgFgAgUgsQgJAGgFALQgEAMAAAPQAAAQAEAMQAFALAJAHQAJAGALAAQASAAALgOQAKgOAAgYQAAgXgKgOQgLgOgSAAQgLAAgJAHg");
this.shape_11.setTransform(-78.325,22.625);
this.shape_12 = new cjs.Shape();
this.shape_12.graphics.f("#FFFFFF").s().p("AAfBXIAAhDQAAgUgGgJQgFgLgQABQgKAAgIAFQgJAHgEAJQgDAJAAAXIAAA1QAAAMgGAGQgFAGgKAAQgTAAAAgYIAAitQAAgMAFgGQAFgGAJAAQAKAAAFAGQAGAGAAAMIAAA8QAHgJAHgFQAIgGAIgCQAIgCAKgBQAQABALAGQAMAHAHAMQAEAHACAJQABAJAAAKIAABNQAAAMgFAGQgGAGgJAAQgUAAAAgYg");
this.shape_12.setTransform(-96.375,19.65);
this.shape_13 = new cjs.Shape();
this.shape_13.graphics.f("#FFFFFF").s().p("AgWBsQgOgDgLgHQgMgHgJgLQgJgKgGgNQgGgMgDgPQgDgOAAgPQAAgZAIgVQAHgUAOgPQAOgOATgJQATgHAVAAQAaAAAUALQAUAKALAQQALAPAAANQAAAIgFAFQgFAGgIAAQgIAAgEgEQgFgEgFgJQgIgQgMgJQgLgHgRgBQgaABgQAUQgQAVAAAkQAAAZAHARQAHAQANAIQANAIAQAAQATAAANgJQANgJAHgSQACgIAFgGQAEgFAJAAQAIAAAFAFQAGAGAAAHQAAALgFAMQgFAMgLALQgLAMgRAHQgRAHgWAAQgQAAgOgDg");
this.shape_13.setTransform(-116.625,19.65);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_13},{t:this.shape_12},{t:this.shape_11},{t:this.shape_10},{t:this.shape_9},{t:this.shape_8},{t:this.shape_7},{t:this.shape_6},{t:this.shape_5},{t:this.shape_4},{t:this.shape_3},{t:this.shape_2},{t:this.shape_1},{t:this.shape}]}).wait(1));
// Text Shadow
this.shape_14 = new cjs.Shape();
this.shape_14.graphics.f("#000000").s().p("AAuBqQgGgHAAgKIAAgFQgIAKgHAGQgIAFgJADQgJADgKAAQgPAAgMgGQgMgGgJgLQgJgMgFgPQgEgPAAgSQAAgkASgVQASgVAeAAQAQAAAMAGQAMAGALAMIAAg7QAAgMAFgHQAFgGAJAAQAJAAAFAGQAFAFAAAMIAACwQAAAKgFAHQgFAFgJAAQgIAAgFgFgAgTgPQgJAHgEAKQgFAMAAAPQAAARAFALQAFAMAJAFQAIAHAKAAQAKgBAJgFQAJgGAFgLQAFgMAAgRQAAgPgFgMQgFgKgJgHQgJgFgKAAQgKAAgJAFg");
this.shape_14.setTransform(116.375,20.65);
this.shape_15 = new cjs.Shape();
this.shape_15.graphics.f("#000000").s().p("AgwBLQgGgGAAgMIAAhuQAAgbAUAAQAKAAAEAGQAEAGABANQAHgNAIgGQAGgGANAAQAMAAAMAGQAMAGAAALQAAAHgFAFQgFAFgGAAIgLgDQgIgDgGAAQgJAAgFAFQgFAEgDAKQgEAJgBAMIgBAeIAAAhQAAAMgGAGQgFAGgJAAQgJAAgFgGg");
this.shape_15.setTransform(101.775,23.625);
this.shape_16 = new cjs.Shape();
this.shape_16.graphics.f("#000000").s().p("AgNBoQgGgGAAgMIAAhxQAAgNAGgFQAFgHAIAAQAIAAAHAHQAFAFAAAMIAAByQAAAMgFAGQgHAGgIAAQgIAAgFgGgAgNhLQgGgFAAgKQAAgIAHgGQAGgFAGAAQAIAAAGAFQAGAFAAAJQAAAKgFAFQgHAFgIAAQgHAAgGgFg");
this.shape_16.setTransform(90.15,20.75);
this.shape_17 = new cjs.Shape();
this.shape_17.graphics.f("#000000").s().p("Ag+BrQgOAAgGgGQgGgGAAgOIAAihQAAgOAGgGQAGgGAOAAIBFAAQAPAAAMABQALACAJAGQAHAEAGAHQAGAHADAJQADAIAAAJQAAAhggAPQAqAMAAAnQAAASgJAPQgJAOgQAHQgKAEgMACQgNABgRAAgAgtBLIAuAAQAsAAAAggQAAgQgLgIQgMgHgWAAIgtAAgAgtgSIAoAAQAQAAAIgDQAJgDAFgJQAEgGAAgIQAAgQgMgFQgMgGgWAAIgkAAg");
this.shape_17.setTransform(75.725,20.675);
this.shape_18 = new cjs.Shape();
this.shape_18.graphics.f("#000000").s().p("AgwBLQgGgGAAgMIAAhuQAAgbAUAAQAKAAAEAGQAEAGABANQAHgNAIgGQAGgGANAAQAMAAAMAGQAMAGAAALQAAAHgFAFQgFAFgGAAIgLgDQgIgDgGAAQgJAAgFAFQgFAEgDAKQgEAJgBAMIgBAeIAAAhQAAAMgGAGQgFAGgJAAQgJAAgFgGg");
this.shape_18.setTransform(51.375,23.625);
this.shape_19 = new cjs.Shape();
this.shape_19.graphics.f("#000000").s().p("AAnBMQgFgGAAgLIAAgFQgHAJgIAGQgIAGgKADQgIADgMAAQgOAAgMgGQgLgGgHgKQgHgNAAgYIAAhOQAAgMAFgGQAGgGAJAAQAJAAAFAGQAGAGAAAMIAAA/QAAAOACAJQACAKAHAFQAGAFAKAAQAJAAAJgGQAJgGAEgJQADgJAAgcIAAgwQAAgMAGgGQAGgGAIAAQAJAAAGAGQAFAGAAAMIAABzQAAALgFAGQgFAFgIAAQgJAAgFgFg");
this.shape_19.setTransform(34.825,23.625);
this.shape_20 = new cjs.Shape();
this.shape_20.graphics.f("#000000").s().p("AggBMQgOgGgLgLQgLgLgFgPQgGgPAAgSQAAgRAGgPQAGgPAKgLQAKgLAPgFQAPgGARAAQASAAAPAGQAPAGAKAKQALALAFAPQAGAPAAARQAAASgGAPQgGAPgKALQgLALgOAGQgPAFgSAAQgRAAgPgFgAgUgsQgJAGgFALQgEAMAAAPQAAAQAEAMQAFALAJAHQAJAGALAAQASAAALgOQAKgOAAgYQAAgXgKgOQgLgOgSAAQgLAAgJAHg");
this.shape_20.setTransform(16.725,23.625);
this.shape_21 = new cjs.Shape();
this.shape_21.graphics.f("#000000").s().p("AgPBpQgGgHAAgOIAAhDIg1hRIgKgRQgCgGAAgEQAAgIAFgGQAGgFAJAAQAJAAAEAFQAFAFAJAPIAnBCIAphCIAGgKIAFgIQADgDAEgCQAEgCAFAAQAIAAAGAFQAFAGAAAHQAAAGgDAFQgCAGgHAKIg2BSIAABDQAAAOgGAHQgGAGgJAAQgJAAgGgGg");
this.shape_21.setTransform(-1.725,20.65);
this.shape_22 = new cjs.Shape();
this.shape_22.graphics.f("#000000").s().p("Ag2A7QgVgWAAglQAAgRAGgPQAEgPALgLQAKgLAOgGQAPgFASAAQAXAAARAJQARAKAIAQQAIAQAAAQQAAAOgIAFQgJAEgQAAIhNAAQAAAOAFAKQAGAKAJAGQAJAFAKAAQAGAAAGgCQAHgBAFgEIAKgIIAMgLQADgDAGAAQAGAAAEAEQAEADAAAGQAAAGgFAHQgDAHgJAHQgIAHgOAEQgNAEgRAAQglAAgWgWgAgWgqQgKAKgCAUIBIAAQgCgUgKgKQgJgLgQAAQgNAAgKALg");
this.shape_22.setTransform(-27.55,23.625);
this.shape_23 = new cjs.Shape();
this.shape_23.graphics.f("#000000").s().p("AglBLQgQgHgIgKQgGgKgBgKQAAgGAFgFQAFgEAHAAQAGAAADADQAEADADAFQAGALAJAFQAJAFANAAQAMAAAIgFQAHgFAAgHQABgLgJgEQgHgFgSgFQgVgFgMgFQgOgFgHgJQgIgKAAgNQAAgMAHgLQAHgKAPgHQANgGAUAAQAOAAANADQANADAIAGQAIAFAEAHQAFAGAAAHQAAAGgFAFQgFAEgIAAQgGAAgEgDQgFgEgGgHQgEgGgGgDQgHgEgJAAQgLAAgHAFQgHAFAAAGQAAAHAFAEQAGAEAJACIAXAHQASAEANAHQALAFAHAJQAFAIABALQgBARgHAMQgJALgQAGQgPAGgWAAQgVAAgPgGg");
this.shape_23.setTransform(-44.6,23.625);
this.shape_24 = new cjs.Shape();
this.shape_24.graphics.f("#000000").s().p("AggBMQgOgGgLgLQgLgLgFgPQgGgPAAgSQAAgRAGgPQAGgPAKgLQAKgLAPgFQAPgGARAAQASAAAPAGQAPAGAKAKQALALAFAPQAGAPAAARQAAASgGAPQgGAPgKALQgLALgOAGQgPAFgSAAQgRAAgPgFgAgUgsQgJAGgFALQgEAMAAAPQAAAQAEAMQAFALAJAHQAJAGALAAQASAAALgOQAKgOAAgYQAAgXgKgOQgLgOgSAAQgLAAgJAHg");
this.shape_24.setTransform(-61.725,23.625);
this.shape_25 = new cjs.Shape();
this.shape_25.graphics.f("#000000").s().p("AggBMQgOgGgLgLQgLgLgFgPQgGgPAAgSQAAgRAGgPQAGgPAKgLQAKgLAPgFQAPgGARAAQASAAAPAGQAPAGAKAKQALALAFAPQAGAPAAARQAAASgGAPQgGAPgKALQgLALgOAGQgPAFgSAAQgRAAgPgFgAgUgsQgJAGgFALQgEAMAAAPQAAAQAEAMQAFALAJAHQAJAGALAAQASAAALgOQAKgOAAgYQAAgXgKgOQgLgOgSAAQgLAAgJAHg");
this.shape_25.setTransform(-79.825,23.625);
this.shape_26 = new cjs.Shape();
this.shape_26.graphics.f("#000000").s().p("AAfBXIAAhEQAAgTgGgJQgFgKgQAAQgKAAgIAFQgJAHgEAJQgDAJAAAXIAAA1QAAAMgGAGQgFAGgKAAQgTAAAAgYIAAitQAAgMAFgGQAFgGAJAAQAKAAAFAGQAGAGAAAMIAAA8QAHgJAHgFQAIgGAIgCQAIgCAKgBQAQABALAGQAMAHAHAMQAEAHACAJQABAJAAAKIAABNQAAAMgFAGQgGAGgJAAQgUAAAAgYg");
this.shape_26.setTransform(-97.875,20.65);
this.shape_27 = new cjs.Shape();
this.shape_27.graphics.f("#000000").s().p("AgWBsQgOgDgLgHQgMgHgJgLQgJgKgGgNQgGgMgDgPQgDgOAAgQQAAgYAIgVQAHgUAOgPQAOgPATgIQATgHAVAAQAaAAAUALQAUAKALAQQALAOAAAOQAAAIgFAFQgFAGgIAAQgIAAgEgEQgFgEgFgKQgIgPgMgJQgLgHgRgBQgaABgQAUQgQAVAAAkQAAAZAHARQAHAQANAJQANAHAQAAQATAAANgJQANgJAHgSQACgIAFgGQAEgFAJAAQAIAAAFAFQAGAGAAAHQAAALgFAMQgFAMgLALQgLAMgRAHQgRAHgWAAQgQAAgOgDg");
this.shape_27.setTransform(-118.125,20.65);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_27},{t:this.shape_26},{t:this.shape_25},{t:this.shape_24},{t:this.shape_23},{t:this.shape_22},{t:this.shape_21},{t:this.shape_20},{t:this.shape_19},{t:this.shape_18},{t:this.shape_17},{t:this.shape_16},{t:this.shape_15},{t:this.shape_14}]}).wait(1));
}).prototype = getMCSymbolPrototype(lib.ChooseBird, new cjs.Rectangle(-139,0,276.5,39.8), null);
(lib.LowerPipe = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Highlight
this.shape = new cjs.Shape();
this.shape.graphics.f().s("#6BDB12").ss(5,1,1).p("AAAmpIAANT");
this.shape.setTransform(13,116.0047,1,1.9495);
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f().s("#6BDB12").ss(5,1,1).p("AAAk3IAAJv");
this.shape_1.setTransform(6,13.9486,1,0.1925);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_1},{t:this.shape}]}).wait(1));
// Shadow
this.shape_2 = new cjs.Shape();
this.shape_2.graphics.f().s("#377E00").ss(0.1,1,1).p("AkGgmIINAAQAMAAAJAJQAJAJAAAMIAAAvIpJAAIAAgvQAAgMAJgJQAJgJAMAAg");
this.shape_2.setTransform(30.0229,1.5226,1.0256,0.3871);
this.shape_3 = new cjs.Shape();
this.shape_3.graphics.f("rgba(55,126,0,0.4)").s().p("AkkAnIAAgvQABgMAIgJQAJgJAMAAIINAAQAMAAAJAJQAJAJgBAMIAAAvg");
this.shape_3.setTransform(30.0229,1.5226,1.0256,0.3871);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_3},{t:this.shape_2}]}).wait(1));
// Pipe Top
this.shape_4 = new cjs.Shape();
this.shape_4.graphics.f().s("#4CAD00").ss(0.1,1,0,3).p("AkNiGIIbAAQAeAAAAAeIAADRQAAAegeAAIobAAQgeAAAAgeIAAjRQAAgeAeAAg");
this.shape_4.setTransform(30,13.5);
this.shape_5 = new cjs.Shape();
this.shape_5.graphics.lf(["#59C900","#459E00"],[0,1],-30,0,30,0).s().p("AkNCHQgeAAAAgeIAAjRQAAgeAeAAIIbAAQAeAAAAAeIAADRQAAAegeAAg");
this.shape_5.setTransform(30,13.5);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_5},{t:this.shape_4}]}).wait(1));
// Shadow
this.shape_6 = new cjs.Shape();
this.shape_6.graphics.f("rgba(55,126,0,0.4)").s().p("AjugLIgBgrIHfAAIAABtg");
this.shape_6.setTransform(30,30.5);
this.timeline.addTween(cjs.Tween.get(this.shape_6).wait(1));
// Pipe Bottom
this.shape_7 = new cjs.Shape();
this.shape_7.graphics.f().ls(["#59C900","#459E00"],[0,1],-23.3,0,23.4,0).ss(0.1,1,1).p("AjoleIHRAAIAAK9InRAAg");
this.shape_7.setTransform(30.0048,113.4767,1.03,2.5517);
this.shape_8 = new cjs.Shape();
this.shape_8.graphics.lf(["#59C900","#459E00"],[0,1],-23.3,0,23.3,0).s().p("AjoFfIAAq9IHRAAIAAK9g");
this.shape_8.setTransform(30.0048,113.4767,1.03,2.5517);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_8},{t:this.shape_7}]}).wait(1));
}).prototype = getMCSymbolPrototype(lib.LowerPipe, new cjs.Rectangle(-1,-1,62,205), null);
(lib.GroundSlice = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Edges
this.shape = new cjs.Shape();
this.shape.graphics.f().s("#85D93D").ss(0.1,1,1).p("At8gLIb5AAIAAAXI75AAg");
this.shape.setTransform(96.4855,2.9878,1.0803,0.8163);
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#85D93D").s().p("At8AMIAAgXIb5AAIAAAXg");
this.shape_1.setTransform(96.4855,2.9878,1.0803,0.8163);
this.shape_2 = new cjs.Shape();
this.shape_2.graphics.f().s("#4B841D").ss(0.1,1,1).p("At8gLIb5AAIAAAXI75AAg");
this.shape_2.setTransform(96.4855,0.9878,1.0803,0.8163);
this.shape_3 = new cjs.Shape();
this.shape_3.graphics.f("#4B841D").s().p("At8AMIAAgXIb5AAIAAAXg");
this.shape_3.setTransform(96.4855,0.9878,1.0803,0.8163);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_3},{t:this.shape_2},{t:this.shape_1},{t:this.shape}]}).wait(1));
// Grass
this.shape_4 = new cjs.Shape();
this.shape_4.graphics.f().s("#72BE32").ss(1,0,1).p("AvDgvIeHAAIAABFQgZA0ggg0QgLANgHgNQggAVgHgVQgtAkgSgkQgmAYgIgYQgSAVgKgVQgrAxgPgxQgfASgOgSQgnAogUgoQguAogcgoQgPANgVgNQgmAzgHgzQgyAjgcgjQgxAlgIglQggAfgMgfQg3AlgoglQgTAbgJgbQgVAUgLgUQguA0gQg0QgWAtgcgrQgPAGgMgIQgRAYgSgYQglAhgbghQghAUgKgUQgTAUgGgUQgpApgZgpQgfARgNgRQghAfgcgfQglAkghgkQgXALgMgLQgcAogTgoQgmAigqgiQgdAigagiQgeAagLgaQg2AcgpgcQgUAWgHgWQgRAUgRgUQgjAugdgug");
this.shape_4.setTransform(96.4998,8.4809,1.001,1.1348);
this.shape_5 = new cjs.Shape();
this.shape_5.graphics.f("#72BE32").s().p("AAAAWQgWAtgcgrQgPAGgMgIQgRAYgRgYQgmAhgbghQghAUgKgUQgTAUgGgUQgpApgZgpQgfARgNgRQghAfgcgfQglAkghgkQgXALgLgLQgdAogTgoQgmAigqgiQgdAigagiQgeAagKgaQg3AcgpgcQgUAWgHgWQgRAUgRgUQgjAugdguIAAhFIeHAAIAABFQgZA0ggg0QgLANgIgNQgfAVgHgVQgtAkgRgkQgnAYgHgYQgTAVgKgVQgrAxgPgxQgfASgOgSQgnAogUgoQguAogcgoQgPANgVgNQgmAzgHgzQgyAjgcgjQgxAlgJglQgfAfgMgfQg3AlgoglQgTAbgJgbQgVAUgLgUQgXAagPAAQgQAAgIgag");
this.shape_5.setTransform(96.4998,8.4809,1.001,1.1348);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_5},{t:this.shape_4}]}).wait(1));
// Grass copy
this.shape_6 = new cjs.Shape();
this.shape_6.graphics.f().s("#5AA11F").ss(1,0,1).p("AvDgvIeHAAIAABFQgZA0ggg0QgLANgHgNQggAVgHgVQgtAkgSgkQgmAYgIgYQgSAVgKgVQgrAxgPgxQgfASgOgSQgnAogUgoQguAogcgoQgPANgVgNQgmAzgHgzQgyAjgcgjQgxAlgIglQggAfgMgfQg3AlgoglQgTAbgJgbQgVAUgLgUQguA0gQg0QgWAtgcgrQgPAGgMgIQgRAYgSgYQglAhgbghQghAUgKgUQgTAUgGgUQgpApgZgpQgfARgNgRQghAfgcgfQglAkghgkQgXALgMgLQgcAogTgoQgmAigqgiQgdAigagiQgeAagLgaQg2AcgpgcQgUAWgHgWQgRAUgRgUQgjAugdgug");
this.shape_6.setTransform(96.4998,10.4809,1.001,1.1348);
this.shape_7 = new cjs.Shape();
this.shape_7.graphics.f("#5AA11F").s().p("AAAAWQgWAtgcgrQgPAGgMgIQgRAYgRgYQgmAhgbghQghAUgKgUQgTAUgGgUQgpApgZgpQgfARgNgRQghAfgcgfQglAkghgkQgXALgLgLQgdAogTgoQgmAigqgiQgdAigagiQgeAagKgaQg3AcgpgcQgUAWgHgWQgRAUgRgUQgjAugdguIAAhFIeHAAIAABFQgZA0ggg0QgLANgIgNQgfAVgHgVQgtAkgRgkQgnAYgHgYQgTAVgKgVQgrAxgPgxQgfASgOgSQgnAogUgoQguAogcgoQgPANgVgNQgmAzgHgzQgyAjgcgjQgxAlgJglQgfAfgMgfQg3AlgoglQgTAbgJgbQgVAUgLgUQgXAagPAAQgQAAgIgag");
this.shape_7.setTransform(96.4998,10.4809,1.001,1.1348);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_7},{t:this.shape_6}]}).wait(1));
// Grass copy 2
this.shape_8 = new cjs.Shape();
this.shape_8.graphics.f().s("#4B841D").ss(1,0,1).p("AvDgvIeHAAIAABFQgZA0ggg0QgLANgHgNQggAVgHgVQgtAkgSgkQgmAYgIgYQgSAVgKgVQgrAxgPgxQgfASgOgSQgnAogUgoQguAogcgoQgPANgVgNQgmAzgHgzQgyAjgcgjQgxAlgIglQggAfgMgfQg3AlgoglQgTAbgJgbQgVAUgLgUQguA0gQg0QgWAtgcgrQgPAGgMgIQgRAYgSgYQglAhgbghQghAUgKgUQgTAUgGgUQgpApgZgpQgfARgNgRQghAfgcgfQglAkghgkQgXALgMgLQgcAogTgoQgmAigqgiQgdAigagiQgeAagLgaQg2AcgpgcQgUAWgHgWQgRAUgRgUQgjAugdgug");
this.shape_8.setTransform(96.4998,12.4809,1.001,1.1348);
this.shape_9 = new cjs.Shape();
this.shape_9.graphics.f("#4B841D").s().p("AAAAWQgWAtgcgrQgPAGgMgIQgRAYgRgYQgmAhgbghQghAUgKgUQgTAUgGgUQgpApgZgpQgfARgNgRQghAfgcgfQglAkghgkQgXALgLgLQgdAogTgoQgmAigqgiQgdAigagiQgeAagKgaQg3AcgpgcQgUAWgHgWQgRAUgRgUQgjAugdguIAAhFIeHAAIAABFQgZA0ggg0QgLANgIgNQgfAVgHgVQgtAkgRgkQgnAYgHgYQgTAVgKgVQgrAxgPgxQgfASgOgSQgnAogUgoQguAogcgoQgPANgVgNQgmAzgHgzQgyAjgcgjQgxAlgJglQgfAfgMgfQg3AlgoglQgTAbgJgbQgVAUgLgUQgXAagPAAQgQAAgIgag");
this.shape_9.setTransform(96.4998,12.4809,1.001,1.1348);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_9},{t:this.shape_8}]}).wait(1));
// Dirt
this.shape_10 = new cjs.Shape();
this.shape_10.graphics.f("#663333").s().p("AvED6IAAnzIeJAAIAAHzg");
this.shape_10.setTransform(96.5,25);
this.timeline.addTween(cjs.Tween.get(this.shape_10).wait(1));
}).prototype = getMCSymbolPrototype(lib.GroundSlice, new cjs.Rectangle(-1,-1,195,51), null);
(lib.CollisionPoint = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Camada_1
this.shape = new cjs.Shape();
this.shape.graphics.f("#0099FF").s().p("AgXAYQgKgKAAgOQAAgNAKgKQAKgKANAAQAOAAAKAKQAKAKAAANQAAAOgKAKQgKAKgOAAQgNAAgKgKg");
this.shape.setTransform(3.4,3.4);
this.timeline.addTween(cjs.Tween.get(this.shape).wait(1));
}).prototype = getMCSymbolPrototype(lib.CollisionPoint, new cjs.Rectangle(0,0,6.8,6.8), null);
(lib.Trees = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Front
this.shape = new cjs.Shape();
this.shape.graphics.f("#1CD241").s().p("AiPEwIgJgIQgqATgxAAQhaAAhAg+QgvAqhAAAQg6AAgrgiQgyAig/AAQhIAAg2grQgcAIgfAAQgpAAgkgOQgnAXgxAAQhIAAg0gzQgWgWgNgaIgLAAIgFAAQgUApgiAjQhPBPhwAAQhwAAhPhPQgPgQgNgQIAApOQAcgIAgAAQBaAABBBBQAwAwAMA/QBBANA0AsQAjgSAqAAQBGAAAyAxQATAUAMAXQAJgCAKAAIAKABIAKgLQA8g8BVAAQBIAAA2ArQAbgIAgAAQBVAAA7A8IAQASQAZgIAdAAQAkAAAgANIAMgIQALgPAOgOQBDhCBdAAQBCAAA0AiQBLhABkAAQByAABRBQIADAEQA4goBHAAQBYAABAA9QAfgOAlAAQBGAAAyAxQAOAOALAQQARguAmgnQBGhGBkAAQBjAABGBGQAZAaARAdQAJgQAOgOQAygyBGAAQBGAAAyAyQATATAMAXIAFgCIgBgPQAAhhBFhFQBFhEBhAAIADAAIAAHTIgDAAIgcgBQgMAlgeAdQgyAzhGAAQhGAAgzgzQgTgTgLgWQgXAGgaAAQhGAAgygyIgJgKQgSAvgmAmQhGBGhjAAQhkAAhGhGQgkgkgRgrQgLATgQAQQgyAxhGAAQgiAAgcgLIgCACQhBBBhbAAQhAAAgzggIgPAQQhRBRhyAAQhxAAhQhRg");
this.shape.setTransform(162.125,352.575);
this.timeline.addTween(cjs.Tween.get(this.shape).wait(1));
// Middle
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#5BE7AB").s().p("AN8EcQgXgXgOgaIgLAMQgqAqg6AAQg8AAgqgqQgcgcgKgkQggAhgvAAQgvAAghgiQgIgIgFgIQgNAUgSASQg2A3hOAAQhNAAg4g3QgbgcgNgiQgTAIgWAAQgpAAgdgdQgIgJgGgJQgLAtgiAkQgxAwhEAAQguAAgngXQgKAcgWAWQgsArg9AAQg9AAgrgrQgcgcgJghIgUAAQhMAAg1g1IgHgHIgIAIQgrArg8AAQgpAAgggTQgKAOgMALQg2A3hOAAQhOAAg2g3QgmgmgMgwQgaAIgeAAQhGAAgxgyQgygxAAhGIAAgCQgTAKgWAAQgkAAgagaQgRgSgGgWQgfAWgpAAQgfAAgagNIAAjiQAagNAfAAQA1AAAkAkQAmAlgBA1IAAAAQAPgFAQAAQAkAAAZAaQAOAOAHARIAJgKQAxgyBGAAQBHAAAxAyQAeAdAMAkQAjgQApAAQBNAAA2A1QAogjA4AAQAyAAAmAdQALgUATgRQA1g2BMAAQBLAAA2A2QA0AzACBGQAWADAUAJQALgmAegfQAxgwBEAAQBEAAAxAwQAaAbAMAgQAIgQANgOQAdgdApAAQAhAAAZASQALgPAMgOQA4g2BNAAQBOAAA2A2QAjAjANAsQAggdAsAAQAvAAAhAgQARARAIATQAFgHAHgHQAqgpA8AAQA6AAAqApIALANQAOgbAXgXQA5g4BRAAQBPAAA3A1QAZgJAcAAQATAAASAFQANguAjgjQA3g3BNAAQAnAAAgAOQAGgrAegeQAlglA0AAQAvAAAiAdIAADCQgiAcgvAAIgLAAQADAPgBAQQABBOg3A2Qg3A3hOAAQg/AAgwgkIgOAQQglAmg3AAQgMAAgKgCQgMAQgPAPQg5A5hRAAQhRAAg5g5g");
this.shape_1.setTransform(161.95,341.725);
this.timeline.addTween(cjs.Tween.get(this.shape_1).wait(1));
// Back
this.shape_2 = new cjs.Shape();
this.shape_2.graphics.f("#B6FFFC").s().p("AK0E0QgQgQgKgRQgoAng5AAQg6gBgpgpQgIgHgGgJQgVAFgWAAQhDAAgwgvQgbgcgLgiIgRABQg1AAgngiQgEAlgbAaQgeAfgrAAQgYAAgTgIIgDACQgRATgbAAQgbAAgTgTIgJgLQgjARgpAAQhHAAg0gzIAAgBIgEAEQgsAshAAAQg/AAgtgsQgYgZgLgeQgKAZgWAVQgmAog5AAQgsAAgjgaIgGAGQgtAvhBAAQhBAAgvgvQgMgMgIgNIgUABQg1AAglglQgkglAAg0IAAgMQgdAVgkgBQgmABgdgWQgbAbglAAQgKgBgJgCQgHAJgIAHQgqArg7AAQg8AAgpgrQgrgpAAg7IABgRQgvgBglgcIAAjkQAlgeAzgBQA7ABAqAqQAqAqABA7IgBASQA4ABApApIAJAJQAMgDANAAQASAAAQAGQAHgLAKgKQAhghAvAAQAuAAAhAhQAiAhgBAvIAAAFQAigbAtAAQAsAAAhAbQAfgRAkgBIAAgJQAAg/AsgtQAtgsA/AAQA/AAAtAsQAiAkAIAuIALAAQAoAAAbAcQAKAKAIANQAhgVAqABQA2gBApAhQAHgLAKgKQA0gyBHgBQBIABAzAyQArArAHA4QAVgLAbAAQAdAAAXANIAAgJQAAg6AqgqQArgqA7gBQA7ABAqAqQARARAKATQAUgEAWgBQBCAAAvAwQAXAUAKAaIABAAQAJgmAfgeQArgrA9AAQA9AAAsArQASATALAVQAUgJAYAAQAqAAAdAcQAFgrAhghQAngoA5ABQAuAAAjAaIACgDQApgpA6AAQAvAAAjAbQAHgMALgLQAfgeAogDQgBgLAAgMQAAgvAggiQAiggAvAAQAuAAAiAgQAdAdAEAnQATAIARARIAKAMIAAChIgKALQgmAmg2AAQgnAAgegTIgFAGQgjAjgwAAQgdAAgYgNQgKAagVAVQgkAjgvAFQgGAhgaAZQghAhguAAQgvAAghghQgWgWgIgcQgqgHgfggIgNgOQgGAWgTATIgEADQADAPAAAQQAABAgsAsQgtAsg/AAQg/AAgtgsg");
this.shape_2.setTransform(161.95,332.25);
this.timeline.addTween(cjs.Tween.get(this.shape_2).wait(1));
}).prototype = getMCSymbolPrototype(lib.Trees, new cjs.Rectangle(-9.1,297,342.40000000000003,94.10000000000002), null);
(lib.Clouds = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Front
this.shape = new cjs.Shape();
this.shape.graphics.f("#ECF8FF").s().p("A6cIRIgKiKIAAtrQAUgFAXAAQBBAAAuAtQAkAkAJAvQBrAIBOBNQBNBNAJBoQAJgNAMgLQA3g3BPAAQAbAAAYAHIAAgOQAAhUA8g7QA8g7BVAAQBUAAA8A7QApAoAOAzQAygeA/AAQA1AAAsAUIACgCQArgqA7AAQA7AAAqAqQAqApAAA7IAAACQANgUARgRQBDhBBcAAQBdAABCBBQAiAiARApQALgUASgSQAzgxBHAAQAYAAAWAFIgBgVQgBhmBKhIQBIhIBnAAQBnAABJBIQA8A7ALBPQAlAHAeAXIAAgLQAAhCAvgvQAwgvBCAAQBDAAAwAvQARARALAUQADhcBDhCQBFhFBhAAQBiAABGBFIADADIAAPZg");
this.shape.setTransform(-0.4,-9.825);
this.timeline.addTween(cjs.Tween.get(this.shape).wait(1));
// Back
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#D0EFFF").s().p("A5hIRIAAwfIANgBIAUgBQBiAABFBFQBDBCACBcQALgUASgRQAvgvBDAAQBCAAAwAvQAvAvAABCIAAALQAegXAmgHQALhPA7g7QBJhIBnAAQBnAABJBIQAtAtARA3IAOgPQBQhPBwAAQBxAABPBPQAZAZARAcQBNAHA6A5QASARAMAUIAAgCQAAg7AqgpQAqgqA7AAQA8AAAqAqIACACQAsgUA1AAQA/AAAzAeQAOgzAogoQA8g7BUAAQA1AAArAXQAKgMAMgMQBVhVB5AAQB4AABWBVIADAEQAogiA2AAQAlAAAfAQQALgZAVgVQAugtBCAAQAWAAAUAFIAANrIgKCKg");
this.shape_1.setTransform(-8.825,-13.425);
this.timeline.addTween(cjs.Tween.get(this.shape_1).wait(1));
}).prototype = getMCSymbolPrototype(lib.Clouds, new cjs.Rectangle(-172.2,-66.3,342.1,109.4), null);
(lib.Pipe = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// Upper Pipe
this.instance = new lib.LowerPipe();
this.instance.parent = this;
this.instance.setTransform(26.7,-150.8,1,1,0,180,0,29.7,101.8);
this.instance.cache(-3,-3,66,209);
this.timeline.addTween(cjs.Tween.get(this.instance).wait(1));
// Lower Pipe
this.instance_1 = new lib.LowerPipe();
this.instance_1.parent = this;
this.instance_1.setTransform(26.7,150.8,1,1,0,0,0,29.7,101.8);
this.instance_1.cache(-3,-3,66,209);
this.timeline.addTween(cjs.Tween.get(this.instance_1).wait(1));
}).prototype = getMCSymbolPrototype(lib.Pipe, new cjs.Rectangle(-3,-252,60.1,504.1), null);
(lib.Bird4 = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// timeline functions:
this.frame_14 = function() {
this.gotoAndPlay(0);
/*
When the animation reaches the end of the timeline it will be sent
back to the first frame (0) of the timeline and continue to
play. It creates a endless animation.
*/
}
// actions tween:
this.timeline.addTween(cjs.Tween.get(this).wait(14).call(this.frame_14).wait(1));
// Collision Points
this.hit8 = new lib.CollisionPoint();
this.hit8.name = "hit8";
this.hit8.parent = this;
this.hit8.setTransform(-12.6,-21.4,1,1,0,0,0,3.4,3.4);
this.hit7 = new lib.CollisionPoint();
this.hit7.name = "hit7";
this.hit7.parent = this;
this.hit7.setTransform(-27.05,-12.35,1,1,0,0,0,3.4,3.4);
this.hit6 = new lib.CollisionPoint();
this.hit6.name = "hit6";
this.hit6.parent = this;
this.hit6.setTransform(-18.45,26.45,1,1,0,0,0,3.4,3.4);
this.hit5 = new lib.CollisionPoint();
this.hit5.name = "hit5";
this.hit5.parent = this;
this.hit5.setTransform(12,23.7,1,1,0,0,0,3.4,3.4);
this.hit4 = new lib.CollisionPoint();
this.hit4.name = "hit4";
this.hit4.parent = this;
this.hit4.setTransform(29,15.35,1,1,0,0,0,3.4,3.4);
this.hit3 = new lib.CollisionPoint();
this.hit3.name = "hit3";
this.hit3.parent = this;
this.hit3.setTransform(42,0.85,1,1,0,0,0,3.4,3.4);
this.hit2 = new lib.CollisionPoint();
this.hit2.name = "hit2";
this.hit2.parent = this;
this.hit2.setTransform(33.2,-18.1,1,1,0,0,0,3.4,3.4);
this.hit1 = new lib.CollisionPoint();
this.hit1.name = "hit1";
this.hit1.parent = this;
this.hit1.setTransform(27.3,-31.7,1,1,0,0,0,3.4,3.4);
this.hit0 = new lib.CollisionPoint();
this.hit0.name = "hit0";
this.hit0.parent = this;
this.hit0.setTransform(6.8,-27.55,1,1,0,0,0,3.4,3.4);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.hit0},{t:this.hit1},{t:this.hit2},{t:this.hit3},{t:this.hit4},{t:this.hit5},{t:this.hit6},{t:this.hit7},{t:this.hit8}]}).to({state:[]},14).wait(1));
// Wing
this.shape = new cjs.Shape();
this.shape.graphics.f("#FF7B28").s().p("ACLCTIgYgUIAHAHIABABIACABIAOALIgTgFIiDg4IgegQIgqgZIgvggQgFgFgCgIQgCgGACgIQADgSAOgOQAPgPASgDQAIgBAHABIgCgEIgBgHQABgJADgGQAIgQASgKQASgLASACQAIAAAFAEIAGAEIADADQABgGADgFQACgFAIgFQAOgKAVgBQAVgBAPAJIALAKQAEAHAAAFIgEBaIAEA6IABADIAAABIAAACIALA9IAOAwg");
this.shape.setTransform(-23.2375,-19.4);
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#FF7B28").s().p("ACLCJIgogjIAXAVIABACIACABIAOALIhygsIhCgiIgqgZIgvggQgFgEgCgIQgCgGACgJQADgRAOgPQAPgPASgDQAIgBAHABIgCgEIgBgHQABgIADgHQAIgQASgKQASgKASABQAIAAAFAEIAGAEIAEAFIBaDHIAjA9g");
this.shape_1.setTransform(-23.2375,-18.3348);
this.shape_2 = new cjs.Shape();
this.shape_2.graphics.f("#FF7B28").s().p("AAZA/IhCgiIgqgZIgvgfQgFgFgCgIQgCgGACgJQADgRAOgPQAPgPASgDQAIgBAHABQAIACAEAEIBgBxIBWBPIABACIACABIAOALg");
this.shape_2.setTransform(-23.2375,-15.3125);
this.shape_3 = new cjs.Shape();
this.shape_3.graphics.f("#FF7B28").s().p("Ah/AyQgNgCgIgQQgIgQACgTQADgVALgNQALgNAOABQASACD8BPQjvASglAAIgGAAg");
this.shape_3.setTransform(-24.8461,-7.8732);
this.shape_4 = new cjs.Shape();
this.shape_4.graphics.f("#FF7B28").s().p("AhXBrQgQgDgQgPQgOgPgDgRQgBgJABgHQADgHAFgFIAugfQAtgbAsgXICCg3IgnAkIgIAHIg1A0QggAhggAoIggAoQgFAFgHABIgIABIgIgBg");
this.shape_4.setTransform(-23.095,6.1625);
this.shape_5 = new cjs.Shape();
this.shape_5.graphics.f("#FF7B28").s().p("AgzCEQgSgJgJgRQgDgFgBgJQAAgIAEgHIABgBIgKgBQgQgDgQgPQgOgPgDgRQgBgJABgHQADgHAFgEIAuggQAtgbAsgXICCg3IgIAIIAIgIIgXAmQgHALgPAcIgYAvQgLAWgLAZIgCAGIgCACIgfBPIgDAGQgDAGgFADQgHAFgIAAIgHABQgOAAgPgIg");
this.shape_5.setTransform(-23.095,9.351);
this.shape_6 = new cjs.Shape();
this.shape_6.graphics.f("#FF7B28").s().p("AAZCJQgHgGgDgFQgDgHAAgHIABgEIgCAEIgDAGQgDAGgFADQgHAFgIAAQgRADgTgKQgSgKgJgQQgDgFgBgKQAAgHAEgHIABgBIgKgBQgQgDgQgPQgOgPgDgRQgBgJABgHQADgGAFgFIAuggQAtgbAsgXICCg4IgIAIIAHgGIABgCIAAABIAAAAIAAAAIgNAwIgLA9IgBACIAAABIAAADIgEBRIAEBEQAAAEgFAHIgLAKQgOAIgWAAQgVAAgOgKg");
this.shape_6.setTransform(-23.095,10.1);
this.shape_7 = new cjs.Shape();
this.shape_7.graphics.f("#FF7B28").s().p("AAZCJQgHgGgDgFQgDgHAAgHIABgEIgCAEIgDAGQgDAGgFADQgHAFgIAAQgRADgTgKQgSgKgJgQQgDgFgBgKQAAgHAEgHIABgBIgKgBQgQgDgQgPQgOgPgDgRQgBgJABgHQADgGAFgFIAuggQAtgbAsgXICCg4IgIAIIAHgGIABgCIAAABIAAAAIAAAAIgUBPIgEAeIgBACIAAABIAAADIgEBRIAEBEQAAAEgFAHIgLAKQgOAIgWAAQgVAAgOgKg");
this.shape_7.setTransform(-23.095,10.1);
this.shape_8 = new cjs.Shape();
this.shape_8.graphics.f("#FF7B28").s().p("ACLCTIgogjIAXAWIABABIACABIAOALIhygrIhCgiIgqgZIgvggQgFgFgCgIQgCgGACgIQADgSAOgOQAPgPASgDQAIgBAHABIgCgEIgBgHQABgJADgGQAIgQASgKQASgLASACQAIAAAFAEIAGAEIADADQABgGADgFQACgFAIgFQAOgKAVgBQAVgBAPAJIALAKQAEAHAAAFIgDAqIADBqIABADIAAABIAAACIASBXIAHAWg");
this.shape_8.setTransform(-23.2375,-19.4);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape}]}).to({state:[{t:this.shape_1}]},1).to({state:[{t:this.shape_2}]},1).to({state:[{t:this.shape_3}]},1).to({state:[{t:this.shape_4}]},1).to({state:[{t:this.shape_5}]},1).to({state:[{t:this.shape_6}]},1).to({state:[{t:this.shape_7}]},1).to({state:[{t:this.shape_5}]},1).to({state:[{t:this.shape_4}]},1).to({state:[{t:this.shape_3}]},1).to({state:[{t:this.shape_2}]},1).to({state:[{t:this.shape_1}]},1).to({state:[{t:this.shape_8}]},1).to({state:[]},1).wait(1));
// Eye
this.shape_9 = new cjs.Shape();
this.shape_9.graphics.f("#6D7505").s().p("AhPBHQgIguAXgvQALAKAPAAQARAAANgNQALgMAAgSQAAgOgHgLIAEAAQAlgFAbArQAMASAGAWQg1BUg+AAQgWAAgYgLg");
this.shape_9.setTransform(14.3544,-9.9244);
this.shape_10 = new cjs.Shape();
this.shape_10.graphics.f("#6D6217").s().p("AgDBnQgkgCgPgjQgRgkgMgyIgBgIQBZAnBIhyQAIAdABAjQAAA7gbArQgaApghAAIgDgBg");
this.shape_10.setTransform(14.9,0.1304);
this.shape_11 = new cjs.Shape();
this.shape_11.graphics.f("#FFFFFF").s().p("AgZAhIgEgDQgMgNAAgRQAAgRAMgMQANgMAQAAQASAAAMAMIAEAFQAIALAAANQAAARgMANQgMAMgSAAQgOAAgLgJg");
this.shape_11.setTransform(10.45,-15.5);
this.shape_12 = new cjs.Shape();
this.shape_12.graphics.f("#AECCE7").s().p("AAACbQgwAAgpgyQgpgygBheIAAgRQAZAVAYALIACAIQAMAyAQAkQAQAkAkACQAiACAbgrQAbgrAAg7QAAgjgJgcQAPgZAPgfQAcA0gGBNQgGBegnAsQgmAqgwAAIAAAAg");
this.shape_12.setTransform(14.6646,-0.3);
this.shape_13 = new cjs.Shape();
this.shape_13.graphics.f("#D4EBFF").s().p("Ah4BKQADhRAngwQArg1AwADQAxACAsA5QAIALAHAMQgPAegPAZQgHgWgLgRQgbgrgmAFIgEABIgEgGQgMgMgSAAQgRAAgMAMQgNANAAARQAAASANALIADAEQgXAvAJAuQgYgKgagWg");
this.shape_13.setTransform(13.5,-13.4308);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_13},{t:this.shape_12},{t:this.shape_11},{t:this.shape_10},{t:this.shape_9}]}).to({state:[]},14).wait(1));
// Body
this.shape_14 = new cjs.Shape();
this.shape_14.graphics.f().s("#FF9933").ss(1,1,1).p("AD9gVQhhBDiGACQiNADhihHQgTgOgQgN");
this.shape_14.setTransform(1.3875,20.0912);
this.shape_15 = new cjs.Shape();
this.shape_15.graphics.f().s("#9A7100").ss(1,1,1).p("Ak3CqQgZgbgKgYQgZg1AshPQAshQDbhOQDZhOBlBQQBmBRAAB8QAABphGBF");
this.shape_15.setTransform(2.0788,-6.4376);
this.shape_16 = new cjs.Shape();
this.shape_16.graphics.f().s("#9A5500").ss(1,1,1).p("AEBDUQjsAniMhwQgQAkAaAqIiMgfQgfgZgUgWIB9AqIAdhvQBRBHBjAiQg+hVgfhVQBuk/CsCDQCkDMi0CnIBZgI");
this.shape_16.setTransform(1.0705,-3.3576);
this.shape_17 = new cjs.Shape();
this.shape_17.graphics.f().s("#005500").ss(1,1,1).p("AAUgPQgOANgPALQgFAEgFAD");
this.shape_17.setTransform(28.6875,16.2375);
this.shape_18 = new cjs.Shape();
this.shape_18.graphics.f("#FF9933").s().p("AjZADIgjgbICMAeQgagpAQgkQCLBvDsgmQhhBEiGACIgJAAQiHAAhfhFg");
this.shape_18.setTransform(1.3875,17.7162);
this.shape_19 = new cjs.Shape();
this.shape_19.graphics.f("#9A7100").s().p("ADVicQisiEhuE/QAfBVA+BWQhjgihRhHIgdBuIh+gqQgZgbgKgXQgZg1AshPQAshQDbhOQDZhOBlBQQBmBQAAB8QAABphGBGIhZAJQC0inikjMg");
this.shape_19.setTransform(2.0788,-6.0126);
this.shape_20 = new cjs.Shape();
this.shape_20.graphics.f("#9A5500").s().p("Ah3CLQgQAkAaAqIiMgfQgfgZgUgWIB9AqIAdhvQBRBHBjAiQg+hVgfhVQBuk/CsCDQCkDMi0CnIBZgIQgOANgQAMIgJAHQg9AKg1AAQidAAhphTg");
this.shape_20.setTransform(1.0705,-3.3576);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_20},{t:this.shape_19},{t:this.shape_18},{t:this.shape_17},{t:this.shape_16},{t:this.shape_15},{t:this.shape_14}]}).to({state:[]},14).wait(1));
// Beak
this.shape_21 = new cjs.Shape();
this.shape_21.graphics.f("#FFE054").s().p("AgiAdIAAgdIBDAOQgDApgaAPQgSgJgUgggAgiAAIAAgcQAMgXAZgSQAiAPgCAnQggAPgkAAIgBAAgAgiAAIAAAAg");
this.shape_21.setTransform(40.9542,1.3);
this.timeline.addTween(cjs.Tween.get(this.shape_21).to({_off:true},14).wait(1));
// Crest
this.shape_22 = new cjs.Shape();
this.shape_22.graphics.f("#FF9933").s().p("AgBA1IgUgKIgcgIQgHglAHgoQAVgbAcAjQgTAlgCAoQAQgzAzACQAQAggQAbQgDACgMAAQgMAAgUgCg");
this.shape_22.setTransform(26.2833,-30.3649);
this.timeline.addTween(cjs.Tween.get(this.shape_22).to({_off:true},14).wait(1));
// Tail
this.shape_23 = new cjs.Shape();
this.shape_23.graphics.f("#FF9933").s().p("AgxAlQgIgNgHgTQgHgTAAgPQAAgPAGgCQAIgDCBAJQhiBUgIADIgBABQgGAAgIgLg");
this.shape_23.setTransform(-34.3269,2.0616);
this.shape_24 = new cjs.Shape();
this.shape_24.graphics.f("#FF9933").s().p("AhOAXQgGgDADgQQADgOAKgSQALgSANgJQAMgKAGAEQAJAFBkB3QiYgigJgGg");
this.shape_24.setTransform(-33.1974,-6.8843);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_24},{t:this.shape_23}]}).to({state:[]},14).wait(1));
// Feet
this.shape_25 = new cjs.Shape();
this.shape_25.graphics.f("#FFE054").s().p("AAAAxQgNgJgOgOQgPgPgHgMQgHgOADgDQAFgFBngeQgjBlgFAFIgDABQgEAAgIgFg");
this.shape_25.setTransform(-20.5799,21.9114,0.982,0.975);
this.shape_26 = new cjs.Shape();
this.shape_26.graphics.f("#E5C222").s().p("AgIAvQgNgJgNgQQgNgQgGgNQgGgNAEgEQAFgEBsgZQguBlgFAFIgDABQgEAAgIgHg");
this.shape_26.setTransform(-16.2159,22.1635,0.9568,1.1192);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_26},{t:this.shape_25}]}).to({state:[]},14).wait(1));
}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(-41.5,-35.8,86.9,65.69999999999999);
(lib.Bird3 = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// timeline functions:
this.frame_14 = function() {
this.gotoAndPlay(0);
/*
When the animation reaches the end of the timeline it will be sent
back to the first frame (0) of the timeline and continue to
play. It creates a endless animation.
*/
}
// actions tween:
this.timeline.addTween(cjs.Tween.get(this).wait(14).call(this.frame_14).wait(1));
// Collision Points
this.hit8 = new lib.CollisionPoint();
this.hit8.name = "hit8";
this.hit8.parent = this;
this.hit8.setTransform(-12.6,-21.4,1,1,0,0,0,3.4,3.4);
this.hit7 = new lib.CollisionPoint();
this.hit7.name = "hit7";
this.hit7.parent = this;
this.hit7.setTransform(-27.05,-12.35,1,1,0,0,0,3.4,3.4);
this.hit6 = new lib.CollisionPoint();
this.hit6.name = "hit6";
this.hit6.parent = this;
this.hit6.setTransform(-18.45,26.45,1,1,0,0,0,3.4,3.4);
this.hit5 = new lib.CollisionPoint();
this.hit5.name = "hit5";
this.hit5.parent = this;
this.hit5.setTransform(12,23.7,1,1,0,0,0,3.4,3.4);
this.hit4 = new lib.CollisionPoint();
this.hit4.name = "hit4";
this.hit4.parent = this;
this.hit4.setTransform(29,15.35,1,1,0,0,0,3.4,3.4);
this.hit3 = new lib.CollisionPoint();
this.hit3.name = "hit3";
this.hit3.parent = this;
this.hit3.setTransform(42,0.85,1,1,0,0,0,3.4,3.4);
this.hit2 = new lib.CollisionPoint();
this.hit2.name = "hit2";
this.hit2.parent = this;
this.hit2.setTransform(33.2,-18.1,1,1,0,0,0,3.4,3.4);
this.hit1 = new lib.CollisionPoint();
this.hit1.name = "hit1";
this.hit1.parent = this;
this.hit1.setTransform(27.3,-31.7,1,1,0,0,0,3.4,3.4);
this.hit0 = new lib.CollisionPoint();
this.hit0.name = "hit0";
this.hit0.parent = this;
this.hit0.setTransform(6.8,-27.55,1,1,0,0,0,3.4,3.4);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.hit0},{t:this.hit1},{t:this.hit2},{t:this.hit3},{t:this.hit4},{t:this.hit5},{t:this.hit6},{t:this.hit7},{t:this.hit8}]}).to({state:[]},14).wait(1));
// Wing
this.shape = new cjs.Shape();
this.shape.graphics.f("#005500").s().p("ACLCTIgYgUIAHAHIABABIACABIAOALIgTgFIiDg4IgegQIgqgZIgvggQgFgFgCgIQgCgGACgIQADgSAOgOQAPgPASgDQAIgBAHABIgCgEIgBgHQABgJADgGQAIgQASgKQASgLASACQAIAAAFAEIAGAEIADADQABgGADgFQACgFAIgFQAOgKAVgBQAVgBAPAJIALAKQAEAHAAAFIgEBaIAEA6IABADIAAABIAAACIALA9IAOAwg");
this.shape.setTransform(-23.2375,-19.4);
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#005500").s().p("ACLCJIgogjIAXAVIABACIACABIAOALIhygsIhCgiIgqgZIgvggQgFgEgCgIQgCgGACgJQADgRAOgPQAPgPASgDQAIgBAHABIgCgEIgBgHQABgIADgHQAIgQASgKQASgKASABQAIAAAFAEIAGAEIAEAFIBaDHIAjA9g");
this.shape_1.setTransform(-23.2375,-18.3348);
this.shape_2 = new cjs.Shape();
this.shape_2.graphics.f("#005500").s().p("AAZA/IhCgiIgqgZIgvgfQgFgFgCgIQgCgGACgJQADgRAOgPQAPgPASgDQAIgBAHABQAIACAEAEIBgBxIBWBPIABACIACABIAOALg");
this.shape_2.setTransform(-23.2375,-15.3125);
this.shape_3 = new cjs.Shape();
this.shape_3.graphics.f("#005500").s().p("Ah/AyQgNgCgIgQQgIgQACgTQADgVALgNQALgNAOABQASACD8BPQjvASglAAIgGAAg");
this.shape_3.setTransform(-24.8461,-7.8732);
this.shape_4 = new cjs.Shape();
this.shape_4.graphics.f("#005500").s().p("AhXBrQgQgDgQgPQgOgPgDgRQgBgJABgHQADgHAFgFIAugfQAtgbAsgXICCg3IgnAkIgIAHIg1A0QggAhggAoIggAoQgFAFgHABIgIABIgIgBg");
this.shape_4.setTransform(-23.095,6.1625);
this.shape_5 = new cjs.Shape();
this.shape_5.graphics.f("#005500").s().p("AgzCEQgSgJgJgRQgDgFgBgJQAAgIAEgHIABgBIgKgBQgQgDgQgPQgOgPgDgRQgBgJABgHQADgHAFgEIAuggQAtgbAsgXICCg3IgIAIIAIgIIgXAmQgHALgPAcIgYAvQgLAWgLAZIgCAGIgCACIgfBPIgDAGQgDAGgFADQgHAFgIAAIgHABQgOAAgPgIg");
this.shape_5.setTransform(-23.095,9.351);
this.shape_6 = new cjs.Shape();
this.shape_6.graphics.f("#005500").s().p("AAZCJQgHgGgDgFQgDgHAAgHIABgEIgCAEIgDAGQgDAGgFADQgHAFgIAAQgRADgTgKQgSgKgJgQQgDgFgBgKQAAgHAEgHIABgBIgKgBQgQgDgQgPQgOgPgDgRQgBgJABgHQADgGAFgFIAuggQAtgbAsgXICCg4IgIAIIAHgGIABgCIAAABIAAAAIAAAAIgNAwIgLA9IgBACIAAABIAAADIgEBRIAEBEQAAAEgFAHIgLAKQgOAIgWAAQgVAAgOgKg");
this.shape_6.setTransform(-23.095,10.1);
this.shape_7 = new cjs.Shape();
this.shape_7.graphics.f("#005500").s().p("AAZCJQgHgGgDgFQgDgHAAgHIABgEIgCAEIgDAGQgDAGgFADQgHAFgIAAQgRADgTgKQgSgKgJgQQgDgFgBgKQAAgHAEgHIABgBIgKgBQgQgDgQgPQgOgPgDgRQgBgJABgHQADgGAFgFIAuggQAtgbAsgXICCg4IgIAIIAHgGIABgCIAAABIAAAAIAAAAIgUBPIgEAeIgBACIAAABIAAADIgEBRIAEBEQAAAEgFAHIgLAKQgOAIgWAAQgVAAgOgKg");
this.shape_7.setTransform(-23.095,10.1);
this.shape_8 = new cjs.Shape();
this.shape_8.graphics.f("#005500").s().p("ACLCTIgogjIAXAWIABABIACABIAOALIhygrIhCgiIgqgZIgvggQgFgFgCgIQgCgGACgIQADgSAOgOQAPgPASgDQAIgBAHABIgCgEIgBgHQABgJADgGQAIgQASgKQASgLASACQAIAAAFAEIAGAEIADADQABgGADgFQACgFAIgFQAOgKAVgBQAVgBAPAJIALAKQAEAHAAAFIgDAqIADBqIABADIAAABIAAACIASBXIAHAWg");
this.shape_8.setTransform(-23.2375,-19.4);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape}]}).to({state:[{t:this.shape_1}]},1).to({state:[{t:this.shape_2}]},1).to({state:[{t:this.shape_3}]},1).to({state:[{t:this.shape_4}]},1).to({state:[{t:this.shape_5}]},1).to({state:[{t:this.shape_6}]},1).to({state:[{t:this.shape_7}]},1).to({state:[{t:this.shape_5}]},1).to({state:[{t:this.shape_4}]},1).to({state:[{t:this.shape_3}]},1).to({state:[{t:this.shape_2}]},1).to({state:[{t:this.shape_1}]},1).to({state:[{t:this.shape_8}]},1).to({state:[]},1).wait(1));
// Eye
this.shape_9 = new cjs.Shape();
this.shape_9.graphics.f("#6D7505").s().p("AhPBHQgIguAXgvQALAKAPAAQARAAANgNQALgMAAgSQAAgOgHgLIAEAAQAlgFAbArQAMASAGAWQg1BUg+AAQgWAAgYgLg");
this.shape_9.setTransform(14.3544,-9.9244);
this.shape_10 = new cjs.Shape();
this.shape_10.graphics.f("#6D6217").s().p("AgDBnQgkgCgPgjQgRgkgMgyIgBgIQBZAnBIhyQAIAdABAjQAAA7gbArQgaApghAAIgDgBg");
this.shape_10.setTransform(14.9,0.1304);
this.shape_11 = new cjs.Shape();
this.shape_11.graphics.f("#FFFFFF").s().p("AgZAhIgEgDQgMgNAAgRQAAgRAMgMQANgMAQAAQASAAAMAMIAEAFQAIALAAANQAAARgMANQgMAMgSAAQgOAAgLgJg");
this.shape_11.setTransform(10.45,-15.5);
this.shape_12 = new cjs.Shape();
this.shape_12.graphics.f("#AECCE7").s().p("AAACbQgwAAgpgyQgpgygBheIAAgRQAZAVAYALIACAIQAMAyAQAkQAQAkAkACQAiACAbgrQAbgrAAg7QAAgjgJgcQAPgZAPgfQAcA0gGBNQgGBegnAsQgmAqgwAAIAAAAg");
this.shape_12.setTransform(14.6646,-0.3);
this.shape_13 = new cjs.Shape();
this.shape_13.graphics.f("#D4EBFF").s().p("Ah4BKQADhRAngwQArg1AwADQAxACAsA5QAIALAHAMQgPAegPAZQgHgWgLgRQgbgrgmAFIgEABIgEgGQgMgMgSAAQgRAAgMAMQgNANAAARQAAASANALIADAEQgXAvAJAuQgYgKgagWg");
this.shape_13.setTransform(13.5,-13.4308);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_13},{t:this.shape_12},{t:this.shape_11},{t:this.shape_10},{t:this.shape_9}]}).to({state:[]},14).wait(1));
// Body
this.shape_14 = new cjs.Shape();
this.shape_14.graphics.f().s("#005500").ss(1,1,1).p("AksCLIB9AqIAdhvQBRBHBjAiQg+hVgfhVQBuk/CsCDQCkDMi0CnIBZgIQgOANgQAMQgFAEgEADQjsAniMhwQgQAkAaAqIiMgfQgfgZgUgWg");
this.shape_14.setTransform(1.0705,-3.3576);
this.shape_15 = new cjs.Shape();
this.shape_15.graphics.f().s("#00AD1B").ss(1,1,1).p("Ak3CqQgZgbgKgYQgZg1AshPQAshQDbhOQDZhOBlBQQBmBRAAB8QAABphGBF");
this.shape_15.setTransform(2.0788,-6.4376);
this.shape_16 = new cjs.Shape();
this.shape_16.graphics.f().s("#FFFFFF").ss(1,1,1).p("AD9gVQhhBDiGACQiNADhihHQgTgOgQgN");
this.shape_16.setTransform(1.3875,20.0912);
this.shape_17 = new cjs.Shape();
this.shape_17.graphics.f("#005500").s().p("Ah3CLQgQAkAaAqIiMgfQgfgZgUgWIB9AqIAdhvQBRBHBjAiQg+hVgfhVQBuk/CsCDQCkDMi0CnIBZgIQgOANgQAMIgJAHQg9AKg1AAQidAAhphTg");
this.shape_17.setTransform(1.0705,-3.3576);
this.shape_18 = new cjs.Shape();
this.shape_18.graphics.f("#00AD1B").s().p("ADVicQisiEhuE/QAfBVA+BWQhjgihRhHIgdBuIh+gqQgZgbgKgXQgZg1AshPQAshQDbhOQDZhOBlBQQBmBQAAB8QAABphGBGIhZAJQC0inikjMg");
this.shape_18.setTransform(2.0788,-6.0126);
this.shape_19 = new cjs.Shape();
this.shape_19.graphics.f("#FFFFFF").s().p("AjZADIgjgbICMAeQgagpAQgkQCLBvDsgmQhhBEiGACIgJAAQiHAAhfhFg");
this.shape_19.setTransform(1.3875,17.7162);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_19},{t:this.shape_18},{t:this.shape_17},{t:this.shape_16},{t:this.shape_15},{t:this.shape_14}]}).to({state:[]},14).wait(1));
// Beak
this.shape_20 = new cjs.Shape();
this.shape_20.graphics.f("#FFE054").s().p("AgiAdIAAgdIBDAOQgDApgaAPQgSgJgUgggAgiAAIAAgcQAMgXAZgSQAiAPgCAnQggAPgkAAIgBAAgAgiAAIAAAAg");
this.shape_20.setTransform(40.9542,1.3);
this.timeline.addTween(cjs.Tween.get(this.shape_20).to({_off:true},14).wait(1));
// Crest
this.shape_21 = new cjs.Shape();
this.shape_21.graphics.f("#00ED4E").s().p("AgBA1IgUgKIgcgIQgHglAHgoQAVgbAcAjQgTAlgCAoQAQgzAzACQAQAggQAbQgDACgMAAQgMAAgUgCg");
this.shape_21.setTransform(26.2833,-30.3649);
this.timeline.addTween(cjs.Tween.get(this.shape_21).to({_off:true},14).wait(1));
// Tail
this.shape_22 = new cjs.Shape();
this.shape_22.graphics.f("#00ED4E").s().p("AgxAlQgIgNgHgTQgHgTAAgPQAAgPAGgCQAIgDCBAJQhiBUgIADIgBABQgGAAgIgLg");
this.shape_22.setTransform(-34.3269,2.0616);
this.shape_23 = new cjs.Shape();
this.shape_23.graphics.f("#00ED4E").s().p("AhOAXQgGgDADgQQADgOAKgSQALgSANgJQAMgKAGAEQAJAFBkB3QiYgigJgGg");
this.shape_23.setTransform(-33.1974,-6.8843);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_23},{t:this.shape_22}]}).to({state:[]},14).wait(1));
// Feet
this.shape_24 = new cjs.Shape();
this.shape_24.graphics.f("#FFE054").s().p("AAAAxQgNgJgOgOQgPgPgHgMQgHgOADgDQAFgFBngeQgjBlgFAFIgDABQgEAAgIgFg");
this.shape_24.setTransform(-20.5799,21.9114,0.982,0.975);
this.shape_25 = new cjs.Shape();
this.shape_25.graphics.f("#E5C222").s().p("AgIAvQgNgJgNgQQgNgQgGgNQgGgNAEgEQAFgEBsgZQguBlgFAFIgDABQgEAAgIgHg");
this.shape_25.setTransform(-16.2159,22.1635,0.9568,1.1192);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_25},{t:this.shape_24}]}).to({state:[]},14).wait(1));
}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(-41.5,-35.8,86.9,65.69999999999999);
(lib.Bird2 = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});
// timeline functions:
this.frame_14 = function() {
this.gotoAndPlay(0);
/*
When the animation reaches the end of the timeline it will be sent
back to the first frame (0) of the timeline and continue to
play. It creates a endless animation.
*/
}
// actions tween:
this.timeline.addTween(cjs.Tween.get(this).wait(14).call(this.frame_14).wait(1));
// Collision Points
this.hit8 = new lib.CollisionPoint();
this.hit8.name = "hit8";
this.hit8.parent = this;
this.hit8.setTransform(-12.6,-21.4,1,1,0,0,0,3.4,3.4);
this.hit7 = new lib.CollisionPoint();
this.hit7.name = "hit7";
this.hit7.parent = this;
this.hit7.setTransform(-27.05,-12.35,1,1,0,0,0,3.4,3.4);
this.hit6 = new lib.CollisionPoint();
this.hit6.name = "hit6";
this.hit6.parent = this;
this.hit6.setTransform(-18.45,26.45,1,1,0,0,0,3.4,3.4);
this.hit5 = new lib.CollisionPoint();
this.hit5.name = "hit5";
this.hit5.parent = this;
this.hit5.setTransform(12,23.7,1,1,0,0,0,3.4,3.4);
this.hit4 = new lib.CollisionPoint();
this.hit4.name = "hit4";
this.hit4.parent = this;
this.hit4.setTransform(29,15.35,1,1,0,0,0,3.4,3.4);
this.hit3 = new lib.CollisionPoint();
this.hit3.name = "hit3";
this.hit3.parent = this;
this.hit3.setTransform(42,0.85,1,1,0,0,0,3.4,3.4);
this.hit2 = new lib.CollisionPoint();
this.hit2.name = "hit2";
this.hit2.parent = this;
this.hit2.setTransform(33.2,-18.1,1,1,0,0,0,3.4,3.4);
this.hit1 = new lib.CollisionPoint();
this.hit1.name = "hit1";
this.hit1.parent = this;
this.hit1.setTransform(27.3,-31.7,1,1,0,0,0,3.4,3.4);
this.hit0 = new lib.CollisionPoint();
this.hit0.name = "hit0";
this.hit0.parent = this;
this.hit0.setTransform(6.8,-27.55,1,1,0,0,0,3.4,3.4);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.hit0},{t:this.hit1},{t:this.hit2},{t:this.hit3},{t:this.hit4},{t:this.hit5},{t:this.hit6},{t:this.hit7},{t:this.hit8}]}).to({state:[]},14).wait(1));
// Wing
this.shape = new cjs.Shape();
this.shape.graphics.f("#0066FF").s().p("ACLCTIgYgUIAHAHIABABIACABIAOALIgTgFIiDg4IgegQIgqgZIgvggQgFgFgCgIQgCgGACgIQADgSAOgOQAPgPASgDQAIgBAHABIgCgEIgBgHQABgJADgGQAIgQASgKQASgLASACQAIAAAFAEIAGAEIADADQABgGADgFQACgFAIgFQAOgKAVgBQAVgBAPAJIALAKQAEAHAAAFIgEBaIAEA6IABADIAAABIAAACIALA9IAOAwg");
this.shape.setTransform(-23.2375,-19.4);
this.shape_1 = new cjs.Shape();
this.shape_1.graphics.f("#0066FF").s().p("ACLCJIgogjIAXAVIABACIACABIAOALIhygsIhCgiIgqgZIgvggQgFgEgCgIQgCgGACgJQADgRAOgPQAPgPASgDQAIgBAHABIgCgEIgBgHQABgIADgHQAIgQASgKQASgKASABQAIAAAFAEIAGAEIAEAFIBaDHIAjA9g");
this.shape_1.setTransform(-23.2375,-18.3348);
this.shape_2 = new cjs.Shape();
this.shape_2.graphics.f("#0066FF").s().p("AAZA/IhCgiIgqgZIgvgfQgFgFgCgIQgCgGACgJQADgRAOgPQAPgPASgDQAIgBAHABQAIACAEAEIBgBxIBWBPIABACIACABIAOALg");
this.shape_2.setTransform(-23.2375,-15.3125);
this.shape_3 = new cjs.Shape();
this.shape_3.graphics.f("#0066FF").s().p("Ah/AyQgNgCgIgQQgIgQACgTQADgVALgNQALgNAOABQASACD8BPQjvASglAAIgGAAg");
this.shape_3.setTransform(-24.8461,-7.8732);
this.shape_4 = new cjs.Shape();
this.shape_4.graphics.f("#0066FF").s().p("AhXBrQgQgDgQgPQgOgPgDgRQgBgJABgHQADgHAFgFIAugfQAtgbAsgXICCg3IgnAkIgIAHIg1A0QggAhggAoIggAoQgFAFgHABIgIABIgIgBg");
this.shape_4.setTransform(-23.095,6.1625);
this.shape_5 = new cjs.Shape();
this.shape_5.graphics.f("#0066FF").s().p("AgzCEQgSgJgJgRQgDgFgBgJQAAgIAEgHIABgBIgKgBQgQgDgQgPQgOgPgDgRQgBgJABgHQADgHAFgEIAuggQAtgbAsgXICCg3IgIAIIAIgIIgXAmQgHALgPAcIgYAvQgLAWgLAZIgCAGIgCACIgfBPIgDAGQgDAGgFADQgHAFgIAAIgHABQgOAAgPgIg");
this.shape_5.setTransform(-23.095,9.351);
this.shape_6 = new cjs.Shape();
this.shape_6.graphics.f("#0066FF").s().p("AAZCJQgHgGgDgFQgDgHAAgHIABgEIgCAEIgDAGQgDAGgFADQgHAFgIAAQgRADgTgKQgSgKgJgQQgDgFgBgKQAAgHAEgHIABgBIgKgBQgQgDgQgPQgOgPgDgRQgBgJABgHQADgGAFgFIAuggQAtgbAsgXICCg4IgIAIIAHgGIABgCIAAABIAAAAIAAAAIgNAwIgLA9IgBACIAAABIAAADIgEBRIAEBEQAAAEgFAHIgLAKQgOAIgWAAQgVAAgOgKg");
this.shape_6.setTransform(-23.095,10.1);
this.shape_7 = new cjs.Shape();
this.shape_7.graphics.f("#0066FF").s().p("AAZCJQgHgGgDgFQgDgHAAgHIABgEIgCAEIgDAGQgDAGgFADQgHAFgIAAQgRADgTgKQgSgKgJgQQgDgFgBgKQAAgHAEgHIABgBIgKgBQgQgDgQgPQgOgPgDgRQgBgJABgHQADgGAFgFIAuggQAtgbAsgXICCg4IgIAIIAHgGIABgCIAAABIAAAAIAAAAIgUBPIgEAeIgBACIAAABIAAADIgEBRIAEBEQAAAEgFAHIgLAKQgOAIgWAAQgVAAgOgKg");
this.shape_7.setTransform(-23.095,10.1);
this.shape_8 = new cjs.Shape();
this.shape_8.graphics.f("#0066FF").s().p("ACLCTIgogjIAXAWIABABIACABIAOALIhygrIhCgiIgqgZIgvggQgFgFgCgIQgCgGACgIQADgSAOgOQAPgPASgDQAIgBAHABIgCgEIgBgHQABgJADgGQAIgQASgKQASgLASACQAIAAAFAEIAGAEIADADQABgGADgFQACgFAIgFQAOgKAVgBQAVgBAPAJIALAKQAEAHAAAFIgDAqIADBqIABADIAAABIAAACIASBXIAHAWg");
this.shape_8.setTransform(-23.2375,-19.4);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape}]}).to({state:[{t:this.shape_1}]},1).to({state:[{t:this.shape_2}]},1).to({state:[{t:this.shape_3}]},1).to({state:[{t:this.shape_4}]},1).to({state:[{t:this.shape_5}]},1).to({state:[{t:this.shape_6}]},1).to({state:[{t:this.shape_7}]},1).to({state:[{t:this.shape_5}]},1).to({state:[{t:this.shape_4}]},1).to({state:[{t:this.shape_3}]},1).to({state:[{t:this.shape_2}]},1).to({state:[{t:this.shape_1}]},1).to({state:[{t:this.shape_8}]},1).to({state:[]},1).wait(1));
// Eye
this.shape_9 = new cjs.Shape();
this.shape_9.graphics.f("#FFFFFF").s().p("AgZAhIgEgDQgMgNAAgRQAAgRAMgMQANgMAQAAQASAAAMAMIAEAFQAIALAAANQAAARgMANQgMAMgSAAQgOAAgLgJg");
this.shape_9.setTransform(10.45,-15.5);
this.shape_10 = new cjs.Shape();
this.shape_10.graphics.f("#AECCE7").s().p("AAACbQgwAAgpgyQgpgygBheIAAgRQAZAVAYALIACAIQAMAyAQAkQAQAkAkACQAiACAbgrQAbgrAAg7QAAgjgJgcQAPgZAPgfQAcA0gGBNQgGBegnAsQgmAqgwAAIAAAAg");
this.shape_10.setTransform(14.6646,-0.3);
this.shape_11 = new cjs.Shape();
this.shape_11.graphics.f("#D4EBFF").s().p("Ah4BKQADhRAngwQArg1AwADQAxACAsA5QAIALAHAMQgPAegPAZQgHgWgLgRQgbgrgmAFIgEABIgEgGQgMgMgSAAQgRAAgMAMQgNANAAARQAAASANALIADAEQgXAvAJAuQgYgKgagWg");
this.shape_11.setTransform(13.5,-13.4308);
this.shape_12 = new cjs.Shape();
this.shape_12.graphics.f("#6D0000").s().p("AhPBHQgIguAXgvQALAKAPAAQARAAANgNQALgMAAgSQAAgOgHgLIAEAAQAlgFAbArQAMASAGAWQg1BUg+AAQgWAAgYgLg");
this.shape_12.setTransform(14.3544,-9.9244);
this.shape_13 = new cjs.Shape();
this.shape_13.graphics.f("#410000").s().p("AgDBnQgkgCgPgjQgRgkgMgyIgBgIQBZAnBIhyQAIAdABAjQAAA7gbArQgaApghAAIgDgBg");
this.shape_13.setTransform(14.9,0.1304);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_13},{t:this.shape_12},{t:this.shape_11},{t:this.shape_10},{t:this.shape_9}]}).to({state:[]},14).wait(1));
// Body
this.shape_14 = new cjs.Shape();
this.shape_14.graphics.f().s("#FFFFFF").ss(1,1,1).p("AD9gVQhhBDiGACQiNADhihHQgTgOgQgN");
this.shape_14.setTransform(1.3875,20.0912);
this.shape_15 = new cjs.Shape();
this.shape_15.graphics.f().s("#0066FF").ss(1,1,1).p("AksCLIB9AqIAdhvQBRBHBjAiQg+hVgfhVQBuk/CsCDQCkDMi0CnIBZgIQgOANgQAMQgFAEgEADQjsAniMhwQgQAkAaAqIiMgfQgfgZgUgWg");
this.shape_15.setTransform(1.0705,-3.3576);
this.shape_16 = new cjs.Shape();
this.shape_16.graphics.f().s("#0099FF").ss(1,1,1).p("Ak3CqQgZgbgKgYQgZg1AshPQAshQDbhOQDZhOBlBQQBmBRAAB8QAABphGBF");
this.shape_16.setTransform(2.0788,-6.4376);
this.shape_17 = new cjs.Shape();
this.shape_17.graphics.f("#0066FF").s().p("Ah3CLQgQAkAaAqIiMgfQgfgZgUgWIB9AqIAdhvQBRBHBjAiQg+hVgfhVQBuk/CsCDQCkDMi0CnIBZgIQgOANgQAMIgJAHQg9AKg1AAQidAAhphTg");
this.shape_17.setTransform(1.0705,-3.3576);
this.shape_18 = new cjs.Shape();
this.shape_18.graphics.f("#0099FF").s().p("ADVicQisiEhuE/QAfBVA+BWQhjgihRhHIgdBuIh+gqQgZgbgKgXQgZg1AshPQAshQDbhOQDZhOBlBQQBmBQAAB8QAABphGBGIhZAJQC0inikjMg");
this.shape_18.setTransform(2.0788,-6.0126);
this.shape_19 = new cjs.Shape();
this.shape_19.graphics.f("#FFFFFF").s().p("AjZADIgjgbICMAeQgagpAQgkQCLBvDsgmQhhBEiGACIgJAAQiHAAhfhFg");
this.shape_19.setTransform(1.3875,17.7162);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_19},{t:this.shape_18},{t:this.shape_17},{t:this.shape_16},{t:this.shape_15},{t:this.shape_14}]}).to({state:[]},14).wait(1));
// Beak
this.shape_20 = new cjs.Shape();
this.shape_20.graphics.f("#FFE054").s().p("AgiAdIAAgdIBDAOQgDApgaAPQgSgJgUgggAgiAAIAAgcQAMgXAZgSQAiAPgCAnQggAPgkAAIgBAAgAgiAAIAAAAg");
this.shape_20.setTransform(40.9542,1.3);
this.timeline.addTween(cjs.Tween.get(this.shape_20).to({_off:true},14).wait(1));
// Crest
this.shape_21 = new cjs.Shape();
this.shape_21.graphics.f("#00CFFF").s().p("AgBA1IgUgKIgcgIQgHglAHgoQAVgbAcAjQgTAlgCAoQAQgzAzACQAQAggQAbQgDACgMAAQgMAAgUgCg");
this.shape_21.setTransform(26.2833,-30.3649);
this.timeline.addTween(cjs.Tween.get(this.shape_21).to({_off:true},14).wait(1));
// Tail
this.shape_22 = new cjs.Shape();
this.shape_22.graphics.f("#00CFFF").s().p("AgxAlQgIgNgHgTQgHgTAAgPQAAgPAGgCQAIgDCBAJQhiBUgIADIgBABQgGAAgIgLg");
this.shape_22.setTransform(-34.3269,2.0616);
this.shape_23 = new cjs.Shape();
this.shape_23.graphics.f("#00CFFF").s().p("AhOAXQgGgDADgQQADgOAKgSQALgSANgJQAMgKAGAEQAJAFBkB3QiYgigJgGg");
this.shape_23.setTransform(-33.1974,-6.8843);
this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_23},{t:this.shape_22}]}).to({state:[]},14).wait(1));