• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
1

Mouseover for mobil devices?

Community Beginner ,
Aug 07, 2023 Aug 07, 2023

Copy link to clipboard

Copied

Hello,
I have created HTML5 file where on mouseover a window opens and on mouse exit the window closes. Is there any way to implement this feature for mobile devices as well? So that you go with your finger on the button and the same happens? Without clicking?

LG

TOPICS
ActionScript

Views

389

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 07, 2023 Aug 07, 2023

Copy link to clipboard

Copied

that's not user friendly for mobiles.  it would be better to use a mousedown toggle.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Aug 07, 2023 Aug 07, 2023

Copy link to clipboard

Copied

ok, thank you. Do you have an example how i change the button?

currently it is like this:


var _this = this;
var frameNumber;
/*
Durch Bewegen der Maus über die angegebene Symbolinstanz wird eine Funktion ausgeführt.
'3' gibt an, wie oft das Ereignis ausgelöst werden soll.
*/
/*stage.enableMouseOver(3);
_this.info_1.on('mouseover', function(){
/*
Verschiebt den Abspielkopf in der Zeitleiste zur angegebenen Bildnummer und setzt die Wiedergabe ab diesem Bild fort.
Kann in der Hauptzeitleiste oder in Movieclip-Zeitleisten verwendet werden.

_this.gotoAndPlay(411);
});*/

/* Mouse Over Event
Mousing over the symbol instance executes a function in which you can add your own custom code.

Instructions:
1. Add your custom code on a new line after the line that says "// Start your custom code" below.
The code will execute when the symbol instance is moused over.
frequency is the number of the times event should be triggered.
*/
var frequency = 1;
stage.enableMouseOver(frequency);
this.info_1.addEventListener("mouseover", fl_MouseOverHandler);

function fl_MouseOverHandler()
{
frameNumber = this.currentFrame;
// Start your custom code
// This example code displays the words "Moused over" in the Output panel.
_this.gotoAndPlay(411);
// End your custom code
}


/* Mouse Out Event
Mousing out of the symbol instance executes a function in which you can add your own custom code.

Instructions:
1. Add your custom code on a new line after the line that says "// Start your custom code" below.
The code will execute when the symbol instance is moused out of.
*/
//var frequency = 2;
stage.enableMouseOver(2);
this.info_1.addEventListener("mouseout", fl_MouseOutHandler);

function fl_MouseOutHandler()
{
if (frameNumber > 159)
{
_this.gotoAndPlay(275);
}
else{
_this.gotoAndPlay(159);
}
// Start your custom code
// This example code displays the words "Moused out" in the Output panel.
//_this.gotoAndPlay(frameNumber);
// End your custom code
}

 

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 08, 2023 Aug 08, 2023

Copy link to clipboard

Copied

this.info_1.addEventListener("mousedown", info_1F.bind(this));

 

function info_1F(){

if(!this.info_1.showwhatever){

// open window

} else {

// close window

}

this.info_1.showwhatever = !this.info_1.showwhatever;

}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Aug 10, 2023 Aug 10, 2023

Copy link to clipboard

Copied

Thank you very much. I tried that, but now the animation doesn't work at all. I want the button to jump to a frame when you move the mouse over it and jump back to another frame when you move the mouse away. It's the same as before with mouseover and mouseout, but now for mobil with mousedown and mouseup. Sorry, can someone help me again?

 

var _this = this;
var frameNumber;

var frequency = 1;

stage.enableMouseOver(frequency);
this.info_1.addEventListener("mousedown", info_1F.bind(this));

function info_1F(){
if(!this.info_1.445){

// open window

} else {

// close window

}

this.info_1.showwhatever = !this.info_1.showwhatever;

}

/
stage.enableMouseOver(2);
this.info_1.addEventListener("mouseup", fl_MouseOutHandler);

function fl_MouseOutHandler()
{
if (frameNumber > 159)
{
_this.gotoAndPlay(275);
}
else{
_this.gotoAndPlay(159);
}

}

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 10, 2023 Aug 10, 2023

Copy link to clipboard

Copied

open your browser's developer console and look for errors.

 

Lesson 1: https://youtu.be/bG05_am-fQI

Lesson 2: https://youtu.be/H9e9toftvdM

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Aug 10, 2023 Aug 10, 2023

Copy link to clipboard

Copied

Thanks, I watched the videos and I also use the Firefox Developer Tools. Only here it does not help me, I still understand too little about Animate. Is there not an example where it is like I mean?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 10, 2023 Aug 10, 2023

Copy link to clipboard

Copied

copy and paste (don't attach) a screenshot of your developer console while testing your project.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Aug 10, 2023 Aug 10, 2023

Copy link to clipboard

Copied

LATEST
<!DOCTYPE html>
<!--
	NOTES:
	1. All tokens are represented by '$' sign in the template.
	2. You can write your code only wherever mentioned.
	3. All occurrences of existing tokens will be replaced by their appropriate values.
	4. Blank lines will be removed automatically.
	5. Remove unnecessary comments before creating your template.
-->
<html>
<head>
<meta charset="UTF-8">
<meta name="authoring-tool" content="Adobe_Animate_CC">
<title>index</title>
<!-- write your code here -->
<script src="https://code.createjs.com/1.0.0/createjs.min.js"></script>
<script>
(function (cjs, an) {
var p; // shortcut to reference prototypes
var lib={};var ss={};var img={};
lib.ssMetadata = [];
(lib.AnMovieClip = function(){
	this.actionFrames = [];
	this.ignorePause = false;
	this.gotoAndPlay = function(positionOrLabel){
		cjs.MovieClip.prototype.gotoAndPlay.call(this,positionOrLabel);
	}
	this.play = function(){
		cjs.MovieClip.prototype.play.call(this);
	}
	this.gotoAndStop = function(positionOrLabel){
		cjs.MovieClip.prototype.gotoAndStop.call(this,positionOrLabel);
	}
	this.stop = function(){
		cjs.MovieClip.prototype.stop.call(this);
	}
}).prototype = p = new cjs.MovieClip();
// symbols:
(lib.Img_01 = function() {
	this.initialize(img.Img_01);
}).prototype = p = new cjs.Bitmap();
p.nominalBounds = new cjs.Rectangle(0,0,320,480);
(lib.Img_02 = function() {
	this.initialize(img.Img_02);
}).prototype = p = new cjs.Bitmap();
p.nominalBounds = new cjs.Rectangle(0,0,320,480);
(lib.Img_03 = function() {
	this.initialize(img.Img_03);
}).prototype = p = new cjs.Bitmap();
p.nominalBounds = new cjs.Rectangle(0,0,320,480);// helper functions:
function mc_symbol_clone() {
	var clone = this._cloneProps(new this.constructor(this.mode, this.startPosition, this.loop, this.reversed));
	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.XXXX = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:0,"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX":0};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	this.isSingleFrame = false;
	// timeline functions:
	this.frame_0 = function() {
		if(this.isSingleFrame) {
			return;
		}
		if(this.totalFrames == 1) {
			this.isSingleFrame = true;
		}
		this.xxx_1.text = "XXXXXXXXXXXXXXXX".toUpperCase(); // ABC
		this.xxx_2.text = "XXXXXXXXXXXXXXXX".toUpperCase(); // ABC
	}
	// actions tween:
	this.timeline.addTween(cjs.Tween.get(this).call(this.frame_0).wait(1));
	// Ebene_1 Kopie
	this.xxx_1 = new cjs.Text("xxxxxxxxxxxxxxxx", "18px 'Mazda Type'", "#FFFFFF");
	this.xxx_1.name = "xxx_1";
	this.xxx_1.lineHeight = 20;
	this.xxx_1.lineWidth = 147;
	this.xxx_1.parent = this;
	this.xxx_1.setTransform(-30.95,-89.95);
	this.timeline.addTween(cjs.Tween.get(this.xxx_1).wait(1));
	// Ebene_1
	this.xxx_2 = new cjs.Text("xxxxxxxxxxxxxxxx", "18px 'Mazda Type'", "#FFFFFF");
	this.xxx_2.name = "xxx_2";
	this.xxx_2.lineHeight = 20;
	this.xxx_2.lineWidth = 140;
	this.xxx_2.parent = this;
	this.xxx_2.setTransform(-30.95,-69.95);
	this.timeline.addTween(cjs.Tween.get(this.xxx_2).wait(1));
	this._renderFirstFrame();
}).prototype = getMCSymbolPrototype(lib.XXXX, new cjs.Rectangle(-32.9,-91.9,151,48.00000000000001), null);
(lib.waranty35x382ai = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene 3
	this.shape = new cjs.Shape();
	this.shape.graphics.f("#FFFFFF").s().p("A1jGhIAAtBMArHAAAIAANBgA1bGYMAq2AAAIAAsvMgq2AAAg");
	this.shape.setTransform(138,41.65);
	this.shape_1 = new cjs.Shape();
	this.shape_1.graphics.f("#FFFFFF").s().p("AhFAnIAAhDIALAAIAAAwIA0AAIAAgrIAKAAIAAArIA3AAIAAgcQAAgVgCgIIAAgBIANAHIAABGg");
	this.shape_1.setTransform(67,12.675);
	this.shape_2 = new cjs.Shape();
	this.shape_2.graphics.f("#FFFFFF").s().p("AhFA3IAAgiQAAgwAkAAQAOAAAKAJQAJAKADAOIABAAQAMgIAXgWQAPgOAPgQIABAAIAAAaQgdAcgiAZIAAAMIA/AAIAAASgAg1AAQgFAHAAAQIAAAOIA5AAIAAgRQgCgOgIgHQgJgHgMAAQgPAAgGAIg");
	this.shape_2.setTransform(67,25.475);
	this.shape_3 = new cjs.Shape();
	this.shape_3.graphics.f("#FFFFFF").s().p("AhFA6IAAgTIA9AAIAAhNIg9AAIAAgTICLAAIAAATIhEAAIAABNIBEAAIAAATg");
	this.shape_3.setTransform(67,42.8);
	this.shape_4 = new cjs.Shape();
	this.shape_4.graphics.f("#FFFFFF").s().p("AhDAFIgCgMICLg7IAAAUIg2AXIAAA1IA2AYIAAAOgAguACIAAABIAzAXIAAgug");
	this.shape_4.setTransform(67,59.2);
	this.shape_5 = new cjs.Shape();
	this.shape_5.graphics.f("#FFFFFF").s().p("ABRAYQgIgSgMgGQgMgFgdAAIhoAAIAAgSIBtAAQAcAAAMAJQANAIAIAUIgEAKg");
	this.shape_5.setTransform(68.55,72.075);
	this.shape_6 = new cjs.Shape();
	this.shape_6.graphics.f("#FFFFFF").s().p("AiVESQhBg9AAhvQAAidBqiAQBehxB3gfIAjAcQhZAbhOBZQhNBXgSBYIAEAAQAXgcAjgSQAngTAqAAQBRAAA2AzQA7A2AABeQAABXg+A6Qg8A5hXABQhgAAg7g3gAhYAOQgoAqAABDQAABFAkAsQAlAuA7AAQA6AAAjguQAggrAAhAQAAhHgfgqQghgqg4AAQg6AAgnAog");
	this.shape_6.setTransform(30.225,41.65);
	this.shape_7 = new cjs.Shape();
	this.shape_7.graphics.f("#FFFFFF").s().p("AgHFJIAAqQIAQAAIAAKQg");
	this.shape_7.setTransform(93.45,41.65);
	this.shape_8 = new cjs.Shape();
	this.shape_8.graphics.f("#FFFFFF").s().p("ABBBhIgfhLIhKAAIghBLIgTAAIBXi+IAPgDIBTDBgAgiAHIA+AAIgdhHIgCAAg");
	this.shape_8.setTransform(232.925,26.025);
	this.shape_9 = new cjs.Shape();
	this.shape_9.graphics.f("#FFFFFF").s().p("AhYBhIAAjBIBJAAQAxAAAcAZQAbAYAAAvQAAAugfAZQgeAagyAAgAg+BSIAkAAQBXAAAAhSQAAgpgVgUQgVgUgrAAIgmAAg");
	this.shape_9.setTransform(211.575,26.025);
	this.shape_10 = new cjs.Shape();
	this.shape_10.graphics.f("#FFFFFF").s().p("AhYBhIAAgHIB8ipIAAgCIhxAAIAGgPICRAAIAAAGIh9CqIAAACIBjgBQAVgBATgDIABAAIgLAUg");
	this.shape_10.setTransform(187.725,26.025);
	this.shape_11 = new cjs.Shape();
	this.shape_11.graphics.f("#FFFFFF").s().p("ABBBhIgfhLIhLAAIggBLIgTAAIBXi+IAPgDIBTDBgAgjAHIA/AAIgdhHIgCAAg");
	this.shape_11.setTransform(165.55,26.025);
	this.shape_12 = new cjs.Shape();
	this.shape_12.graphics.f("#FFFFFF").s().p("ABbBhIgQicIgCAAIhKCQIgIAAIhJiPIgCAAIgPCbIgRAAIAWjBIAWAAIBICSIAAAAIBJiSIAWAAIAWDBg");
	this.shape_12.setTransform(139.925,26.025);
	this.shape_13 = new cjs.Shape();
	this.shape_13.graphics.f("#FFFFFF").s().p("Ag1BgIAAi/IBdAAIAAAOIhDAAIAABIIA9AAIAAAPIg9AAIAABLIAnAAQAcAAAMgDIABAAIgIASg");
	this.shape_13.setTransform(254.3,56.95);
	this.shape_14 = new cjs.Shape();
	this.shape_14.graphics.f("#FFFFFF").s().p("AgMBgIAAi/IAZAAIAAC/g");
	this.shape_14.setTransform(239.375,56.95);
	this.shape_15 = new cjs.Shape();
	this.shape_15.graphics.f("#FFFFFF").s().p("AgMBgIAAixIg2AAIAAgOICFAAIAAAOIg2AAIAACxg");
	this.shape_15.setTransform(225.45,56.95);
	this.shape_16 = new cjs.Shape();
	this.shape_16.graphics.f("#FFFFFF").s().p("ABIBhIiFicIgCAAIAACbIgRAAIAAjAIAUAAIB7CSIABAAIAAiSIARAAIAADBg");
	this.shape_16.setTransform(204.725,57.025);
	this.shape_17 = new cjs.Shape();
	this.shape_17.graphics.f("#FFFFFF").s().p("ABBBgIgghKIhJAAIgiBKIgSAAIBXi8IAPgDIBTC/gAgjAHIA/AAIgdhIIgCAAg");
	this.shape_17.setTransform(182.05,56.95);
	this.shape_18 = new cjs.Shape();
	this.shape_18.graphics.f("#FFFFFF").s().p("AAoBgQgjgjgng0IgQAAIAABXIgZAAIAAi/IAvAAQBDgBAAAyQAAAUgNANQgNAMgUAGIAAABQALAQAeAfQAXAZATARIAAABgAgygCIAYAAQATgCAJgMQALgLAAgSQAAgUgMgIQgKgIgWAAIgTAAg");
	this.shape_18.setTransform(163.625,56.95);
	this.shape_19 = new cjs.Shape();
	this.shape_19.graphics.f("#FFFFFF").s().p("ABBBgIgfhKIhKAAIghBKIgTAAIBXi8IAPgDIBTC/gAgiAHIA+AAIgdhIIgCAAg");
	this.shape_19.setTransform(141.375,56.95);
	this.shape_20 = new cjs.Shape();
	this.shape_20.graphics.f("#FFFFFF").s().p("Ag6BLQgdgZAAgyQAAgdAPgZQAQgWAYgMQAYgLAcAAQASAAATAFQASAFAJAGIABAYIgCAAQgZgYgnAAQghAAgXAWQgWAWAAAoQAAAoAXAVQAYAWAhAAQAYAAATgIIAAhLIAYAAIAABOQgKAKgTAFQgUAGgUAAQgvAAgegZg");
	this.shape_20.setTransform(118.8,56.95);
	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},{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));
	this._renderFirstFrame();
}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(0,0,276,83.3);
(lib.Text_03 = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene_1
	this.shape = new cjs.Shape();
	this.shape.graphics.f("#FFFFFF").s().p("AA+BZIh0iKIgBAAIAACJIgSAAIAAiwIAWAAIBqCAIABAAIAAiAIASAAIAACxg");
	this.shape.setTransform(95.275,33.9);
	this.shape_1 = new cjs.Shape();
	this.shape_1.graphics.f("#FFFFFF").s().p("AgxBYIAAivIBXAAIAAAQIg8AAIAAA/IA1AAIAAAOIg1AAIAABDIAhAAQAbAAAKgDIACAAIgJASg");
	this.shape_1.setTransform(78.5,33.85);
	this.shape_2 = new cjs.Shape();
	this.shape_2.graphics.f("#FFFFFF").s().p("AgzBHIgEgaIADAAQAZAdAbABQANAAAIgIQAIgHAAgNQAAgNgJgKQgGgFgUgPQgVgOgHgIQgKgMAAgQQAAgWARgMQAPgLATAAQAXAAANAJIACAVIgDAAQgOgPgUAAQgKAAgIAGQgJAHAAAMQAAAKAHAIQAGAGAPALQAaAQAJAKQAMAOAAATQAAAXgSANQgQAMgWABQgfAAgUgVg");
	this.shape_2.setTransform(63.075,33.85);
	this.shape_3 = new cjs.Shape();
	this.shape_3.graphics.f("#FFFFFF").s().p("AA4BYIgbhCIhCAAIgcBCIgUAAIBOitIATgCIBKCvgAAXAHIgZhAIgBAAIgcBAIA2AAg");
	this.shape_3.setTransform(46.425,33.85);
	this.shape_4 = new cjs.Shape();
	this.shape_4.graphics.f("#FFFFFF").s().p("AgxBYIAAivIBXAAIAAAQIg8AAIAAA/IA1AAIAAAOIg1AAIAABDIAhAAQAbAAAKgDIACAAIgJASg");
	this.shape_4.setTransform(30.8,33.85);
	this.shape_5 = new cjs.Shape();
	this.shape_5.graphics.f("#FFFFFF").s().p("AgrBYIAAivIAbAAIAACgIAWAAQAaAAALgDIABAAIgJASg");
	this.shape_5.setTransform(17.425,33.85);
	this.shape_6 = new cjs.Shape();
	this.shape_6.graphics.f("#FFFFFF").s().p("AgPAPIAAgeIAfAAIAAAeg");
	this.shape_6.setTransform(-2.85,41.15);
	this.shape_7 = new cjs.Shape();
	this.shape_7.graphics.f("#FFFFFF").s().p("AgrBYIAAivIAbAAIAACgIAWAAQAaAAALgDIABAAIgJASg");
	this.shape_7.setTransform(-12.825,33.85);
	this.shape_8 = new cjs.Shape();
	this.shape_8.graphics.f("#FFFFFF").s().p("AgNBYIAAifIgvAAIAAgQIB5AAIAAAQIgvAAIAACfg");
	this.shape_8.setTransform(-27.55,33.85);
	this.shape_9 = new cjs.Shape();
	this.shape_9.graphics.f("#FFFFFF").s().p("ABQBYIgOiLIgBAAIhCCBIgJAAIhBiAIgBAAIgNCKIgSAAIAUivIAYAAIA/B/IAAAAIBAh/IAYAAIAUCvg");
	this.shape_9.setTransform(-47.725,33.85);
	this.shape_10 = new cjs.Shape();
	this.shape_10.graphics.f("#FFFFFF").s().p("AAEA5IAAhjIgZAMIACgLIAfgPIAKAAIAABxg");
	this.shape_10.setTransform(146.65,-5);
	this.shape_11 = new cjs.Shape();
	this.shape_11.graphics.f("#FFFFFF").s().p("AgZBKQgagUgGgiIgXAAIADgMIATAAIgBgIIABgLIgSAAIABgNIATAAQAIgfAagTQAXgRAeAAQAcAAAPAKIACAUIgDAAQgPgOgaABQgWAAgOANQgQANgGAYIBJAAIgCANIhJAAIgBAMIAAAHIBJAAIgCAMIhFAAQAEAaASAPQAPANAXAAQAaAAATgPIACAAIgFAVQgSALgZAAQghAAgYgRg");
	this.shape_11.setTransform(131.3,0.6);
	this.shape_12 = new cjs.Shape();
	this.shape_12.graphics.f("#FFFFFF").s().p("AApBYIgthKIgBAAIgvBKIgWAAIA7hZIg3hXIAgAAIApBGIACAAIArhGIAVAAIg3BVIAmA5QAQAaAHAHIAAABg");
	this.shape_12.setTransform(105.275,0.6);
	this.shape_13 = new cjs.Shape();
	this.shape_13.graphics.f("#FFFFFF").s().p("AApBYIgthKIgBAAIgvBKIgWAAIA7hZIg3hXIAgAAIApBGIACAAIArhGIAVAAIg3BVIAmA5QAQAaAHAHIAAABg");
	this.shape_13.setTransform(87.975,0.6);
	this.shape_14 = new cjs.Shape();
	this.shape_14.graphics.f("#FFFFFF").s().p("AApBYIgthKIgBAAIgvBKIgWAAIA7hZIg3hXIAgAAIApBGIACAAIArhGIAVAAIg3BVIAmA5QAQAaAHAHIAAABg");
	this.shape_14.setTransform(70.675,0.6);
	this.shape_15 = new cjs.Shape();
	this.shape_15.graphics.f("#FFFFFF").s().p("Ag5BYIAAiwIAvAAQA3AAABAqQAAAdglAJIAAABQAVACANAKQAPALgBAUQABAbgVAOQgSALgaAAgAgeBJIASAAQAqAAAAglQAAgRgNgJQgMgJgVAAIgOAAgAgegMIAPAAQAPgBAKgHQAKgJgBgPQABgPgKgGQgIgHgRAAIgPAAg");
	this.shape_15.setTransform(46.2,0.6);
	this.shape_16 = new cjs.Shape();
	this.shape_16.graphics.f("#FFFFFF").s().p("AA4BYIgbhBIhCAAIgcBBIgUAAIBOisIATgEIBKCwgAAXAHIgZg/IgBAAIgcA/IA2AAg");
	this.shape_16.setTransform(28.075,0.6);
	this.shape_17 = new cjs.Shape();
	this.shape_17.graphics.f("#FFFFFF").s().p("AgNBYIAAigIgwAAIAAgQIB7AAIAAAQIgwAAIAACgg");
	this.shape_17.setTransform(3.45,0.6);
	this.shape_18 = new cjs.Shape();
	this.shape_18.graphics.f("#FFFFFF").s().p("AhRBYIAAgHIBtiXIAAgCIhjAAIAFgQICGAAIAAAGIhtCZIAAABIBTAAQAXAAAPgDIACAAIgLATg");
	this.shape_18.setTransform(-13.025,0.6);
	this.shape_19 = new cjs.Shape();
	this.shape_19.graphics.f("#FFFFFF").s().p("AgNBYIAAigIgvAAIAAgQIB5AAIAAAQIgvAAIAACgg");
	this.shape_19.setTransform(-30.15,0.6);
	this.shape_20 = new cjs.Shape();
	this.shape_20.graphics.f("#FFFFFF").s().p("AgxBYIAAiwIBXAAIAAAQIg8AAIAAA/IA1AAIAAAPIg1AAIAABCIAhAAQAbAAALgBIABAAIgJARg");
	this.shape_20.setTransform(-43.65,0.6);
	this.shape_21 = new cjs.Shape();
	this.shape_21.graphics.f("#FFFFFF").s().p("AggBnIAAgBQAXgKAIgQQAHgPAAgiIAAiGIAbAAIAACLQAAAjgOASQgMAPgZAIg");
	this.shape_21.setTransform(-57.925,2.575);
	this.timeline.addTween(cjs.Tween.get({}).to({state:[{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},{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));
	this._renderFirstFrame();
}).prototype = getMCSymbolPrototype(lib.Text_03, new cjs.Rectangle(-61.9,-17.3,226.1,89.7), null);
(lib.Text_02 = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene_1
	this.shape = new cjs.Shape();
	this.shape.graphics.f("#FFFFFF").s().p("AgHA2IAAhiIgeAAIAAgKIBLAAIAAAKIgdAAIAABig");
	this.shape.setTransform(191,27.7);
	this.shape_1 = new cjs.Shape();
	this.shape_1.graphics.f("#FFFFFF").s().p("AgfArIgCgQIACAAQAPATAQAAQAIAAAFgFQAFgEAAgIQAAgIgFgGIgQgNQgNgIgEgFQgGgHAAgKQAAgNAKgIQAJgGAMAAQAOAAAIAFIABAMIgCAAQgIgJgMAAQgHAAgEAEQgGAEAAAIQAAAGAEAEQAEAFAJAGQAQAKAFAGQAHAIAAAMQAAAPgKAIQgKAHgOAAQgSAAgNgNg");
	this.shape_1.setTransform(181.675,27.725);
	this.shape_2 = new cjs.Shape();
	this.shape_2.graphics.f("#FFFFFF").s().p("AAiA2IgQgoIgoAAIgSAoIgMAAIAwhqIALgCIAuBsgAAOAFIgPgoIgBAAIgRAoIAhAAg");
	this.shape_2.setTransform(171.1,27.7);
	this.shape_3 = new cjs.Shape();
	this.shape_3.graphics.f("#FFFFFF").s().p("AgaA2IAAhsIAQAAIAABiIAOAAIAWgBIABAAIgFALg");
	this.shape_3.setTransform(161.825,27.7);
	this.shape_4 = new cjs.Shape();
	this.shape_4.graphics.f("#FFFFFF").s().p("AAVA2QgRgRgWgeIgIAAIAAAvIgQAAIAAhsIAcAAQAlABAAAdQABAVgZAHIAAAAQAXAeAVATIAAABgAgagBIANAAQAKgBAEgGQAGgHgBgJQAAgLgGgFQgEgEgMAAIgKAAg");
	this.shape_4.setTransform(152.55,27.7);
	this.shape_5 = new cjs.Shape();
	this.shape_5.graphics.f("#FFFFFF").s().p("AgeA2IAAhsIA1AAIAAAKIgkAAIAAAoIAgAAIAAAIIggAAIAAAoIAUAAIAWgBIABAAIgFALg");
	this.shape_5.setTransform(142.05,27.7);
	this.shape_6 = new cjs.Shape();
	this.shape_6.graphics.f("#FFFFFF").s().p("AgfAqQgRgPgBgbQAAgZATgQQARgOAZAAQAXAAAMAIIABAOIgCAAQgNgNgVAAQgSAAgLANQgNAMAAAVQAAAWANAMQAMAMARAAQAMAAAJgEIAAgpIARAAIAAAsQgGAFgLADQgLADgLAAQgaAAgQgOg");
	this.shape_6.setTransform(130.075,27.725);
	this.shape_7 = new cjs.Shape();
	this.shape_7.graphics.f("#FFFFFF").s().p("AAmA3IhHhVIgBAAIABBUIgLAAIAAhsIANAAIBBBPIAAAAIAAhPIALAAIAABtg");
	this.shape_7.setTransform(117.075,27.725);
	this.shape_8 = new cjs.Shape();
	this.shape_8.graphics.f("#FFFFFF").s().p("AAjBGIgSgpIgnAAIgSApIgMAAIAwhqIALgCIAuBsgAAPAUIgQgnIAAAAIgSAnIAiAAgAAHg1IAAgQIAPAAIAAAQgAgUg1IAAgQIAOAAIAAAQg");
	this.shape_8.setTransform(104.55,26.175);
	this.shape_9 = new cjs.Shape();
	this.shape_9.graphics.f("#FFFFFF").s().p("AAdA2IAAgzIg5AAIAAAzIgQAAIAAhsIAQAAIAAAvIA5AAIAAgvIAQAAIAABsg");
	this.shape_9.setTransform(92.075,27.7);
	this.shape_10 = new cjs.Shape();
	this.shape_10.graphics.f("#FFFFFF").s().p("AAmA3IhHhVIgBAAIABBUIgLAAIAAhsIANAAIBBBPIAAAAIAAhPIALAAIAABtg");
	this.shape_10.setTransform(78.875,27.725);
	this.shape_11 = new cjs.Shape();
	this.shape_11.graphics.f("#FFFFFF").s().p("AAjA2IgRgoIgoAAIgSAoIgMAAIAwhqIALgCIAuBsgAAOAFIgPgoIgBAAIgQAoIAgAAg");
	this.shape_11.setTransform(66.35,27.7);
	this.shape_12 = new cjs.Shape();
	this.shape_12.graphics.f("#FFFFFF").s().p("AgfAqQgRgPgBgbQAAgZATgQQARgOAZAAQAXAAAMAIIABAOIgCAAQgNgNgVAAQgSAAgLANQgNAMAAAVQAAAWANAMQAMAMARAAQAMAAAJgEIAAgpIARAAIAAAsQgGAFgLADQgLADgLAAQgaAAgQgOg");
	this.shape_12.setTransform(48.325,27.725);
	this.shape_13 = new cjs.Shape();
	this.shape_13.graphics.f("#FFFFFF").s().p("AAVA2QgKgLgkguIAAgBQAUgUAZgeIAQAAIgtAuQAiAtAUAQIAAABgAgrA2IAAhsIAQAAIAABsg");
	this.shape_13.setTransform(37.2,27.7);
	this.shape_14 = new cjs.Shape();
	this.shape_14.graphics.f("#FFFFFF").s().p("AgdApQgMgPABgZQgBgZAMgQQALgPASAAQASAAAMAPQAMAQAAAZQAAAZgMAPQgMAPgSAAQgSAAgLgPgAgRghQgFANAAAVQAAAuAWAAQAMAAAFgMQAHgMAAgWQAAgVgHgNQgGgNgLAAQgKAAgHANg");
	this.shape_14.setTransform(19.95,27.725);
	this.shape_15 = new cjs.Shape();
	this.shape_15.graphics.f("#FFFFFF").s().p("AgdApQgMgPABgZQgBgZAMgQQALgPASAAQASAAAMAPQAMAQAAAZQAAAZgMAPQgMAPgSAAQgSAAgLgPgAgRghQgFANAAAVQAAAuAWAAQAMAAAFgMQAHgMAAgWQAAgVgHgNQgGgNgLAAQgKAAgHANg");
	this.shape_15.setTransform(9.15,27.725);
	this.shape_16 = new cjs.Shape();
	this.shape_16.graphics.f("#FFFFFF").s().p("AghAvIgCgOIACAAQANALAPAAQAKAAAGgFQAJgHgBgMQABgLgGgGQgGgHgLABQgKAAgIAEIgHgBIAHg3IAzAAIgDAPIgmAAIgEAdQAHgDAIABQARAAAJAJQAJAIAAAQQABARgMAKQgMAIgQABQgRgBgMgIg");
	this.shape_16.setTransform(-1.75,27.8);
	this.shape_17 = new cjs.Shape();
	this.shape_17.graphics.f("#FFFFFF").s().p("AgJAJIAAgSIATAAIAAASg");
	this.shape_17.setTransform(-10.1,32.2);
	this.shape_18 = new cjs.Shape();
	this.shape_18.graphics.f("#FFFFFF").s().p("AgnA3IAAgGIASgRQASgTAIgNQAJgMAAgMQAAgIgFgGQgFgGgHAAQgOAAgLALIgBAAIABgNQAMgIAPAAQAQAAAIAIQAJAIAAANQgBANgIAMQgIAKgVAVIgKAKIAAAAIAbAAIAbAAIACAAIgGAOg");
	this.shape_18.setTransform(-18.4,27.625);
	this.shape_19 = new cjs.Shape();
	this.shape_19.graphics.f("#FFFFFF").s().p("AgIA2IAAhiIgdAAIAAgKIBLAAIAAAKIgeAAIAABig");
	this.shape_19.setTransform(-33.85,27.7);
	this.shape_20 = new cjs.Shape();
	this.shape_20.graphics.f("#FFFFFF").s().p("AgHA2IAAhsIAPAAIAABsg");
	this.shape_20.setTransform(-41.375,27.7);
	this.shape_21 = new cjs.Shape();
	this.shape_21.graphics.f("#FFFFFF").s().p("AAxA2IgJhVIAAAAIgoBPIgGAAIgohOIAAAAIgIBUIgMAAIANhsIAPAAIAmBOIAAAAIAnhOIAPAAIANBsg");
	this.shape_21.setTransform(-52.425,27.7);
	this.shape_22 = new cjs.Shape();
	this.shape_22.graphics.f("#FFFFFF").s().p("AgwBEQgSgagBgpQABgpASgZQATgaAdAAQAeAAATAaQASAZAAApQABApgUAaQgSAXgeAAQgdAAgTgXgAgbg2QgKAVAAAiQAABLAlAAQATAAAJgUQAKgTAAgkQAAgigKgVQgKgVgSAAQgSAAgJAVg");
	this.shape_22.setTransform(186.95,0.6);
	this.shape_23 = new cjs.Shape();
	this.shape_23.graphics.f("#FFFFFF").s().p("AgqBMQgTgSAAggQAAgsAegiQAbgfAjgIIALAKQgaAHgUAWQgVAXgFAZIABAAQAOgQAWAAQAWAAAQAOQARAOAAAaQAAAZgSARQgRAPgZAAQgbAAgRgPgAgWAFQgLALAAASQAAATAKALQAKANAOAAQAPAAAJgNQAJgLAAgSQAAgSgJgLQgIgLgPAAQgOAAgKAKg");
	this.shape_23.setTransform(170.025,0.6);
	this.shape_24 = new cjs.Shape();
	this.shape_24.graphics.f("#FFFFFF").s().p("AglAIIABgPIBKAAIgBAPg");
	this.shape_24.setTransform(155.625,2.475);
	this.shape_25 = new cjs.Shape();
	this.shape_25.graphics.f("#FFFFFF").s().p("AApBYIgthKIgBAAIgvBKIgWAAIA7hZIg3hXIAgAAIApBGIACAAIArhGIAVAAIg3BVIAmA5QAQAaAHAHIAAABg");
	this.shape_25.setTransform(141.125,0.6);
	this.shape_26 = new cjs.Shape();
	this.shape_26.graphics.f("#FFFFFF").s().p("Ag0BFQgdgYAAgtQAAgqAfgZQAcgYAoAAQAhAAAXAPIACAXIgEAAQgVgVggAAQgeAAgTATQgVAVAAAjQAAAjAWAUQATASAdAAQAlAAAXgUIADAAIgHAYQgWANgkAAQgrAAgagWg");
	this.shape_26.setTransform(122.775,0.6);
	this.shape_27 = new cjs.Shape();
	this.shape_27.graphics.f("#FFFFFF").s().p("AA4BYIgbhBIhCAAIgcBBIgUAAIBOisIATgEIBKCwgAAXAHIgZg/IgBAAIgcA/IA2AAg");
	this.shape_27.setTransform(95.125,0.6);
	this.shape_28 = new cjs.Shape();
	this.shape_28.graphics.f("#FFFFFF").s().p("AhRBYIAAiwIBEAAQAtAAAYAXQAaAWAAArQAAAqgcAYQgcAXgtgBgAg1BJIAeAAQBLAAAAhJQAAgkgSgSQgSgSglAAIggAAg");
	this.shape_28.setTransform(75.525,0.6);
	this.shape_29 = new cjs.Shape();
	this.shape_29.graphics.f("#FFFFFF").s().p("AhRBYIAAgHIBtiXIAAgCIhjAAIAFgQICGAAIAAAGIhtCZIAAABIBTAAQAXAAAPgDIACAAIgLATg");
	this.shape_29.setTransform(54.975,0.6);
	this.shape_30 = new cjs.Shape();
	this.shape_30.graphics.f("#FFFFFF").s().p("AA4BYIgbhBIhCAAIgcBBIgUAAIBOisIATgEIBKCwgAAXAHIgZg/IgBAAIgcA/IA2AAg");
	this.shape_30.setTransform(35.775,0.6);
	this.shape_31 = new cjs.Shape();
	this.shape_31.graphics.f("#FFFFFF").s().p("ABQBYIgOiLIgBAAIhCCBIgJAAIhBiBIgBAAIgNCLIgSAAIAUiwIAYAAIA/CAIAAAAIBAiAIAYAAIAUCwg");
	this.shape_31.setTransform(13.475,0.6);
	this.shape_32 = new cjs.Shape();
	this.shape_32.graphics.f("#FFFFFF").s().p("AAhBYQgagcglgyIgMAAIAABOIgcAAIAAiwIAvAAQA9ABABAvQAAAigpAMIAAABQAmAyAjAeIAAABgAgqgCIAUAAQAPgBAJgKQAJgLAAgPQAAgUgLgHQgIgGgTAAIgPAAg");
	this.shape_32.setTransform(-14.5,0.6);
	this.shape_33 = new cjs.Shape();
	this.shape_33.graphics.f("#FFFFFF").s().p("AgxBYIAAiwIBWAAIAAAQIg7AAIAAA/IA1AAIAAAPIg1AAIAABCIAhAAQAcAAAJgBIACAAIgJARg");
	this.shape_33.setTransform(-31,0.6);
	this.shape_34 = new cjs.Shape();
	this.shape_34.graphics.f("#FFFFFF").s().p("AhRBYIAAiwIBEAAQAtAAAYAXQAaAWAAArQAAAqgcAYQgcAXgtgBgAg1BJIAeAAQBLAAAAhJQAAgkgSgSQgSgSglAAIggAAg");
	this.shape_34.setTransform(-49.375,0.6);
	this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_34},{t:this.shape_33},{t:this.shape_32},{t:this.shape_31},{t:this.shape_30},{t:this.shape_29},{t:this.shape_28},{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},{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));
	this._renderFirstFrame();
}).prototype = getMCSymbolPrototype(lib.Text_02, new cjs.Rectangle(-61.9,-17.3,260.3,56.400000000000006), null);
(lib.Text_01 = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene_1
	this.shape = new cjs.Shape();
	this.shape.graphics.f("#FFFFFF").s().p("AgNBYIAAifIgwAAIAAgQIB7AAIAAAQIgwAAIAACfg");
	this.shape.setTransform(136.65,33.85);
	this.shape_1 = new cjs.Shape();
	this.shape_1.graphics.f("#FFFFFF").s().p("AgtBYIAAivIBbAAIAAAQIg/AAIAABBIA4AAIAAAOIg4AAIAABQg");
	this.shape_1.setTransform(123.725,33.85);
	this.shape_2 = new cjs.Shape();
	this.shape_2.graphics.f("#FFFFFF").s().p("AA4BYIgbhCIhCAAIgcBCIgUAAIBOitIATgCIBKCvgAAXAHIgZhAIgBAAIgcBAIA2AAg");
	this.shape_2.setTransform(106.775,33.85);
	this.shape_3 = new cjs.Shape();
	this.shape_3.graphics.f("#FFFFFF").s().p("AAiBYQgcgcgjgxIgOAAIAABNIgbAAIAAivIAuAAQA+gBAAAwQAAAigoALIAAABQAmAzAjAeIAAABgAgrgCIAUAAQARgBAIgLQAIgKAAgQQAAgTgKgHQgIgGgTAAIgQAAg");
	this.shape_3.setTransform(90.5,33.85);
	this.shape_4 = new cjs.Shape();
	this.shape_4.graphics.f("#FFFFFF").s().p("AAiBYQgQgSg8hLIAAgCQAighAqgvIAZAAIhKBJQA4BLAgAaIAAABgAhIBYIAAivIAcAAIAACvg");
	this.shape_4.setTransform(72.9,33.85);
	this.shape_5 = new cjs.Shape();
	this.shape_5.graphics.f("#FFFFFF").s().p("AA+BZIh0iKIgBAAIAACJIgSAAIAAiwIAWAAIBqCAIABAAIAAiAIASAAIAACxg");
	this.shape_5.setTransform(43.975,33.9);
	this.shape_6 = new cjs.Shape();
	this.shape_6.graphics.f("#FFFFFF").s().p("AgxBYIAAivIBXAAIAAAQIg8AAIAAA/IA1AAIAAAOIg1AAIAABDIAhAAQAbAAAKgDIACAAIgJASg");
	this.shape_6.setTransform(27.2,33.85);
	this.shape_7 = new cjs.Shape();
	this.shape_7.graphics.f("#FFFFFF").s().p("AhRBYIAAgGIBtiYIAAgBIhjAAIAFgQICGAAIAAAFIhtCZIAAACIBTgBQAXgBAPgDIACAAIgLAUg");
	this.shape_7.setTransform(9.825,33.85);
	this.shape_8 = new cjs.Shape();
	this.shape_8.graphics.f("#FFFFFF").s().p("AA+BZIh0iKIgBAAIAACJIgSAAIAAiwIAWAAIBqCAIABAAIAAiAIASAAIAACxg");
	this.shape_8.setTransform(-10.575,33.9);
	this.shape_9 = new cjs.Shape();
	this.shape_9.graphics.f("#FFFFFF").s().p("AA4BYIgbhCIhCAAIgcBCIgUAAIBOitIATgCIBKCvgAAXAHIgZhAIgBAAIgcBAIA2AAg");
	this.shape_9.setTransform(-30.325,33.85);
	this.shape_10 = new cjs.Shape();
	this.shape_10.graphics.f("#FFFFFF").s().p("AgzBFQgdgZAAgrQAAgrAfgZQAcgYAoAAQAlAAAUAPIACAXIgDAAQgVgWgiAAQgeABgTATQgVAVAAAjQAAAjAVAVQAUASAdAAQATAAAPgHIAAhCIAbAAIAABIQgKAIgRAEQgSAGgSAAQgrgBgagWg");
	this.shape_10.setTransform(-50.475,33.85);
	this.shape_11 = new cjs.Shape();
	this.shape_11.graphics.f("#FFFFFF").s().p("AAiBYQgbgcgkgyIgOAAIAABOIgbAAIAAiwIAvAAQA9ABABAvQAAAigpAMIAAABQAmAyAjAeIAAABgAgrgCIAVAAQAPgBAJgKQAJgLgBgPQABgUgLgHQgIgGgTAAIgQAAg");
	this.shape_11.setTransform(178.45,0.6);
	this.shape_12 = new cjs.Shape();
	this.shape_12.graphics.f("#FFFFFF").s().p("AgxBYIAAiwIBWAAIAAAQIg7AAIAAA/IA1AAIAAAPIg1AAIAABCIAhAAQAcAAAJgBIACAAIgJARg");
	this.shape_12.setTransform(161.95,0.6);
	this.shape_13 = new cjs.Shape();
	this.shape_13.graphics.f("#FFFFFF").s().p("AAhBYQgbgcgkgyIgMAAIAABOIgcAAIAAiwIAuAAQA/ABgBAvQAAAigoAMIAAABQAmAyAjAeIAAABgAgqgCIATAAQARgBAIgKQAJgLAAgPQAAgUgLgHQgIgGgTAAIgPAAg");
	this.shape_13.setTransform(146.9,0.6);
	this.shape_14 = new cjs.Shape();
	this.shape_14.graphics.f("#FFFFFF").s().p("AAvBYIAAhUIhcAAIAABUIgcAAIAAiwIAcAAIAABMIBcAAIAAhMIAbAAIAACwg");
	this.shape_14.setTransform(126.225,0.6);
	this.shape_15 = new cjs.Shape();
	this.shape_15.graphics.f("#FFFFFF").s().p("AgNBYIAAiwIAbAAIAACwg");
	this.shape_15.setTransform(111.275,0.6);
	this.shape_16 = new cjs.Shape();
	this.shape_16.graphics.f("#FFFFFF").s().p("AA+BZIh0iLIgBAAIAACKIgSAAIAAiwIAWAAIBqCAIABAAIAAiAIASAAIAACxg");
	this.shape_16.setTransform(88.225,0.65);
	this.shape_17 = new cjs.Shape();
	this.shape_17.graphics.f("#FFFFFF").s().p("AgNBYIAAiwIAbAAIAACwg");
	this.shape_17.setTransform(73.275,0.6);
	this.shape_18 = new cjs.Shape();
	this.shape_18.graphics.f("#FFFFFF").s().p("AhRBYIAAgHIBtiXIAAgCIhjAAIAFgQICGAAIAAAGIhtCZIAAABIBTAAQAXAAAPgDIACAAIgLATg");
	this.shape_18.setTransform(51.425,0.6);
	this.shape_19 = new cjs.Shape();
	this.shape_19.graphics.f("#FFFFFF").s().p("AA+BZIh0iLIgBAAIAACKIgSAAIAAiwIAWAAIBqCAIABAAIAAiAIASAAIAACxg");
	this.shape_19.setTransform(31.025,0.65);
	this.shape_20 = new cjs.Shape();
	this.shape_20.graphics.f("#FFFFFF").s().p("AA4BYIgbhBIhCAAIgcBBIgUAAIBOisIATgEIBKCwgAAXAHIgZg/IgBAAIgcA/IA2AAg");
	this.shape_20.setTransform(11.275,0.6);
	this.shape_21 = new cjs.Shape();
	this.shape_21.graphics.f("#FFFFFF").s().p("AgzBFQgdgYAAgtQAAgpAfgaQAcgYAoAAQAlABAUAOIACAWIgDAAQgVgUgiAAQgeAAgTATQgVAVAAAjQAAAjAVAUQAUATAdAAQATAAAPgGIAAhEIAbAAIAABJQgKAIgRAFQgSAEgSAAQgrAAgagWg");
	this.shape_21.setTransform(-8.875,0.6);
	this.shape_22 = new cjs.Shape();
	this.shape_22.graphics.f("#FFFFFF").s().p("AgxBYIAAiwIBWAAIAAAQIg7AAIAAA/IA1AAIAAAPIg1AAIAABCIAhAAQAbAAAKgBIACAAIgJARg");
	this.shape_22.setTransform(-25.35,0.6);
	this.shape_23 = new cjs.Shape();
	this.shape_23.graphics.f("#FFFFFF").s().p("AgrBYIAAiwIAbAAIAACgIAWAAQAaAAALgBIABAAIgJARg");
	this.shape_23.setTransform(-38.725,0.6);
	this.shape_24 = new cjs.Shape();
	this.shape_24.graphics.f("#FFFFFF").s().p("AgxBYIAAiwIBXAAIAAAQIg8AAIAAA/IA1AAIAAAPIg1AAIAABCIAhAAQAbAAAKgBIACAAIgJARg");
	this.shape_24.setTransform(-52.55,0.6);
	this.timeline.addTween(cjs.Tween.get({}).to({state:[{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},{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));
	this._renderFirstFrame();
}).prototype = getMCSymbolPrototype(lib.Text_01, new cjs.Rectangle(-61.9,-17.3,250.20000000000002,68.5), null);
(lib.Symbol3 = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	this._renderFirstFrame();
}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(0,0,0,0);
(lib.Logo = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene_1
	this.shape = new cjs.Shape();
	this.shape.graphics.lf(["#EFEFEF","#595857"],[0,1],536.3,922.5,-537.2,-936.8).s().p("EAAACUmQ2wgCzViKQzWiKwokXQuqj2tCluQtDltr8n0Qx1rqsYySQqVvSmOzbQk4vNiGw4QhbrcAAqmQABv9CaujQCbujEzs4QEdr9GkqpQGjqqIhpJQLLr+OjosQOkorShltQSelrWnizQWpi0bpgBQboABWoC0QWoCzSdFrQSiFtOkIrQOkIsLKL+QIfJHGjKqQGjKqEeL/QE0M6CbOkQCbOiAAP6QAAKmhbLcQiGQ4k3PNQmOTbqWPSQsXSSx2LqQr8H0tCFtQtDFuupD2QwpEXzVCKQzVCK2wACgEgyMiRUQ2nCzybFrQydFrugIpQuhIqrIL7QogJImhKnQmiKnkcL6QkzM1iaOhQibOhAAP6QAAKkBbLaQCGQ1E2PJQGNTYKTPPQMVSORxLnQL6HzNAFtQNCFsOlD1QQoEXTUCKQTTCKWuACIAAAAQWugCTViKQTTiKQnkXQOmj1NBlsQNBltL6nzQRxrnMVyOQKTvPGMzYQE2vJCGw1QBbraAAqkQAAv3ibuhQibugkzs4Qkdr9mhqnQmiqooepFQrHr7uhoqQuhopydlrQyalr2mizQ2miz7ngCQ7oAC2lCzg");
	this.shape.setTransform(1849.999,1246.5338,1.3053,1.3052);
	this.shape_1 = new cjs.Shape();
	this.shape_1.graphics.f("#727171").s().p("EAAABNSUgjqgADgXxgF3QsIi/qHkrQp/knolmgQt1qhpjwGQn3tSkrwkQjksohgtqQg9ojABnUQgBweCSuWIAFgeIAbAOQLnGZNrE4QIGC5PTEWIDXA+QPHEVMKFxQMIFxJpHbQLQIrIGLKQItMDFDPAQBMDkBMBfQBMBeBpAAQBqAABMheQBLhfBNjkQFDvAIusDQIDrJLSosQJonbMJlxQMKlxPIkVIDXg+QPRkWIHi5QNrk4LnmZIAbgOIAEAeQCTOUAAQgQgBHUg8IkQhfNrjlMoQkrQln3NRQpjQGt2KfQomGgqAEnQqHErsJC/UgXxAF3gjlAADgEiNsgt/QAAHSA8IiQBfNnDjMkQEqQiH1NOQJgQDNzKdQIiGfJ9EmQKGEqMFC/UAXuAF1AjkAADIACAAUAjhgADAXsgF2QMGi+KHkqQJ9kmIkmfQNyqbJgwDQH1tNErwiQDjslBftoQA8oiAAnTQAAwXiQuPQrnGYtqE3QoJC5vOEVIjXA+QvFEVsHFwQsHFwpmHZQrOIpoCLFQoqL9lCO/QhQDvhSBjQhRBjh2AAQh0AAhShjQhShjhQjvQlCu8orsAQoBrFrPopQpmnZsHlwQsGlwvFkVIjXg+QvPkVoIi5Qtrk3rnmYQiPOMAAQag");
	this.shape_1.setTransform(1849.9125,1641.5714,1.3052,1.3052);
	this.shape_2 = new cjs.Shape();
	this.shape_2.graphics.f("#727171").s().p("EgCDBGaQhEhHhTiaQqOy4vwtuQvwtu1BoVIlXiHQuwl0nXjLQsXlUpdlOQkrijkUiwIgZgPIAOgZQEvoXGGnRQRW0ucCp6UAcCgJ6ApXgACUApXAACAcBAJ6QcBJ6RXUuQGEHOExIaIANAZIgXAPQkWCwkpCjQpfFOsXFUQnZDMuuFzIlXCHQ1AIVvwNuQvwNuqOS4QhTCZhEBIQhEBGhAABQg/gBhEhGgEhFLg9JQ79J4xTUoQmFHSktITQEVCwEqCkQJeFMMVFVQHVDKOwF0IFYCIQVFIVP0NyQPzNyKQS7QBOCQBABEQA+BFA2AAQA2AABAhFQA/hEBNiQQKRy7P0tyQPztyVEoVIFYiIQOxl0HUjKQMXlVJdlMQEpikEWiwQktoTmGnSQxT0o77p4Ugb9gJ3gpPgADUgpRAADgb7AJ3g");
	this.shape_2.setTransform(1849.9125,772.0858,1.3052,1.3052);
	this.shape_3 = new cjs.Shape();
	this.shape_3.graphics.f("#FFFFFF").s().p("Eh9xAWQIk4mjQgKgOgTgSQgvgwhCgmQgsgagmgNQg4gSn9jmIgBAAQg/gdhagsQhWgrgSgIIAJgMQCvBLK2DlIAGACQAYAIAQAAQAYAAAagLQAZgMAPgOQC+jCDljEQGFlQGxkXQNTolQjlvQQvlxUUi7QUYi7YLgCIAgAAQYMACUYC7QUUC7QvFxQQjFuNTImQGvEWGGFRQDjDBDDDHQAcAdA0AAQAXABAVgIIAGgCQLDjpCohJIASAPIhwAsQheAkhBAeIlZCaQi0BQgjAMQgcAKhBAnQgzAeg9A8QgTATgKANIqmOeIgLgOIEVmcQDolXBVh5QAegtAAg7QAAg7geghQ0f0W/9qBUgf+gKDgskgACUgsnAACgf8AKAQ/7KB0eUUQgfAigDA8QgCA+AeAsQCLDIHIKnIgKANQhDhdkxmZg");
	this.shape_3.setTransform(1850.6517,317.6294,1.3053,1.3052);
	this.shape_4 = new cjs.Shape();
	this.shape_4.graphics.f("#FFFFFF").s().p("EgALBlsQ01gDxUhwQxVhwudjjQtrjWrzlHQrylHqWnFQvmqqq4v/QpPtmloxGQkityh/vbQhdrOAArCQAAwHCEt+QCEt+EOsXQBmkqB5kdQARgoAegWQAdgXAlAAQAmAAAkAZQPPKaTbIgQHhDTJDDZQFXCCJ+DiQREGCHpDMQMkFSHKFMQL4InL4O3QEkFuErH5QEPHKEDIfQEDodEQnMQEqn5ElluQL2u2L5ooQHLlMMllSQHmjMRFmCQJ/jiFWiCQJEjZHhjTQTbogPPqaQAkgZAmAAQAkAAAeAXQAeAWAQAoQB6EaBmEtQENMYCEN9QCFN/AAQGQAALChdLOQh/PbkhNyQlpRGpPNmQq4P/vmKqQqWHFrzFHQryFHtrDWQudDjxVBwQxUBw02ADgEih+hFGQi5P9AASwQAAK1BbLAQB9PKEcNgQFhQxJFNVQKqPsPUKbQUdN7cCGgUAcDAGhAn9AAEUAn/gAEAcCgGhQcCmfUdt8QPTqbKrvsQJFtVFhwxQEctgB9vKQBbrAAAq1QAAyxi5v8Qi6v9l5twQmBEHnPD9QnPD+qdE6QnjDjqFD2QmCCTsGETQw9F/nfDJQsaFNm/FDQsCItqvNwQquNwnjQVQggBGgTAaQgVAbgWAEIAAACIgWAAIAAgCQgWgDgTgcQgUgagghGQniwVqwtwQqvtwsBotQm/lDsblNQnejIw8mAQsHkTmCiTQqFj2nkjjQqck6nPj+QnPj9mCkHQl4Nwi6P9g");
	this.shape_4.setTransform(1849.999,1554.8634,1.3053,1.3052);
	this.shape_5 = new cjs.Shape();
	this.shape_5.graphics.lf(["rgba(247,248,248,0)","rgba(235,235,235,0.149)","rgba(200,200,201,0.537)","#9A9A9A","#757575","#595757","#454242","#3E3B3A"],[0.365,0.427,0.561,0.698,0.788,0.875,0.949,1],0,634.3,0,-634.2).s().p("EgAHBjHUgn8gAFgcBgGgQ8Bmg0bt7QvUqcqsvsQpEtVlhwxQkdtih9vJQhbrAAAq2QAAynC3v2QC2v1FztsIAOggIAcATQF9ECHID5QHJD5KUE3QHjDjKFD2QGDCTMGESQQ8GAHfDJQMaFMHAFEQMBItKwNxQKvNwHjQVQAjBMAUAZQAVAaAZAAQAbAAAUgaQAVgZAjhMQHiwVKvtwQKwtwMCouQG/lEMalMQHfjJQ9mAQMGkSGCiTQKFj2HjjjQKVk3HIj5QHJj5F8kCIAdgTIANAgQFzNrC3P2QC2P2AASnQAAK2hbLAQh9PKkcNhQlhQxpFNVQqsPsvTKcQ0cN78BGgUgcBAGggn7AAFgEihPhEnQiyPpAASWQAAKxBaK8QB8PDEaNbQFeQrJANPQKmPkPMKXQUWN3b7GeUAb7AGdAn1AAEUAn2gAEAb7gGdQb7meUWt3QPMqXKmvkQJAtPFewrQEatbB8vDQBaq8AAqxQAAyWiyvpQixvplrthQl4D9nGD3QnED2qLEyQnkDkqHD3QmBCTsJETQw3F+nfDIQsWFKm7FBQr8IpqrNqQqrNrnfQPQgqBbgYAeQglAvgzAAQgyAAglgvQgYgegqhbQnfwPqrtrQqqtqr8opQm7lBsXlKQnejIw3l+QsGkSmFiUQqGj3nljkQqLkynEj2QnGj3l4j9QlrNhixPpg");
	this.shape_5.setTransform(1849.9664,1556.7886,1.3053,1.3052);
	this.shape_6 = new cjs.Shape();
	this.shape_6.graphics.f("#C9CACA").s().p("ECBfAWOQgpg9gJgJQ0c0U/3p+Ugf4gJ/gsfgADUgsgAADgf3AJ+Q/2J90aURIg8BLQgaAigTAAQgOAAgJgJQgugug+glQgQgJgCgTQgEgdADgGQAJgVA5g4IAKgKQDEjHDijBQGHlSGykXQNUomQolwQQylzUWi7QULi5YAgEIBWAAQX8AEUSC5QUUC6Q0F0QQmFvNWInQG1EaGEFQQDiDADGDKIAMALQAyAxAHAXIgDAlQgCATgRAJQgwAeg6A5QgLAJgNAAQgUAAgagng");
	this.shape_6.setTransform(1849.8368,253.4444,1.3053,1.3052);
	this.shape_7 = new cjs.Shape();
	this.shape_7.graphics.lf(["#595857","#626161","#7A797A","#9F9F9F","#CDCDCE","#FBFBFB","#FFFFFF"],[0.122,0.176,0.271,0.388,0.529,0.671,0.725],0,650.8,0,-650.7).s().p("EgAnBlsQ0tgExPhwQxPhwubjhQttjVr1lHQr0lGqZnEQvqqqq7v/QpStmlpxEQkitxiAvaQhdrNAArBQAAwECFt9QCEt8EOsXQBkkmB8kgQAVgwAlgbQAkgbAtAAQAuAAAsAeQPNKWTZIcQHhDSJCDZQFVB/J/DiQRIGCHnDLQMmFRHNFMQL+IpL3O0QEPFSEZHRQEXHOEMIqQENopEXnPQEZnREPlSQL5u1L8ooQHNlMMmlRQHmjLRJmCQJ/jiFVh/QJDjZHgjSQTZocPNqWQAtgeAtAAQAuAAAkAbQAkAaAVAxQB9ElBjEhQEOMWCFN9QCEN8AAQFQAALBhdLNQiAPakiNxQlpRFpSNlQq7P/vqKqQqYHEr1FGQr0FHtuDVQuaDhxPBwQxQBw0tAEgEiabhk4QgeAWgRAoQh5EchmEoQkNMUiFN6QiEN6AAQDQAAK/BdLLQB/PWEiNuQFnRBJQNiQK4P8PmKnQKWHDLyFFQLzFGNrDVQOeDhRUBwQRVBwU1ADIAVAAQU1gDRVhwQRVhwOdjhQNsjVLylGQLylFKWnDQPmqnK4v8QJQthFoxCQEhtuCAvWQBcrLAAq/QAAwCiEt7QiEt6kOsUQhmkrh5kZQgRgogegWQgdgWglAAQgmAAgkAYQvPKXzbIeQnhDSpDDZQlVB/qBDiQxHGDnkDKQslFQnKFKQr6Imr2OxQklFukqH2QkQHJkDIbQkCockQnIQkqn3klltQr3uzr4okQnMlLsjlPQnqjNxCmAQqAjilWh/QpDjZnhjSQzboevPqXQgkgYgmAAQglAAgdAWg");
	this.shape_7.setTransform(1849.9664,1558.5507,1.3053,1.3052);
	this.shape_8 = new cjs.Shape();
	this.shape_8.graphics.lf(["#221916","#4C4949","#7A7A7A","#221916"],[0,0.239,0.502,1],-672,0,672.1,0).s().p("A8cQNQsmg3qFh2Qqjh7ozjKQpAjOn3kxQn5kxnTmrQh7hxgLgNQgMgQBVA+QiAhrAjAOQAjAPCcB5QDmC1EICnQDdCME7CvQDNBhBGAgQCgBJB9AvQPkFzUrCpQReCPVaAAIEugFQNjgbHlgeQKMgqH9hMQI3hWIWiVQIvicJmj6QB0gvCahRIEFiLQFYi+EGi7QCwh9ELjeQCXh+AYgIQAYgJh9BvQBThAgMAQQgKAOh4B0QnFG5nvFCQntE/o5DhQotDbqfCQQqBCKsjBQQtPBlvoAHQj0AGjsAAQrYAAqBg5g");
	this.shape_8.setTransform(1866.589,2174.9703,1.3053,1.3052);
	this.shape_9 = new cjs.Shape();
	this.shape_9.graphics.f("#3E3B3A").s().p("AGZPaQhDh2hXioQiulOhlj4Qhmj3imm/IiQmOQgCgFACgFQADgFAFgCQAFgCAFACQAFACACAGICeGzQCrHTBPC9QBRC+C2FjQBbCxBNCPQADAFgCAGQgBAFgFADIgHABQgIAAgDgHg");
	this.shape_9.setTransform(626.6748,866.4235,1.3053,1.3052);
	this.shape_10 = new cjs.Shape();
	this.shape_10.graphics.f("#3E3B3A").s().p("AmpPgQgGgDgBgFQgCgGADgFICplAQC2ljBQi+QBQi/CrnRICdmzQACgGAFgCQAFgCAFACQAGACACAFQACAFgCAFIiQGOQimG/hmD3QhlD4iuFOIiZEeQgEAHgIAAIgGgBg");
	this.shape_10.setTransform(3073.7309,866.4235,1.3053,1.3052);
	this.shape_11 = new cjs.Shape();
	this.shape_11.graphics.lf(["#F7F8F8","#4C4949"],[0,0.973],-536.2,-936.8,537.3,922.5).s().p("EAAACUmQ2wgCzViKQzWiKwokXQuqj2tCluQtDltr8n0Qx1rqsYySQqVvSmOzbQk4vNiGw4QhbrcAAqmQAAv6CcuiQCbukE1s6QEer/GiqqQGjqqIfpHQLLr+OjosQOkorShltQSelrWnizQWpi0bogBQbpABWoC0QWnCzSeFrQSiFtOkIrQOkIsLKL+QIhJJGkKqQGjKpEcL9QE0M4CaOjQCbOjAAP9QAAKmhbLcQiGQ4k3PNQmOTbqWPSQsXSSx2LqQr8H0tCFtQtDFuupD2QwpEXzVCKQzVCK2wACgEgyMiRUQ2nCzybFrQydFrugIpQuhIqrIL7QodJFmiKoQmhKnkdL9QkzM4icOgQiaOhgBP3QAAKkBbLaQCGQ1E2PJQGNTYKTPPQMVSORxLnQL6HzNAFtQNCFsOlD1QQoEXTUCKQTTCKWuACIABAAQWtgCTViKQTTiKQnkXQOmj1NBlsQNBltL6nzQRxrnMVyOQKTvPGMzYQE2vJCGw1QBbraAAqkQAAv7ibugQiauhkys1Qkcr6miqnQmiqnogpIQrHr7uhoqQuhopydlrQyblr2mizQ2liz7ogCQ7nAC2lCzg");
	this.shape_11.setTransform(1849.999,1246.5338,1.3053,1.3052);
	this.shape_12 = new cjs.Shape();
	this.shape_12.graphics.f("#221916").s().p("EAAACVCUgtJgAEghBgIqQvUkBtfmAQsdlkrknjQxQrSsLxfQqVu1mZy3QlKvPiUxCQhuslAAr0UAAAggDAJtgaBQJB4MRIyYUAWLgX0Ak0gLVUAkogLSA22gADIABAAUA21AADAkpALSUAkzALVAWMAX0QRNScI+YGUAJrAZ8AAAAgKQAAL0huMlQiVRDlJPOQmZS3qVO1QsLRfxRLSQrkHjscFkQtgGAvSEBUghDAIrgtIAADgEgyRiRwQ2nCzyeFrQyhFtujIsQukIrrLL+QofJHmjKqQmiKqkeL/Qk1M7ibOjQicOiAAP7QAAKmBbLbQCGQ4E4PNQGOTbKVPSQMYSTR1LpQL8H0NDFtQNCFvOqD1QQoEXTWCLQTVCJWwACIABAAQWwgCTViJQTViLQqkXQOoj1NDlvQNCltL8n0QR2rpMXyTQKWvSGOzbQE3vNCGw4QBbrbAAqmQAAv+ibujQiaujk0s4Qkcr8mjqqQmkqpohpKQrKr+ukorQukosyiltQyelr2nizQ2oiz7pgCQ7oAC2pCzg");
	this.shape_12.setTransform(1849.999,1246.5012,1.3053,1.3052);
	this.shape_13 = new cjs.Shape();
	this.shape_13.graphics.f("#DCDDDD").s().p("AgRPXQgngmgiACQAWhfAWiLQAtkWAEjbQAImHgNkzQgPlVgnizQgNg8AOgCQAOgDAQBFQBzIKAAJQQABF4g5I9QgOgtglglg");
	this.shape_13.setTransform(3143.3083,582.1625,1.3053,1.3052);
	this.shape_14 = new cjs.Shape();
	this.shape_14.graphics.f("#FFFFFF").s().p("AhTB0QAMosB2oVQAPhEAOACQAOACgNA9QgoC5gTFRQgSFIAHF0QAEDbAmETQATCJASBeQgpgEghAPQgpASgMAoQgzoDAJmZg");
	this.shape_14.setTransform(557.8419,574.69,1.3053,1.3052);
	this.shape_15 = new cjs.Shape();
	this.shape_15.graphics.f("#898989").s().p("EAAABNSUgjngADgXxgF3QsHi/qJkrQp/knommgQt2qfpjwGQn3tRkrwlQjksohgtrQg9okABnUQgBweCSuWIAFgeIAbAOQLnGZNrE4QIGC5PTEWIDXA+QPHEVMKFxQMIFxJpHbQLQIrIGLKQItMDFDPAQBMDkBMBfQBMBeBpAAQBqAABMheQBLhfBNjkQFDvAIusDQIDrJLSosQJonbMJlxQMKlxPIkVIDWg+QPSkWIHi5QNrk4LnmZIAbgOIAEAeQCTOUAAQgQgBHUg8IjQhfNqjlMoQkrQkn3NSQpjQHt2KgQolGgp+EnQqIErsIC/UgXxAF3gjqAADgEiNsgt/QAAHTA8IiQBfNoDjMlQEqQiH1NNQJgQDNzKbQIkGfJ+EmQKGEqMFC+UAXsAF1AjjAAEIAAAAUAjkgADAXugF1QMGi/KFkqQJ+kmIimfQNyqdJgwDQH1tOErwiQDjskBftnQA8oiAAnSQAAwXiQuPQrnGYtqE3QoJC5vOEVIjXA+QvFEVsHFwQsHFwpmHZQrOIpoCLFQoqL9lCO/QhQDvhSBjQhRBjh2AAQh0AAhShjQhShjhQjvQlCu8orsAQoBrFrPopQpmnZsHlwQsGlwvFkVIjXg+QvPkVoIi5Qtrk3rnmYQiPOMAAQag");
	this.shape_15.setTransform(1849.9125,1641.5714,1.3052,1.3052);
	this.shape_16 = new cjs.Shape();
	this.shape_16.graphics.f("#898989").s().p("EgCDBGaQhEhHhTiaQqOy4vwtuQvwtu1BoVIlXiHQuwl0nXjLQsXlUpdlOQkrijkUiwIgZgPIAOgZQEvoXGGnRQRW0ucCp6UAcCgJ6ApWgACUApYAACAcBAJ6QcBJ6RXUuQGEHOExIaIANAZIgXAPQkWCwkpCjQpfFOsXFUQnZDMuuFzIlXCHQ1AIVvwNuQvwNuqOS4QhTCZhEBIQhEBGhAABQg/gBhEhGgEhFMg9JQ78J4xTUoQmFHSktITQEbCzEkChQJeFMMVFVQHVDKOwF0IFYCIQVFIVP0NyQPzNyKQS7QBOCQBABEQA+BFA2AAQA2AABAhFQA/hEBNiQQKRy7P0tyQPztyVEoVIFYiIQOxl0HUjKQMXlVJdlMQEpikEWiwQktoTmGnSQxS0o78p4Ugb9gJ3gpQgADUgpPAADgb9AJ3g");
	this.shape_16.setTransform(1849.9125,772.0858,1.3052,1.3052);
	this.shape_17 = new cjs.Shape();
	this.shape_17.graphics.f("#221916").s().p("AgSgEIAXgPIAOAXIgYAQg");
	this.shape_17.setTransform(2893.5154,645.6354,1.3053,1.3052);
	this.shape_18 = new cjs.Shape();
	this.shape_18.graphics.f("#221916").s().p("AgSAEIAOgXIAXAPIgOAYg");
	this.shape_18.setTransform(806.4826,645.6354,1.3053,1.3052);
	this.shape_19 = new cjs.Shape();
	this.shape_19.graphics.f("#221916").s().p("AgPAIIAEgeIAbAPIgEAdg");
	this.shape_19.setTransform(686.4973,1004.7713,1.3053,1.3052);
	this.shape_20 = new cjs.Shape();
	this.shape_20.graphics.f("#221916").s().p("AgPgHIAagPIAFAeIgbAOg");
	this.shape_20.setTransform(3013.5007,1004.7713,1.3053,1.3052);
	this.shape_21 = new cjs.Shape();
	this.shape_21.graphics.f("#221916").s().p("EgDjAuWQhRhmhPjtQpm8m3Nx3Qy8un9zoiIsGjfQnDiFlkh6QunlDsMmoIAEgeQLgGRNiEzQIDC2PIEUIDXA+QPFEUMGFxQMHFwJmHZQLPIoIBLFQIrMAFCO9QBQDvBSBiQBSBjB0AAQB2AABRhjQBShiBQjvQFCvAIqr9QICrFLOooQJmnZMHlwQMHlxPFkUIDXg+QPIkUICi2QNjkzLgmRIAEAeQsMGouoFDQljB6nDCFIsGDfQ9zIiy9OnQ3MR3pmcmQhQDthRBmQhcB1iHAAQiGAAhdh1g");
	this.shape_21.setTransform(1849.999,1406.1969,1.3053,1.3052);
	this.shape_22 = new cjs.Shape();
	this.shape_22.graphics.f("#221916").s().p("EByFAMxQw+0Q7wp5UgcLgKDgpLgADIgBAAUgpMAADgcKAKDQ7vJ5w/UQQl7HEknIGIgZgPQEnoGF9nHQRT0ob8p3UAb9gJ4ApPgACIABAAUApPAACAb9AJ4Qb7J3RTUoQF9HHEoIGIgZAPQknoGl7nEg");
	this.shape_22.setTransform(1849.999,411.7696,1.3053,1.3052);
	this.shape_23 = new cjs.Shape();
	this.shape_23.graphics.f("#221916").s().p("EAAABMfUgjigAEgXtgF1QsFi/qGkpQp+knokmeQtzqcpgwCQn1tNkqwjQjjslhftnQg8ojAAnSQAAwJCLt/IAcAPQiLN6AAP/QAAJnBaKkQB3NxD+MfQE4PTHuMPQJEOVMsJnQQuMpXYF1UAX7AF+AjqAAEIABAAUAjrgAEAX7gF9QL+i/KAkoQJwkjIXmVQMqpnJDuVQHusPE4vTQD/sfB3txQBbqlAApmQAAv9iKt8IAcgPQCLN/AAQJQAAHSg8IiQhfNmjjMlQkrQin1NOQpgQDtyKdQoiGfp9EmQqFEqsHC+UgXtAF2gjlAADg");
	this.shape_23.setTransform(1849.999,1644.6637,1.3053,1.3052);
	this.shape_24 = new cjs.Shape();
	this.shape_24.graphics.f("#FFFFFF").s().p("AgZrLIAzAAIgzWXg");
	this.shape_24.setTransform(1853.3601,1471.0345,1.3053,1.3052);
	this.shape_25 = new cjs.Shape();
	this.shape_25.graphics.f("#221916").s().p("AK9J6QhGi4hci5IjKmDQlHp1lGmuQj9lMospKQG7FdDlDwQC4DBHEI4QDbETFNIhQCmERB7DbIBmYBQkUwuiVmMg");
	this.shape_25.setTransform(1706.4539,1302.3327,1.3053,1.3052);
	this.shape_26 = new cjs.Shape();
	this.shape_26.graphics.lf(["#221916","#444140","#646363","#797878","#858585","#898989","#949595","#B9B9BA","#D4D5D5","#E8E8E9","#F6F6F6","#FDFDFD","#FFFFFF","#C5C6C6"],[0,0.039,0.086,0.129,0.173,0.212,0.239,0.345,0.451,0.561,0.667,0.776,0.89,1],498.6,0,-498.6,0).s().p("EBM9BDcQhwjfjjmYQoMupo3qeQn2pSo1mfQnSlXo+kKQlGiXqtkAQjQhNuelgQt6lSoYjIQqcj4sXmoQqwlwpkmXQgOgJgDgjQgBgXAEhEQAKizgPiEQgWi/gCj5QgBimAIj5QAJkaAykVIAvjdIB1CTQCaC5C7C/QJWJlK/HAQHfExI+EZQHRDjKxEgQEGBtHoC/QHcC8DpBhQMmFSKBGIQJHFlGTFQQFcEjFiGQQFoGVEpHRQCODeD9HKQBDB6BOAhQAbALAdABQAQABAXgCIADPcQACMIABAVQgHgUg2hrg");
	this.shape_26.setTransform(1205.5806,1020.6626,1.3053,1.3052);
	this.shape_27 = new cjs.Shape();
	this.shape_27.graphics.lf(["#221916","#221916","#221916","#292220","#3B3736","#221916"],[0,0.031,0.341,0.42,0.569,0.808],-73.1,-239,73.2,239.7).s().p("EhM1An2ICKlaQBcjmBbi3QEPogH2prQGxoXGlmNQGfmJHAkwQGskhIBj3QHQjeJwjkQDahQKbjcQKGjVIPjDQLvkWMcl8QNhmdIMleQALgHifGpQitHQh+EiQiPFHivFTIiSERQioBakGB9QoMD4nSCtQlUB+obCeIvZEaQpdCtmCCAQoPCvl1CqQwnHjrOHzQt/JunJLBQhfCUjUGDQhgCvgXBsQgSBRAADNQAACnAFFEQABD2gRAaQg+BihiAAg");
	this.shape_27.setTransform(2492.0337,1263.0366,1.3053,1.3052);
	this.shape_28 = new cjs.Shape();
	this.shape_28.graphics.lf(["#221916","#4E4C4B","#747373","#929393","#ABACAC","#BEBFBF","#CCCDCD","#D6D6D6","#DBDBDC","#DCDDDD","#FFFFFF"],[0,0.031,0.067,0.106,0.149,0.196,0.251,0.314,0.404,0.608,0.824],-495.9,0,496,0).s().p("EhNfBFcQAo4mAAjjQATAAArgpQA2g0AwhTQEWnjEBltQE0m1F4mdQFbl8FpkjQF0krIdlLQG4kNKIkUQD5hrPLl9QMhk5IGjxQLvldJ0mOQLEnAJqpiQE2kxCnjXIAaD4QAbEwAKEaQAOGYgsGHQgUCsgaCDQgVBogHAFQl8ECjNCJQlqDzkUCqQsBHapmDlQoODEs3EnQs8EpjlBWQ6DJvxHQUQnSG8mRIqQlIHFlQJZQjpGhifDMQgzBCgkAhQgXAUgEAAQAAAAAAAAQgBAAAAAAQAAAAAAAAQAAgBAAAAg");
	this.shape_28.setTransform(2497.5267,1021.652,1.3053,1.3052);
	this.shape_29 = new cjs.Shape();
	this.shape_29.graphics.lf(["#221916","#3D3938","#4C4A49"],[0,0.557,1],-402.4,-78.2,402.4,78.2).s().p("EBGuArfQiokZihjPQmwosr7oCQozl7oRjhQo0jxsSi0IrRiiQnNholEhOQuvjjqNjYQnLiXoFj8QijhPiThPIh0hAQhJh6hhi8QjDl4h8lFQh0ktiKmCQiElwAIAFQIoFzMjGYQMyGgK2EDQHsC4MREsQLaEYEEBgQK7ECFvCfQHqDWFqDkQGMD5FsFXQFzFcGjIJQHxJpDfHsQBJCiBUDxQBpEtAnBkQi9lJhhiig");
	this.shape_29.setTransform(1197.1147,1154.3135,1.3053,1.3052);
	this.shape_30 = new cjs.Shape();
	this.shape_30.graphics.lf(["rgba(0,0,0,0)","rgba(76,74,73,0)","#4C4A49","#585757","#5F5E5E","#616060","#221916"],[0,0.553,0.553,0.557,0.565,0.588,1],-932.1,0,932.2,0).s().p("EgDaA5BQg9g0hEiNQgvhgh0kjQiZl+hrj5QismRkpmfQkxmomTmKQt0tcxen3QnZjWrwj2QkHhXmXh/QnHiLjjhHQsykBnqi/QqhkGmokLQjBkNh2kGQgkhSgZhHIgRg3ISsBsMAmzAOHUAm5AOTAAiAA6QAUAkHTGCQHIF6I3HFQXCSZAtgvQLascL3sVQXm4jFhiwIAcgOUAG0gC/AsZgLBQWMlhU1k6IntSNQgRAfg+A5Qh8ByjgB/QrNGX2jGFQzFFKuqGjQuTGYqwIAQqVHsnpJnQnMJClWLaQgyBthUDcQhbD1gnBaQhMCuhGBXQhTBohbAAQhiAAg/g1g");
	this.shape_30.setTransform(1859.2446,1319.2218,1.3052,1.3052);
	this.shape_31 = new cjs.Shape();
	this.shape_31.graphics.lf(["#221916","#3B3736","#626161","#7F7E7F","#949495","#A3A3A4","#ABACAC","#AEAFAF","rgba(255,255,255,0.765)","rgba(34,25,22,0.898)","rgba(41,34,32,0.922)","rgba(70,68,67,0.984)","#4C4A49","rgba(76,74,73,0)","rgba(0,0,0,0)"],[0,0.031,0.098,0.161,0.231,0.306,0.384,0.482,0.498,0.498,0.518,0.545,0.553,0.553,1],-932.1,0,932.2,0).s().p("EgDaA5BQg9g0hEiNQgvhgh0kjQiZl+hrj5QismRkpmfQkxmomTmKQt0tcxen3QnZjWrwj2QkHhXmXh/QnHiLjjhHQsykBnqi/QqhkGmokLQjBkNh2kGQgkhSgZhHIgRg3ISsBsMAmzAOHUAm5AOTAAiAA6QAUAkHTGCQHIF6I3HFQXCSZAtgvQLascL3sVQXm4jFhiwIAcgOUAG0gC/AsZgLBQWMlhU1k6IntSNQgRAfg+A5Qh8ByjgB/QrNGX2jGFQzFFKuqGjQuTGYqwIAQqVHsnpJnQnMJClWLaQgyBthUDcQhbD1gnBaQhMCuhGBXQhTBohbAAQhiAAg/g1g");
	this.shape_31.setTransform(1859.2446,1319.2218,1.3052,1.3052);
	this.shape_32 = new cjs.Shape();
	this.shape_32.graphics.lf(["#C9C9CA","#C8C8C9","#89898A","#5E5D5D","#4C4A49"],[0,0.004,0.255,0.435,0.525],109.7,0,-109.6,0).s().p("At+LIQgphChUh9IhNhwIAIAHQAMAIAOAEQAvAJA/gpQEai1IlnUQIbnOCujLQAug1AOgjIAEgWQC+DDBVBcQBqByA8BMQikDIiNCXQjgDvkXD2QkeD7l9EQIlGDeIi+k+g");
	this.shape_32.setTransform(2993.1714,513.5454,1.3053,1.3052);
	this.shape_33 = new cjs.Shape();
	this.shape_33.graphics.lf(["#C9C9CA","#C8C8C9","#89898A","#5E5D5D","#4C4A49"],[0,0.004,0.255,0.435,0.525],-109.2,0,109.2,0).s().p("AF4MdQmLkZkej8Qkaj5jTjcQiOiYiXi4QA/hQA3g9QA3g8EJkbIACAiQAJAuAuA1QCtDJIQHAQIVHDEcC3QA/ApA8gEQAegCARgLQiJDDhBBqQglA+hKCCIhCB2QiMhZjFiMg");
	this.shape_33.setTransform(707.2508,514.2959,1.3053,1.3052);
	this.shape_34 = new cjs.Shape();
	this.shape_34.graphics.f("#3E3B3A").s().p("AGcPYQhOiPhcixQi4lihQi/QhRi9iunUIifmyQgCgGADgFQACgEAFgDQAFgCAGADQAFACACAFICfGzQCtHSBQC9QBRC+C3FiQBcCxBOCPQAGAMgMAGIgGABQgIAAgEgHg");
	this.shape_34.setTransform(625.5857,864.074,1.3053,1.3052);
	this.shape_35 = new cjs.Shape();
	this.shape_35.graphics.f("#3E3B3A").s().p("AGcPYQhOiPhcixQi4lihQi/QhRi9iunUIifmyQgCgGADgFQACgEAFgDQAFgCAGADQAFACACAFICeGzQCtHRBRC+QBRC9C3FjQBcCxBNCPQADAFgBAFQgCAFgFADIgGABQgIAAgEgHg");
	this.shape_35.setTransform(631.4229,864.074,1.3053,1.3052);
	this.shape_36 = new cjs.Shape();
	this.shape_36.graphics.lf(["#221916","#261E1B","#3A3534","#4C4A49"],[0,0.306,0.702,1],105.3,0,-105.3,0).s().p("AjvEGIstsUIF8nYQCzBDFLCKQEqB8AlAMQBBAWBKA1QBGAyAjAvID5F0QD8F4CHC7IlaIlg");
	this.shape_36.setTransform(711.0687,509.2055,1.3053,1.3052);
	this.shape_37 = new cjs.Shape();
	this.shape_37.graphics.lf(["#221916","#261E1B","#3A3534","#4C4A49"],[0,0.306,0.702,1],-105.3,0,105.4,0).s().p("AwcHqQCJi9D6l2ID4l0QAkgvBGgyQBJg1BCgWQAegKEhiDQE2iNC5hFIGcHiItMLOIuxLhg");
	this.shape_37.setTransform(2995.0967,505.6161,1.3053,1.3052);
	this.shape_38 = new cjs.Shape();
	this.shape_38.graphics.lf(["rgba(34,25,22,0)","#221916","rgba(34,25,22,0.851)","rgba(36,28,26,0.839)","rgba(50,45,43,0.804)","rgba(73,71,70,0.745)","rgba(76,74,73,0.737)","rgba(75,72,72,0.714)","rgba(56,52,50,0.392)","rgba(41,34,31,0.165)","rgba(35,27,24,0.035)","rgba(34,25,22,0)"],[0.047,0.259,0.533,0.6,0.667,0.733,0.741,0.741,0.769,0.808,0.859,1],43.6,-121.2,-52.7,143.3).s().p("EApbAm1Qqyi3lHhhQ0XmMw4rMQzTswsbx0QiNjMkgokQlEprhVkWQg6i9AIgEQAGgEBHCYIA5B9QAlBQAnA5QBsChC0BQQEjCBE5B7QDcBWD1EtQBQBiB1CkQCODJAjAuQCbDMG1GfQGJFzEpDzQGUFKJ7F3QKPGCIiDeQBlApDzBqQF+CoEyCWQPEHZiNB8QgFAFgTAAQiIAAtIjeg");
	this.shape_38.setTransform(877.3583,2077.604,1.3053,1.3052);
	this.shape_39 = new cjs.Shape();
	this.shape_39.graphics.lf(["rgba(34,25,22,0)","#221916","rgba(34,25,22,0.737)","rgba(34,25,22,0)"],[0.235,0.443,0.69,1],-33.2,95,34.7,-91.7).s().p("A7FaHQgqgSDai+QONsbEFktQAsgzBxiWQCkjZAngyQCIiyBAhAQA2g2BKgoQC1hjERh/QDkhqBcg6QC7h2AvgnQBEg4BXh7QBPhvAdgzQAVglA3huQAdg4AvhrQAOghACgDQADgEgKAgQgwCegVA1QgXA7htDzQjYHhlGIMQlJIPkyFkQg/BJhuBSQiIBkiNA7Qm8C3ivBGQmYCkj1BUQkgBjhAAAQgJAAgFgBg");
	this.shape_39.setTransform(3086.1763,1931.354,1.3053,1.3052);
	this.shape_40 = new cjs.Shape();
	this.shape_40.graphics.lf(["#221916","rgba(35,27,24,0.988)","rgba(77,74,74,0.839)","rgba(107,107,107,0.714)","rgba(129,129,129,0.616)","rgba(145,145,145,0.549)","rgba(153,154,154,0.51)","rgba(156,157,157,0.494)","#221916"],[0,0.004,0.075,0.145,0.224,0.306,0.392,0.502,1],-719.3,0,705.8,0).s().p("EBa7AERQrYm9u0k6QuUkvwhieQwOicxBgDQxDgEwZCVQwxCZutEtQvSE4r/HCQrDGenuIAQSiz9bfp0UAajgJeAi/AAAQR+AAOqBuQQ0B+NwEWQfdJ+SXXlQncpNr7nVg");
	this.shape_40.setTransform(1864.7321,309.178,1.3053,1.3052);
	this.shape_41 = new cjs.Shape();
	this.shape_41.graphics.lf(["#221916","#221916","#5A5858","#A8A9A9","#DADBDB","#F6F6F6","#FFFFFF","#727171"],[0.035,0.192,0.286,0.447,0.58,0.678,0.725,1],349.2,951.8,-346.3,-959.1).s().p("EhOICLaUglbgJ3gaQgWEQqso/oessQoAsAllunQlWt9iwvVQisu5AAu0QAAwZCsvhQC3wdFuuiQGGvfJJspQJwtgM7p3UAXmgSBAnsgIsUAhEgHQAn1AAAUBcXAABAsjAjjQZPULMVeyUALPAcDgAbAiRQgMO0ipOpQiyPdlTN7QlrO4oMMMQozNFrXJaUgX4AT0glIAJ6Ugi5AJTgsQAABUgtYgABghAgItgEhTgh97Q/LLczlVcQxESsn7Z5QmrV0AAaJUAAAAlxAMMAbtQKtYUT9QSUAefAY2AyzAFXQVbCSUbACQVtADWFieUAsbgE8AdBgUjQWcv7MY4oUAOvgdXAAAgo7QAA7yoX3ZQpL5ryoygQ0a0S+6qvUghsgLsgtOAAAUgxAgABgi9AM0g");
	this.shape_41.setTransform(1849.1165,1242.3897,1.3053,1.3052);
	this.shape_42 = new cjs.Shape();
	this.shape_42.graphics.lf(["rgba(34,25,22,0)","#3E3B3A","#413E3E","#4C4A49","#F5F5F5","rgba(232,233,233,0)"],[0,0.608,0.663,0.71,0.867,1],280.3,784.2,-183.3,-946).s().p("EAgLCIqUgwggFsgcEgZGUgmqgikAAAhGkQAA+GHm3SQIe5+SCx8UAo6gotBbHgAEIAAJfUgmuAAGgchAJ9Q6tJWxdR5QwSQsn8X3QnYWLAAb0QAAW/FDTdQEpR5IzOeQIENQLOJ5QKSJEMRFtQLqFbPLD2QIJCEOmCrQFmBCCSAiQDVAxBLAtQBTAzg8A9QhABAjnBYQiVA+hUAhQiVA5iVAdQjOAokVAAQkdAAlngqg");
	this.shape_42.setTransform(1167.0259,1234.9176,1.3053,1.3052);
	this.shape_43 = new cjs.Shape();
	this.shape_43.graphics.lf(["#221916","#3E3B3A","#454242","#4C4A49","#FFFFFF","#FFFFFF","#9FA0A0"],[0,0.565,0.62,0.71,0.835,0.89,1],-237.6,-890.5,241.2,896.6).s().p("EgA5CKrQ40gJzdiTQ2FinyZmmQ2xoKwhuDQzWweqW4OUgLygbgAAAglHQAA6JGs1zQH756RDyrQTm1dfLrbUAi9gM0AxAAAAUBbRAAAAo/AotQSDR8IfZ/QHmXTAAeJUAAAAlOgMVAbtQq0YT0HQnQxFOF3WIPQywGn2CClQwyB+29AAIjFgBgEhy4hWbUgbWAemgANA2lUgAPBBqAjKAgAUAX7AV0AohAFpQS4CpZLgKQYzgJQeiuQOciYLRjpQNnkZKxmtQZcv4MZ+1QFTtNCquCQDHwTgZxnUgBSg5UgeMge3UgjPgkChKiAAAUhPYAAAgjGAnQg");
	this.shape_43.setTransform(1859.3316,1227.9384,1.3053,1.3052);
	this.shape_44 = new cjs.Shape();
	this.shape_44.graphics.lf(["#221916","#2C2624","#4C4A49","#C8C9C9","#FFFFFF"],[0.212,0.361,0.592,0.851,1],-237.5,-887.4,239.6,893.4).s().p("EgtKCH+Ugx8gF6gd0gZIQzWwUqW4HUgLygbZAAAglIQAA6IGs1zQH756RDyrQTm1dfLrbUAi9gM0AxAAAAUBbRAAAAo/AotQSDR8IfZ/QHmXTAAeJUAABAlNgMVAbiQqzYI0HQYQxAN33YIDQylGa2MCmQyRCK4mABIgsABQ40gBy0iOgEh1chVLQt+QbmFXlQk7TGgBZUUAAABBrAjDAf/QNlMaSvHJQOUFcRsCeQS4CpZLgKQYzgJQeiuQdkk4T4sSQaFwGMK96UAK6ga2AAAgi9QAA7SnN1jQnw3QwAwLUgjkgj9hKuAAAUhS/AAAgiDAoBg");
	this.shape_44.setTransform(1859.3316,1223.8571,1.3053,1.3052);
	this.shape_45 = new cjs.Shape();
	this.shape_45.graphics.f("#FFFFFF").s().p("EAAACUKQ2ugCzTiJQzUiLwnkXQumj1tBlsQtBltr6nyQxxrosVyOQqTvOmNzZQk2vJiGw1QharaAAqjQAAv7CauhQCbugEys2QEcr6GiqnQGiqnIfpHQLIr8OhopQOgopSelsQSblrWmizQWlizbogCQbnACWmCzQWmCzSaFrQSeFsOhIpQOgIpLIL8QIeJFGhKnQGhKnEdL9QEzM4CbOhQCbOgAAP4QAAKjhaLaQiGQ1k2PJQmNTZqTPOQsVSOxxLoQr6HytAFtQtBFsumD1QwoEXzTCLQzUCJ2vACgEiL3gdgQiROWAAQeQAAHTA8IjQBgNrDkMnQErQmH3NRQJjQHN2KgQIkGgJ/EnQKIErMIDAUAXxAF2AjpAADIACAAUAjmgADAXxgF2QMIjAKIkrQJ/knImmgQN2qfJjwGQH3tREswmQDksoBgtqQA8okAAnUQAAwfiSuVIgFgeIgaAOQroGZtrE4QoHC5vREXIjXA9QvIEVsJFxQsKFxpoHbQrSIsoDLIQouMDlCPBQhNDlhMBeQhMBfhqAAQhpAAhMhfQhMhfhMjkQlDvBotsDQoGrKrQoqQponbsJlxQsKlxvHkVIjXg9QvSkXoHi5Qtrk4rnmZIgbgOgEhFYh2VQ8BJ6xXUuQmGHQkvIYIgNAZIAYAPQEYCxEnCiQJeFNMXFWQHWDKOwF1IFYCHQVAIVPwNuQPwNuKOS2QBTCaBEBHQBEBHA/AAQBAAABEhHQBEhHBTiaQKOy2PwtuQPxtuU/oVIFYiHQOtl0HZjLQMXlVJflOQEqikEViwIAYgOIgOgZQkxoamEnOQxX0u8Bp6UgcBgJ7gpXgACUgpXAACgcCAJ7g");
	this.shape_45.setTransform(1849.9664,1246.5012,1.3053,1.3052);
	this.shape_46 = new cjs.Shape();
	this.shape_46.graphics.f("#221916").s().p("EAAACVOUgtLgAEghFgIrQvTkBthmCQsdljrknkQxSrTsMxgQqWu3mZy5QlJvPiVxEQhuslAAr2UAAAggLAJrgZ/QI/4HROyeUAWNgX2Ak2gLWUAkqgLTA25gADIABAAUA24AADAksALTUAk1ALWAWNAX2QRKSaJAYMUAJuAaFAAAAgEQAAL2huMlQiVRElKPPQmZS5qVO3QsMRgxSLTQrlHksdFjQtgGCvUEBUghFAIrgtKAAEgEiNBABUQAAIjBKJmQB1O1ERNaQE5PUHsMLQJCOTMoJlQIZGYJ6ElQJ6ElLzC8QMDDAOwBfQOvBfSAACIABAAQR+gCOwhfQOvhfMEjBQLxi8J7kkQJ7klIbmYQMpplJDuTQHusPE2vQQEQtXB0u3QBKplABolQAAvriHt1QrZGJtlEzQoBC0u4EQIjWA9QvCEUsEFtQsEFvpkHXQrJInn/LBQooL8k/O3QhPDthRBoQhiB+iQgBQiPABhih+QhRhnhPjuQlAu4oor7Qn9rBrLonQpjnXsElvQsEltvCkUIjXg9Qu5kQn/i0Qtmk0rYmIQiHNvABPxgEgl7h8sQxKCguNFEQt/E/rKHkQrBHdoeKHQl3G/kiH9QCMBZCxBmQKGF2NSF0QH8DfP5GPIFXCIQSNHOOcLZQJeHeHtJMQHuJNF0KtQBOCRA+BAQAvAxAhAAQAiAAAvgxQA+hABOiRQFzqtHupNQHupLJfnfQOZrYSPnPIFXiIQP4mPH9jfQNSl0KFl2QCyhmCNhZQkln+l1m+QodqHrDndQrInkuAk/QuNlExLigQxKig0xgBQ0xABxKCgg");
	this.shape_46.setTransform(1849.999,1246.5012,1.3053,1.3052);
	this.shape_47 = new cjs.Shape();
	this.shape_47.graphics.lf(["#221916","#AAABAB"],[0.098,0.898],0,133.3,0,-133.3).s().p("Egm3APnQmFlOAAqVQAAqTGFlPQGFlPMCgCMAjZgAFIDnDoMgnAAAGQqjABlCEMQlBEMAAIxQAAIyFBEMQFCELKjAAMBAmgACIBHDpMhBtAABQsCAAmFlOg");
	this.shape_47.setTransform(1324.4719,3201.3217,1.3053,1.3052);
	this.shape_48 = new cjs.Shape();
	this.shape_48.graphics.lf(["#221916","#898989"],[0.098,0.898],0,209.5,0,-209.5).s().p("EAgJAdDMAAAgmkQAAmTg9jkQhCj5ihiFQigiFkqg3QkRgynjACMgo5AAMIjmjqMAsfgAOQI4gCE6A5QFbA/C3CdQC3CcBLEpQBEEOAAHmMAAAAqRg");
	this.shape_48.setTransform(3388.3365,3101.8582,1.3053,1.3052);
	this.shape_49 = new cjs.Shape();
	this.shape_49.graphics.lf(["#CBCCCC","#BCBDBD","#B5B5B6","#AEAEAF","#A6A6A7","#C9CACA","#DFDFDF","#F7F8F8","#F1F2F2","#E2E2E3"],[0,0.114,0.2,0.314,0.388,0.4,0.525,0.698,0.82,1],0,179.9,0,-188.4).s().p("EAhrgcEINbgCMhQvA4MItcABg");
	this.shape_49.setTransform(1969.8269,3104.0053,1.3052,1.3052);
	this.shape_50 = new cjs.Shape();
	this.shape_50.graphics.lf(["#CBCCCC","#BCBDBD","#B5B5B6","#AEAEAF","#A6A6A7","#C9CACA","#DFDFDF","#F7F8F8","#F1F2F2","#E2E2E3"],[0,0.114,0.2,0.314,0.388,0.4,0.525,0.698,0.82,1],0,181.8,0,-180.9).s().p("A9qYQQk1kCgBokQgBojE0kCQE0kDKPgBMAnrgAFIgBlgQgBm6jniTQhkhAiggYQh4gRjTAAMgpIAAIIgBm2MApIgAJQHRgBECAuQEcAzCXB/QCXB+A9DwQA4DaABGKMAAGAlxMgxHAABIgCAAQqNAAk1kCgAupBVQk3ABi1CtQi0CtAAEpQABEqC1CsQC1CtE4AAMAnrgACIgD0Jg");
	this.shape_50.setTransform(3363.0529,3101.8488,1.3052,1.3052);
	this.shape_51 = new cjs.Shape();
	this.shape_51.graphics.lf(["#CBCCCC","#BCBDBD","#B5B5B6","#AEAEAF","#A6A6A7","#C9CACA","#DFDFDF","#F7F8F8","#F1F2F2","#E2E2E3"],[0,0.114,0.2,0.314,0.388,0.4,0.525,0.698,0.82,1],0,178.1,0,-184.7).s().p("EgxSAb0MAAAg3XMBKBgAPQHpgCEhA/QE2BDCsCfQCrCfBJEhQBEEMAAHIMAAAAgxIp7AAMAAAggbQAAoCjcjVQjbjUoRABIzcAEMAAAAvCIp3AAMAAAgvAMgiaAAGMAAAAu7g");
	this.shape_51.setTransform(459.6883,3106.8092,1.3052,1.3052);
	this.shape_52 = new cjs.Shape();
	this.shape_52.graphics.lf(["#CBCCCC","#BCBDBD","#B5B5B6","#AEAEAF","#A6A6A7","#C9CACA","#DFDFDF","#F7F8F8","#F1F2F2","#E2E2E3"],[0,0.114,0.2,0.314,0.388,0.4,0.525,0.698,0.82,1],0,26.5,0,-341.7).s().p("Al7kGIXvgBIAAIPMgjnAABg");
	this.shape_52.setTransform(2080.3766,3303.9606,1.3052,1.3052);
	this.shape_53 = new cjs.Shape();
	this.shape_53.graphics.lf(["#CBCCCC","#BCBDBD","#B5B5B6","#AEAEAF","#A6A6A7","#C9CACA","#DFDFDF","#F7F8F8","#F1F2F2","#E2E2E3"],[0,0.114,0.2,0.314,0.388,0.4,0.525,0.698,0.82,1],0,336.2,0,-35.4).s().p("AxwkDMAjhgAHIr4IRI3pAEg");
	this.shape_53.setTransform(1858.8531,2905.1595,1.3052,1.3052);
	this.shape_54 = new cjs.Shape();
	this.shape_54.graphics.lf(["#CBCCCC","#BCBDBD","#B5B5B6","#AEAEAF","#A6A6A7","#C9CACA","#DFDFDF","#F7F8F8","#F1F2F2","#E2E2E3"],[0,0.114,0.2,0.314,0.388,0.4,0.525,0.698,0.82,1],0,178.7,0,-187.2).s().p("A9rX8Qk2j/AAocQAAodE2j+QE1kAKPgBMAnsgAFIAAlcQAAm0jmiSQhkg/iggXQh5gRjSABMgpLAAHIAAmxMApLgAIQHRgBECAtQEcAzCXB9QCXB9A8DsQA4DYAAGEMAAAAlTMgxIAABIgDAAQqNAAk0j/gAunBUQk3ABi2CqQi0CrgBEmQABElC0CrQC2CqE3AAMAnsgACIAAz4g");
	this.shape_54.setTransform(1273.2791,3105.5359,1.3052,1.3052);
	this.shape_55 = new cjs.Shape();
	this.shape_55.graphics.lf(["#CBCCCC","#BCBDBD","#B5B5B6","#AEAEAF","#A6A6A7","#C9CACA","#DFDFDF","#F7F8F8","#F1F2F2","#E2E2E3"],[0,0.114,0.2,0.314,0.388,0.4,0.525,0.698,0.82,1],0,180.2,0,-188.7).s().p("EgjZgcBMAl1gAIQKrgCF+BHQGkBODgC+QDgC/BdFnQBUFHAAJIQAAJGhUFIQhdFnjgDAQjgC/mkBPQl+BJqrAAMgl1AABgAARz2I6SAEMAAAAnqIaSgBQHlAAEdgwQFCg1C6iDQDBiJBXj6QBXj4AAmWQAAmYhXj3QhXj6jBiIQi6iClCg1QkUgsnPAAIgfAAg");
	this.shape_55.setTransform(2674.1407,3103.2512,1.3052,1.3052);
	this.shape_56 = new cjs.Shape();
	this.shape_56.graphics.f("#FFFFFF").s().p("EhygAaeQlCkMAAoyQAAoxFCkNQFCkLKkgBMAm/gAFIAAktQAAmajUiFQhdg7iYgVQhygQjMABMgp6AAHIAAnsIjljoIAAggIAgAAIDmDnMApZgAJQHYgBEMAxQEkA2CdCDQCeCDBBD2QA7DgAAGNMAAAAlMMBRRg4jIhIjpIAVgOIAXAAIBIDpMA08gAKQK1gDGIBKQGsBRDmDFQDmDEBgFvQBYFRgBJSQABJShYFRQhgFwjmDGQjmDFmsBSQmIBMq1AAMgmkAAAMAAAg4xMhRnA4zMhAlAABIgDAAQqhAAlCkLgEhi6AECQknABimCcQinCcAAEUQAAEUCnCcQCnCcEmAAMAm/gACIAAybgEBTrgRaI5lAFMAAAAmMIZlgBQHfAAERgsQE8gyCyh8QC7iCBTjyQBTjuAAmPQAAmNhSjtQhTjyi6iCQizh8k7gxQkMgqnQAAIgWAAg");
	this.shape_56.setTransform(1977.4297,3088.8978,1.3052,1.3052);
	this.shape_57 = new cjs.Shape();
	this.shape_57.graphics.f("#FFFFFF").s().p("A+LajQlCkPgBo5QgBo5FBkQQFBkPKjgBMAm8gAFIAAkwQgBmgjViHQhdg7iXgVQhygQjNAAMgp1AAHIgBnzIjmjqIAAggIAgAAIDmDqMApVgAJQHYgCEMAyQEkA2CdCFQCeCGBBD4QA9DjABGSMAAFAmiMgx0AAAIgDAAQqhAAlCkOgAupD1QknABilCdQimCeAAEYQABEYCmCeQCnCeEmAAMAm9gACIgCyrg");
	this.shape_57.setTransform(3362.8563,3087.0241,1.3051,1.3051);
	this.shape_58 = new cjs.Shape();
	this.shape_58.graphics.f("#FFFFFF").s().p("EgwOgaGIjljlIAAghIAgAAIDmDmMBKOgAPQHxgCEqBCQE+BGCzCmQCyCmBNEpQBIEVAAHRMAAAAhfIrYABMAAAghKQAAj8gwimQgyishshoQhrhoiygwQisgukDAAIytADMAAAAvDIrUAAMAAAgvBMgg+AAHMAAAAu6IrRABg");
	this.shape_58.setTransform(444.7505,3092.7013,1.3051,1.3051);
	this.shape_59 = new cjs.Shape();
	this.shape_59.graphics.f("#FFFFFF").s().p("AlqizIhIjqIAVgNIAXAAIBIDpIYTgBIAAJsMgmqAABg");
	this.shape_59.setTransform(2073.6875,3288.853,1.3052,1.3052);
	this.shape_60 = new cjs.Shape();
	this.shape_60.graphics.f("#FFFFFF").s().p("AxeigIjmjoIAAggIAggBIDmDpMAmDgAIIt+JuI4lAEg");
	this.shape_60.setTransform(1850.5651,2890.4761,1.3052,1.3052);
	this.shape_61 = new cjs.Shape();
	this.shape_61.graphics.lf(["#221916","#898989"],[0.098,0.898],0,208.3,0,-208.2).s().p("A+Lc5MAmjgABQK1AAGIhLQGshSDmjGQDmjGBglvQBYlRgBpSQABpShYlRQhglvjmjFQjmjFmshQQmIhKq1ACMg07AALIhIjpMA2DgAMQLegDG4BbQHVBiEGDkQEHDlBxGZQBqGAAAKCQAAKBhqGAQhxGakHDlQkGDmnVBjQm4BcreAAMgqJAABg");
	this.shape_61.setTransform(2624.5434,3103.2179,1.3052,1.3052);
	this.shape_62 = new cjs.Shape();
	this.shape_62.graphics.lf(["#221916","#898989","#3E3B3A"],[0.098,0.498,0.898],0,193.5,0,-217.2).s().p("EgozAamMBRng4zIjmG8MhM6A1fg");
	this.shape_62.setTransform(2031.4972,3122.5717,1.3052,1.3052);
	this.shape_63 = new cjs.Shape();
	this.shape_63.graphics.lf(["#C9CACA","#EAEAEB","#EFEFEF"],[0.227,0.902,1],0,216.4,0,-192.6).s().p("EglAAXNMBMhg1SIBIDpMhRRA4jg");
	this.shape_63.setTransform(1907.1125,3086.2547,1.3052,1.3052);
	this.shape_64 = new cjs.Shape();
	this.shape_64.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,246.8,0,-202.4).s().p("EglAAXNMBMhg1SIBIDpMhRRA4jg");
	this.shape_64.setTransform(1907.1125,3086.2547,1.3052,1.3052);
	this.shape_65 = new cjs.Shape();
	this.shape_65.graphics.lf(["#221916","#898989"],[0.098,0.898],0,54.5,0,-54.4).s().p("A67IhILmjpMAmqgABIAAptIDnjqIAARBg");
	this.shape_65.setTransform(2040.3399,3303.928,1.3052,1.3052);
	this.shape_66 = new cjs.Shape();
	this.shape_66.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,54.5,0,-370.2).s().p("A67IhILmjpMAmqgABIAAptIDnjqIAARBg");
	this.shape_66.setTransform(2040.3399,3303.928,1.3052,1.3052);
	this.shape_67 = new cjs.Shape();
	this.shape_67.graphics.f("#4C4949").s().p("A67IhILmjpMAmqgABIAAptIDnjqIAARBg");
	this.shape_67.setTransform(2040.3399,3303.928,1.3052,1.3052);
	this.shape_68 = new cjs.Shape();
	this.shape_68.graphics.lf(["#B5B5B6","#D7D8D8","#E6E6E6"],[0.227,0.776,1],-1.2,97.8,-1.2,-11.7).s().p("AuhhzIdDgCIjoDpI4TABg");
	this.shape_68.setTransform(2144.0373,3248.1637,1.3052,1.3052);
	this.shape_69 = new cjs.Shape();
	this.shape_69.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],-1.2,97.8,-1.2,-328.8).s().p("AuhhzIdDgCIjoDpI4TABg");
	this.shape_69.setTransform(2144.0373,3248.1637,1.3052,1.3052);
	this.shape_70 = new cjs.Shape();
	this.shape_70.graphics.f("#4C4949").s().p("AuhhzIdDgCIjoDpI4TABg");
	this.shape_70.setTransform(2144.0373,3248.1637,1.3052,1.3052);
	this.shape_71 = new cjs.Shape();
	this.shape_71.graphics.lf(["#B5B5B6","#D7D8D8","#E6E6E6"],[0.227,0.776,1],0,53.7,0,-55).s().p("ALhoYIBHDqItpJeIrmDpg");
	this.shape_71.setTransform(1920.817,3304.9395,1.3052,1.3052);
	this.shape_72 = new cjs.Shape();
	this.shape_72.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,53.7,0,-370.2).s().p("ALhoYIBHDqItpJeIrmDpg");
	this.shape_72.setTransform(1920.817,3304.9395,1.3052,1.3052);
	this.shape_73 = new cjs.Shape();
	this.shape_73.graphics.f("#4C4949").s().p("ALhoYIBHDqItpJeIrmDpg");
	this.shape_73.setTransform(1920.817,3304.9395,1.3052,1.3052);
	this.shape_74 = new cjs.Shape();
	this.shape_74.graphics.f("#3E3B3A").s().p("A3SE7IYkgEIN/puILojsI4fRDI9SAEg");
	this.shape_74.setTransform(1899.1509,2904.9637,1.3052,1.3052);
	this.shape_75 = new cjs.Shape();
	this.shape_75.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,357.9,0,-65.1).s().p("AhyoNIDlDoIAAJKIjlDpg");
	this.shape_75.setTransform(1689.5045,2907.8677,1.3052,1.3052);
	this.shape_76 = new cjs.Shape();
	this.shape_76.graphics.f("#4C4949").s().p("AhyoNIDlDoIAAJKIjlDpg");
	this.shape_76.setTransform(1689.5045,2907.8677,1.3052,1.3052);
	this.shape_77 = new cjs.Shape();
	this.shape_77.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,421.2,0,-21.8).s().p("A6ohuMA1RgALIroDrMgmEAAIg");
	this.shape_77.setTransform(1901.2718,2849.2973,1.3052,1.3052);
	this.shape_78 = new cjs.Shape();
	this.shape_78.graphics.f("#4C4949").s().p("A6ohuMA1RgALIroDrMgmEAAIg");
	this.shape_78.setTransform(1901.2718,2849.2973,1.3052,1.3052);
	this.shape_79 = new cjs.Shape();
	this.shape_79.graphics.lf(["#727171","#221916"],[0.098,0.898],0,122.3,0,-122.2).s().p("AhyzFIDlDpIAAe4IjlDqg");
	this.shape_79.setTransform(2477.7094,3103.6138,1.3052,1.3052);
	this.shape_80 = new cjs.Shape();
	this.shape_80.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,207.9,0,-217.1).s().p("AhyzFIDlDpIAAe4IjlDqg");
	this.shape_80.setTransform(2477.7094,3103.6138,1.3052,1.3052);
	this.shape_81 = new cjs.Shape();
	this.shape_81.graphics.f("#4C4949").s().p("AhyzFIDlDpIAAe4IjlDqg");
	this.shape_81.setTransform(2477.7094,3103.6138,1.3052,1.3052);
	this.shape_82 = new cjs.Shape();
	this.shape_82.graphics.lf(["#E6E6E6","#BFC0C0","#919192","#6D6C6C","#555353","#4C4949","#3E3B3A"],[0.098,0.176,0.271,0.349,0.412,0.451,0.906],0,122.5,0,-122.4).s().p("A1rPfIV+gCQHJAAD1glQETgpCNhoQCOhnA5jGQAziyAAlKQAAlLgziyQg5jGiOhnQiNhnkTgoQj1gknJABI1+AEIjmjpIZkgFQHhgBETArQE7AyCyB8QC6CCBTDyQBRDtAAGNQAAGMhRDtQhTDyi6CCQiyB9k7AzQkTAsnhABI5kABg");
	this.shape_82.setTransform(2673.8796,3103.3168,1.3052,1.3052);
	this.shape_83 = new cjs.Shape();
	this.shape_83.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,208.3,0,-217.5).s().p("A1rPfIV+gCQHJAAD1glQETgpCNhoQCOhnA5jGQAziyAAlKQAAlLgziyQg5jGiOhnQiNhnkTgoQj1gknJABI1+AEIjmjpIZkgFQHhgBETArQE7AyCyB8QC6CCBTDyQBRDtAAGNQAAGMhRDtQhTDyi6CCQiyB9k7AzQkTAsnhABI5kABg");
	this.shape_83.setTransform(2673.8796,3103.3168,1.3052,1.3052);
	this.shape_84 = new cjs.Shape();
	this.shape_84.graphics.f("#4C4949").s().p("A1rPfIV+gCQHJAAD1glQETgpCNhoQCOhnA5jGQAziyAAlKQAAlLgziyQg5jGiOhnQiNhnkTgoQj1gknJABI1+AEIjmjpIZkgFQHhgBETArQE7AyCyB8QC6CCBTDyQBRDtAAGNQAAGMhRDtQhTDyi6CCQiyB9k7AzQkTAsnhABI5kABg");
	this.shape_84.setTransform(2673.8796,3103.3168,1.3052,1.3052);
	this.shape_85 = new cjs.Shape();
	this.shape_85.graphics.lf(["#E6E6E6","#BFC0C0","#919192","#6D6C6C","#555353","#4C4949","#221916"],[0.098,0.176,0.271,0.349,0.412,0.451,0.898],0,59.1,0,-59).s().p("A1yGzQinicAAkUQAAkUCnibQCmidEnAAMAm+gAEIjmDpMgjYAADQjFAAhkBaQhlBZABCxQgBCxBlBZQBkBaDFgBMAjYgACIDmDpMgm+AABIgCABQklgBimibg");
	this.shape_85.setTransform(1273.0181,3199.0886,1.3052,1.3052);
	this.shape_86 = new cjs.Shape();
	this.shape_86.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,135.1,0,-288).s().p("A1yGzQinicAAkUQAAkUCnibQCmidEnAAMAm+gAEIjmDpMgjYAADQjFAAhkBaQhlBZABCxQgBCxBlBZQBkBaDFgBMAjYgACIDmDpMgm+AABIgCABQklgBimibg");
	this.shape_86.setTransform(1273.0181,3199.0886,1.3052,1.3052);
	this.shape_87 = new cjs.Shape();
	this.shape_87.graphics.f("#4C4949").s().p("A1yGzQinicAAkUQAAkUCnibQCmidEnAAMAm+gAEIjmDpMgjYAADQjFAAhkBaQhlBZABCxQgBCxBlBZQBkBaDFgBMAjYgACIDmDpMgm+AABIgCABQklgBimibg");
	this.shape_87.setTransform(1273.0181,3199.0886,1.3052,1.3052);
	this.shape_88 = new cjs.Shape();
	this.shape_88.graphics.lf(["#727171","#221916"],[0.098,0.898],0,59,0,-58.9).s().p("AhyFlIAArJIDljpIAASbg");
	this.shape_88.setTransform(1461.7487,3198.9906,1.3052,1.3052);
	this.shape_89 = new cjs.Shape();
	this.shape_89.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,135,0,-287.5).s().p("AhyFlIAArJIDljpIAASbg");
	this.shape_89.setTransform(1461.7487,3198.9906,1.3052,1.3052);
	this.shape_90 = new cjs.Shape();
	this.shape_90.graphics.f("#4C4949").s().p("AhyFlIAArJIDljpIAASbg");
	this.shape_90.setTransform(1461.7487,3198.9906,1.3052,1.3052);
	this.shape_91 = new cjs.Shape();
	this.shape_91.graphics.lf(["#4C4949","#3E3B3A"],[0.106,0.898],0,47,0,-46.9).s().p("AZMDuIAAhFQAAiSgRhGQgThTg2goQg2gohvgOQhegNjEABMgtdAAIIDljpMAp4gAHQDNgBByAQQCYAVBdA7QDUCFAAGZIAAEtg");
	this.shape_91.setTransform(1236.2443,2996.2608,1.3052,1.3052);
	this.shape_92 = new cjs.Shape();
	this.shape_92.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,289.7,0,-131.8).s().p("AZMDuIAAhFQAAiSgRhGQgThTg2goQg2gohvgOQhegNjEABMgtdAAIIDljpMAp4gAHQDNgBByAQQCYAVBdA7QDUCFAAGZIAAEtg");
	this.shape_92.setTransform(1236.2443,2996.2608,1.3052,1.3052);
	this.shape_93 = new cjs.Shape();
	this.shape_93.graphics.f("#4C4949").s().p("AZMDuIAAhFQAAiSgRhGQgThTg2goQg2gohvgOQhegNjEABMgtdAAIIDljpMAp4gAHQDNgBByAQQCYAVBdA7QDUCFAAGZIAAEtg");
	this.shape_93.setTransform(1236.2443,2996.2608,1.3052,1.3052);
	this.shape_94 = new cjs.Shape();
	this.shape_94.graphics.lf(["#221916","#898989"],[0.098,0.898],0,133.3,0,-133.2).s().p("Egm2APmQmGlOAAqTQAAqUGGlPQGFlPMCgCMAjYgAFIDnDpMgm/AAEQqkAClBEMQlCEMAAIxQAAIyFCEMQFCELKjgBMBAlgABIBHDpMhBsAAAQsCABmFlPg");
	this.shape_94.setTransform(1324.41,3201.1768,1.3052,1.3052);
	this.shape_95 = new cjs.Shape();
	this.shape_95.graphics.lf(["#221916","#898989"],[0.098,0.898],0,192.2,0,-192.2).s().p("EAgLgHKQAAmNg8jgQhBj2idiDQidiDkkg2QkMgxnZABMgpXAAJIjmjoMAs9gAJQIsgCE1A4QFTA+C0CbQC0CaBJEkQBDEKAAHgIAAeSIjoG6g");
	this.shape_95.setTransform(1298.8935,3086.805,1.3052,1.3052);
	this.shape_96 = new cjs.Shape();
	this.shape_96.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,339,0,-82.3).s().p("AIwBuQhBj0idiDQidiEkjg2QkMgxnZACIAAjpQIsgCE0A5QFTA+C0CaQC0CaBJElQBDEJAAHfIjoABQAAmNg8jhg");
	this.shape_96.setTransform(1486.7105,2931.422,1.3052,1.3052);
	this.shape_97 = new cjs.Shape();
	this.shape_97.graphics.f("#4C4949").s().p("AIwBuQhBj0idiDQidiEkjg2QkMgxnZACIAAjpQIsgCE0A5QFTA+C0CaQC0CaBJElQBDEJAAHfIjoABQAAmNg8jhg");
	this.shape_97.setTransform(1486.7105,2931.422,1.3052,1.3052);
	this.shape_98 = new cjs.Shape();
	this.shape_98.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,416.2,0,-21.5).s().p("A2ehuMAs9gAKIAADoMgpYAAIg");
	this.shape_98.setTransform(1187.7238,2851.6466,1.3052,1.3052);
	this.shape_99 = new cjs.Shape();
	this.shape_99.graphics.f("#4C4949").s().p("A2ehuMAs9gAKIAADoMgpYAAIg");
	this.shape_99.setTransform(1187.7238,2851.6466,1.3052,1.3052);
	this.shape_100 = new cjs.Shape();
	this.shape_100.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,147.7,0,-275.1).s().p("AhzylIDngBIAAeTIjnG6g");
	this.shape_100.setTransform(1582.7725,3182.2842,1.3052,1.3052);
	this.shape_101 = new cjs.Shape();
	this.shape_101.graphics.f("#4C4949").s().p("AhzylIDngBIAAeTIjnG6g");
	this.shape_101.setTransform(1582.7725,3182.2842,1.3052,1.3052);
	this.shape_102 = new cjs.Shape();
	this.shape_102.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,361,0,-60.2).s().p("AhyndIDlDnIAAHsIjlDog");
	this.shape_102.setTransform(1010.6421,2903.8869,1.3052,1.3052);
	this.shape_103 = new cjs.Shape();
	this.shape_103.graphics.f("#4C4949").s().p("AhyndIDlDnIAAHsIjlDog");
	this.shape_103.setTransform(1010.6421,2903.8869,1.3052,1.3052);
	this.shape_104 = new cjs.Shape();
	this.shape_104.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,193.4,0,-231.4).s().p("Ahy3RIDlm8MAAAA4xIjlDqg");
	this.shape_104.setTransform(2357.4034,3122.5717,1.3052,1.3052);
	this.shape_105 = new cjs.Shape();
	this.shape_105.graphics.f("#4C4949").s().p("Ahy3RIDlm8MAAAA4xIjlDqg");
	this.shape_105.setTransform(2357.4034,3122.5717,1.3052,1.3052);
	this.shape_106 = new cjs.Shape();
	this.shape_106.graphics.lf(["#E6E6E6","#BFC0C0","#919192","#6D6C6C","#555353","#4C4949","#221916"],[0.098,0.176,0.271,0.349,0.412,0.451,0.898],0,59.8,0,-59.8).s().p("A1xG4QimidgBkYQAAkXClieQCmieEmgBMAm9gAEIjmDsMgjWAADQjFAAhkBbQhkBbAACyQABC0BkBbQBkBaDFAAMAjXgACIDnDrMgm9AACQknAAimieg");
	this.shape_106.setTransform(3362.6941,3196.6413,1.3052,1.3052);
	this.shape_107 = new cjs.Shape();
	this.shape_107.graphics.lf(["#727171","#221916"],[0.098,0.898],0,59.7,0,-59.7).s().p("AhyFqIgCrSIDmjsIACSpg");
	this.shape_107.setTransform(3551.229,3196.5107,1.3052,1.3052);
	this.shape_108 = new cjs.Shape();
	this.shape_108.graphics.lf(["#4C4949","#3E3B3A"],[0.106,0.898],0,47.6,0,-47.5).s().p("AZLDxIAAhFQAAiVgRhGQgUhUg2gpQg2gphugOQhfgNjDABMgtbAAIIDljsMAp1gAHQDNgBByAQQCXAWBdA7QDVCHABGeIAAExg");
	this.shape_108.setTransform(3325.4636,2991.1706,1.3052,1.3052);
	this.shape_109 = new cjs.Shape();
	this.shape_109.graphics.lf(["#221916","#AAABAB"],[0.098,0.898],0,135,0,-135).s().p("EggtAPzQmGlSgCqdQgBqcGElTQGFlTMBgCMAjWgAFIDnDrMgm9AAFQqiABlCEQQlAEQABI4QAAI5FDEPQFCEPKkgBMAx0AAAIDoDrMg1cAABQsCAAmFlTg");
	this.shape_109.setTransform(3363.2161,3198.7622,1.3052,1.3052);
	this.shape_110 = new cjs.Shape();
	this.shape_110.graphics.lf(["#221916","#898989","#221916"],[0.098,0.498,0.898],0,161.8,0,-161.7).s().p("ApNZRIDljmILQAAMAAAgu7IDmDmMAAAAu7g");
	this.shape_110.setTransform(88.9814,3164.0767,1.3052,1.3052);
	this.shape_111 = new cjs.Shape();
	this.shape_111.graphics.f("#3E3B3A").s().p("AwehvMAg9gAGIjnDmI5wAFg");
	this.shape_111.setTransform(273.6659,2967.6129,1.3052,1.3052);
	this.shape_112 = new cjs.Shape();
	this.shape_112.graphics.lf(["#3E3B3A","#727171","#B5B5B6"],[0.098,0.498,0.898],0,162,0,-162).s().p("Ahy1sIDljnMAAAAvAIjlDng");
	this.shape_112.setTransform(396.2886,3163.6852,1.3052,1.3052);
	this.shape_113 = new cjs.Shape();
	this.shape_113.graphics.lf(["#221916","#898989","#B5B5B6"],[0.098,0.498,0.898],0,162.1,0,-162.1).s().p("ApQZVIDmjnILVAAMAAAgvCIDmDmMAAAAvDg");
	this.shape_113.setTransform(458.6768,3163.5547,1.3052,1.3052);
	this.shape_114 = new cjs.Shape();
	this.shape_114.graphics.lf(["#3E3B3A","#727171","#3E3B3A"],[0.098,0.498,0.898],0,162.3,0,-162.2).s().p("AM8raQAAjPgeh5QgfiDhMhIQhLhHiIgfQh+gcjYABIvGACIjmjnISsgDQECAACtAuQCxAwBrBoQBsBoAyCsQAxCmgBD7MAAAAhKIjnDog");
	this.shape_114.setTransform(644.3076,3163.3585,1.3052,1.3052);
	this.shape_115 = new cjs.Shape();
	this.shape_115.graphics.lf(["#221916","#898989"],[0.098,0.898],0,205.7,0,-205.6).s().p("EAmoAchILYAAMAAAghfQAAnRhIkWQhNkoiyimQizimk9hGQkrhCnxABMhKuAAPIjmjlMBOUgARQJAgCFUBKQFtBQDKC9QDJC9BXFYQBQE/AAIfMAAAAlHIynABg");
	this.shape_115.setTransform(459.8841,3106.7428,1.3052,1.3052);
	this.shape_116 = new cjs.Shape();
	this.shape_116.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,205.7,0,-212.9).s().p("EAjBgEoQAAjPgeh5QgfiDhMhIQhLhHiIgfQh+gcjYABIvHACMAAAAvDIyhAAMAAAgvAI5yAEMAAAAu8IycAAMAAAg//MBOUgARQJAgCFUBKQFtBQDKC9QDJC9BXFYQBQE/AAIfMAAAAlHIynABgAYt7yMhKAAAPMAAAA3XIJ1AAMAAAgu7MAiZgAGMAAAAvBIJ4gBMAAAgvCITcgDQIQgCDcDVQDcDUgBICMAAAAgcIJ8AAMAAAggxQgBnIhEkNQhJkgirifQirigk2hDQkag9naAAIgXAAg");
	this.shape_116.setTransform(459.8841,3106.7428,1.3052,1.3052);
	this.shape_117 = new cjs.Shape();
	this.shape_117.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,209.2,0,-209.2).s().p("EggtAbaQmGlTgCqdQgBqdGElSQGFlTMBgCMAjWgAFIgBhFQABiUgShIQgThUg2goQg2gphugPQhfgMjDAAMgtbAAIIgDvpMAtbgAKQIrgCE1A5QFTA/C0CcQC0CcBKEoQBEENAAHmMAAHAqOMg1cAAAQsCAAmFlSgART1JQCgAXBkBAQDmCTABG6IABFgMgnrAAFQqOABk0EDQk1ECACIkQAAIkE2ECQE2ECKOAAMAxHgABMgAGglyQgBmJg4jaQg+jwiXh/QiWh+kcgzQkCgvnRACMgpIAAIIABG3MApIgAIIAMAAQDKAAB1ARg");
	this.shape_117.setTransform(3363.2161,3101.88,1.3052,1.3052);
	this.shape_118 = new cjs.Shape();
	this.shape_118.graphics.lf(["#3E3B3A","#898989","#C9CACA","#898989"],[0.149,0.451,0.749,1],0,136.8,0,-281.8).s().p("A2QHZQi1itgBkpQgBkpC1itQC0isE3gBMAnrgAEIADUIMgnrAABQk3AAi1isgAumlmQjGAAhjBbQhkBbAACyQABC0BkBbQBkBaDFAAMAjWgACIgBrSg");
	this.shape_118.setTransform(3362.7267,3196.6413,1.3052,1.3052);
	this.shape_119 = new cjs.Shape();
	this.shape_119.graphics.lf(["#221916","#898989"],[0.098,0.898],0,209.2,0,-209.2).s().p("EAgOAdBMgAGgmiQgBmSg8jjQhCj5idiFQieiFkkg2QkMgynYABMgpVAAJIjmjqMAs7gAKQIrgCE1A5QFTA/C0CcQC0CdBKEoQBDENABHmMAAHAqNg");
	this.shape_119.setTransform(3388.3086,3101.8473,1.3052,1.3052);
	this.shape_120 = new cjs.Shape();
	this.shape_120.graphics.f("#4C4949").s().p("Eh1rAb/QmaliAAqqQAAqqGaliQGZljMXgCMAibgAFIAAgGQAAiIgOg8QgQhHguggQgtgehlgKQhIgGi+AAMgucAAIIAAxYMAucgALQI3gCFBA9QFfBDC8CjQC8CiBPEwQBHEWAAHsIAAcdMBLlg0pMA2vgAMQLqgCHDBfQHhBmEPDtQEPDtB2GlQBvGMAAKPQAAKNhvGNQh2GlkPDuQkPDunhBnQnDBirqAAMgrHAAAMAAAg0nMhLqA0nMhB/AAAQsXAAmZligEhi7AG6QisABhTBIQhSBIAACWQAACXBSBIQBTBICsgBMAibgACIAApOgEBTqgOeI1CADIAAc8IVCgBQHJgBD3gnQEHgqCDhlQB9hhAui7QAliZAAk1QAAk1gliZQgui7h9hhQiDhlkHgpQjxglm4AAIgXAAgEgWgAhhIbPy8IergCIAAS+gEglOghEMA51gANI7STBI+jAFg");
	this.shape_120.setTransform(1977.6853,3103.3269,1.3053,1.3052);
	this.shape_121 = new cjs.Shape();
	this.shape_121.graphics.f("#4C4949").s().p("EgOmAhrQsWAAmalmQmblngBqzQgBqzGYlnQGZlnMWgCMAiYgAFIAAgGQAAiKgOg9QgQhIguggQgugfhkgJQhIgHi+ABMguYAAHIgCxmMAuYgALQI2gCFBA+QFeBDC9ClQC9ClBOE0QBJEaABHyMAAGArMgAuqGuQisABhSBIQhSBJABCZQAACYBSBJQBTBJCrAAMAiZgACIgCpWg");
	this.shape_121.setTransform(3363.2487,3101.8477,1.3052,1.3052);
	this.shape_122 = new cjs.Shape();
	this.shape_122.graphics.f("#4C4949").s().p("EAiDAhGMAAAgluQAAjEgYhsQgch4hCg/QhDg/h9gaQhygXjNAAIuJACMAAAAvDI0cAAMAAAgu/I33ADMAAAAu8I0WAAMAAAhB5MBPRgASQJLgCFgBPQF4BVDTDFQDSDGBbFjQBVFMAAIqMAAAAmFg");
	this.shape_122.setTransform(459.8898,3106.5977,1.3051,1.3051);
	this.shape_123 = new cjs.Shape();
	this.shape_123.graphics.f("#221916").s().p("EAqQAiAMAAAg0LMhLCA0LMhCJAAAQqzAAmakOQocljAAscQAAsaIcllQGakPKzgCMAh8gAFQAAhygNgyQgPg8grgaQgrgahdgIQhEgFiyAAMgu6AAIIAAyWMAu6gALQI9gCFIA/QFjBFDBCnQDBCnBQE1QBKEdAAHyIAAbiMBK8g0NMA25gAMQLugCHKBiQHmBoEUDxQETDyB5GqQByGTAAKUQAAKThyGSQh5GrkTDzQkUDynmBqQnKBkruAAgEhi7AHZQi3ABhHBTQg0A8AAB4QAAB5A0A8QBHBTC3AAMAh8gADIAAoQgEBTqgN/I0jADIAAb+IUjgBQHEgBDvgkQEBgoB/hgQB5hdAsi1QAjiTAAkwQAAkwgjiUQgsi1h5hcQh/hgkBgmQjpgjmxAAIgZAAgEgYDAiAIcoz6IfUgCIAAT8gEgltghjMA73gAOI8sUAI/LAFg");
	this.shape_123.setTransform(1977.6853,3103.327,1.3053,1.3052);
	this.shape_124 = new cjs.Shape();
	this.shape_124.graphics.f("#221916").s().p("EgOmAiLQqzAAmakSQodlogBsmQgCslIalpQGakTKygBMAh6gAFQgBh0gMgzQgPg8grgbQgrgahdgIQhFgFixAAMgu3AAIIgCylMAu3gALQI8gCFHBAQFkBFDBCpQDACpBRE5QBMEhABH5MAAGArsgAuqHOQi2AAhHBUQg0A9AAB6QABB6A0A9QBHBUC2AAMAh6gADIgBoXg");
	this.shape_124.setTransform(3363.2813,3101.8478,1.3052,1.3052);
	this.shape_125 = new cjs.Shape();
	this.shape_125.graphics.f("#221916").s().p("EAhkAhlMAAAgmNQAAi8gXhnQgZhyg/g7Qg+g7h4gYQhsgVjFAAItrACMAAAAvDI1ZAAMAAAgu/I26ADMAAAAu8I1TAAMAAAhC3MBPwgASQJUgCFnBRQF9BWDWDJQDWDJBcFoQBXFSAAI0MAAAAmkg");
	this.shape_125.setTransform(459.9224,3106.5978,1.3051,1.3051);
	this.timeline.addTween(cjs.Tween.get({}).to({state:[{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},{t:this.shape_113},{t:this.shape_112},{t:this.shape_111},{t:this.shape_110},{t:this.shape_109},{t:this.shape_108},{t:this.shape_107},{t:this.shape_106},{t:this.shape_105},{t:this.shape_104},{t:this.shape_103},{t:this.shape_102},{t:this.shape_101},{t:this.shape_100},{t:this.shape_99},{t:this.shape_98},{t:this.shape_97},{t:this.shape_96},{t:this.shape_95},{t:this.shape_94},{t:this.shape_93},{t:this.shape_92},{t:this.shape_91},{t:this.shape_90},{t:this.shape_89},{t:this.shape_88},{t:this.shape_87},{t:this.shape_86},{t:this.shape_85},{t:this.shape_84},{t:this.shape_83},{t:this.shape_82},{t:this.shape_81},{t:this.shape_80},{t:this.shape_79},{t:this.shape_78},{t:this.shape_77},{t:this.shape_76},{t:this.shape_75},{t:this.shape_74},{t:this.shape_73},{t:this.shape_72},{t:this.shape_71},{t:this.shape_70},{t:this.shape_69},{t:this.shape_68},{t:this.shape_67},{t:this.shape_66},{t:this.shape_65},{t:this.shape_64},{t:this.shape_63},{t:this.shape_62},{t:this.shape_61},{t:this.shape_60},{t:this.shape_59},{t:this.shape_58},{t:this.shape_57},{t:this.shape_56},{t:this.shape_55},{t:this.shape_54},{t:this.shape_53},{t:this.shape_52},{t:this.shape_51},{t:this.shape_50},{t:this.shape_49},{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45},{t:this.shape_44},{t:this.shape_43},{t:this.shape_42},{t:this.shape_41},{t:this.shape_40},{t:this.shape_39},{t:this.shape_38},{t:this.shape_37},{t:this.shape_36},{t:this.shape_35},{t:this.shape_34},{t:this.shape_33},{t:this.shape_32},{t:this.shape_31},{t:this.shape_30},{t:this.shape_29},{t:this.shape_28},{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},{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));
	this._renderFirstFrame();
}).prototype = getMCSymbolPrototype(lib.Logo, new cjs.Rectangle(0,0,3699.8,3387.4), null);
(lib.Legal = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene_1
	this.text = new cjs.Text("Eine Werbung der Autohaus Mustermann GmbH, Musterstraße X, XXXXX Musterstadt.\n\n\n\n6 Jahre Garantie gemäß den Mazda Garantiebedingungen.\n\n1) Ein Privat-Leasing-Angebot (Kilometer-Leasing) der Mazda Finance – einem Service-Center der Santander Consumer Leasing GmbH (Leasinggeber), Santander-Platz 1, 41061 Mönchengladbach – für einen Mazda CX-60 e-Skyactiv D 200 (147 kW/200 PS), bei € XXX monatlicher Leasingrate, € XX.XXX,XX Leasing-Sonderzahlung, XX Monaten Laufzeit und XX.XXX km Laufleistung pro Jahr. Bonität vorausgesetzt. Angebot ist gültig für Privatkunden und nicht mit anderen Nachlässen/Aktionen kombinierbar. Preise inkl. Überführungs- und zzgl. Zulassungskosten. Abbildung zeigt den Mazda CX-60, die Ausstattungsmerkmale der abgebildeten Fahrzeuge und die Anhängezugvorrichtung sind nicht Bestandteil des Angebotes.\n\nKraftstoffverbrauch für den Mazda CX-60 e-Skyactiv D 200 im kombinierten Testzyklus: 4,8 l/100 km. CO₂-Emission kombiniert: 125 g/km. CO₂-Effizienzklasse: A+  \n\nWeitere Informationen zum offiziellen Kraftstoffverbrauch und den offiziellen CO₂-Emissionen neuer Personenkraftwagen können dem „Leitfaden über den Kraftstoffverbrauch, die CO₂-Emissionen und den Stromverbrauch neuer Personenkraftwagen“ entnommen werden, der an allen Verkaufsstellen und unter www.dat.de unentgeltlich erhältlich ist. Die angegebenen Werte wurden nach dem vorgeschriebenen Messverfahren (§2 Nrn. 5, 6, 6a Pkw-EnVKV in der gegenwärtigen geltenden Fassung) ermittelt.", "13px 'Arial'", "#FFFFFF");
	this.text.lineHeight = 17;
	this.text.lineWidth = 286;
	this.text.parent = this;
	this.text.setTransform(2,2);
	this.timeline.addTween(cjs.Tween.get(this.text).wait(1));
	this._renderFirstFrame();
}).prototype = getMCSymbolPrototype(lib.Legal, new cjs.Rectangle(0,0,290.1,877.3), null);
(lib.Img_03_1 = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene_1
	this.instance = new lib.Img_03();
	this.instance.setTransform(-149,-145);
	this.timeline.addTween(cjs.Tween.get(this.instance).wait(1));
	this._renderFirstFrame();
}).prototype = getMCSymbolPrototype(lib.Img_03_1, new cjs.Rectangle(-149,-145,320,480), null);
(lib.Img_02_1 = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene_1
	this.instance = new lib.Img_02();
	this.instance.setTransform(-149,-164,0.9999,1);
	this.timeline.addTween(cjs.Tween.get(this.instance).wait(1));
	this._renderFirstFrame();
}).prototype = getMCSymbolPrototype(lib.Img_02_1, new cjs.Rectangle(-149,-164,320,480), null);
(lib.Img_01_1 = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene_1
	this.instance = new lib.Img_01();
	this.instance.setTransform(-160,-145,1,1.0001);
	this.timeline.addTween(cjs.Tween.get(this.instance).wait(1));
	this._renderFirstFrame();
}).prototype = getMCSymbolPrototype(lib.Img_01_1, new cjs.Rectangle(-160,-145,320,480.1), null);
(lib.CTAButton = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene 1
	this.shape = new cjs.Shape();
	this.shape.graphics.f("#000000").s().p("AAhA3Ig/hQIgBAAIAABPIgNAAIAAhsIASAAIA5BIIABAAIgBhIIAOAAIAABtg");
	this.shape.setTransform(75.675,2.375);
	this.shape_1 = new cjs.Shape();
	this.shape_1.graphics.f("#000000").s().p("AgfA3IAAhsIA2AAIAAAMIghAAIAAAkIAeAAIAAAJIgeAAIAAAmIARAAIAYgBIABAAIgHAOg");
	this.shape_1.setTransform(65.325,2.35);
	this.shape_2 = new cjs.Shape();
	this.shape_2.graphics.f("#000000").s().p("AAQA3QgOgSgRgcIgHAAIAAAuIgWAAIAAhsIAgAAQAnAAAAAfQAAAUgYAHIAAAAQAUAdAWAUIAAABgAgWgBIAKAAQAJAAAEgGQAEgHAAgJQAAgKgFgFQgEgEgKAAIgIAAg");
	this.shape_2.setTransform(55.8,2.35);
	this.shape_3 = new cjs.Shape();
	this.shape_3.graphics.f("#000000").s().p("AAYA3IAAgzIgwAAIAAAzIgVAAIAAhsIAVAAIAAAtIAwAAIAAgtIAWAAIAABsg");
	this.shape_3.setTransform(42.95,2.35);
	this.shape_4 = new cjs.Shape();
	this.shape_4.graphics.f("#000000").s().p("AAeA3IgPgmIglAAIgQAmIgPAAIAuhqIARgDIAsBtgAAMAFIgOglIgBAAIgPAlIAeAAg");
	this.shape_4.setTransform(30.575,2.325);
	this.shape_5 = new cjs.Shape();
	this.shape_5.graphics.f("#000000").s().p("AgbA3IAAhsIA4AAIAAAMIgjAAIAAAlIAfAAIAAAKIgfAAIAAAxg");
	this.shape_5.setTransform(21,2.35);
	this.shape_6 = new cjs.Shape();
	this.shape_6.graphics.f("#000000").s().p("AAQA3QgOgSgRgcIgIAAIAAAuIgVAAIAAhsIAgAAQAnAAAAAfQAAAUgYAHIAAAAQAVAdAVAUIAAABgAgXgBIALAAQAJAAAEgGQAEgHAAgJQAAgKgFgFQgEgEgKAAIgJAAg");
	this.shape_6.setTransform(11.8,2.35);
	this.shape_7 = new cjs.Shape();
	this.shape_7.graphics.f("#000000").s().p("AgfA3IAAhsIA2AAIAAAMIghAAIAAAkIAeAAIAAAJIgeAAIAAAmIARAAIAYgBIABAAIgHAOg");
	this.shape_7.setTransform(1.475,2.35);
	this.shape_8 = new cjs.Shape();
	this.shape_8.graphics.f("#000000").s().p("AARA3QgPgSgSgcIgHAAIAAAuIgVAAIAAhsIAhAAQAmAAAAAfQAAAUgYAHIAAAAQAUAdAWAUIAAABgAgXgBIAMAAQAIAAADgGQAFgHAAgJQAAgKgFgFQgEgEgLAAIgIAAg");
	this.shape_8.setTransform(-13.1,2.35);
	this.shape_9 = new cjs.Shape();
	this.shape_9.graphics.f("#000000").s().p("AAZA3IAAgzIgxAAIAAAzIgVAAIAAhsIAVAAIAAAtIAxAAIAAgtIAVAAIAABsg");
	this.shape_9.setTransform(-25.95,2.35);
	this.shape_10 = new cjs.Shape();
	this.shape_10.graphics.f("#000000").s().p("AgfA3IAAhsIA2AAIAAAMIghAAIAAAkIAeAAIAAAJIgeAAIAAAmIARAAIAYgBIABAAIgHAOg");
	this.shape_10.setTransform(-36.375,2.35);
	this.shape_11 = new cjs.Shape();
	this.shape_11.graphics.f("#000000").s().p("AAtA3IgIhTIAAAAIglBMIgHAAIgmhMIAAAAIgHBTIgPAAIAMhsIAVAAIAiBHIABAAIAihHIAVAAIAMBsg");
	this.shape_11.setTransform(-49.475,2.35);
	this.shape_12 = new cjs.Shape();
	this.shape_12.graphics.f("#FFFFFF").s().p("AtpCuQgPAAgJgGQgMgHAAgKIAAkuQAAgKAMgHQAJgGAPAAIbUAAQAPAAALAGQAJAHAAAKIAAEuQAAAKgJAHQgLAGgPAAg");
	this.shape_12.setTransform(12.95,1.65);
	this.shape_13 = new cjs.Shape();
	this.shape_13.graphics.f("#FFFFFF").s().p("AAhA3Ig/hQIgBAAIAABPIgNAAIAAhsIASAAIA5BIIABAAIgBhIIAOAAIAABtg");
	this.shape_13.setTransform(75.675,2.375);
	this.shape_14 = new cjs.Shape();
	this.shape_14.graphics.f("#FFFFFF").s().p("AgfA3IAAhsIA2AAIAAAMIghAAIAAAkIAeAAIAAAJIgeAAIAAAmIARAAIAYgBIABAAIgHAOg");
	this.shape_14.setTransform(65.325,2.35);
	this.shape_15 = new cjs.Shape();
	this.shape_15.graphics.f("#FFFFFF").s().p("AAQA3QgOgSgRgcIgHAAIAAAuIgWAAIAAhsIAgAAQAnAAAAAfQAAAUgYAHIAAAAQAUAdAWAUIAAABgAgWgBIAKAAQAJAAAEgGQAEgHAAgJQAAgKgFgFQgEgEgKAAIgIAAg");
	this.shape_15.setTransform(55.8,2.35);
	this.shape_16 = new cjs.Shape();
	this.shape_16.graphics.f("#FFFFFF").s().p("AAYA3IAAgzIgwAAIAAAzIgVAAIAAhsIAVAAIAAAtIAwAAIAAgtIAWAAIAABsg");
	this.shape_16.setTransform(42.95,2.35);
	this.shape_17 = new cjs.Shape();
	this.shape_17.graphics.f("#FFFFFF").s().p("AAeA3IgPgmIglAAIgQAmIgPAAIAuhqIARgDIAsBtgAAMAFIgOglIgBAAIgPAlIAeAAg");
	this.shape_17.setTransform(30.575,2.325);
	this.shape_18 = new cjs.Shape();
	this.shape_18.graphics.f("#FFFFFF").s().p("AgbA3IAAhsIA4AAIAAAMIgjAAIAAAlIAfAAIAAAKIgfAAIAAAxg");
	this.shape_18.setTransform(21,2.35);
	this.shape_19 = new cjs.Shape();
	this.shape_19.graphics.f("#FFFFFF").s().p("AAQA3QgOgSgRgcIgIAAIAAAuIgVAAIAAhsIAgAAQAnAAAAAfQAAAUgYAHIAAAAQAVAdAVAUIAAABgAgXgBIALAAQAJAAAEgGQAEgHAAgJQAAgKgFgFQgEgEgKAAIgJAAg");
	this.shape_19.setTransform(11.8,2.35);
	this.shape_20 = new cjs.Shape();
	this.shape_20.graphics.f("#FFFFFF").s().p("AgfA3IAAhsIA2AAIAAAMIghAAIAAAkIAeAAIAAAJIgeAAIAAAmIARAAIAYgBIABAAIgHAOg");
	this.shape_20.setTransform(1.475,2.35);
	this.shape_21 = new cjs.Shape();
	this.shape_21.graphics.f("#FFFFFF").s().p("AARA3QgPgSgSgcIgHAAIAAAuIgVAAIAAhsIAhAAQAmAAAAAfQAAAUgYAHIAAAAQAUAdAWAUIAAABgAgXgBIAMAAQAIAAADgGQAFgHAAgJQAAgKgFgFQgEgEgLAAIgIAAg");
	this.shape_21.setTransform(-13.1,2.35);
	this.shape_22 = new cjs.Shape();
	this.shape_22.graphics.f("#FFFFFF").s().p("AAZA3IAAgzIgxAAIAAAzIgVAAIAAhsIAVAAIAAAtIAxAAIAAgtIAVAAIAABsg");
	this.shape_22.setTransform(-25.95,2.35);
	this.shape_23 = new cjs.Shape();
	this.shape_23.graphics.f("#FFFFFF").s().p("AgfA3IAAhsIA2AAIAAAMIghAAIAAAkIAeAAIAAAJIgeAAIAAAmIARAAIAYgBIABAAIgHAOg");
	this.shape_23.setTransform(-36.375,2.35);
	this.shape_24 = new cjs.Shape();
	this.shape_24.graphics.f("#FFFFFF").s().p("AAtA3IgIhTIAAAAIglBMIgHAAIgmhMIAAAAIgHBTIgPAAIAMhsIAVAAIAiBHIABAAIAihHIAVAAIAMBsg");
	this.shape_24.setTransform(-49.475,2.35);
	this.shape_25 = new cjs.Shape();
	this.shape_25.graphics.f("#910A2D").s().p("AtpCuQgPAAgJgGQgMgHAAgKIAAkuQAAgKAMgHQAJgGAPAAIbUAAQAPAAALAGQAJAHAAAKIAAEuQAAAKgJAHQgLAGgPAAg");
	this.shape_25.setTransform(12.95,1.65);
	this.timeline.addTween(cjs.Tween.get({}).to({state:[{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}]}).to({state:[{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},{t:this.shape_13}]},1).wait(1));
	this._renderFirstFrame();
}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(-78,-15.8,182.1,34.900000000000006);
(lib.Infos = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene_1
	this.instance = new lib.Symbol3("synched",0);
	this.instance.setTransform(29.6,-5,1,1,0,0,0,42,11);
	this.shape = new cjs.Shape();
	this.shape.graphics.f("#FFFFFF").s().p("AgJAKIAAgSIATAAIAAASg");
	this.shape.setTransform(56.5,-1.95);
	this.shape_1 = new cjs.Shape();
	this.shape_1.graphics.f("#FFFFFF").s().p("AgSAnIAAhLIAMAAIABAUQACgLAHgGQAGgFAJAAIgBALQgLAAgHAJQgFAHAAAMIAAAmg");
	this.shape_1.setTransform(51.925,-4.925);
	this.shape_2 = new cjs.Shape();
	this.shape_2.graphics.f("#FFFFFF").s().p("AgWAdQgKgKAAgTQAAgQALgMQAKgLANABQAPAAAJAIQAHAJAAAOIAAAGIgzAAQAAAOAHAJQAHAJAMAAQAOAAAJgKIACAAIgCALQgJAIgQAAQgRAAgLgLgAgLgaQgGAHgBAKIAmAAIAAgCQAAgUgSAAQgHAAgGAFg");
	this.shape_2.setTransform(44.425,-4.8);
	this.shape_3 = new cjs.Shape();
	this.shape_3.graphics.f("#FFFFFF").s().p("AgFA3IAAhLIALAAIAABLgAgGgnIAAgPIANAAIAAAPg");
	this.shape_3.setTransform(38.15,-6.525);
	this.shape_4 = new cjs.Shape();
	this.shape_4.graphics.f("#FFFFFF").s().p("AATA6IAAgxQAAgTgOAAQgKAAgHAJQgGAHAAANIAAAnIgNAAIAAhxIANgCIAAA3IABAAQAIgRARAAQAYAAAAAbIAAAyg");
	this.shape_4.setTransform(31.625,-6.75);
	this.shape_5 = new cjs.Shape();
	this.shape_5.graphics.f("#FFFFFF").s().p("AgXAgIgBgNIABAAQAKANANAAQANAAAAgMQAAgGgFgEQgDgDgJgGQgJgEgDgEQgEgFAAgHQAAgJAIgGQAHgFAIABQAKAAAHADIACAKIgBAAQgHgHgLABQgDAAgEACQgEADAAAFQAAAFADACQACADAIAEQAKAHAEADQAGAGAAAIQAAALgHAGQgIAGgKAAQgOgBgJgHg");
	this.shape_5.setTransform(19.675,-4.8);
	this.shape_6 = new cjs.Shape();
	this.shape_6.graphics.f("#FFFFFF").s().p("AgYAdQgNgKAAgTQAAgSANgLQAKgJAOAAQAPAAALAJQAMALAAASQAAATgMAKQgLALgPAAQgOAAgKgLgAgQgXQgHAIAAAPQAAAOAHAKQAHAIAJAAQALAAAGgIQAHgKAAgOQAAgOgHgJQgGgIgLAAQgJAAgHAIg");
	this.shape_6.setTransform(11.825,-4.8);
	this.shape_7 = new cjs.Shape();
	this.shape_7.graphics.f("#FFFFFF").s().p("AgMA6IAAhEIgNAAIAAgHIANAAIAAgGQAAgPAGgJQAHgKAOAAQAGAAAEACIABAIIgCAAQgEgCgFAAQgJAAgDAIQgDAGAAARIAAABIAQAAIgBAHIgPAAIAABEg");
	this.shape_7.setTransform(5.375,-6.825);
	this.shape_8 = new cjs.Shape();
	this.shape_8.graphics.f("#FFFFFF").s().p("AATAnIAAgwQAAgUgOAAQgKAAgHAJQgGAIAAAMIAAAnIgNAAIAAhLIAMAAIABAQIABAAQAIgSARAAQAYAAAAAcIAAAxg");
	this.shape_8.setTransform(-1.975,-4.875);
	this.shape_9 = new cjs.Shape();
	this.shape_9.graphics.f("#FFFFFF").s().p("AgGA3IAAhsIANAAIAABsg");
	this.shape_9.setTransform(-8.725,-6.45);
	this.timeline.addTween(cjs.Tween.get({}).to({state:[{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},{t:this.instance}]}).to({state:[{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},{t:this.instance}]},1).to({state:[{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},{t:this.instance}]},1).wait(1));
	// Layer_2
	this.shape_10 = new cjs.Shape();
	this.shape_10.graphics.f().s("rgba(92,92,91,0)").ss(1,1,1).p("AoNipIQbAAIAAFTIwbAAg");
	this.shape_10.setTransform(19.375,-6.15);
	this.shape_11 = new cjs.Shape();
	this.shape_11.graphics.f("rgba(92,92,91,0.027)").s().p("AoNCqIAAlTIQbAAIAAFTg");
	this.shape_11.setTransform(19.375,-6.15);
	this.shape_12 = new cjs.Shape();
	this.shape_12.graphics.f().s("rgba(92,92,91,0)").ss(1,1,1).p("AncioIO5AAIAAFRIu5AAg");
	this.shape_12.setTransform(19.4,-6.125);
	this.shape_13 = new cjs.Shape();
	this.shape_13.graphics.f("rgba(92,92,91,0.027)").s().p("AncCpIAAlRIO4AAIAAFRg");
	this.shape_13.setTransform(19.4,-6.125);
	this.shape_14 = new cjs.Shape();
	this.shape_14.graphics.f().s("rgba(92,92,91,0)").ss(1,1,1).p("Am0iVINpAAIAAErItpAAg");
	this.shape_14.setTransform(19.35,-6.125);
	this.shape_15 = new cjs.Shape();
	this.shape_15.graphics.f("rgba(92,92,91,0.027)").s().p("Am0CWIAAkrINpAAIAAErg");
	this.shape_15.setTransform(19.35,-6.125);
	this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_11},{t:this.shape_10}]}).to({state:[{t:this.shape_13},{t:this.shape_12}]},1).to({state:[{t:this.shape_15},{t:this.shape_14}]},1).wait(1));
	this._renderFirstFrame();
}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(-34.2,-24.1,119.3,36);
(lib.Garantie = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	// Ebene_1
	this.instance = new lib.waranty35x382ai("synched",0);
	this.instance.setTransform(-61.95,-24.35,0.6522,0.651,0,0,0,138,41.4);
	this.timeline.addTween(cjs.Tween.get(this.instance).wait(1));
	this._renderFirstFrame();
}).prototype = getMCSymbolPrototype(lib.Garantie, new cjs.Rectangle(-151.9,-51.3,180,54.3), null);
// stage content:
(lib.EliteConsult_00075_CX60tow_320x480_02 = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = new Object();
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);
	this.actionFrames = [182,320,443,444];
	// timeline functions:
	this.frame_182 = function() {
		var _this = this;
		var frameNumber;
		/*
		Durch Bewegen der Maus über die angegebene Symbolinstanz wird eine Funktion ausgeführt.
		'3' gibt an, wie oft das Ereignis ausgelöst werden soll.
		*/
		/*stage.enableMouseOver(3);
		_this.info_1.on('mouseover', function(){
		/*
		Verschiebt den Abspielkopf in der Zeitleiste zur angegebenen Bildnummer und setzt die Wiedergabe ab diesem Bild fort.
		Kann in der Hauptzeitleiste oder in Movieclip-Zeitleisten verwendet werden.
		_this.gotoAndPlay(411);
		});*/
		/* Mouse Over Event
		Mousing over the symbol instance executes a function in which you can add your own custom code.
		Instructions:
		1. Add your custom code on a new line after the line that says "// Start your custom code" below.
		The code will execute when the symbol instance is moused over.
		frequency is the number of the times event should be triggered.
		*/
		var frequency = 1;
		stage.enableMouseOver(frequency);
		this.info_1.addEventListener("mouseover", fl_MouseOverHandler);
		function fl_MouseOverHandler()
		{
			frameNumber = this.currentFrame;
			// Start your custom code
			// This example code displays the words "Moused over" in the Output panel.
			_this.gotoAndPlay(445);
			// End your custom code
		}
		/* Mouse Out Event
		Mousing out of the symbol instance executes a function in which you can add your own custom code.
		Instructions:
		1. Add your custom code on a new line after the line that says "// Start your custom code" below.
		The code will execute when the symbol instance is moused out of.
		*/
		//var frequency = 2;
		stage.enableMouseOver(2);
		this.info_1.addEventListener("mouseout", fl_MouseOutHandler);
		function fl_MouseOutHandler()
		{
			if (frameNumber > 159)
			{
				_this.gotoAndPlay(275);
			}
			else{
				_this.gotoAndPlay(159);
			}
			// Start your custom code
			// This example code displays the words "Moused out" in the Output panel.
			//_this.gotoAndPlay(frameNumber);
			// End your custom code
		}
	}
	this.frame_320 = function() {
		/* Klicken, um zu Webseite zu gehen
		Durch Klicken auf die angegebene Symbolinstanz wird die URL in einem neuen Browserfenster geladen.
		Anweisungen:
		1. Ersetzen Sie http://www.adobe.com durch die gewünschte URL-Adresse.
		      Lassen Sie die Anführungszeichen ("") stehen.
		*/
		this.button_3.addEventListener("click", fl_ClickToGoToWebPage);
		function fl_ClickToGoToWebPage() {
			window.open("http://www.adobe.com", "_blank");
		}
	}
	this.frame_443 = function() {
		var _this = this;
		/*
		Verschiebt den Abspielkopf in der Zeitleiste zur angegebenen Bildbezeichnung und setzt die Wiedergabe ab diesem Bild fort.
		Kann in der Hauptzeitleiste oder in Movieclip-Zeitleisten verwendet werden.
		*/
		_this.gotoAndPlay('1');
	}
	this.frame_444 = function() {
		var _this = this;
		/*
		Durch Klicken auf die angegebene Symbolinstanz wird eine Funktion ausgeführt.
		*/
		_this.landing.on('click', function(){
		/*
		Verschiebt den Abspielkopf in der Zeitleiste zur angegebenen Bildbezeichnung und setzt die Wiedergabe ab diesem Bild fort.
		Kann in der Hauptzeitleiste oder in Movieclip-Zeitleisten verwendet werden.
		*/
		_this.gotoAndPlay('265');
		});
	}
	// actions tween:
	this.timeline.addTween(cjs.Tween.get(this).wait(182).call(this.frame_182).wait(138).call(this.frame_320).wait(123).call(this.frame_443).wait(1).call(this.frame_444).wait(224));
	// CTA
	this.button_3 = new lib.CTAButton();
	this.button_3.name = "button_3";
	this.button_3.setTransform(90,372,0.9335,0.9327);
	this.button_3.alpha = 0;
	this.button_3._off = true;
	new cjs.ButtonHelper(this.button_3, 0, 1, 1);
	this.timeline.addTween(cjs.Tween.get(this.button_3).wait(310).to({_off:false},0).to({alpha:0.8594},10).to({scaleY:0.9326,y:371.9},113).to({y:372,alpha:0},10).to({_off:true},1).wait(224));
	// Infos
	this.info_1 = new lib.Infos();
	this.info_1.name = "info_1";
	this.info_1.setTransform(244,448);
	this.info_1.alpha = 0;
	this.info_1._off = true;
	new cjs.ButtonHelper(this.info_1, 0, 1, 2);
	this.timeline.addTween(cjs.Tween.get(this.info_1).wait(170).to({_off:false},0).to({alpha:0.9883},12).to({alpha:1},251).to({alpha:0},10).to({_off:true},1).wait(224));
	// Garantie
	this.instance = new lib.Garantie();
	this.instance.setTransform(147.35,389.45,0.8611,0.859,0,0,0,-2.9,0.6);
	this.instance.alpha = 0;
	this.instance._off = true;
	this.timeline.addTween(cjs.Tween.get(this.instance).wait(170).to({_off:false},0).to({alpha:1},12).wait(110).to({alpha:0},21).to({_off:true},2).wait(353));
	// Text_03
	this.instance_1 = new lib.Text_03();
	this.instance_1.setTransform(-33.9,131.5,1,1,0,0,0,8.9,3.4);
	this.instance_1.alpha = 0;
	this.instance_1._off = true;
	this.timeline.addTween(cjs.Tween.get(this.instance_1).wait(292).to({_off:false},0).to({x:88.2,alpha:1},21).wait(120).to({alpha:0},10).to({_off:true},1).wait(224));
	// Text_02
	this.instance_2 = new lib.Text_02();
	this.instance_2.setTransform(-117.9,131.5,1,1,0,0,0,8.9,3.4);
	this.instance_2.alpha = 0;
	this.instance_2._off = true;
	this.timeline.addTween(cjs.Tween.get(this.instance_2).wait(141).to({_off:false},0).to({x:85.2,alpha:1},22).wait(129).to({alpha:0},9).to({_off:true},2).wait(365));
	// Text_01
	this.instance_3 = new lib.Text_01();
	this.instance_3.setTransform(-78.8,131.5,1,1,0,0,0,8.9,3.4);
	this.instance_3.alpha = 0;
	this.timeline.addTween(cjs.Tween.get(this.instance_3).to({x:85.2,alpha:1},21).wait(120).to({alpha:0},11).to({_off:true},281).wait(235));
	// XXX 
	this.instance_4 = new lib.XXXX();
	this.instance_4.setTransform(50.35,499.55);
	this.instance_4.alpha = 0;
	this.timeline.addTween(cjs.Tween.get(this.instance_4).to({alpha:1},3).wait(430).to({alpha:0},9).to({_off:true},2).wait(224));
	// Logo
	this.instance_5 = new lib.Logo();
	this.instance_5.setTransform(261.9,44.85,0.0176,0.0176,0,0,0,1414.1,1304.5);
	this.instance_5.alpha = 0;
	this.timeline.addTween(cjs.Tween.get(this.instance_5).to({alpha:1},21).wait(412).to({alpha:0},9).to({_off:true},2).wait(224));
	// Img_03
	this.instance_6 = new lib.Img_03_1();
	this.instance_6.setTransform(150.1,137.6,1,1,0,0,0,1.1,-7.4);
	this.instance_6.alpha = 0;
	this.instance_6._off = true;
	this.timeline.addTween(cjs.Tween.get(this.instance_6).wait(292).to({_off:false},0).to({alpha:1},22).to({scaleX:1.0468,scaleY:1.0469,y:137.2},119).to({alpha:0},10).to({_off:true},1).wait(224));
	// Img_02
	this.instance_7 = new lib.Img_02_1();
	this.instance_7.setTransform(150.1,157,0.9996,1,0,0,0,1.1,-7);
	this.instance_7.alpha = 0;
	this.instance_7._off = true;
	this.timeline.addTween(cjs.Tween.get(this.instance_7).wait(141).to({_off:false},0).to({alpha:1},22).to({regX:1.2,scaleX:1.0468,scaleY:1.0471,x:150.2,y:156.6},129).to({alpha:0},22).to({_off:true},1).wait(353));
	// Img_01
	this.instance_8 = new lib.Img_01_1();
	this.instance_8.setTransform(161,138.1,1,0.9999,0,0,0,1,-6.9);
	this.instance_8.alpha = 0;
	this.timeline.addTween(cjs.Tween.get(this.instance_8).to({alpha:1},21).to({regX:1.1,scaleX:1.0468,scaleY:1.0468,x:161.1,y:137.75},120).to({regX:1,regY:-6.8,x:161.05,y:137.85,alpha:0},22).to({_off:true},142).wait(363));
	// Legal
	this.instance_9 = new lib.Legal();
	this.instance_9.setTransform(165.05,158.1,1,1,0,0,0,145,134.1);
	this.instance_9._off = true;
	this.timeline.addTween(cjs.Tween.get(this.instance_9).wait(444).to({_off:false},0).to({y:-231.45},195).wait(29));
	this._renderFirstFrame();
}).prototype = p = new lib.AnMovieClip();
p.nominalBounds = new cjs.Rectangle(-28.7,-125.5,357.8,1026.8);
// library properties:
lib.properties = {
	id: 'A8A7E23B3039544085D207AE250EC813',
	width: 320,
	height: 480,
	fps: 30,
	color: "#000000",
	opacity: 1.00,
	manifest: [
		{src:"images/Img_01.jpg", id:"Img_01"},
		{src:"images/Img_02.jpg", id:"Img_02"},
		{src:"images/Img_03.jpg", id:"Img_03"}
	],
	preloads: []
};
// bootstrap callback support:
(lib.Stage = function(canvas) {
	createjs.Stage.call(this, canvas);
}).prototype = p = new createjs.Stage();
p.setAutoPlay = function(autoPlay) {
	this.tickEnabled = autoPlay;
}
p.play = function() { this.tickEnabled = true; this.getChildAt(0).gotoAndPlay(this.getTimelinePosition()) }
p.stop = function(ms) { if(ms) this.seek(ms); this.tickEnabled = false; }
p.seek = function(ms) { this.tickEnabled = true; this.getChildAt(0).gotoAndStop(lib.properties.fps * ms / 1000); }
p.getDuration = function() { return this.getChildAt(0).totalFrames / lib.properties.fps * 1000; }
p.getTimelinePosition = function() { return this.getChildAt(0).currentFrame / lib.properties.fps * 1000; }
an.bootcompsLoaded = an.bootcompsLoaded || [];
if(!an.bootstrapListeners) {
	an.bootstrapListeners=[];
}
an.bootstrapCallback=function(fnCallback) {
	an.bootstrapListeners.push(fnCallback);
	if(an.bootcompsLoaded.length > 0) {
		for(var i=0; i<an.bootcompsLoaded.length; ++i) {
			fnCallback(an.bootcompsLoaded[i]);
		}
	}
};
an.compositions = an.compositions || {};
an.compositions['A8A7E23B3039544085D207AE250EC813'] = {
	getStage: function() { return exportRoot.stage; },
	getLibrary: function() { return lib; },
	getSpriteSheet: function() { return ss; },
	getImages: function() { return img; }
};
an.compositionLoaded = function(id) {
	an.bootcompsLoaded.push(id);
	for(var j=0; j<an.bootstrapListeners.length; j++) {
		an.bootstrapListeners[j](id);
	}
}
an.getComposition = function(id) {
	return an.compositions[id];
}
an.makeResponsive = function(isResp, respDim, isScale, scaleType, domContainers) {		
	var lastW, lastH, lastS=1;		
	window.addEventListener('resize', resizeCanvas);		
	resizeCanvas();		
	function resizeCanvas() {			
		var w = lib.properties.width, h = lib.properties.height;			
		var iw = window.innerWidth, ih=window.innerHeight;			
		var pRatio = window.devicePixelRatio || 1, xRatio=iw/w, yRatio=ih/h, sRatio=1;			
		if(isResp) {                
			if((respDim=='width'&&lastW==iw) || (respDim=='height'&&lastH==ih)) {                    
				sRatio = lastS;                
			}				
			else if(!isScale) {					
				if(iw<w || ih<h)						
					sRatio = Math.min(xRatio, yRatio);				
			}				
			else if(scaleType==1) {					
				sRatio = Math.min(xRatio, yRatio);				
			}				
			else if(scaleType==2) {					
				sRatio = Math.max(xRatio, yRatio);				
			}			
		}
		domContainers[0].width = w * pRatio * sRatio;			
		domContainers[0].height = h * pRatio * sRatio;
		domContainers.forEach(function(container) {				
			container.style.width = w * sRatio + 'px';				
			container.style.height = h * sRatio + 'px';			
		});
		stage.scaleX = pRatio*sRatio;			
		stage.scaleY = pRatio*sRatio;
		lastW = iw; lastH = ih; lastS = sRatio;            
		stage.tickOnUpdate = false;            
		stage.update();            
		stage.tickOnUpdate = true;		
	}
}
an.handleSoundStreamOnTick = function(event) {
	if(!event.paused){
		var stageChild = stage.getChildAt(0);
		if(!stageChild.paused || stageChild.ignorePause){
			stageChild.syncStreamSounds();
		}
	}
}
an.handleFilterCache = function(event) {
	if(!event.paused){
		var target = event.target;
		if(target){
			if(target.filterCacheList){
				for(var index = 0; index < target.filterCacheList.length ; index++){
					var cacheInst = target.filterCacheList[index];
					if((cacheInst.startFrame <= target.currentFrame) && (target.currentFrame <= cacheInst.endFrame)){
						cacheInst.instance.cache(cacheInst.x, cacheInst.y, cacheInst.w, cacheInst.h);
					}
				}
			}
		}
	}
}
})(createjs = createjs||{}, AdobeAn = AdobeAn||{});
var createjs, AdobeAn;
</script>
<script>
// Global Scripts
	var _this = this;
/*
Durch Klicken auf die angegebene Symbolinstanz wird eine Funktion ausgeführt.
*/
_this.button_4.on('click', function(){
/*
Verschiebt den Abspielkopf in der Zeitleiste zur angegebenen Bildbezeichnung und setzt die Wiedergabe ab diesem Bild fort.
Kann in der Hauptzeitleiste oder in Movieclip-Zeitleisten verwendet werden.
*/
_this.gotoAndPlay('1');
});</script>
<script>
var canvas, stage, exportRoot, anim_container, dom_overlay_container, fnStartAnimation;
function init() {
	canvas = document.getElementById("canvas");
	anim_container = document.getElementById("animation_container");
	dom_overlay_container = document.getElementById("dom_overlay_container");
	var comp=AdobeAn.getComposition("A8A7E23B3039544085D207AE250EC813");
	var lib=comp.getLibrary();
	var loader = new createjs.LoadQueue(false);
	loader.addEventListener("fileload", function(evt){handleFileLoad(evt,comp)});
	loader.addEventListener("complete", function(evt){handleComplete(evt,comp)});
	var lib=comp.getLibrary();
	loader.loadManifest(lib.properties.manifest);
}
function handleFileLoad(evt, comp) {
	var images=comp.getImages();	
	if (evt && (evt.item.type == "image")) { images[evt.item.id] = evt.result; }	
}
function handleComplete(evt,comp) {
	//This function is always called, irrespective of the content. You can use the variable "stage" after it is created in token create_stage.
	var lib=comp.getLibrary();
	var ss=comp.getSpriteSheet();
	var queue = evt.target;
	var ssMetadata = lib.ssMetadata;
	for(i=0; i<ssMetadata.length; i++) {
		ss[ssMetadata[i].name] = new createjs.SpriteSheet( {"images": [queue.getResult(ssMetadata[i].name)], "frames": ssMetadata[i].frames} )
	}
	exportRoot = new lib.EliteConsult_00075_CX60tow_320x480_02();
	stage = new lib.Stage(canvas);
	stage.enableMouseOver();	
	//Registers the "tick" event listener.
	fnStartAnimation = function() {
		stage.addChild(exportRoot);
		createjs.Ticker.framerate = lib.properties.fps;
		createjs.Ticker.addEventListener("tick", stage);
	}	    
	//Code to support hidpi screens and responsive scaling.
	AdobeAn.makeResponsive(false,'both',false,1,[canvas,anim_container,dom_overlay_container]);	
	AdobeAn.compositionLoaded(lib.properties.id);
	fnStartAnimation();
}
</script>
<!-- write your code here -->
</head>
<body onload="init();" style="margin:0px;">
	<div id="animation_container" style="background-color:rgba(0, 0, 0, 1.00); width:320px; height:480px">
		<canvas id="canvas" width="320" height="480" style="position: absolute; display: block; background-color:rgba(0, 0, 0, 1.00);"></canvas>
		<div id="dom_overlay_container" style="pointer-events:none; overflow:hidden; width:320px; height:480px; position: absolute; left: 0px; top: 0px; display: block;">
		</div>
	</div>
</body>
</html>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines