STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229494 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2575 · P5149 |
This is the info page for Flash #22663 |
loading 100% |
CLICK HERE TO PLAY |
CLICK HERE TO PLAY |
XXX |
XXX |
XXXXXXXXXXXX |
PLAY AGAIN |
PLAY AGAIN |
XXXXXXXXXXXX |
PAUSE |
<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="10" COLOR="#000000">bonus_mc</FONT></P> |
<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="10" COLOR="#000000">fader sound</FONT></P> |
x4 |
x4 |
X |
P |
SALOON |
N |
O |
L |
A |
S |
2 |
222222222222 |
Ball 1 |
Ball 2 |
Ball 3 |
Ball 4 |
Final Ball |
ActionScript [AS1/AS2]
Instance of Symbol 4 MovieClip in Frame 1onClipEvent (enterFrame) { percent = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 1000) / 10; disp_percent = ("loading " + percent) + "%"; if (percent >= 100) { _root.gotoAndStop(3); } }Frame 2stop();Frame 3_root.createEmptyMovieClip("musicIntro_mc", 20000); musicIntro_snd = new Sound(musicIntro_mc); musicIntro_snd.attachSound("T_musicIntro.wav"); musicIntro_snd.start(0, 1000);Frame 4gotoAndStop (8);Frame 8function Position(x, y) { this.x = x; this.y = y; } function tVector(x, y) { this.x = x; this.y = y; this.norm = dist(0, 0, x, y); this.phiRad = Math.atan2(y, x); this.phiDeg = this.phiRad * toDeg; } function tBall(mc, pos, vel) { this.mc = mc; this.pos = pos; this.vel = vel; this.oldPos = new Position(); this.mode = undefined; } function tWall(mc, angle, pos) { this.mc = mc; this.angle = angle; this.pos = pos; this.strength = 1; } function tFlipper(mc, angle, length, pos) { this.mc = mc; this.angle = angle; this.moving = 0; this.length = length; this.pos = pos; } function tBumper(mc, radius, strength, pos, clip) { this.mc = mc; this.radius = radius; this.strength = strength; this.pos = pos; this.clip = clip; } function tTarget(mc, radius, strength, pos, hitStatus) { this.mc = mc; this.radius = radius; this.strength = strength; this.pos = pos; this.hitStatus = hitStatus; this.pos = pos; this.setOn = function () { this.mc.gotoAndStop("on"); this.hitStatus = true; }; this.setOff = function () { this.mc.gotoAndStop("off"); this.hitStatus = false; }; } function tSwitch(mc, hitStatus) { this.mc = mc; this.hitStatus = hitstatus; this.setOn = function () { this.mc.gotoAndStop("on"); this.hitStatus = true; }; this.setOff = function () { this.mc.gotoAndStop("off"); this.hitStatus = false; }; } function tbonus(mc) { this.mc = mc; this.setOn = function () { this.mc.gotoAndStop("on"); this.status = true; }; this.setOff = function () { this.mc.gotoAndStop("off"); this.status = false; }; this.setOff(); } play(); function dist(x1, y1, x2, y2) { var output = Math.sqrt(((x2 - x1) * (x2 - x1)) + ((y2 - y1) * (y2 - y1))); return(output); } function normalizeVect(v) { var x = (v.x / v.norm); var y = (v.y / v.norm); var result = new tVector(x, y); return(result); } function sumVect(v1, v2, v3) { var x = ((v1.x + v2.x) + v3.x); var y = ((v1.y + v2.y) + v3.y); var result = new tVector(x, y); return(result); } function count(str, root) { if (root == undefined) { root = _root; } var num = 0; for (var i in root) { if (i.substr(0, str.length) == str) { var char = i.substr(str.length, 1); if (!isNaN(char)) { num++; } } } return(num); } function addSpace(str) { var newStr; var count; var i; var char; str = str.toString(); newStr = ""; count = 0; i = str.length - 1; while (i >= 0) { char = str.charAt(i); count++; if ((count == 3) && (i != 0)) { count = 0; char = "," + char; } newStr = char + newStr; i--; } return(newStr); } function doWallCollision(wall, ball) { var x = (ball.pos.x - wall.pos.x); var y = (ball.pos.y - wall.pos.y); var dx = (ball.pos.x - ball.oldPos.x); var dy = (ball.pos.y - ball.oldPos.y); var angleRad = wall.angle; var cosAngle = Math.cos(angleRad); var sinAngle = Math.sin(angleRad); var x1 = ((cosAngle * x) + (sinAngle * y)); var y1 = ((cosAngle * y) - (sinAngle * x)); var dx1 = ((cosAngle * dx) + (sinAngle * dy)); var dy1 = ((cosAngle * dy) - (sinAngle * dx)); var vx1 = ((cosAngle * ball.vel.x) + (sinAngle * ball.vel.y)); var vy1 = ((cosAngle * ball.vel.y) - (sinAngle * ball.vel.x)); if ((Math.abs(y1) < radius) && (dy1 > 0)) { y1 = -radius; vy1 = vy1 * (-bounce); x = (cosAngle * x1) - (sinAngle * y1); y = (cosAngle * y1) + (sinAngle * x1); ball.vel.x = (cosAngle * vx1) - (sinAngle * vy1); ball.vel.y = (cosAngle * vy1) + (sinAngle * vx1); ball.vel.x = ball.vel.x * wall.strength; ball.vel.y = ball.vel.y * wall.strength; ball.pos.x = x + wall.pos.x; ball.pos.y = y + wall.pos.y; } } function doPointCollision(point, ball) { var distBallPoint = dist(ball.pos.x, ball.pos.y, point.pos.x, point.pos.y); if (distBallPoint < (radius + point.radius)) { var end = new Position(point.pos.x, point.pos.y); var bv = new tVector(ball.vel.x, ball.vel.y); var bm = normalizeVect(new tVector(ball.pos.x - end.x, ball.pos.y - end.y)); var fl = new tVector((bm.x * bv.norm) * point.strength, (bm.y * bv.norm) * point.strength); var sum = sumVect(bv, bm, fl); ball.vel.x = sum.x; ball.vel.y = sum.y; } } function initSounds() { _root.createEmptyMovieClip("soundHolder", 25000); soundDepth = 0; createSound("B_can.wav", "B_can_snd"); createSound("B_extraBall.wav", "B_extraBall_snd"); createSound("B_lose.wav", "B_lose_snd"); createSound("B_stool.wav", "B_stool_snd"); createSound("B_win.wav", "B_win_snd"); createSound("M_ballThud.wav", "M_ballThud_snd"); createSound("M_barrel.wav", "M_barrel_snd"); createSound("M_bumper.wav", "M_bumper_snd"); createSound("M_cart1.wav", "M_cart1_snd"); createSound("M_cart2.wav", "M_cart2_snd"); createSound("M_cart3.wav", "M_cart3_snd"); createSound("M_cart4.wav", "M_cart4_snd"); createSound("M_cart5.wav", "M_cart5_snd"); createSound("M_ding.wav", "M_ding_snd"); createSound("M_flipper.wav", "M_flipper_snd"); createSound("M_horse.wav", "M_horse_snd"); createSound("M_launchNewBall.wav", "M_launchNewBall_snd"); createSound("M_mainRamp.wav", "M_mainRamp_snd"); createSound("M_rampBallKicked.wav", "M_rampBallKicked_snd"); createSound("M_rampThud.wav", "M_rampThud_snd"); createSound("M_saloonDoor.wav", "M_saloonDoor_snd"); createSound("M_scoreTotal.wav", "M_scoreTotal_snd"); createSound("M_scream.wav", "M_scream_snd"); createSound("M_target.wav", "M_target_snd"); createSound("M_wolf.wav", "M_wolf_snd"); createSound("T_musicFinalTheme.wav", "T_musicFinalTheme_snd"); createSound("T_musicIntro.wav", "T_musicIntro_snd"); createSound("T_musicMainTheme.wav", "T_musicMainTheme_snd"); B_can_snd.setVolume(100); B_extraBall_snd.setVolume(80); B_lose_snd.setVolume(100); B_stool_snd.setVolume(80); B_win_snd.setVolume(100); M_ballThud_snd.setVolume(50); M_barrel_snd.setVolume(50); M_bumper_snd.setVolume(50); M_cart1_snd.setVolume(100); M_cart2_snd.setVolume(100); M_cart3_snd.setVolume(100); M_cart4_snd.setVolume(100); M_cart5_snd.setVolume(100); M_ding_snd.setVolume(80); M_flipper_snd.setVolume(50); M_horse_snd.setVolume(80); M_launchNewBall_snd.setVolume(60); M_mainRamp_snd.setVolume(60); M_rampBallKicked_snd.setVolume(60); M_rampThud_snd.setVolume(80); M_saloonDoor_snd.setVolume(100); M_scoreTotal_snd.setVolume(80); M_target_snd.setVolume(60); T_musicFinalTheme_snd.setVolume(100); T_musicIntro_snd.setVolume(100); T_musicMainTheme_snd.setVolume(100); cartSoundArr = new Array(M_cart1_snd, M_cart2_snd, M_cart3_snd, M_cart4_snd, M_cart5_snd); } function createSound(id, name) { soundDepth++; instName = ("sound" + soundDepth) + "_mc"; soundHolder.createEmptyMovieClip(instName, soundDepth); var mc = soundHolder[instName]; _root[name] = new Sound(mc); _root[name].attachSound(id); } function playSound(snd) { if (soundOn) { snd.start(); } } function playSoundLoop(snd) { if (soundOn) { snd.start(0, 1000); } } function playSoundVolume(snd, volume) { if (soundOn) { snd.setVolume(volume); snd.start(); } } function stopSound(snd) { snd.stop(); } function fadeSound(snd) { fader.snd = snd; fader.gotoAndPlay("start"); } function calculateVolume(velocity) { var volume = Math.floor((dist(0, 0, velocity.x, velocity.y) * 100) / maxSpeed); if (volume > 100) { volume = 100; } return(volume); } initSounds(); stopSound(T_musicFinalTheme_snd); stopSound(T_musicIntro_snd); stopSound(T_musicMainTheme_snd); musicIntro_snd.stop(); function initGame() { numBalls = 5; currBall = 0; score = 0; bonus = 0; breakOutMode = false; soundIndice = 0; activeBumperStrength = 2; activeLargeBumperStrength = 1.75; passiveBumperStrength = 0.75; flipperStrength = 15; initAllObjects(); } function launchNewBall() { currBall++; display_mc.gotoAndPlay("start"); mainRamp.gotoAndPlay(2); ball.mode = "rampDown"; score_mc.disp_currBall = currBall; playSound(M_launchNewBall_snd); } function display(mode, str1, str2, str3, str4, str5, str6, str7, str8, str9, str10, str11, str12) { var displayObj = new Object(); var i = 1; while (i <= 12) { var str = eval ("str" + i); displayObj["str" + i] = str; trace("DISPLAY: " + str); if (str == -1) { count = i; break; } i++; } if (mode == 0) { display_mc.gotoAndPlay("start"); display_mc.displayObj = displayObj; } else if (mode == 1) { this.attachMovie("B_scoreBoard", "scoreBoard", 5000); scoreBoard.displayObj = displayObj; scoreBoard._x = 348; scoreBoard._y = 307.5; } else if (mode == 2) { this.attachMovie("mainScoreBoard", "scoreBoard", 5000); scoreBoard.displayObj = displayObj; scoreBoard._x = 357; scoreBoard._y = 251; } return((800 * (count - 1)) + 2200); } function endBall() { trace("END BALL"); ball.mode = "stop"; var dispBonus = score_mc.mainBonus; if (score_mc.bonusLevel == 0) { var dispTotal = (score_mc.mainScore + score_mc.mainBonus); dispTimer = display(1, "Ball Lost!", "Bonus", addSpace(dispBonus), -1); } else { var dispMult = score_mc.bonusMult; var dispBonusMult = (score_mc.mainBonus * score_mc.bonusMult); var dispTotal = (score_mc.mainScore + dispBonusMult); dispTimer = display(1, "Ball Lost!", "Bonus", addSpace(dispBonus), "x" + dispMult, addSpace(dispBonusMult), -1); } score_mc.mainScore = dispTotal; timer = setInterval(function () { score_mc.resetAfterBall(); launchNewBall(); clearInterval(timer); }, dispTimer); } function endGame() { trace("END GAME"); ball.mode = "stop"; BG_pepsiTitle.animateLight(); playSoundLoop(T_musicIntro_snd, 100); var dispBonus = score_mc.mainBonus; if (score_mc.bonusLevel == 0) { var dispTotal = (score_mc.mainScore + score_mc.mainBonus); dispTimer = display(1, "Game Over!", "Bonus", addSpace(dispBonus), -2, addSpace(dispTotal), -1); } else { var dispMult = score_mc.bonusMult; var dispBonusMult = (score_mc.mainBonus * score_mc.bonusMult); var dispTotal = (score_mc.mainScore + dispBonusMult); dispTimer = display(1, "Game Over!", "Bonus", addSpace(dispBonus), "x" + dispMult, addSpace(dispBonusMult), -2, addSpace(dispTotal), -1); } score_mc.mainScore = dispTotal; timer = setInterval(function () { clearInterval(timer); }, dispTimer); } function submitScore() { toSend = new LoadVars(); toSend.gobbledeegook = score_mc.mainScore; toSend.send("submitscore.asp", "_self", "POST"); } function initAllObjects() { initBonus(); initBall(); initWalls(); initFlippers(); initBumpers(); initTargets(); initMainRamp(); initLargeBumpers(); initSwitches(); initCart(); } function initBonus() { numBonus = count("bonus"); var bonusLabel = new Array("x2", "x4", "x6", "x8", "x10", "hold"); bonus = new Array(); i = 0; while (i < numBonus) { var mc = _root["bonus" + i]; mc.disp_label_mc.text = bonusLabel[i]; bonus.push(new tBonus(mc)); i++; } } function initBall() { radius = 12.5; gravity = 0.275; bounce = 0.8; friction = 0.998; maxSpeed = 15; toRad = (Math.PI/180); toDeg = 57.2957795130823; TOP = 0; BOTTOM = 547; LEFT = 0; RIGHT = 694; var mc = ball_mc; var pos = new Position(ballLaunch._x, ballLaunch._y); var vel = new Position(0, -10); ball = new tBall(mc, pos, vel); } function initWalls() { numWalls = count("dot"); numWalls--; wall = new Array(); i = 0; while (i < numWalls) { var mc = attachMovie("wall", "wall" + i, 1000 + i); mc._visible = showWall; mc.n = i; mc._x = _root["dot" + i]._x; mc._y = _root["dot" + i]._y; var pos = new Position(mc._x, mc._y); var end = new Position(_root["dot" + (i + 1)]._x, _root["dot" + (i + 1)]._y); mc._width = dist(pos.x, pos.y, end.x, end.y); var angleRad = Math.atan2(end.y - pos.y, end.x - pos.x); var angleDeg = ((mc._rotation = angleRad * toDeg)); wall.push(new tWall(mc, angleRad, pos)); i++; } } function initMainRamp() { numLeftWalls = count("leftDot", _root.mainRamp) - 1; numRightWalls = count("rightDot", _root.mainRamp) - 1; rampWall = new Array(); i = 0; while (i < numLeftWalls) { var mc = attachMovie("wall", "rampWall" + i, 2000 + i); mc._visible = showWall; mc._x = _root.mainRamp["leftDot" + i]._x + mainRamp._x; mc._y = _root.mainRamp["leftDot" + i]._y + mainRamp._y; var pos = new Position(mc._x, mc._y); var endx = (_root.mainRamp["leftDot" + (i + 1)]._x + mainRamp._x); var endy = (_root.mainRamp["leftDot" + (i + 1)]._y + mainRamp._y); var end = new Position(endx, endy); mc._width = dist(pos.x, pos.y, end.x, end.y); var angleRad = Math.atan2(end.y - pos.y, end.x - pos.x); var angleDeg = ((mc._rotation = angleRad * toDeg)); rampWall.push(new tWall(mc, angleRad, pos)); i++; } i = 0; while (i < numRightWalls) { var indice = (i + 100); var mc = attachMovie("wall", "rampWall" + indice, 2000 + indice); mc._visible = showWall; mc._x = _root.mainRamp["rightDot" + i]._x + mainRamp._x; mc._y = _root.mainRamp["rightDot" + i]._y + mainRamp._y; var pos = new Position(mc._x, mc._y); var endx = (_root.mainRamp["rightDot" + (i + 1)]._x + mainRamp._x); var endy = (_root.mainRamp["rightDot" + (i + 1)]._y + mainRamp._y); var end = new Position(endx, endy); mc._width = dist(pos.x, pos.y, end.x, end.y); var angleRad = Math.atan2(end.y - pos.y, end.x - pos.x); var angleDeg = ((mc._rotation = angleRad * toDeg)); rampWall.push(new tWall(mc, angleRad, pos)); i++; } } function initFlippers() { numFlippers = count("flipper"); flipper = new Array(); i = 0; while (i < numFlippers) { var mc = _root["flipper" + i]; var pos = new Position(mc._x, mc._y); var length = mc._width; var angle = mc._rotation; flipper[i] = new tFlipper(mc, angle, length, pos); flipper[i].type = flipper[i].mc.type; flipper[i].strength = flipperStrength; flipper[i].angleSup = -5.22; flipper[i].angleInf = 5.22; i++; } } function initBumpers() { numBumpers = count("bumper"); bumper = new Array(); var i = 0; while (i < numBumpers) { var mc = _root["bumper" + i]; var bRadius = mc._width; if (i <= 2) { var strength = activeBumperStrength; } else { var strength = passiveBumperStrength; } var pos = new Position(mc._x, mc._y); var clip = _root["sombrero" + i]; bumper[i] = new tBumper(mc, bRadius, strength, pos, clip); i++; } } function initTargets() { saloon_mc.setDoorClose(); numTargetHit = 0; numTargets = count("target", _root.allTargets); target = new Array(); var letter = "PEPSISALOON"; var i = 0; while (i < numTargets) { var mc = _root.allTargets["target" + i]; mc.gotoAndStop("on"); var x = ((mc._x + mc.bumper0._x) + allTargets._x); var y = ((mc._y + mc.bumper0._y) + allTargets._y); mc.disp_letter = letter.charAt(i); var pos = new Position(x, y); var bRadius = mc.bumper0._width; var hitStatus = true; target[i] = new tTarget(mc, bRadius, 1.5, pos, hitStatus); i++; } } function initLargeBumpers() { var numLargeBumpers = count("largeBumper"); largeBumper = new Array(); j = 0; while (j < numLargeBumpers) { largeBumper[j] = new Object(); largeBumper[j].mc = _root["largeBumper" + j]; var numSmallBumpers = count("bumper", largeBumper[j].mc); largeBumper[j].bumper = new Array(); i = 0; while (i < numSmallBumpers) { var mc = _root["largeBumper" + j]["bumper" + i]; var bRadius = mc._width; var strength = activeLargeBumperStrength; var pos = new Position(mc._x, mc._y); pos.x = pos.x + largeBumper[j].mc._x; pos.y = pos.y + largeBumper[j].mc._y; largeBumper[j].bumper[i] = new tBumper(mc, bRadius, strength, pos); i++; } var numWalls = (count("dot", largeBumper[j].mc) / 2); largeBumper[j].wall = new Array(); i = 0; while (i < numWalls) { wallDepth++; var str = ("wall" + wallDepth); _root["largeBumper" + j].attachMovie("wall", str, wallDepth); var mc = _root["largeBumper" + j][str]; mc._x = _root["largeBumper" + j]["dot" + (i * 2)]._x; mc._y = _root["largeBumper" + j]["dot" + (i * 2)]._y; var pos = new Position(mc._x, mc._y); var endx = _root["largeBumper" + j]["dot" + ((i * 2) + 1)]._x; var endy = _root["largeBumper" + j]["dot" + ((i * 2) + 1)]._y; var end = new Position(endx, endy); mc._width = dist(pos.x, pos.y, end.x, end.y); var angleRad = Math.atan2(end.y - pos.y, end.x - pos.x); mc._rotation = angleRad * toDeg; pos.x = pos.x + largeBumper[j].mc._x; pos.y = pos.y + largeBumper[j].mc._y; largeBumper[j].wall.push(new tWall(mc, angleRad, pos)); i++; } j++; } largeBumper[0].bumper[0].strength = 0.75; largeBumper[0].bumper[5].strength = 0.75; } function initSwitches() { gateFlag = new Array(false, false, false); numSwitches = count("switch", _root.switch_mc); gateSwitch = new Array(); var i = 0; while (i < numSwitches) { var mc = switch_mc["switch" + i]; mc.gotoAndStop("off"); gateSwitch.push(new tSwitch(mc, false)); i++; } } function initCart() { cart = new Object(); cart.mc = eval (_root.cart_mc); var numSmallBumpers = count("bumper", cart.mc); cart.bumper = new Array(); i = 0; while (i < numSmallBumpers) { var mc = cart.mc["bumper" + i]; var bRadius = (mc._width / 2); var strength = activeLargeBumperStrength; var pos = new Position(mc._x, mc._y); pos.x = pos.x + cart.mc._x; pos.y = pos.y + cart.mc._y; cart.pos = new Position(pos.x, pos.y); cart.bumper[i] = new tBumper(mc, bRadius, strength, pos); i++; } } function moveBall() { ball.oldPos.x = ball.pos.x; ball.oldPos.y = ball.pos.y; ball.vel.y = ball.vel.y + gravity; ball.vel.x = ball.vel.x * friction; ball.vel.y = ball.vel.y * friction; var velocity = new tVector(ball.vel.x, ball.vel.y); if (velocity.norm > maxSpeed) { ball.vel.x = maxSpeed * Math.cos(velocity.phiRad); ball.vel.y = maxSpeed * Math.sin(velocity.phiRad); } ball.pos.x = ball.pos.x + ball.vel.x; ball.pos.y = ball.pos.y + ball.vel.y; ball.mc._x = ball.pos.x; ball.mc._y = ball.pos.y; } function scaleBall() { var size; var minSize = 20; var maxSize = 25; var minY = 68; var maxY = 487; var size = ((ball.pos.y - minY) / (maxY - minY)); var size = (((maxSize - minSize) * size) + minSize); var scale = (size * 4); ball.mc._xscale = scale; ball.mc._yscale = scale; radius = size / 2; } function checkOutScreen() { if ((((ball.pos.y > BOTTOM) || (ball.pos.x < LEFT)) || (ball.pos.x > RIGHT)) || (ball.pos.y < TOP)) { if (currBall == numBalls) { endGame(); } else { endBall(); } } } function checkWalls() { for (i in wall) { if (wall[i].mc.hitTest(ball.mc)) { doWallCollision(wall[i], ball); if (saloonDoorOpen && (saloonHitZone.hitTest(ball.pos.x, ball.pos.y, true))) { ball.mode = "saloonEntrance"; } } } } function checkMainRamp() { for (i in rampWall) { if (rampWall[i].mc.hitTest(ball.mc)) { doWallCollision(rampWall[i], ball); } } } function checkFlippers() { for (i in flipper) { if (flipper[i].mc.hitTest(ball.mc)) { if (flipper[i].mc.hitZoneInf.hitTest(ball.pos.x, ball.pos.y, true)) { var angleSurf = (flipper[i].angle + flipper[i].angleInf); var angleVel = (Math.atan2(ball.vel.y, ball.vel.x) * toDeg); var normVel = dist(0, 0, ball.vel.x, ball.vel.y); normVel = normVel * bounce; do { ball.pos.y = ball.pos.y + 0.25; } while (flipper[i].mc.hitZoneInf.hitTest(ball.pos.x, ball.pos.y, true)); var newAngleVel = ((-angleVel) + angleSurf); if (flipper[i].moving) { var fl = new tVector(); var fSpeed = ((Math.abs(ball.pos.x - flipper[i].pos.x) / 55) * flipper[i].strength); fl.x = fSpeed * Math.sin(angleSurf * toRad); fl.y = (-fSpeed) * Math.cos(angleSurf * toRad); } ball.vel.x = (normVel * Math.cos(newAngleVel * toRad)) + fl.x; ball.vel.y = (normVel * Math.sin(newAngleVel * toRad)) + fl.y; } if (flipper[i].mc.hitZoneSup.hitTest(ball.pos.x, ball.pos.y, true)) { var angleSurf = (flipper[i].angle + flipper[i].angleSup); var angleVel = (Math.atan2(ball.vel.y, ball.vel.x) * toDeg); var normVel = dist(0, 0, ball.vel.x, ball.vel.y); normVel = normVel * bounce; do { ball.pos.y = ball.pos.y - 0.25; } while (flipper[i].mc.hitZoneSup.hitTest(ball.pos.x, ball.pos.y, true)); var newAngleVel = ((-angleVel) + angleSurf); if (flipper[i].moving) { var fl = new tVector(); var fSpeed = ((Math.abs(ball.pos.x - flipper[i].pos.x) / 55) * flipper[i].strength); fl.x = fSpeed * Math.sin(angleSurf * toRad); fl.y = (-fSpeed) * Math.cos(angleSurf * toRad); } ball.vel.x = (normVel * Math.cos(newAngleVel * toRad)) + fl.x; ball.vel.y = (normVel * Math.sin(newAngleVel * toRad)) + fl.y; } if (flipper[i].mc.endHitZone.hitTest(ball.pos.x, ball.pos.y, true)) { var end = new Position(flipper[i].mc._x, flipper[i].mc._y); if (flipper[i].mc.type == "left") { end.x = end.x + (55 * Math.cos(flipper[i].angle * toRad)); end.y = end.y + (55 * Math.sin(flipper[i].angle * toRad)); } else { end.x = end.x + (-55 * Math.cos(flipper[i].angle * toRad)); end.y = end.y + (-55 * Math.sin(flipper[i].angle * toRad)); } var bv = new tVector(ball.vel.x, ball.vel.y); var bm = new tVector(ball.pos.x - end.x, ball.pos.y - end.y); bm = normalizeVect(bm); bm = new tVector((bm.x * bv.norm) * bounce, (bm.y * bv.norm) * bounce); var fl = new tVector(); var fSpeed = flipper[i].strength; fl.x = (fSpeed * Math.sin(flipper[i].angle * toRad)) * flipper[i].moving; fl.y = ((-fSpeed) * Math.cos(flipper[i].angle * toRad)) * flipper[i].moving; var sum = sumVect(bv, bm, fl); ball.vel.x = sum.x; ball.vel.y = sum.y; } } } } function checkBumpers() { for (i in bumper) { if (bumper[i].mc.hitTest(ball.mc)) { doPointCollision(bumper[i], ball); bumper[i].clip.gotoAndPlay("play"); score_mc.addScore("bumper"); if (bumper[i].strength == activeBumperStrength) { playSound(M_bumper_snd); } } } } function checkTargets() { if (allTargets.hitTest(ball.mc)) { for (var i in target) { if (target[i].hitStatus && (target[i].mc.bumper0.hitTest(ball.mc))) { doPointCollision(target[i], ball); target[i].hitStatus = false; target[i].mc.gotoAndStop("off"); score_mc.addScore("target"); playSound(M_target_snd); numTargetHit++; if (numTargetHit >= target.length) { numTargetHit = 0; saloon_mc.setDoorOpen(); score_mc.addScore("saloonDoor"); playSound(M_saloonDoor_snd); } } } } } function checkLargeBumpers() { for (var j in largeBumper) { if (largeBumper[j].mc.hitTest(ball.mc)) { for (var i in largeBumper[j].bumper) { if (largeBumper[j].bumper[i].mc.hitTest(ball.mc)) { doPointCollision(largeBumper[j].bumper[i], ball); score_mc.addScore("largeBumper"); var volume = (calculateVolume(ball.vel) - 40); playSoundVolume(M_barrel_snd, volume); } } } } } function checkSwitches() { if (switch_mc.hitTest(ball.mc)) { for (var i in gateSwitch) { if (gateSwitch[i].mc.hitZone.hitTest(ball.pos.x, ball.pos.y, true)) { if (!gateFlag[validatingGate]) { gateSwitch[i].setOn(); score_mc.addScore("switch"); if ((gateSwitch[0].hitStatus && (gateSwitch[1].hitStatus)) && (gateSwitch[2].hitStatus)) { validatingGate = i; gateFlag[validatingGate] = true; score_mc.bonusUp(); score_mc.addScore("allSwitch"); score_mc.addScore("switch"); playSound(M_ding_mc); for (var j in gateSwitch) { gateSwitch[j].setOff(); } } } } else if (i == validatingGate) { gateFlag[validatingGate] = false; } } } } function checkCart() { if (cart.mc.hitTest(ball.mc)) { var collision = true; if (cart.mc.hitZone.hitTest(ball.pos.x, ball.pos.y, true)) { var velocity = new tVector(ball.vel.x, ball.vel.y); if ((velocity.phiDeg <= -90) && (velocity.phiDeg >= -180)) { collision = false; ball.mode = "cartEntrance"; score_mc.addScore("cart"); stopSound(T_musicIntro_snd); playSound(T_musicFinalTheme_snd); } } if (collision) { for (var i in cart.bumper) { doPointCollision(cart.bumper[i], ball); } } } } function checkRightRamp() { if (rightRampHitZone.hitTest(ball.mc)) { if (rightRampHitZone.hitTest(ball.pos.x, ball.pos.y, true)) { var velocity = new tVector(ball.vel.x, ball.vel.y); if ((velocity.phiDeg >= -111) && (velocity.phiDeg <= 129)) { ball.mode = "rightRamp"; stopSound(T_musicIntro_snd); playSound(T_musicFinalTheme_snd); } } } } showNormal = false; showWall = false; showBumper = false; showHitZone = false; debug = false; gotoAndStop (13);Instance of Symbol 191 MovieClip "flipper0" in Frame 8onClipEvent (load) { startAngle = 25; endAngle = -25; inc = -10; angle = startAngle; type = "left"; this.attachMovie("flipperBolt", "bolt", 1); } onClipEvent (enterFrame) { if (!_root.breakOutMode) { _root.flipper[0].moving = 1; if (Key.isDown(37)) { if (!soundFlag) { soundFlag = true; _root.playSound(_root.M_flipper_snd); } angle = angle + inc; if (angle < endAngle) { _root.flipper[0].moving = 0; angle = endAngle; } } else { soundFlag = false; angle = angle - inc; if (angle > startAngle) { _root.flipper[0].moving = 0; angle = startAngle; } } _root.flipper[0].angle = angle; _rotation = angle; bolt._rotation = -angle; } }Instance of Symbol 193 MovieClip "flipper1" in Frame 8onClipEvent (load) { startAngle = -25; endAngle = 25; inc = 10; angle = startAngle; type = "right"; this.attachMovie("flipperBolt", "bolt", 1); } onClipEvent (enterFrame) { if (!_root.breakOutMode) { _root.flipper[1].moving = 1; if (Key.isDown(39)) { if (!soundFlag) { soundFlag = true; _root.playSound(_root.M_flipper_snd); } angle = angle + inc; if (angle >= endAngle) { _root.flipper[1].moving = 0; angle = endAngle; } } else { soundFlag = false; angle = angle - inc; if (angle <= startAngle) { _root.flipper[1].moving = 0; angle = startAngle; } } _root.flipper[1].angle = angle; _rotation = angle; bolt._rotation = -angle; } }Instance of Symbol 193 MovieClip "flipper2" in Frame 8onClipEvent (load) { startAngle = -25; endAngle = 25; inc = 10; angle = startAngle; type = "right"; } onClipEvent (enterFrame) { if (!_root.breakOutMode) { _root.flipper[2].moving = 1; if (Key.isDown(39)) { angle = angle + inc; if (angle >= endAngle) { _root.flipper[2].moving = 0; angle = endAngle; } } else { angle = angle - inc; if (angle <= startAngle) { _root.flipper[2].moving = 0; angle = startAngle; } } _root.flipper[2].angle = angle; _rotation = angle; } }Instance of Symbol 245 MovieClip "score_mc" in Frame 8onClipEvent (load) { function displayScore(x, y, strPoint) { if (_root.pictureQuality != "low") { scoreDepth++; var str = ("score" + scoreDepth); this.attachMovie("score", str, scoreDepth + 1000); this[str]._x = x - this._x; this[str]._y = y - this._y; this[str].disp_point = strPoint; } } function updateDisplay() { disp_score = mainScore; disp_currBall = _root.currBall; while (disp_score.length < 12) { disp_score = "0" + disp_score; } } function reset() { trace("SCORE: RESET"); mainScore = 0; mainBonus = 0; bonusLevel = 0; bonusMult = 1; cartCount = 0; resetAfterBall(); } function bonusUp() { trace("SCORE: BONUS UP"); if (bonusLevel < _root.bonus.length) { bonusLevel++; _root.bonus[bonusLevel - 1].setOn(); bonusMult = bonusLevel * 2; if (bonusLevel == _root.bonus.length) { bonusMult = 10; } trace("current bonus: x" + bonusMult); } } function resetAfterBall() { trace("SCORE: RESET AFTER BALL"); if (bonusLevel != _root.bonus.length) { bonusLevel = 0; bonusMult = 1; for (i in _root.bonus) { _root.bonus[i].setOff(); } } mainBonus = 0; updateDisplay(); } function addScore(type) { var score = 0; var bonus = 0; switch (type) { case "bumper" : score = 781; break; case "largeBumper" : score = 652; break; case "target" : score = 997; break; case "switch" : score = 547; break; case "cart" : cartCount++; score = 250000 * (cartCount + 1); var x = _root.cart.pos.x; var y = (_root.cart.pos.y - 40); var str = ("+" + _root.addSpace(score)); displayScore(x, y, str); break; case "wolf" : score = 250000 /* 0x03D090 */; var str = ("+" + _root.addSpace(score)); displayScore(585, 328, str); break; case "saloonDoor" : bonus = 1000; var x = _root.saloon_mc._x; var y = _root.saloon_mc._y; displayScore(x, y, "+1,000 Bonus"); break; case "allSwitch" : bonus = 1000; var x = _root.switch_mc._x; var y = (_root.switch_mc._y - 40); displayScore(x, y, "+1,000 Bonus"); } mainScore = mainScore + score; mainBonus = mainBonus + bonus; updateDisplay(); } reset(); }Instance of Symbol 84 MovieClip in Frame 8onClipEvent (load) { _visible = false; } onClipEvent (keyDown) { if ((Key.getAscii() == 112) || (Key.getAscii() == 80)) { if ((_root.ball.mode == "table") || (_root.ball.mode == "pause")) { if (_root.ball.mode != "pause") { lastMode = _root.ball.mode; _root.ball.mode = "pause"; _visible = true; } else { _root.ball.mode = lastMode; _visible = false; } } } }Frame 13initGame(); saloon_mc.animateLight(); switch_mc.animateLight(); bonus_mc.animateLight(); BG_leftWindows.animateLight(); BG_rightWindows.animateLight(); BG_saloonWindows.animateLight(); BG_pepsiTitle.animateLightOnce(); playSound(T_musicMainTheme_snd); starter = setInterval(function () { if (debug) { ball.mode = "table"; ball.vel.x = 0; ball.vel.y = -6; } else { launchNewBall(); } saloon_mc.setLightOff(); switch_mc.setLightOff(); bonus_mc.setLightOff(); BG_leftWindows.setLightOff(); BG_rightWindows.setLightOff(); BG_saloonWindows.setLightOff(); clearInterval(starter); }, 5000); _root.onEnterFrame = function () { ballmode = ball.mode; switch (ball.mode) { case "stop" : return; case "table" : moveBall(); scaleBall(); checkWalls(); checkFlippers(); checkBumpers(); checkLargeBumpers(); checkTargets(); checkSwitches(); checkCart(); checkOutScreen(); checkRightRamp(); return; case "idle" : return; case "rampUp" : moveBall(); scaleBall(); checkMainRamp(); return; case "saloonEntrance" : moveBall(); scaleBall(); var velocity = new tVector(ball.vel.x, ball.vel.y); ball.vel = new Position((-0.707) * velocity.norm, (-0.707) * velocity.norm); if ((ball.pos.x < 237) || (ball.pos.y < 155)) { fadeSound(M_saloonDoor_snd); ball.mode = "stop"; ball.mc._visible = false; saloon_mc.animateLight(); BG_saloonWindows.animateLight(); stopSound(T_musicIntro_snd); playSound(T_musicMainTheme_snd); starter = setInterval(function () { saloon_mc.setLightOff(); BG_saloonWindows.setLightOff(); _root.attachMovie("breakOut", "breakOut", 10000); breakOutMode = true; clearInterval(starter); }, 1500); } return; case "cartEntrance" : cartRamp.startPos = new Position(ball.pos.x - cartRamp._x, ball.pos.y - cartRamp._y); cartRamp.endPos = new Position((cart.pos.x - 6) - cartRamp._x, (cart.pos.y - 15) - cartRamp._y); cartRamp.move(); ball.mode = "idle"; while (soundIndice > 4) { soundIndice = soundIndice - 5; } playSound(cartSoundArr[soundIndice]); soundIndice++; return; case "rightRamp" : ball.vel.x = 2; ball.vel.y = 0; moveBall(); scaleBall(); if (ball.pos.x <= 537) { break; } playSound(M_wolf_snd); ball.mode = "idle"; rightRamp.start(); } };Symbol 9 Buttonon (release) { getURL ("http://www.pepsi-football.co.uk", "_blank"); }Symbol 22 MovieClip Frame 1function rollOver() { if (!enter) { gotoAndStop (5); } } function rollOut() { if (!enter) { gotoAndStop (1); } } function release() { if (!enter) { enter = true; gotoAndPlay (10); } } stop(); this.onRollOver = rollOver; this.onRollOut = rollOut; this.onDragOut = rollOut; this.onRelease = release;Symbol 22 MovieClip Frame 25_root.gotoAndStop("init");Symbol 24 MovieClip [dot] Frame 1x = _x; y = _y; this._visible = _root.showWall;Symbol 30 MovieClip [score] Frame 1this.onEnterFrame = function () { this._alpha = this._alpha - 1; this._y = this._y - 1; if (_alpha <= 10) { this.removeMovieClip(); } };Instance of Symbol 33 MovieClip in Symbol 34 MovieClip [wall] Frame 1onClipEvent (load) { this._visible = _root.showNormal; }Symbol 38 MovieClip Frame 1this._visible = _root.showHitZone;Symbol 42 MovieClip Frame 1this._visible = _root.showHitZone;Symbol 44 MovieClip Frame 1this._visible = _root.showHitZone;Symbol 47 MovieClip [B_score] Frame 1this.onEnterFrame = function () { this._alpha = this._alpha - 5; if (_alpha <= 0) { this.removeMovieClip(); } };Symbol 58 MovieClip Frame 1function rollOver() { if (!enter) { gotoAndStop (5); } } function rollOut() { if (!enter) { gotoAndStop (1); } } function release() { if (!enter) { enter = true; _root.stopSound(_root.T_musicIntro_snd); _root.gotoAndStop("reset"); _parent.removeMovieClip(); } } stop(); this.onRollOver = rollOver; this.onRollOut = rollOut; this.onDragOut = rollOut; this.onRelease = release;Symbol 58 MovieClip Frame 30_root.gotoAndStop("init");Symbol 63 Buttonon (release) { _root.submitScore(); }Symbol 65 MovieClip [B_scoreBoard] Frame 1indice++; tempStr = displayObj["str" + indice]; nextStr = displayObj["str" + (indice + 1)]; if (nextStr == -1) { gotoAndPlay (45); } if (tempStr == -2) { gotoAndPlay (160); disp_totalScore = nextStr; _root.playSound(_root.B_win_snd); _root.score_mc.updateDisplay(); } disp_main = tempStr;Symbol 65 MovieClip [B_scoreBoard] Frame 15_root.playSound(_root.M_ding_snd, 100);Symbol 65 MovieClip [B_scoreBoard] Frame 40gotoAndPlay (1);Symbol 65 MovieClip [B_scoreBoard] Frame 55_root.playSound(_root.M_scoreTotal_snd, 100); _root.score_mc.updateDisplay();Symbol 65 MovieClip [B_scoreBoard] Frame 155this.removeMovieClip();Symbol 65 MovieClip [B_scoreBoard] Frame 180gotoAndPlay (160);Symbol 74 MovieClip Frame 1function Lplay() { gotoAndStop (10); } function Lstop() { gotoAndStop (1); } function Lstandby() { gotoAndStop (5); } Lstop();Instance of Symbol 73 MovieClip in Symbol 74 MovieClip Frame 10onClipEvent (enterFrame) { _alpha = (_alpha + inc); if (_alpha < 0) { inc = 7.5; } if (_alpha >= 100) { inc = -7.5; } }Symbol 78 MovieClip Frame 1this._visible = _root.showHitZone;Symbol 81 MovieClip Frame 1stop(); indice = 0;Symbol 81 MovieClip Frame 2indice++; newStr = displayObj["str" + indice]; disp_main = newStr; if (newStr == -1) { indice = 0; gotoAndStop (1); }Symbol 81 MovieClip Frame 65gotoAndPlay (2);Symbol 85 MovieClip [breakOut] Frame 1if (_root.breakOutMode == true) { play(); } else { stop(); }Symbol 85 MovieClip [breakOut] Frame 15function Point(x, y) { this.x = x; this.y = y; } function tBall(mc, mode, posx, posy, velx, vely) { this.mc = mc; this.mode = mode; this.pos = new Point(posx, posy); this.vel = new Point(velx, vely); this.lastPos = new Point(); this.flag = true; } function tStool(mc, width, x, y) { this.mc = mc; this.width = width; this.pos = new Point(x, y); } function tCan(mc, x, y, dot) { this.mc = mc; this.pos = new Point(x, y); this.dot = dot; } function tRow(mc) { this.mc = mc; } function initGame() { this.createEmptyMovieClip("scoreHolder", 200); offStool = false; score = new Object(); score.can = new Array(0, 650, 2500, 8000); score.wall = 37; score.stool = 136; score.total = 0; pauseEnabled = false; displayTimer = display(0, "Ready!", "Steady!", "GO!", -1); starter = setInterval(function () { ball[0].mode = "play"; go = true; saloonLight.Lstandby(); pauseEnabled = true; clearInterval(starter); }, displayTimer); saloonLight.Lplay(); } function initCans() { var line; var i; var j; var depth; var xStep; var yStep; var nextXpos; line = new Array(); line[0] = "ccccc ccccc ccccc ccccc cc"; line[1] = "ccbcc cc ccbcc cc cc"; line[2] = "ccccc ccccc ccccc ccccc cc"; line[3] = "cc cc cc cc cc"; line[4] = "cc ccccc cc ccccc cc"; yStep = 36; depth = 0; canTotal = 0; this.createEmptyMovieClip("canHolder", 100); can = new Array(); for (i in line) { can[i] = new Array(); nextXpos = 87; j = 0; while (j < line[i].length) { if ((((j == 5) || (j == 11)) || (j == 17)) || (j == 24)) { nextXpos = nextXpos + 9; } else { nextXpos = nextXpos + 21; } char = line[i].substr(j, 1); switch (char) { case "c" : str = "can" + depth; canHolder.attachMovie("B_can", str, depth); depth++; canTotal++; var mc = canHolder[str]; mc.n = depth; mc._x = nextXpos; mc._y = (yStep * i) + 167; var dot; var k; var tempPoint; dot = new Array(); k = 0; while (k < 6) { canHolder[(str + ".dot") + k]._x; tempPoint = new Point(mc["dot" + k]._x, mc["dot" + k]._y); tempPoint.x = tempPoint.x + mc._x; tempPoint.y = tempPoint.y + mc._y; dot.push(tempPoint); k++; } can[i].push(new tCan(mc, mc._x, mc._y, dot)); break; case "b" : createNewBall(nextXpos, (yStep * i) + 167, 0, 0); ballInPlay = 1; } j++; } } } function initRows() { row = new Array(); var i = 0; while (i < 5) { var mc = this["row_mc" + i]; row.push(new tRow(mc)); i++; } } function display(mode, str1, str2, str3, str4, str5, str6, str7, str8, str9, str10, str11, str12) { var displayObj = new Object(); var i = 1; while (i <= 12) { var str = eval ("str" + i); displayObj["str" + i] = str; if (str == -1) { count = i; } i++; } if (mode == 0) { display_mc.gotoAndPlay("start"); display_mc.displayObj = displayObj; count--; } else if (mode == 1) { this.attachMovie("B_scoreBoard", "scoreBoard", 5000); scoreBoard.displayObj = displayObj; scoreBoard._x = 348; scoreBoard._y = 307.5; } return((800 * (count - 1)) + 2200); } function createNewBall(posx, posy, velx, vely) { ballDepth++; str = "ball" + ballDepth; this.attachMovie("B_ball", str, ballDepth); this[str].disp_num = ballDepth - 1; this[str]._x = posx; this[str]._y = posy; ball.push(new tBall(this[str], "standby", posx, posy, velx, vely)); } function initBalls() { radius = 8; LEFT = 70 + radius; RIGHT = 620 - radius; TOP = 101 + radius; BOTTOM = 520 - radius; ball = new Array(); createNewBall(345, 452, -3.2, -3.8); } function moveBalls(i) { ball[i].lastPos.x = ball[i].pos.x; ball[i].lastPos.y = ball[i].pos.y; if (!flag) { if (ball[i].pos.y < 430) { flag = true; offStool = true; } } ball[i].pos.x = ball[i].pos.x + ball[i].vel.x; ball[i].pos.y = ball[i].pos.y + ball[i].vel.y; checkWalls(i); updateBall(i); } function updateBall(i) { ball[i].mc._x = ball[i].pos.x; ball[i].mc._y = ball[i].pos.y; } function checkWalls(i) { b = ball[i]; if (b.pos.x < LEFT) { b.pos.x = LEFT; b.vel.x = b.vel.x * -1; score.total = score.total + score.wall; _root.playSound(_root.M_ballThud_snd); } if (b.pos.x > RIGHT) { b.pos.x = RIGHT; b.vel.x = b.vel.x * -1; score.total = score.total + score.wall; _root.playSound(_root.M_ballThud_snd); } if (b.pos.y < TOP) { b.pos.y = TOP; b.vel.y = b.vel.y * -1; score.total = score.total + score.wall; _root.playSound(_root.M_ballThud_snd); } if (b.pos.y > BOTTOM) { b.pos.y = BOTTOM; b.mode = "stop"; } } function findClosestPoint(can, ball) { var temp = 50; var i = 0; while (i < 6) { var dist = _root.dist(can.dot[i].x, can.dot[i].y, ball.lastPos.x, ball.lastPos.y); if (dist < temp) { temp = dist; output = i; } i++; } return(output); } function checkStoolCollision(i) { if (ball[i].pos.y > 452) { if (stool.mc.hitZone.hitTest(ball[i].pos.x, ball[i].pos.y, false)) { score.total = score.total + score.stool; _root.playSoundVolume(_root.M_ballThud_snd, 100); ball[i].vel.y = ball[i].vel.y * -1; ball[i].pos.y = 452; updateBall(i); var dist = (ball[i].pos.x - stool.pos.x); var absDist = Math.abs(dist); var startX = 15; var endX = 42; if (absDist > startX) { var percentX = ((absDist - startX) / (endX - startX)); var velocity = (new _root.tVector(ball[i].vel.x, ball[i].vel.y)); if (dist > 0) { var endAngle = (-10 * _root.toRad); } else { var endAngle = (-170 * _root.toRad); } var newAngle = ((percentX * (endAngle - velocity.phiRad)) + velocity.phiRad); ball[i].vel.x = velocity.norm * Math.cos(newAngle); ball[i].vel.y = velocity.norm * Math.sin(newAngle); } } if (ball[i].pos.y > 466.5) { ball[i].mode = "stop"; ballInPlay--; canPoint = ballInPlay * 15; checkEndGame(); ball[i].mc.removeMovieClip(); } } } function checkCanCollision(i) { flipx = 0; flipy = 0; for (r in row) { if (row[r].mc.hitTest(ball[i].mc.hitZone)) { for (j in can[r]) { if (can[r][j].mc.hitZone.hitTest(ball[i].mc.hitZone)) { closestPoint = findClosestPoint(can[r][j], ball[i]); if ((closestPoint == 0) || (closestPoint == 5)) { flipy++; if (flipy == 1) { ball[i].vel.y = ball[i].vel.y * -1; } } else { flipx++; if (flipx == 1) { ball[i].vel.x = ball[i].vel.x * -1; } } displayScore(r, j); can[r][j].mc.removeMovieClip(); _root.playSoundVolume(_root.B_can_snd, random(50) + 50); canHit++; if (canHit >= canTotal) { winGame(); } break; } } } } } function checkBallCollision(i) { for (j in ball) { if (j != i) { if (ball[i].mc.hitzone.hitTest(ball[j].mc.hitZone)) { if (ball[j].flag && (ball[j].mode == "standby")) { ball[j].mode = "play"; ball[j].flag = false; var angle = ((Math.random() * 160) + 10); var value = [-1, 1]; angle = angle * value[random(2)]; var angleRad = (angle * _root.toRad); ball[j].vel.x = 5 * Math.cos(angleRad); ball[j].vel.y = 5 * Math.sin(angleRad); ballInPlay++; canPoint = ballInPlay * 15; _root.playSound(_root.B_extraBall_snd); } } } } } function checkEndGame() { if (((ball[0].mode == "play") || (ball[1].mode == "play")) || (ball[2].mode == "play")) { } else { _root.playSound(_root.B_lose_snd); displayTimer = display(1, "Whoah There Cowboy!", "Bonus Score", _root.addSpace(score.total), -1); starter = setInterval(function () { scoreBoard.removeMovieClip(); exitGame(); clearInterval(starter); }, displayTimer); } } function winGame() { saloonLight.Lplay(); _root.playSound(_root.B_win_snd); ballLeft = 0; for (i in ball) { if (ball[i].mode != "stop") { ballLeft++; } } ball[0].mode = "stop"; ball[1].mode = "stop"; ball[2].mode = "stop"; if (ballLeft == 1) { displayTimer = display(1, "Yeeeeeeehaaaaaaaaah!", "Bonus Score", _root.addSpace(score.total), "Round Completed x2", _root.addSpace(score.total * 2), -1); score.total = score.total * 2; } else { var ballLeftStr = ("Balls in Play x" + ballLeft); displayTimer = display(1, "Yeeeeeeehaaaaaaaaah!", "Bonus Score", _root.addSpace(score.total), "Round Completed x2", _root.addSpace(score.total * 2), ballLeftStr, _root.addSpace((score.total * 2) * ballLeft), -1); score.total = score.total * (2 * ballLeft); } starter = setInterval(function () { scoreBoard.removeMovieClip(); exitGame(); clearInterval(starter); }, displayTimer); } function displayScore(r, j) { scoreDepth++; var str = ("score" + scoreDepth); scoreHolder.attachMovie("B_score", str, scoreDepth); scoreHolder[str]._x = can[r][j].pos.x; scoreHolder[str]._y = can[r][j].pos.y; scoreHolder[str].disp_point = score.can[ballInPlay]; score.total = score.total + score.can[ballInPlay]; } function exitGame() { for (j in can) { for (i in can[j]) { can[j][i].mc.removeMovieClip(); } } for (i in ball) { ball[i].mc.removeMovieClip(); } _root.allTargets.reset(); _root.ball.mode = "idle"; _root.breakOutMode = false; _root.saloonRamp.start(); _root.score_mc.mainBonus = _root.score_mc.mainBonus + score.total; this.gotoAndPlay("exit"); } gotoAndStop (20);Instance of Symbol 79 MovieClip "stool_mc" in Symbol 85 MovieClip [breakOut] Frame 15onClipEvent (load) { friction = 0.95; LEFT = 104; RIGHT = 586; this._x = (LEFT + RIGHT) / 2; this._y = 460; _parent.stool = new _parent.tStool(this, 68, _x, _y); } onClipEvent (enterFrame) { if (_parent.stoolEnabled) { if (Key.isDown(37)) { accel = -1; if (speed < 0) { friction = 1; } else { friction = 0.8; } } else if (Key.isDown(39)) { accel = 1; if (speed > 0) { friction = 1; } else { friction = 0.8; } } else { accel = 0; friction = 0.8; } speed = speed + accel; speed = speed * friction; if (Math.abs(speed) < 0.8) { speed = 0; } this._x = this._x + speed; if (_x < LEFT) { _x = LEFT; speed = 0; } if (_x > RIGHT) { _x = RIGHT; speed = 0; } _parent.stool.pos.x = this._x; } }Instance of Symbol 84 MovieClip in Symbol 85 MovieClip [breakOut] Frame 15onClipEvent (load) { _visible = false; pauseMode = false; lastMode = new Array(); _parent.stoolEnabled = true; } onClipEvent (keyDown) { if (_parent.pauseEnabled) { if ((Key.getAscii() == 112) || (Key.getAscii() == 80)) { if (!pauseMode) { lastMode[0] = _parent.ball[0].mode; lastMode[1] = _parent.ball[1].mode; lastMode[2] = _parent.ball[2].mode; _parent.ball[0].mode = "pause"; _parent.ball[1].mode = "pause"; _parent.ball[2].mode = "pause"; pauseMode = true; _parent.stoolEnabled = false; _visible = true; } else { _parent.ball[0].mode = lastMode[0]; _parent.ball[1].mode = lastMode[1]; _parent.ball[2].mode = lastMode[2]; pauseMode = false; _parent.stoolEnabled = true; _visible = false; } } } }Symbol 85 MovieClip [breakOut] Frame 20initBalls(); initCans(); initRows(); initGame(); this.onEnterFrame = function () { if (go) { for (i in ball) { switch (ball[i].mode) { case "play" : moveBalls(i); if (offStool) { checkStoolCollision(i); } checkCanCollision(i); checkBallCollision(i); break; case "standby" : } } } else { ball[0].pos.x = (ball[0].mc._x = stool.mc._x); } disp_scoreTotal = score.total; };Symbol 85 MovieClip [breakOut] Frame 35this.removeMovieClip();Symbol 117 MovieClip Frame 1function animateLight() { gotoAndPlay (5); } function setLightOff() { gotoAndStop (1); } stop();Symbol 117 MovieClip Frame 86gotoAndPlay (5);Symbol 118 MovieClip Frame 1function animateLight() { gotoAndPlay (5); } function setLightOff() { gotoAndStop (1); } stop();Symbol 118 MovieClip Frame 86gotoAndPlay (5);Symbol 119 MovieClip Frame 1function animateLight() { gotoAndPlay (5); } function setLightOff() { gotoAndStop (1); } stop();Symbol 119 MovieClip Frame 86gotoAndPlay (5);Symbol 134 MovieClip Frame 1function animateLightOnce() { auto = false; vaEtVientCount = 0; blinkCount = 0; gotoAndPlay (5); } function animateLight() { auto = true; vaEtVientCount = 0; blinkCount = 0; gotoAndPlay (5); } function setLightOff() { auto = false; gotoAndStop (1); } stop();Symbol 134 MovieClip Frame 51vaEtVientCount++; if (vaEtVientCount == 3) { gotoAndPlay (55); } else { gotoAndPlay (5); }Symbol 134 MovieClip Frame 67blinkCount++; if (blinkCount == 3) { if (auto) { vaEtVientCount = 0; blinkCount = 0; gotoAndPlay (5); } else { gotoAndStop (1); } } else { gotoAndPlay (55); }Symbol 136 MovieClip Frame 1this._visible = _root.showHitZone;Symbol 138 MovieClip Frame 1stop();Symbol 141 MovieClip Frame 1stop();Symbol 144 MovieClip Frame 1stop();Symbol 147 MovieClip Frame 1function animateLight() { gotoAndPlay (5); } function setLightOff() { gotoAndStop (1); for (i in _root.gateSwitch) { if (gateSwitch[i].hitStatus) { gateSwitch[i].mc.gotoAndStop("on"); } } } stop(); setLightOff();Symbol 147 MovieClip Frame 64gotoAndPlay (5);Symbol 150 MovieClip Frame 1function animateLight() { gotoAndPlay (10); } function setLightOff() { gotoAndStop (5); } stop(); setLightOff();Symbol 150 MovieClip Frame 5for (i in _root.bonus) { _root.bonus[i].setoff(); }Symbol 150 MovieClip Frame 10for (i in _root.bonus) { _root.bonus[i].setoff(); }Symbol 150 MovieClip Frame 13_root.bonus[0].setOn();Symbol 150 MovieClip Frame 16_root.bonus[1].setOn();Symbol 150 MovieClip Frame 19_root.bonus[2].setOn();Symbol 150 MovieClip Frame 22_root.bonus[3].setOn();Symbol 150 MovieClip Frame 25_root.bonus[4].setOn();Symbol 150 MovieClip Frame 28_root.bonus[5].setOn();Symbol 150 MovieClip Frame 31_root.bonus[5].setOff();Symbol 150 MovieClip Frame 34_root.bonus[4].setOff();Symbol 150 MovieClip Frame 37_root.bonus[3].setOff();Symbol 150 MovieClip Frame 40_root.bonus[2].setOff();Symbol 150 MovieClip Frame 43_root.bonus[1].setOff();Symbol 150 MovieClip Frame 46_root.bonus[0].setOff();Symbol 150 MovieClip Frame 52for (i in _root.bonus) { _root.bonus[i].setOn(); }Symbol 150 MovieClip Frame 58for (i in _root.bonus) { _root.bonus[i].setOff(); }Symbol 150 MovieClip Frame 64for (i in _root.bonus) { _root.bonus[i].setOn(); }Symbol 150 MovieClip Frame 70for (i in _root.bonus) { _root.bonus[i].setOff(); }Symbol 150 MovieClip Frame 76for (i in _root.bonus) { _root.bonus[i].setOn(); }Symbol 150 MovieClip Frame 82for (i in _root.bonus) { _root.bonus[i].setOff(); }Symbol 150 MovieClip Frame 88gotoAndPlay (10);Symbol 152 MovieClip Frame 1stop();Symbol 152 MovieClip Frame 5initVolume = snd.getVolume(); volume = initVolume;Symbol 152 MovieClip Frame 6volume = volume - 5; snd.setVolume(volume);Symbol 152 MovieClip Frame 7if (volume < 0) { snd.stop(); snd.setVolume(initVolume); } else { gotoAndPlay (6); }Symbol 161 MovieClip Frame 1function resizeTxt() { var txt = new TextFormat(); txt.size = bonusTxtSize[indice]; disp_label_mc._y = bonusTxtY[indice]; disp_label_mc.setTextFormat(txt); } var bonusTxtSize = new Array(17, 17, 17, 17, 13, 11); var bonusTxtY = new Array(-17, -17, -17, -17, -13, -11); var indice = Number(_name.substr(5)); gotoAndStop (2);Symbol 161 MovieClip Frame 2resizeTxt();Symbol 161 MovieClip Frame 3resizeTxt();Symbol 163 MovieClip Frame 1this._visible = _root.showBumper;Symbol 174 MovieClip Frame 1stop();Symbol 175 MovieClip Frame 1function animateLight() { gotoAndPlay (10); } function setLightOff() { gotoAndStop (5); } function reset() { trace("reset all targets"); _root.saloon_mc.setDoorClose(); for (i in _root.target) { _root.target[i].setOn(); } } stop(); setLightOff();Symbol 175 MovieClip Frame 79gotoAndPlay (10);Symbol 179 MovieClip Frame 1_visible = _root.showHitZone;Instance of Symbol 186 MovieClip "hitZoneSup" in Symbol 191 MovieClip Frame 1onClipEvent (load) { _visible = _root.showNormal; }Instance of Symbol 188 MovieClip "endHitZone" in Symbol 191 MovieClip Frame 1onClipEvent (load) { _visible = _root.showNormal; }Instance of Symbol 186 MovieClip "hitZoneInf" in Symbol 191 MovieClip Frame 1onClipEvent (load) { _visible = _root.showNormal; }Instance of Symbol 186 MovieClip "hitZoneSup" in Symbol 193 MovieClip Frame 1onClipEvent (load) { _visible = _root.showNormal; }Instance of Symbol 188 MovieClip "endHitZone" in Symbol 193 MovieClip Frame 1onClipEvent (load) { _visible = _root.showNormal; }Instance of Symbol 186 MovieClip "hitZoneInf" in Symbol 193 MovieClip Frame 1onClipEvent (load) { _visible = _root.showNormal; }Symbol 195 MovieClip Frame 1function start() { gotoAndPlay (6); ball._visible = true; _root.ball.mc._visible = false; } stop();Symbol 195 MovieClip Frame 6_root.BG_rightWindows.animateLight(); _root.playSound(_root.T_musicFinalTheme_snd);Symbol 195 MovieClip Frame 18_root.playSound(_root.M_scream_snd);Symbol 195 MovieClip Frame 55ball._visible = false; _root.ball.mode = "table"; _root.ball.pos.x = ball._x + this._x; _root.ball.pos.y = ball._y + this._y; trace(_root.ball.pos.x); trace(_root.ball.pos.y); _root.ball.mc._visible = true; _root.ball.vel.x = 1 + (Math.random() * 2); _root.ball.vel.y = 3; _root.BG_rightWindows.setLightOff();Symbol 197 MovieClip Frame 1function move() { gotoAndPlay (5); ball._visible = true; _root.ball.mc._visible = false; ball._x = startPos.x; ball._y = startPos.y; } function start() { gotoAndPlay (10); ball._visible = true; _root.ball.mc._visible = false; } stop();Symbol 197 MovieClip Frame 5incX = (endPos.x - startPos.x) / 20; incY = (endPos.y - startPos.y) / 20; ball._x = ball._x + incX; ball._y = ball._y + incY; delta = Math.abs(endPos.x - ball._x) + Math.abs(endPos.y - ball._y); if (delta < 10) { start(); }Symbol 197 MovieClip Frame 6gotoAndPlay(_currentframe - 1);Symbol 197 MovieClip Frame 10_root.BG_leftWindows.animateLight();Symbol 197 MovieClip Frame 59ball._visible = false; _root.ball.mode = "table"; _root.ball.pos.x = ball._x + this._x; _root.ball.pos.y = ball._y + this._y; _root.ball.mc._visible = true; _root.ball.vel.x = 1 + (Math.random() * 2); _root.ball.vel.y = 1; _root.BG_leftWindows.setLightOff();Symbol 201 MovieClip Frame 1function start() { gotoAndPlay (5); _root.ball.mc._visible = false; } stop();Symbol 201 MovieClip Frame 54_root.score_mc.addScore("wolf");Symbol 201 MovieClip Frame 100ball._visible = false; _root.ball.mode = "table"; _root.ball.pos.x = ball._x + this._x; _root.ball.pos.y = ball._y + this._y; _root.ball.mc._visible = true; _root.ball.vel.x = -5.1; _root.ball.vel.y = 3.1;Symbol 214 MovieClip Frame 1stop();Symbol 225 MovieClip Frame 1function setDoorOpen() { trace("opening door"); saloonDoor_mc._visible = false; _root.saloonDoorOpen = true; setLightOn(); } function setDoorClose() { trace("closing door"); saloonDoor_mc._visible = true; _root.saloonDoorOpen = false; setLightOff(); } function animateLight() { gotoAndPlay (15); } function setLightOff() { gotoAndStop (5); } function setLightOn() { gotoAndStop (10); } stop();Symbol 225 MovieClip Frame 80gotoAndPlay (15);Symbol 227 MovieClip Frame 1this._visible = _root.showHitZone;Symbol 230 MovieClip Frame 1stop();Symbol 230 MovieClip Frame 25ball._visible = true; _root.playSound(_root.M_mainRamp_snd);Symbol 230 MovieClip Frame 90_root.stopSound(_root.M_mainRamp_snd);Symbol 230 MovieClip Frame 93_root.playSound(_root.M_rampThud_snd);Symbol 230 MovieClip Frame 115_root.horse_mc.kick();Symbol 230 MovieClip Frame 120stop(); ball._visible = false; _root.ball.mode = "rampUp"; _root.ball.pos.x = ball._x + this._x; _root.ball.pos.y = ball._y + this._y; _root.ball.vel.x = 0; _root.ball.vel.y = -18; this.onEnterFrame = function () { if ((_root.ball.pos.x - this._x) < -70) { _root.ball.mode = "table"; if (_root.debug) { trace(_root.saloonDoorOpen); _root.ball.pos.x = 397; _root.ball.pos.y = 304.5; _root.ball.vel.x = -8; _root.ball.vel.y = -10; } else { randomVelx = new Array(-7.6, -6.12, -7); var rampExit = random(3); trace("rampExit = " + rampExit); _root.ball.vel.x = randomVelx[rampExit]; _root.ball.vel.y = -0.14; } this.onEnterFrame = undefined; } };Symbol 239 MovieClip Frame 1function kick() { gotoAndPlay (5); } stop();Symbol 239 MovieClip Frame 5_root.playSound(_root.M_rampBallKicked_snd);Symbol 239 MovieClip Frame 18_root.playSound(_root.M_horse_snd);Symbol 257 MovieClip Frame 1stop();Symbol 257 MovieClip Frame 2disp_mc.gotoAndStop(_root.currBall); trace("DISPLAY TABLE");Symbol 260 Buttonon (release) { nextFrame(); }Symbol 263 Buttonon (release) { prevFrame(); }Symbol 264 MovieClip Frame 1stop(); _root.soundOn = true;Symbol 264 MovieClip Frame 2_root.soundOn = false;Symbol 272 Buttonon (release) { gotoAndStop (1); }Symbol 273 MovieClip Frame 1stop(); _root.pictureQuality = "high"; _quality = "BEST";Symbol 273 MovieClip Frame 2_root.pictureQuality = "med"; _quality = "HIGH";Symbol 273 MovieClip Frame 3_root.pictureQuality = "low"; _quality = "MEDIUM";Symbol 276 Buttonon (release) { getURL ("PepsiFootballPinballGame.exe"); }Symbol 279 Buttonon (release) { getURL ("mailto:?subject=I thought this was really cool!&body=Hi. Why not check out the latest game from Pepsi at the following link http://www.pepsi-football.co.uk/game.asp"); }
Library Items
Symbol 1 Sound [B_can.wav] | Used by:Timeline | |
Symbol 2 Font | Used by:3 12 13 46 50 54 55 64 80 83 247 249 251 253 255 | |
Symbol 3 EditableText | Uses:2 | Used by:4 |
Symbol 4 MovieClip | Uses:3 | Used by:Timeline |
Symbol 5 Bitmap | Used by:6 | |
Symbol 6 Graphic | Uses:5 | Used by:Timeline |
Symbol 7 Bitmap | Used by:8 | |
Symbol 8 Graphic | Uses:7 | Used by:9 |
Symbol 9 Button | Uses:8 | Used by:Timeline |
Symbol 10 Graphic | Used by:22 58 | |
Symbol 11 Graphic | Used by:16 | |
Symbol 12 Text | Uses:2 | Used by:16 |
Symbol 13 Text | Uses:2 | Used by:16 |
Symbol 14 Graphic | Used by:16 56 | |
Symbol 15 Graphic | Used by:16 56 | |
Symbol 16 MovieClip | Uses:11 12 13 14 15 | Used by:22 |
Symbol 17 Bitmap | Used by:18 57 | |
Symbol 18 Graphic | Uses:17 | Used by:22 |
Symbol 19 Graphic | Used by:22 42 58 63 72 73 74 117 118 119 202 239 260 263 272 | |
Symbol 20 Bitmap | Used by:21 | |
Symbol 21 Graphic | Uses:20 | Used by:22 58 |
Symbol 22 MovieClip | Uses:10 16 18 19 21 | Used by:Timeline |
Symbol 23 Graphic | Used by:24 | |
Symbol 24 MovieClip [dot] | Uses:23 | Used by:230 Timeline |
Symbol 25 Bitmap | Used by:26 | |
Symbol 26 Graphic | Uses:25 | Used by:27 |
Symbol 27 MovieClip [flipperBolt] | Uses:26 | Used by:Timeline |
Symbol 28 Font | Used by:29 | |
Symbol 29 EditableText | Uses:28 | Used by:30 |
Symbol 30 MovieClip [score] | Uses:29 | Used by:Timeline |
Symbol 31 Graphic | Used by:34 | |
Symbol 32 Graphic | Used by:33 | |
Symbol 33 MovieClip | Uses:32 | Used by:34 |
Symbol 34 MovieClip [wall] | Uses:31 33 | Used by:Timeline |
Symbol 35 Bitmap | Used by:36 | |
Symbol 36 Graphic | Uses:35 | Used by:39 |
Symbol 37 Graphic | Used by:38 136 | |
Symbol 38 MovieClip | Uses:37 | Used by:39 |
Symbol 39 MovieClip [B_ball] | Uses:36 38 | Used by:Timeline |
Symbol 40 Bitmap | Used by:41 | |
Symbol 41 Graphic | Uses:40 | Used by:45 |
Symbol 42 MovieClip | Uses:19 | Used by:45 85 |
Symbol 43 Graphic | Used by:44 | |
Symbol 44 MovieClip | Uses:43 | Used by:45 |
Symbol 45 MovieClip [B_can] | Uses:41 42 44 | Used by:Timeline |
Symbol 46 EditableText | Uses:2 | Used by:47 |
Symbol 47 MovieClip [B_score] | Uses:46 | Used by:Timeline |
Symbol 48 Bitmap | Used by:49 | |
Symbol 49 Graphic | Uses:48 | Used by:65 |
Symbol 50 EditableText | Uses:2 | Used by:65 |
Symbol 51 Bitmap | Used by:52 | |
Symbol 52 Graphic | Uses:51 | Used by:65 |
Symbol 53 Graphic | Used by:56 | |
Symbol 54 Text | Uses:2 | Used by:56 |
Symbol 55 Text | Uses:2 | Used by:56 |
Symbol 56 MovieClip | Uses:53 54 55 14 15 | Used by:58 |
Symbol 57 Graphic | Uses:17 | Used by:58 |
Symbol 58 MovieClip | Uses:10 56 57 19 21 | Used by:65 |
Symbol 59 Bitmap | Used by:60 | |
Symbol 60 Graphic | Uses:59 | Used by:65 |
Symbol 61 Bitmap | Used by:62 | |
Symbol 62 Graphic | Uses:61 | Used by:65 |
Symbol 63 Button | Uses:19 | Used by:65 |
Symbol 64 EditableText | Uses:2 | Used by:65 |
Symbol 65 MovieClip [B_scoreBoard] | Uses:49 50 52 58 60 62 63 64 | Used by:Timeline |
Symbol 66 Bitmap | Used by:67 | |
Symbol 67 Graphic | Uses:66 | Used by:85 |
Symbol 68 Bitmap | Used by:69 | |
Symbol 69 Graphic | Uses:68 | Used by:74 |
Symbol 70 Bitmap | Used by:71 | |
Symbol 71 Graphic | Uses:70 | Used by:73 74 |
Symbol 72 MovieClip | Uses:19 | Used by:74 |
Symbol 73 MovieClip | Uses:19 71 | Used by:74 |
Symbol 74 MovieClip | Uses:69 19 71 72 73 | Used by:85 |
Symbol 75 Bitmap | Used by:76 | |
Symbol 76 Graphic | Uses:75 | Used by:79 |
Symbol 77 Graphic | Used by:78 | |
Symbol 78 MovieClip | Uses:77 | Used by:79 |
Symbol 79 MovieClip | Uses:76 78 | Used by:85 |
Symbol 80 EditableText | Uses:2 | Used by:81 |
Symbol 81 MovieClip | Uses:80 | Used by:85 |
Symbol 82 Graphic | Used by:84 | |
Symbol 83 Text | Uses:2 | Used by:84 |
Symbol 84 MovieClip | Uses:82 83 | Used by:85 Timeline |
Symbol 85 MovieClip [breakOut] | Uses:67 74 79 42 81 84 | Used by:Timeline |
Symbol 86 Sound [B_extraBall.wav] | Used by:Timeline | |
Symbol 87 Sound [B_lose.wav] | Used by:Timeline | |
Symbol 88 Sound [B_stool.wav] | Used by:Timeline | |
Symbol 89 Sound [B_win.wav] | Used by:Timeline | |
Symbol 90 Sound [M_ballThud.wav] | Used by:Timeline | |
Symbol 91 Sound [M_barrel.wav] | Used by:Timeline | |
Symbol 92 Sound [M_bumper.wav] | Used by:Timeline | |
Symbol 93 Sound [M_cart1.wav] | Used by:Timeline | |
Symbol 94 Sound [M_cart2.wav] | Used by:Timeline | |
Symbol 95 Sound [M_cart3.wav] | Used by:Timeline | |
Symbol 96 Sound [M_cart4.wav] | Used by:Timeline | |
Symbol 97 Sound [M_cart5.wav] | Used by:Timeline | |
Symbol 98 Sound [M_ding.wav] | Used by:Timeline | |
Symbol 99 Sound [M_flipper.wav] | Used by:Timeline | |
Symbol 100 Sound [M_horse.wav] | Used by:Timeline | |
Symbol 101 Sound [M_launchNewBall.wav] | Used by:Timeline | |
Symbol 102 Sound [M_mainRamp.wav] | Used by:Timeline | |
Symbol 103 Sound [M_rampBallKicked.wav] | Used by:Timeline | |
Symbol 104 Sound [M_rampThud.wav] | Used by:Timeline | |
Symbol 105 Sound [M_saloonDoor.wav] | Used by:Timeline | |
Symbol 106 Sound [M_scoreTotal.wav] | Used by:Timeline | |
Symbol 107 Sound [M_scream.wav] | Used by:Timeline | |
Symbol 108 Sound [M_target.wav] | Used by:Timeline | |
Symbol 109 Sound [M_wolf.wav] | Used by:Timeline | |
Symbol 110 Sound [T_musicFinalTheme.wav] | Used by:Timeline | |
Symbol 111 Sound [T_musicIntro.wav] | Used by:Timeline | |
Symbol 112 Sound [T_musicMainTheme.wav] | Used by:Timeline | |
Symbol 113 Bitmap | Used by:114 | |
Symbol 114 Graphic | Uses:113 | Used by:Timeline |
Symbol 115 Bitmap | Used by:116 | |
Symbol 116 Graphic | Uses:115 | Used by:117 118 119 |
Symbol 117 MovieClip | Uses:19 116 | Used by:Timeline |
Symbol 118 MovieClip | Uses:19 116 | Used by:Timeline |
Symbol 119 MovieClip | Uses:19 116 | Used by:Timeline |
Symbol 120 Graphic | Used by:134 | |
Symbol 121 Graphic | Used by:134 | |
Symbol 122 Bitmap | Used by:123 | |
Symbol 123 Graphic | Uses:122 | Used by:134 |
Symbol 124 Graphic | Used by:134 | |
Symbol 125 Graphic | Used by:134 | |
Symbol 126 Graphic | Used by:134 | |
Symbol 127 Graphic | Used by:134 | |
Symbol 128 Graphic | Used by:134 | |
Symbol 129 Graphic | Used by:134 | |
Symbol 130 Graphic | Used by:134 | |
Symbol 131 Graphic | Used by:134 | |
Symbol 132 Bitmap | Used by:133 | |
Symbol 133 Graphic | Uses:132 | Used by:134 |
Symbol 134 MovieClip | Uses:120 121 123 124 125 126 127 128 129 130 131 133 | Used by:Timeline |
Symbol 135 Graphic | Used by:138 147 | |
Symbol 136 MovieClip | Uses:37 | Used by:138 141 144 147 |
Symbol 137 Graphic | Used by:138 147 | |
Symbol 138 MovieClip | Uses:135 136 137 | Used by:147 |
Symbol 139 Graphic | Used by:141 147 | |
Symbol 140 Graphic | Used by:141 147 | |
Symbol 141 MovieClip | Uses:139 136 140 | Used by:147 |
Symbol 142 Graphic | Used by:144 147 | |
Symbol 143 Graphic | Used by:144 147 | |
Symbol 144 MovieClip | Uses:142 136 143 | Used by:147 |
Symbol 145 Bitmap | Used by:146 | |
Symbol 146 Graphic | Uses:145 | Used by:147 |
Symbol 147 MovieClip | Uses:138 141 144 146 135 136 139 142 137 140 143 | Used by:Timeline |
Symbol 148 Font | Used by:149 151 | |
Symbol 149 EditableText | Uses:148 | Used by:150 |
Symbol 150 MovieClip | Uses:149 | Used by:Timeline |
Symbol 151 EditableText | Uses:148 | Used by:152 |
Symbol 152 MovieClip | Uses:151 | Used by:Timeline |
Symbol 153 Bitmap | Used by:155 | |
Symbol 154 Bitmap | Used by:155 | |
Symbol 155 Graphic | Uses:153 154 | Used by:Timeline |
Symbol 156 Graphic | Used by:161 | |
Symbol 157 Font | Used by:158 160 169 173 219 220 221 222 223 224 | |
Symbol 158 EditableText | Uses:157 | Used by:161 |
Symbol 159 Graphic | Used by:161 | |
Symbol 160 EditableText | Uses:157 | Used by:161 |
Symbol 161 MovieClip | Uses:156 158 159 160 | Used by:Timeline |
Symbol 162 Graphic | Used by:163 | |
Symbol 163 MovieClip | Uses:162 | Used by:164 165 174 175 180 Timeline |
Symbol 164 MovieClip | Uses:163 | Used by:Timeline |
Symbol 165 MovieClip | Uses:163 | Used by:Timeline |
Symbol 166 Bitmap | Used by:167 | |
Symbol 167 Graphic | Uses:166 | Used by:174 175 |
Symbol 168 Graphic | Used by:174 175 | |
Symbol 169 EditableText | Uses:157 | Used by:174 175 |
Symbol 170 Bitmap | Used by:171 | |
Symbol 171 Graphic | Uses:170 | Used by:174 175 |
Symbol 172 Graphic | Used by:174 175 | |
Symbol 173 EditableText | Uses:157 | Used by:174 175 |
Symbol 174 MovieClip | Uses:167 163 168 169 171 172 173 | Used by:175 |
Symbol 175 MovieClip | Uses:174 167 163 168 169 171 172 173 | Used by:Timeline |
Symbol 176 Bitmap | Used by:177 | |
Symbol 177 Graphic | Uses:176 | Used by:180 |
Symbol 178 Graphic | Used by:179 | |
Symbol 179 MovieClip | Uses:178 | Used by:180 |
Symbol 180 MovieClip | Uses:177 163 179 | Used by:Timeline |
Symbol 181 Graphic | Used by:Timeline | |
Symbol 182 Bitmap | Used by:183 | |
Symbol 183 Graphic | Uses:182 | Used by:184 |
Symbol 184 MovieClip | Uses:183 | Used by:195 197 201 230 Timeline |
Symbol 185 Graphic | Used by:186 | |
Symbol 186 MovieClip | Uses:185 | Used by:191 193 |
Symbol 187 Graphic | Used by:188 | |
Symbol 188 MovieClip | Uses:187 | Used by:191 193 |
Symbol 189 Bitmap | Used by:190 192 | |
Symbol 190 Graphic | Uses:189 | Used by:191 |
Symbol 191 MovieClip | Uses:186 188 190 | Used by:Timeline |
Symbol 192 Graphic | Uses:189 | Used by:193 |
Symbol 193 MovieClip | Uses:186 188 192 | Used by:Timeline |
Symbol 194 Graphic | Used by:Timeline | |
Symbol 195 MovieClip | Uses:184 | Used by:Timeline |
Symbol 196 Graphic | Used by:Timeline | |
Symbol 197 MovieClip | Uses:184 | Used by:Timeline |
Symbol 198 Bitmap | Used by:199 | |
Symbol 199 Graphic | Uses:198 | Used by:Timeline |
Symbol 200 Graphic | Used by:Timeline | |
Symbol 201 MovieClip | Uses:184 | Used by:Timeline |
Symbol 202 MovieClip | Uses:19 | Used by:Timeline |
Symbol 203 Graphic | Used by:Timeline | |
Symbol 204 Bitmap | Used by:211 | |
Symbol 205 Bitmap | Used by:211 | |
Symbol 206 Bitmap | Used by:211 | |
Symbol 207 Bitmap | Used by:211 | |
Symbol 208 Bitmap | Used by:211 | |
Symbol 209 Bitmap | Used by:211 | |
Symbol 210 Bitmap | Used by:211 | |
Symbol 211 Graphic | Uses:204 205 206 207 208 209 210 | Used by:Timeline |
Symbol 212 Bitmap | Used by:213 | |
Symbol 213 Graphic | Uses:212 | Used by:214 |
Symbol 214 MovieClip | Uses:213 | Used by:Timeline |
Symbol 215 Bitmap | Used by:216 | |
Symbol 216 Graphic | Uses:215 | Used by:217 |
Symbol 217 MovieClip | Uses:216 | Used by:225 |
Symbol 218 Graphic | Used by:225 | |
Symbol 219 Text | Uses:157 | Used by:225 |
Symbol 220 Text | Uses:157 | Used by:225 |
Symbol 221 Text | Uses:157 | Used by:225 |
Symbol 222 Text | Uses:157 | Used by:225 |
Symbol 223 Text | Uses:157 | Used by:225 |
Symbol 224 Text | Uses:157 | Used by:225 |
Symbol 225 MovieClip | Uses:217 218 219 220 221 222 223 224 | Used by:Timeline |
Symbol 226 Graphic | Used by:227 | |
Symbol 227 MovieClip | Uses:226 | Used by:Timeline |
Symbol 228 Bitmap | Used by:229 | |
Symbol 229 Graphic | Uses:228 | Used by:230 |
Symbol 230 MovieClip | Uses:229 24 184 | Used by:Timeline |
Symbol 231 Bitmap | Used by:232 | |
Symbol 232 Graphic | Uses:231 | Used by:239 |
Symbol 233 Bitmap | Used by:234 | |
Symbol 234 Graphic | Uses:233 | Used by:239 |
Symbol 235 Bitmap | Used by:236 | |
Symbol 236 Graphic | Uses:235 | Used by:239 |
Symbol 237 Bitmap | Used by:238 | |
Symbol 238 Graphic | Uses:237 | Used by:239 |
Symbol 239 MovieClip | Uses:232 19 234 236 238 | Used by:Timeline |
Symbol 240 Bitmap | Used by:241 | |
Symbol 241 Graphic | Uses:240 | Used by:245 |
Symbol 242 Font | Used by:243 244 | |
Symbol 243 EditableText | Uses:242 | Used by:245 |
Symbol 244 EditableText | Uses:242 | Used by:245 |
Symbol 245 MovieClip | Uses:241 243 244 | Used by:Timeline |
Symbol 246 Graphic | Used by:256 | |
Symbol 247 Text | Uses:2 | Used by:256 |
Symbol 248 Graphic | Used by:256 | |
Symbol 249 Text | Uses:2 | Used by:256 |
Symbol 250 Graphic | Used by:256 | |
Symbol 251 Text | Uses:2 | Used by:256 |
Symbol 252 Graphic | Used by:256 | |
Symbol 253 Text | Uses:2 | Used by:256 |
Symbol 254 Graphic | Used by:256 | |
Symbol 255 Text | Uses:2 | Used by:256 |
Symbol 256 MovieClip | Uses:246 247 248 249 250 251 252 253 254 255 | Used by:257 |
Symbol 257 MovieClip | Uses:256 | Used by:Timeline |
Symbol 258 Bitmap | Used by:259 | |
Symbol 259 Graphic | Uses:258 | Used by:264 |
Symbol 260 Button | Uses:19 | Used by:264 273 |
Symbol 261 Bitmap | Used by:262 | |
Symbol 262 Graphic | Uses:261 | Used by:264 |
Symbol 263 Button | Uses:19 | Used by:264 |
Symbol 264 MovieClip | Uses:259 260 262 263 | Used by:Timeline |
Symbol 265 Graphic | Used by:273 | |
Symbol 266 Bitmap | Used by:267 | |
Symbol 267 Graphic | Uses:266 | Used by:273 |
Symbol 268 Bitmap | Used by:269 | |
Symbol 269 Graphic | Uses:268 | Used by:273 |
Symbol 270 Bitmap | Used by:271 | |
Symbol 271 Graphic | Uses:270 | Used by:273 |
Symbol 272 Button | Uses:19 | Used by:273 |
Symbol 273 MovieClip | Uses:265 267 260 269 271 272 | Used by:Timeline |
Symbol 274 Bitmap | Used by:275 | |
Symbol 275 Graphic | Uses:274 | Used by:276 |
Symbol 276 Button | Uses:275 | Used by:Timeline |
Symbol 277 Bitmap | Used by:278 | |
Symbol 278 Graphic | Uses:277 | Used by:279 |
Symbol 279 Button | Uses:278 | Used by:Timeline |
Instance Names
"BG_leftWindows" | Frame 8 | Symbol 117 MovieClip |
"BG_rightWindows" | Frame 8 | Symbol 118 MovieClip |
"BG_saloonWindows" | Frame 8 | Symbol 119 MovieClip |
"BG_pepsiTitle" | Frame 8 | Symbol 134 MovieClip |
"switch_mc" | Frame 8 | Symbol 147 MovieClip |
"bonus_mc" | Frame 8 | Symbol 150 MovieClip |
"fader" | Frame 8 | Symbol 152 MovieClip |
"bonus1" | Frame 8 | Symbol 161 MovieClip |
"bonus2" | Frame 8 | Symbol 161 MovieClip |
"bonus3" | Frame 8 | Symbol 161 MovieClip |
"bonus4" | Frame 8 | Symbol 161 MovieClip |
"bonus5" | Frame 8 | Symbol 161 MovieClip |
"bonus0" | Frame 8 | Symbol 161 MovieClip |
"bumper2" | Frame 8 | Symbol 163 MovieClip |
"bumper0" | Frame 8 | Symbol 163 MovieClip |
"bumper1" | Frame 8 | Symbol 163 MovieClip |
"bumper3" | Frame 8 | Symbol 163 MovieClip |
"bumper4" | Frame 8 | Symbol 163 MovieClip |
"largeBumper0" | Frame 8 | Symbol 164 MovieClip |
"largeBumper1" | Frame 8 | Symbol 165 MovieClip |
"allTargets" | Frame 8 | Symbol 175 MovieClip |
"cart_mc" | Frame 8 | Symbol 180 MovieClip |
"ball_mc" | Frame 8 | Symbol 184 MovieClip |
"flipper0" | Frame 8 | Symbol 191 MovieClip |
"flipper1" | Frame 8 | Symbol 193 MovieClip |
"flipper2" | Frame 8 | Symbol 193 MovieClip |
"saloonRamp" | Frame 8 | Symbol 195 MovieClip |
"cartRamp" | Frame 8 | Symbol 197 MovieClip |
"rightRamp" | Frame 8 | Symbol 201 MovieClip |
"rightRampHitZone" | Frame 8 | Symbol 202 MovieClip |
"sombrero0" | Frame 8 | Symbol 214 MovieClip |
"sombrero2" | Frame 8 | Symbol 214 MovieClip |
"sombrero1" | Frame 8 | Symbol 214 MovieClip |
"saloon_mc" | Frame 8 | Symbol 225 MovieClip |
"saloonHitZone" | Frame 8 | Symbol 227 MovieClip |
"dot10" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot9" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot8" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot5" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot4" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot2" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot1" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot11" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot0" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot7" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot6" | Frame 8 | Symbol 24 MovieClip [dot] |
"dot3" | Frame 8 | Symbol 24 MovieClip [dot] |
"mainRamp" | Frame 8 | Symbol 230 MovieClip |
"horse_mc" | Frame 8 | Symbol 239 MovieClip |
"score_mc" | Frame 8 | Symbol 245 MovieClip |
"display_mc" | Frame 8 | Symbol 257 MovieClip |
"hitZone" | Symbol 39 MovieClip [B_ball] Frame 1 | Symbol 38 MovieClip |
"hitZone" | Symbol 45 MovieClip [B_can] Frame 1 | Symbol 42 MovieClip |
"dot0" | Symbol 45 MovieClip [B_can] Frame 1 | Symbol 44 MovieClip |
"dot1" | Symbol 45 MovieClip [B_can] Frame 1 | Symbol 44 MovieClip |
"dot2" | Symbol 45 MovieClip [B_can] Frame 1 | Symbol 44 MovieClip |
"dot3" | Symbol 45 MovieClip [B_can] Frame 1 | Symbol 44 MovieClip |
"dot4" | Symbol 45 MovieClip [B_can] Frame 1 | Symbol 44 MovieClip |
"dot5" | Symbol 45 MovieClip [B_can] Frame 1 | Symbol 44 MovieClip |
"hitZone" | Symbol 79 MovieClip Frame 1 | Symbol 78 MovieClip |
"saloonLight" | Symbol 85 MovieClip [breakOut] Frame 1 | Symbol 74 MovieClip |
"stool_mc" | Symbol 85 MovieClip [breakOut] Frame 15 | Symbol 79 MovieClip |
"row_mc0" | Symbol 85 MovieClip [breakOut] Frame 15 | Symbol 42 MovieClip |
"row_mc1" | Symbol 85 MovieClip [breakOut] Frame 15 | Symbol 42 MovieClip |
"row_mc2" | Symbol 85 MovieClip [breakOut] Frame 15 | Symbol 42 MovieClip |
"row_mc3" | Symbol 85 MovieClip [breakOut] Frame 15 | Symbol 42 MovieClip |
"row_mc4" | Symbol 85 MovieClip [breakOut] Frame 15 | Symbol 42 MovieClip |
"display_mc" | Symbol 85 MovieClip [breakOut] Frame 15 | Symbol 81 MovieClip |
"hitZone" | Symbol 138 MovieClip Frame 1 | Symbol 136 MovieClip |
"hitZone" | Symbol 141 MovieClip Frame 1 | Symbol 136 MovieClip |
"hitZone" | Symbol 144 MovieClip Frame 1 | Symbol 136 MovieClip |
"switch0" | Symbol 147 MovieClip Frame 1 | Symbol 138 MovieClip |
"switch1" | Symbol 147 MovieClip Frame 1 | Symbol 141 MovieClip |
"switch2" | Symbol 147 MovieClip Frame 1 | Symbol 144 MovieClip |
"hitZone" | Symbol 147 MovieClip Frame 5 | Symbol 136 MovieClip |
"hitZone" | Symbol 147 MovieClip Frame 5 | Symbol 136 MovieClip |
"hitZone" | Symbol 147 MovieClip Frame 5 | Symbol 136 MovieClip |
"disp_label_mc" | Symbol 161 MovieClip Frame 1 | Symbol 158 EditableText |
"disp_label_mc" | Symbol 161 MovieClip Frame 3 | Symbol 160 EditableText |
"bumper0" | Symbol 164 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper2" | Symbol 164 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper5" | Symbol 164 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper1" | Symbol 164 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper3" | Symbol 164 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper4" | Symbol 164 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper0" | Symbol 165 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper2" | Symbol 165 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper4" | Symbol 165 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper1" | Symbol 165 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper3" | Symbol 165 MovieClip Frame 1 | Symbol 163 MovieClip |
"bumper0" | Symbol 174 MovieClip Frame 1 | Symbol 163 MovieClip |
"target10" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"target9" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"target8" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"target7" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"target6" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"target5" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"target4" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"target3" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"target2" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"target1" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"target0" | Symbol 175 MovieClip Frame 1 | Symbol 174 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 10 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 16 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 19 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 22 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 25 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 28 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 31 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 34 | Symbol 163 MovieClip |
"bumper0" | Symbol 175 MovieClip Frame 37 | Symbol 163 MovieClip |
"bumper0" | Symbol 180 MovieClip Frame 1 | Symbol 163 MovieClip |
"hitZone" | Symbol 180 MovieClip Frame 1 | Symbol 179 MovieClip |
"hitZoneSup" | Symbol 191 MovieClip Frame 1 | Symbol 186 MovieClip |
"endHitZone" | Symbol 191 MovieClip Frame 1 | Symbol 188 MovieClip |
"hitZoneInf" | Symbol 191 MovieClip Frame 1 | Symbol 186 MovieClip |
"hitZoneSup" | Symbol 193 MovieClip Frame 1 | Symbol 186 MovieClip |
"endHitZone" | Symbol 193 MovieClip Frame 1 | Symbol 188 MovieClip |
"hitZoneInf" | Symbol 193 MovieClip Frame 1 | Symbol 186 MovieClip |
"ball" | Symbol 195 MovieClip Frame 6 | Symbol 184 MovieClip |
"ball" | Symbol 197 MovieClip Frame 5 | Symbol 184 MovieClip |
"ball" | Symbol 197 MovieClip Frame 10 | Symbol 184 MovieClip |
"ball" | Symbol 201 MovieClip Frame 5 | Symbol 184 MovieClip |
"saloonDoor_mc" | Symbol 225 MovieClip Frame 1 | Symbol 217 MovieClip |
"leftDot5" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"leftDot4" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"leftDot3" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"leftDot2" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"leftDot1" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"leftDot0" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"rightDot0" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"rightDot1" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"rightDot2" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"rightDot3" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"rightDot4" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"rightDot5" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"rightDot6" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"rightDot8" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"rightDot9" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"rightDot7" | Symbol 230 MovieClip Frame 1 | Symbol 24 MovieClip [dot] |
"ball" | Symbol 230 MovieClip Frame 25 | Symbol 184 MovieClip |
"disp_mc" | Symbol 257 MovieClip Frame 2 | Symbol 256 MovieClip |
Special Tags
Protect (24) | Timeline Frame 1 | 0 bytes "" |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "B_can.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 3 | Symbol 27 as "flipperBolt" |
ExportAssets (56) | Timeline Frame 3 | Symbol 30 as "score" |
ExportAssets (56) | Timeline Frame 3 | Symbol 34 as "wall" |
ExportAssets (56) | Timeline Frame 3 | Symbol 39 as "B_ball" |
ExportAssets (56) | Timeline Frame 3 | Symbol 45 as "B_can" |
ExportAssets (56) | Timeline Frame 3 | Symbol 47 as "B_score" |
ExportAssets (56) | Timeline Frame 3 | Symbol 65 as "B_scoreBoard" |
ExportAssets (56) | Timeline Frame 3 | Symbol 85 as "breakOut" |
ExportAssets (56) | Timeline Frame 3 | Symbol 1 as "B_can.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 86 as "B_extraBall.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 87 as "B_lose.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 88 as "B_stool.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 89 as "B_win.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 90 as "M_ballThud.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 91 as "M_barrel.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 92 as "M_bumper.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 93 as "M_cart1.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 94 as "M_cart2.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 95 as "M_cart3.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 96 as "M_cart4.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 97 as "M_cart5.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 98 as "M_ding.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 99 as "M_flipper.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 100 as "M_horse.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 101 as "M_launchNewBall.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 102 as "M_mainRamp.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 103 as "M_rampBallKicked.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 104 as "M_rampThud.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 105 as "M_saloonDoor.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 106 as "M_scoreTotal.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 107 as "M_scream.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 108 as "M_target.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 109 as "M_wolf.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 110 as "T_musicFinalTheme.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 111 as "T_musicIntro.wav" |
ExportAssets (56) | Timeline Frame 3 | Symbol 112 as "T_musicMainTheme.wav" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 8 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 9 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 10 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 11 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 12 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 13 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 14 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 15 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 16 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 17 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
ExportAssets (56) | Timeline Frame 18 | Symbol 24 as "dot" |
Labels
"reset" | Frame 4 |
"init" | Frame 8 |
"main" | Frame 13 |
"stop" | Symbol 22 MovieClip Frame 1 |
"coin" | Symbol 22 MovieClip Frame 5 |
"animation" | Symbol 22 MovieClip Frame 10 |
"stop" | Symbol 58 MovieClip Frame 1 |
"coin" | Symbol 58 MovieClip Frame 5 |
"animation" | Symbol 58 MovieClip Frame 10 |
"start" | Symbol 65 MovieClip [B_scoreBoard] Frame 1 |
"blink" | Symbol 65 MovieClip [B_scoreBoard] Frame 45 |
"endBoard" | Symbol 65 MovieClip [B_scoreBoard] Frame 160 |
"stop" | Symbol 74 MovieClip Frame 1 |
"standby" | Symbol 74 MovieClip Frame 5 |
"play" | Symbol 74 MovieClip Frame 10 |
"stop" | Symbol 81 MovieClip Frame 1 |
"start" | Symbol 81 MovieClip Frame 2 |
"intro" | Symbol 85 MovieClip [breakOut] Frame 1 |
"init" | Symbol 85 MovieClip [breakOut] Frame 15 |
"main" | Symbol 85 MovieClip [breakOut] Frame 20 |
"exit" | Symbol 85 MovieClip [breakOut] Frame 25 |
"stop" | Symbol 117 MovieClip Frame 1 |
"loop" | Symbol 117 MovieClip Frame 5 |
"stop" | Symbol 118 MovieClip Frame 1 |
"loop" | Symbol 118 MovieClip Frame 5 |
"stop" | Symbol 119 MovieClip Frame 1 |
"loop" | Symbol 119 MovieClip Frame 5 |
"stop" | Symbol 134 MovieClip Frame 1 |
"loop" | Symbol 134 MovieClip Frame 5 |
"blink" | Symbol 134 MovieClip Frame 55 |
"off" | Symbol 138 MovieClip Frame 1 |
"on" | Symbol 138 MovieClip Frame 2 |
"off" | Symbol 141 MovieClip Frame 1 |
"on" | Symbol 141 MovieClip Frame 2 |
"off" | Symbol 144 MovieClip Frame 1 |
"on" | Symbol 144 MovieClip Frame 2 |
"stop" | Symbol 147 MovieClip Frame 1 |
"play" | Symbol 147 MovieClip Frame 5 |
"stop" | Symbol 150 MovieClip Frame 5 |
"play" | Symbol 150 MovieClip Frame 10 |
"start" | Symbol 152 MovieClip Frame 5 |
"loop" | Symbol 152 MovieClip Frame 6 |
"off" | Symbol 161 MovieClip Frame 2 |
"on" | Symbol 161 MovieClip Frame 3 |
"on" | Symbol 174 MovieClip Frame 1 |
"off" | Symbol 174 MovieClip Frame 2 |
"stop" | Symbol 175 MovieClip Frame 5 |
"play" | Symbol 175 MovieClip Frame 10 |
"stop" | Symbol 195 MovieClip Frame 1 |
"start" | Symbol 195 MovieClip Frame 6 |
"stop" | Symbol 197 MovieClip Frame 1 |
"move" | Symbol 197 MovieClip Frame 5 |
"start" | Symbol 197 MovieClip Frame 10 |
"stop" | Symbol 201 MovieClip Frame 1 |
"start" | Symbol 201 MovieClip Frame 5 |
"stop" | Symbol 214 MovieClip Frame 1 |
"play" | Symbol 214 MovieClip Frame 5 |
"off" | Symbol 225 MovieClip Frame 5 |
"on" | Symbol 225 MovieClip Frame 10 |
"play" | Symbol 225 MovieClip Frame 15 |
"stop" | Symbol 239 MovieClip Frame 1 |
"kick" | Symbol 239 MovieClip Frame 5 |
"start" | Symbol 257 MovieClip Frame 2 |
Dynamic Text Variables
disp_percent | Symbol 3 EditableText | "loading 100%" |
disp_point | Symbol 29 EditableText | "XXX" |
disp_point | Symbol 46 EditableText | "XXX" |
disp_main | Symbol 50 EditableText | "XXXXXXXXXXXX" |
disp_totalScore | Symbol 64 EditableText | "XXXXXXXXXXXX" |
disp_main | Symbol 80 EditableText | "" |
disp_label | Symbol 158 EditableText | "x4" |
disp_label | Symbol 160 EditableText | "x4" |
disp_letter | Symbol 169 EditableText | "X" |
disp_letter | Symbol 173 EditableText | "P" |
disp_currBall | Symbol 243 EditableText | "2" |
disp_score | Symbol 244 EditableText | "222222222222" |
|