STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228067
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/48316310?noj=FRM48316310-28DC" width="1" height="1"></div>

Plastic Balls.swf

This is the info page for
Flash #31453

(Click the ID number above for more basic data on this flash file.)


Text
CREDITS

Arrow keys or mouse left and right
Move bat around central drain

Try to stop balls
falling down central
drain

Press "P" at any
time to pause the
game

Powerup meter, shows how long
your current powerup will last

Reverse gravity

Next level

Speed up bat

Slow down bat

Small bat

Fireball

Drain cover

Double bat

Laser

Rockets

Large bat

Multi ball

Bomb

No gravity

fps

level

ActionScript [AS1/AS2]

Frame 1
if (_root._framesloaded == _root._totalframes) { gotoAndPlay (4); } function startStarBurst(x, y) { startCountedStarBurst(x, y, 5, ("QuickStar" + random(2)) + 1); } function printFps() { if (_root.DEBUG) { myDate = new Date(); start_time = myDate.getTime(); iFpsFrameCount++; time = start_time - iFpsFrameTime; if (time > 1000) { iFpsFrames = (iFpsFrameCount * 1000) / time; iFpsFrameTime = start_time; iFpsTotalFrames = iFpsTotalFrames + iFpsFrameCount; printable_fps = iFpsFrameCount; iFpsNumCalls++; iFpsFrameCount = 0; } fps = printable_fps; fpsdebug = int(iFpsTotalFrames / iFpsNumCalls); } else { fpsdebug = ""; } } function timerStart(timerID, timerIterations) { _root.timerMaxIterations[timerID] = timerIterations; myTime = new Date(); _root.timerStartTime[timerID] = myTime.getTime(); _root.timerTotalTime[timerID] = 0; } function timerEnd(timerID) { _root.timerIterations[timerID]++; myTime = new Date(); timerEndTime = myTime.getTime(); _root.timerTotalTime[timerID] = _root.timerTotalTime[timerID] + (timerEndTime - _root.timerStartTime[timerID]); if (_root.timerIterations[timerID] == _root.timerMaxIterations[timerID]) { _root.timerIterations[timerID] = 0; _root.timerTotalTime[timerID] = 0; } } function timerPrint(timerID, obj) { obj = _root.timerTotalTime[timerID]; } function startParticleExplosion(x, y) { var objD; var rnd; var thisStar; var iAngle; var i = 0; while (i < 20) { objD = depth[STAR_OBJ]; attachMovie("ExplodeParticle", "Star" + objD[CURRENT_DEPTH], objD[CURRENT_DEPTH]); thisStar = _root["Star" + objD[CURRENT_DEPTH]]; updateDepth(objD); thisStar._x = x; thisStar._y = y; iAngle = random(360); thisStar.vx = Math.sin(iAngle); thisStar.vy = Math.cos(iAngle); rnd = Math.random() * 3; thisStar.vx = thisStar.vx * rnd; thisStar.vy = thisStar.vy * (1 + rnd); i++; } } function updateDepth(obj) { if (obj[CURRENT_DEPTH] > (obj[MIN_DEPTH] + obj[NUM_OBJECTS])) { obj[CURRENT_DEPTH] = obj[MIN_DEPTH]; } else { obj[CURRENT_DEPTH]++; } } function drawLine(xStart, yStart, xStop, yStop, col) { _root.attachMovie("baseLine", "Line" + _root.iDepth, _root.iDepth); _root["Line" + _root.iDepth]._x = xStart; _root["Line" + _root.iDepth]._y = yStart; _root["Line" + _root.iDepth]._xscale = xStop - xStart; _root["Line" + _root.iDepth]._yscale = yStop - yStart; c = new Color(_root["Line" + _root.iDepth]); c.setRGB(col); _root.iDepth++; } function drawLineAtDepth(xStart, yStart, xStop, yStop, aDepth, col) { _root.attachMovie("baseLine", "Line" + aDepth, aDepth); _root["Line" + aDepth]._x = xStart; _root["Line" + aDepth]._y = yStart; _root["Line" + aDepth]._xscale = xStop - xStart; _root["Line" + aDepth]._yscale = yStop - yStart; c = new Color(_root["Line" + aDepth]); c.setRGB(col); } function locToGlob(object, valx, valy) { po = new object(); po.x = valx; po.y = valy; object.localToGlobal(po); return(po); } DEBUG = false; VERSION_FULL = 1; VERSION_DEMO = 0; VERSION = VERSION_FULL; DESIGN = false; var ROOT_URL = "http://www.playaholics.com/"; var HI_SCORE_SCRIPT = (ROOT_URL + "comp_entry.php?"); var GAME_NAME = "plasticballs"; var DEVELOPER_NAME = "plasticmartians"; var THRESHOLD_IMPRESSED = 1000; MAX_DEMO_LEVELS = 4; _root.ringWidth = 450; _root.txtRingWidth = 495; _root.drainCoverRadius = 19; _root.ballRadius = 8; DEFAULT_BALL_MAX_MOVE = 20; DEFAULT_BALL_MOVE_STEP = 5; currentPickups = new Array(); currentPickupsCount = new Array(); extraLifeScore = 5000; LEVELS_SCORE_MULTIPLIER = 50; BALLS_SCORE_MULTIPLIER = 30; RUN = 1; TEST = 2; mode = RUN; BRICK_OBJ = 0; TEMP_OBJ = 1; STAR_OBJ = 2; PICKUP_OBJ = 3; BALL_OBJ = 4; SECTOR_OBJ = 5; LAUNCHER_OBJ = 6; POINTS_OBJ = 7; BULLET_OBJ = 8; EXPLODE_OBJ = 9; MISC_OBJ = 10; SPECIAL_BRICK_OBJ = 11; PICKUP_BRICK_OBJ = 12; CURRENT_DEPTH = 0; MIN_DEPTH = 1; NUM_OBJECTS = 2; sin = Math.sin; cos = Math.cos; atan2 = Math.atan2; ht = hitTest; minDist = new Array(); maxDist = new Array(); ballIndex = new Array(); var depth = new Array(); starDepth = 100; numStars = 20; pausedDepth = 81000 /* 0x013C68 */; depth[PICKUP_OBJ] = [4000, 4000, 30]; depth[STAR_OBJ] = [2000, 2000, 400]; depth[BRICK_OBJ] = [500, 500, 300]; depth[TEMP_OBJ] = [1000, 1000, 400]; depth[BALL_OBJ] = [6000, 6000, 50]; depth[SECTOR_OBJ] = [950, 950, 80]; depth[LAUNCHER_OBJ] = [900, 900, 10]; depth[POINTS_OBJ] = [9000, 9000, 40]; depth[BULLET_OBJ] = [10000, 10000, 2]; depth[EXPLODE_OBJ] = [11000, 11000, 20]; depth[MISC_OBJ] = [51000, 51000, 100]; depth[SPECIAL_BRICK_OBJ] = [850, 850, 40]; depth[PICKUP_BRICK_OBJ] = [500000, 500000, 500]; INVULN_DEPTH = 690000 /* 0x0A8750 */; BAT_DEPTH = 700000 /* 0x0AAE60 */; BEAM_DEPTH = 900000 /* 0x0DBBA0 */; BULLET_LAUNCHER_DEPTH = 800000 /* 0x0C3500 */; EXTRA_LIFE_DEPTH = 901000 /* 0x0DBF88 */; LEVEL_COMPLETE_DEPTH = 901001 /* 0x0DBF89 */; NAG_SCREEN_DEPTH = 901002 /* 0x0DBF8A */; LEVEL_PANEL_DEPTH = 901004 /* 0x0DBF8C */; QUIT_DEPTH = 910192 /* 0x0DE370 */; launcherDepth = 5900; scoreDepth = 9000; pickupDepth = 9100; iDepth = 19000; ballNum = 0; maxBalls = 10; bounce = 0.8; contact = new array(); contactcnt = 0; width = 550; halfWidth = 320; halfHeight = 240; brick_middle_x = halfWidth; brick_middle_y = halfHeight; rad = (Math.PI/180); ang2rad = rad; rad2ang = 57.2957795130823; __45__ = 45 * rad; __90__ = 90 * rad; __180__ = 180 * rad; __360__ = 360 * rad; brickSizeAngle = 11.25; brickSizeAngleRad = brickSizeAngle * rad; numBrickSectors = 32; numBrickLayers = 7; distanceBrickLayers = [213, 196, 179, 163, 125, 83, 25]; specialBricks = numBrickSectors * numBrickLayers; numSpecialBricks = 0; iFpsTotalFrames = 0; iFpsNumCalls = 0; iFpsFrameCount = 0; iFpsFrames = 0; iFpsFrameTime = 0; printable_fps = 0; timerIterations = new Array(10); timerTotalTime = new Array(10); timerStartTime = new Array(10); timerMaxIterations = new Array(10); timerIterations[0] = 0; BR_NORMAL = 1; BR_GLASS = 2; BR_INDESTRUCTABLE = 4; BR_BOUNCY = 8; BR_S_BARRIER = 16; BR_D_BARRIER = 32; BR_I_BARRIER = 64; BR_C_BARRIER = 128; var levelData = new Array(new Array(0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 983041, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 983041, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(1179649, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 655361, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1114113, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 458753, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458753, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458753, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458753, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 589825, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 655361, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 196609, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 655361, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, "#", "@"), new Array(1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(131073, 0, 4, 4, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 4, 1, 524289, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 655361, 4, 1, 458753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, "#", 128, 300.95, 62, 128, 338.95, 62, 128, 372.95, 69, "@"), new Array(1, 0, 0, 4, 32, 0, 0, 1376257, 0, 0, 4, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 4, 32, 0, 0, 1376257, 0, 0, 4, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 489.95, 291.95, 128, 458.95, 352.95, 128, 403.95, 395.95, 128, 337.95, 417.95, 128, 268.95, 410.95, 128, 476.95, 156, 128, 497.95, 222, 128, 432.95, 102, 128, 371.95, 69, 128, 301.95, 62, 128, 235.95, 81, 128, 142.95, 257, 128, 162.95, 323.95, 128, 207.95, 376.95, 128, 181.95, 125, 128, 147.95, 187, "@"), new Array(0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 196609, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1441793, 4, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1376257, 4, 1, 0, 0, 0, 0, 1376257, 4, 1, 0, 0, 0, 0, "#", "@"), new Array(4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 131073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 655361, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1441793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 131073, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1441793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 131073, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1441793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 720897, 0, 0, 0, "#", 128, 408.95, 132, 128, 457.95, 226, 128, 427.95, 328.95, 128, 333.95, 376.95, 128, 304.95, 100, 128, 212.95, 154, 128, 183.95, 253, 128, 231.95, 346.95, "@"), new Array(1, 786433, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1441793, 4, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 655361, 0, 32, 0, 0, 1, 0, 655361, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1441793, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 196609, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 196609, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1179649, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1179649, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 131073, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 131073, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", 128, 491.95, 189, 128, 433.95, 102, 128, 336.95, 61, 128, 235.95, 83, 128, 162.95, 156, 128, 141.95, 259, 128, 180.95, 352.95, 128, 267.95, 409.95, 128, 370.95, 409.95, 128, 457.95, 350.95, 128, 408.95, 258, "@"), new Array(1, 1, 655361, 0, 0, 64, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 64, 0, 1, 1, 1, 262145, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 64, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 262145, 0, 64, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 655361, 0, 0, 64, 0, 1, 1, 655361, 655361, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1114113, 0, 0, 0, 32, 64, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 64, 0, 917505, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 64, 0, 589825, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1441793, 1, 1, 1, 0, 0, 0, 131073, 1, 1, 1, 0, 0, 0, 720897, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1376257, 1, 1, 1, 32, 0, 0, 1376257, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 4, 4, 4, 4, 0, 0, 0, 4, 4, 4, 4, 32, 0, 0, 4, 4, 720900, 4, 0, 0, 0, 4, 4, 720900, 4, 32, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 4, 4, 4, 32, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 131073, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262145, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 393217, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65537, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 851969, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", 128, 297.95, -2, 128, 393.95, 8, 128, 515.95, 238, 128, 127.95, 237, "@"), new Array(0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 32, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 32, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 32, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 32, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 32, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 32, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, "#", "@"), new Array(1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 917505, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 917505, 4, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, "#", "@"), new Array(1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 4, 1, 1, 0, 0, 0, 131073, 1, 0, 0, 0, 0, 0, 131073, 1, 0, 0, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 851969, 1, 0, 0, 0, 0, 0, 851969, 1, 0, 0, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, "#", 128, 387.95, 76, 128, 419.95, 387.95, 128, 144.95, 273.95, "@"), new Array(1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 655361, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 851969, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 917505, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 1179649, 0, 1, 655361, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 4, 1, 1, 0, 0, 0, 0, 131073, 4, 1, 0, 0, 0, 0, 1, 1, 4, 16, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 720897, 4, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 16, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 655361, 655361, 655361, 655361, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(4, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 4, 655361, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 4, 32, 0, 0, 1, 1, 1048577, 4, 0, 0, 0, 1, 1, 1, 4, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 851969, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 4, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1441793, 4, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 4, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 131073, 4, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 589825, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 364.95, 115, 128, 376.95, 369.95, 128, 244.95, 328.95, 128, 207.95, 101, 128, 446.95, 294.95, 128, 180.95, 217, 128, 466.95, 155, 128, 300.95, 46, "@"), new Array(1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 917505, 4, 1, 1, 32, 64, 0, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 4, 1, 1, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 1, 65537, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 1, 1, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 1, 262145, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 1, 1, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 1, 131073, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 655361, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1376257, 0, 1, 32, 0, 0, 0, 1376257, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 255.95, 112, 128, 336.95, 97, 128, 308.95, 347.95, 128, 369.95, 337.95, 128, 423.95, 192, 128, 471.95, 186, 128, 188.95, 228, "@"), new Array(1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 851969, 16, 64, 0, 1, 0, 0, 720897, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1441793, 16, 64, 0, 1, 0, 0, 1441793, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 655361, 16, 64, 0, 1, 0, 0, 655361, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1179649, 16, 64, 0, 1, 0, 0, 1245185, 0, 0, 0, "#", "@"), new Array(1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 917505, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 917505, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 32, 64, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 131073, 1, 1, 1, 32, 64, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 458753, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 720897, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1376257, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1376257, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 32, 64, 0, 1, 4, 4, 4, 0, 0, 0, 1, 4, 4, 4, 32, 64, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 163.95, 156, 128, 161.95, 323.95, "@")); level = 0; MAX_LEVEL = levelData.length - 1; function startCountedStarBurst(x, y, numStars, obj) { var objD; var rnd; var thisStar; var iAngle; var i = 0; while (i < numStars) { objD = depth[STAR_OBJ]; attachMovie(obj, "Star" + objD[CURRENT_DEPTH], objD[CURRENT_DEPTH]); thisStar = _root["Star" + objD[CURRENT_DEPTH]]; updateDepth(objD); thisStar._x = x; thisStar._y = y; iAngle = random(360); thisStar.vx = Math.sin(iAngle); thisStar.vy = Math.cos(iAngle); i++; } } PUVAR_RANDOM = 0; PUVAR_CLIP_NAME = 1; PUVAR_DURATION = 2; PUVAR_LEVEL = 3; PUVAR_SCORE = 4; PUVAR_VERSION = 5; PU_SHIFT = 16; PU_MASK = 255; PU_DRAIN_COVER = 22; PU_NO_GRAVITY = 1; PU_FIREBALL = 2; PU_DOUBLE_BAT = 3; PU_REVERSE_GRAVITY = 4; PU_SPEED_UP = 5; PU_SPEED_DOWN = 6; PU_LARGE_BAT = 7; PU_SMALL_BAT = 8; PU_MULTI_BALL = 9; PU_BOMB = 10; PU_NEXT_LEVEL = 11; PU_REVERSE_BAT = 12; PU_MULTI_LASER = 13; PU_SINGLE_LASER = 14; PU_CHERRY = 15; PU_RASPBERRY = 16; PU_BANANA = 17; PU_BANANA_BUNCH = 18; PU_MELON = 19; PU_EATEN_MELON = 20; PU_DIAMOND = 21; PU_NUM = 23; PU_NONE = 16777215 /* 0xFFFFFF */; pickupObject = new Array(); pickupObject[PU_DRAIN_COVER] = [50, "DrainCoverPickup", 700, 1, 0, _root.VERSION_DEMO]; pickupObject[PU_NO_GRAVITY] = [40, "NoGravityPickup", 300, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_FIREBALL] = [40, "FireballPickup", 900, 4, 0, _root.VERSION_DEMO]; pickupObject[PU_DOUBLE_BAT] = [85, "DoubleBatPickup", 900, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_REVERSE_GRAVITY] = [50, "ReverseGravityPickup", 300, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_SPEED_UP] = [90, "SpeedUpPickup", -1, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_SPEED_DOWN] = [90, "SpeedDownPickup", -1, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_LARGE_BAT] = [90, "BigBatPickup", 800, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_SMALL_BAT] = [70, "LittleBatPickup", 600, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_MULTI_BALL] = [10, "MultiBallPickup", -1, 0, 0, _root.VERSION_FULL]; pickupObject[PU_BOMB] = [95, "BombPickup", -1, 2, 0, _root.VERSION_DEMO]; pickupObject[PU_NEXT_LEVEL] = [5, "NextLevelPickup", -1, 3, 0, _root.VERSION_DEMO]; pickupObject[PU_REVERSE_BAT] = [5, "ReverseBatPickup", 600, 15, 0, _root.VERSION_FULL]; pickupObject[PU_MULTI_LASER] = [15, "MultiLaserPickup", 300, 6, 0, _root.VERSION_FULL]; pickupObject[PU_SINGLE_LASER] = [10, "SingleLaserPickup", 100, 8, 0, _root.VERSION_FULL]; pickupObject[PU_CHERRY] = [95, "CherryPickup", -1, 5, 150, _root.VERSION_DEMO]; pickupObject[PU_RASPBERRY] = [95, "RaspberryPickup", -1, 0, 10, _root.VERSION_DEMO]; pickupObject[PU_BANANA] = [95, "BananaPickup", -1, 0, 5, _root.VERSION_DEMO]; pickupObject[PU_BANANA_BUNCH] = [80, "BananaBunchPickup", -1, 4, 100, _root.VERSION_FULL]; pickupObject[PU_MELON] = [95, "MelonPickup", -1, 0, 20, _root.VERSION_DEMO]; pickupObject[PU_EATEN_MELON] = [95, "EatenMelonPickup", -1, 0, 5, _root.VERSION_DEMO]; pickupObject[PU_DIAMOND] = [5, "DiamondPickup", -1, 9, 1000, _root.VERSION_FULL]; function drawNum(aNum, aX, aY, aObj, aCircle, aDeg, aDepth, showZeros, aScale) { drawNum(aNum, aX, aY, aObj, aCircle, aDeg, aDepth, showZeros, aScale, false); } function drawSingleNum(aNum, aX, aY, aObj, showZeros, centred, aScale) { if (!aScale) { aScale = 100; } var addName = "_gfx"; var aDepth = 10101010110; var hundreds_thousands = int(aNum / 100000); aNum = aNum - (hundreds_thousands * 100000); var tens_thousands = int(aNum / 10000); aNum = aNum - (tens_thousands * 10000); var thousands = int(aNum / 1000); aNum = aNum - (thousands * 1000); var hundreds = int(aNum / 100); aNum = aNum - (hundreds * 100); var tens = int(aNum / 10); aNum = aNum - (tens * 10); var ones = int(aNum); ht = "hundreds_thousands" + addName; th = "tens_thousands" + addName; t = "thousands" + addName; h = "hundreds" + addName; ts = "tens" + addName; o = "ones" + addName; var len = 1; if ((hundreds_thousands != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(hundreds_thousands + addName, ht, aDepth++); } if ((tens_thousands != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(tens_thousands + addName, th, aDepth++); } if ((thousands != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(thousands + addName, t, aDepth++); } if ((hundreds != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(hundreds + addName, h, aDepth++); } if ((tens != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(tens + addName, ts, aDepth++); } aObj.attachMovie(ones + addName, o, aDepth++); aObj[ht]._xscale = (aObj[ht]._yscale = aScale); aObj[th]._xscale = (aObj[th]._yscale = aScale); aObj[t]._xscale = (aObj[t]._yscale = aScale); aObj[h]._xscale = (aObj[h]._yscale = aScale); aObj[ts]._xscale = (aObj[ts]._yscale = aScale); aObj[o]._xscale = (aObj[o]._yscale = aScale); var charWidth = (20 * (aScale / 100)); var charSpacing = (charWidth - (10 * (aScale / 100))); aObj[ht]._y = (aObj[th]._y = (aObj[t]._y = (aObj[h]._y = (aObj[ts]._y = (aObj[o]._y = aY))))); if (centred) { var leftmost = (0.5 * ((charWidth * len) - charSpacing)); aObj[ht]._x = (aObj[th]._x = (aObj[t]._x = (aObj[h]._x = (aObj[ts]._x = (aObj[o]._x = aX - leftmost))))); } else { aObj[ht]._x = (aObj[th]._x = (aObj[t]._x = (aObj[h]._x = (aObj[ts]._x = (aObj[o]._x = aX))))); } len--; aObj[ht]._x = aObj[ht]._x + (charWidth * (len - 5)); aObj[th]._x = aObj[th]._x + (charWidth * (len - 4)); aObj[t]._x = aObj[t]._x + (charWidth * (len - 3)); aObj[h]._x = aObj[h]._x + (charWidth * (len - 2)); aObj[ts]._x = aObj[ts]._x + (charWidth * (len - 1)); aObj[o]._x = aObj[o]._x + (charWidth * len); } function drawNum(aNum, aX, aY, aObj, aCircle, aDeg, aDepth, showZeros, aScale, aUseGfx) { if (aUseGfx) { addName = "_gfx"; } else { addName = ""; } if (aNum < 0) { aNum = 0; } aObj._x = aX; aObj._y = aY; var hundreds_hundreds_thousands = int(aNum / 10000000); aNum = aNum - (hundreds_hundreds_thousands * 10000000); var tens_hundreds_thousands = int(aNum / 1000000); aNum = aNum - (tens_hundreds_thousands * 1000000); var hundreds_thousands = int(aNum / 100000); aNum = aNum - (hundreds_thousands * 100000); var tens_thousands = int(aNum / 10000); aNum = aNum - (tens_thousands * 10000); var thousands = int(aNum / 1000); aNum = aNum - (thousands * 1000); var hundreds = int(aNum / 100); aNum = aNum - (hundreds * 100); var tens = int(aNum / 10); aNum = aNum - (tens * 10); var ones = int(aNum); hht = "hundreds_hundreds_thousands" + addName; tht = "tens_hundreds_thousands" + addName; ht = "hundreds_thousands" + addName; th = "tens_thousands" + addName; t = "thousands" + addName; h = "hundreds" + addName; ts = "tens" + addName; o = "ones" + addName; if ((hundreds_hundreds_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(hundreds_hundreds_thousands + addName, hht, aDepth++); } if ((tens_hundreds_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(tens_hundreds_thousands + addName, tht, aDepth++); } if ((hundreds_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(hundreds_thousands + addName, ht, aDepth++); } if ((tens_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(tens_thousands + addName, th, aDepth++); } if ((thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(thousands + addName, t, aDepth++); } if ((hundreds != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(hundreds + addName, h, aDepth++); } if ((tens != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(tens + addName, ts, aDepth++); } aObj.attachMovie(ones + addName, o, aDepth++); if (aUseGfx) { aObj[hht]._xscale = (aObj[hht]._yscale = aScale); aObj[tht]._xscale = (aObj[tht]._yscale = aScale); aObj[ht]._xscale = (aObj[ht]._yscale = aScale); aObj[th]._xscale = (aObj[th]._yscale = aScale); aObj[t]._xscale = (aObj[t]._yscale = aScale); aObj[h]._xscale = (aObj[h]._yscale = aScale); aObj[ts]._xscale = (aObj[ts]._yscale = aScale); aObj[o]._xscale = (aObj[o]._yscale = aScale); } else { aObj[hht].num._xscale = (aObj[hht].num._yscale = aScale); } aObj[tht].num._xscale = (aObj[tht].num._yscale = aScale); aObj[ht].num._xscale = (aObj[ht].num._yscale = aScale); aObj[th].num._xscale = (aObj[th].num._yscale = aScale); aObj[t].num._xscale = (aObj[t].num._yscale = aScale); aObj[h].num._xscale = (aObj[h].num._yscale = aScale); aObj[ts].num._xscale = (aObj[ts].num._yscale = aScale); aObj[o].num._xscale = (aObj[o].num._yscale = aScale); if (!aCircle) { var charWidth = (20 / (100 / aScale)); aObj[hht]._x = aObj[hht]._x + charWidth; aObj[tht]._x = aObj[tht]._x + (charWidth * 2); aObj[ht]._x = aObj[ht]._x + (charWidth * 3); aObj[th]._x = aObj[th]._x + (charWidth * 4); aObj[t]._x = aObj[t]._x + (charWidth * 5); aObj[h]._x = aObj[h]._x + (charWidth * 6); aObj[ts]._x = aObj[ts]._x + (charWidth * 7); aObj[o]._x = aObj[o]._x + (charWidth * 8); } else { var r = (_root.txtRingWidth / 2); aObj[hht].num._y = -r; aObj[tht].num._y = -r; aObj[ht].num._y = -r; aObj[th].num._y = -r; aObj[t].num._y = -r; aObj[h].num._y = -r; aObj[ts].num._y = -r; aObj[o].num._y = -r; var charDeg = (5 / (100 / aScale)); aObj.pickupGfx._rotation = aDeg + (charDeg * 5); aObj[hht]._rotation = aDeg; aObj[tht]._rotation = aDeg + charDeg; aObj[ht]._rotation = aDeg + (charDeg * 2); aObj[th]._rotation = aDeg + (charDeg * 3); aObj[t]._rotation = aDeg + (charDeg * 4); aObj[h]._rotation = aDeg + (charDeg * 5); aObj[ts]._rotation = aDeg + (charDeg * 6); aObj[o]._rotation = aDeg + (charDeg * 7); } }
Instance of Symbol 386 MovieClip "timerObj" in Frame 1
onClipEvent (load) { value = 0; maxValue = 100; valueStep = 100 / maxValue; dp = 1000; totalFileSize = _root.getBytesTotal(); bytesLoaded = _root.getBytesLoaded(); amountLoaded = bytesLoaded / totalFileSize; _root.createEmptyMovieClip("num", 1919); } onClipEvent (enterFrame) { bytesLoaded = _root.getBytesLoaded(); amountLoaded = bytesLoaded / totalFileSize; percentLoaded = int(amountLoaded * 100); _root.drawSingleNum(percentLoaded, 320, 260, _root.num, false, true, 100); if (amountLoaded >= 1) { _root.num.removeMovieClip(); _root.gotoAndPlay("Intro"); } }
Frame 2
stop();
Frame 3
gotoAndPlay (4);
Frame 4
_root.hiScoreCall = 0; _root.hiScoresChanged = false; _root.page = "MAINMENU"; _root.gameInPlay = false; Key.removeListener(_root.menuListener); _root.menuListener = new Object(); _root.menuListener.onKeyDown = function () { if (!_root.gameInPlay) { if (_root.page == "MAINMENU") { _root.gotoAndPlay(50); } if (Key.isDown(38)) { if (_root.page == "MAINMENU") { _root.selectedItem--; if (_root.selectedItem < 0) { _root.selectedItem = 3; } } } if (Key.isDown(40)) { if (_root.page == "MAINMENU") { _root.selectedItem++; if (_root.selectedItem > 3) { _root.selectedItem = 0; } } } if (Key.isDown(37) && ((_root.page == "INSTRUCTIONS") || (_root.page == "HISCORE"))) { _root.selectedItem--; if (_root.selectedItem < 0) { _root.selectedItem = 2; } } if (Key.isDown(39) && ((_root.page == "INSTRUCTIONS") || (_root.page == "HISCORE"))) { _root.selectedItem++; if (_root.selectedItem > 2) { _root.selectedItem = 0; } } if (Key.isDown(32) || (Key.isDown(13))) { switch (_root.page) { case "MAINMENU" : switch (_root.selectedItem) { case 0 : Key.removeListener(_root.someListener); _root.gotoAndPlay("PlayGame"); break; case 1 : _root.gotoAndPlay("Instructions"); break; case 2 : _root.gotoAndPlay("Credits"); } break; case "INSTRUCTIONS" : switch (_root.selectedItem) { case 0 : _root.gotoAndPlay("Intro", "StaticMainMenu"); break; case 1 : Key.removeListener(_root.someListener); _root.gotoAndPlay("playGame"); break; case 2 : _root.gotoAndPlay("gotoHiScore"); } break; case "HISCORE" : switch (_root.selectedItem) { case 0 : _root.gotoAndPlay("Intro", "StaticMainMenu"); break; case 1 : Key.removeListener(_root.someListener); _root.gotoAndPlay("playGame"); break; case 2 : _root.gotoAndPlay("gotoInstructions"); } break; case "CREDITS" : case "NAG" : case "ATTRACT_INSTRUCTIONS" : case "ATTRACT_HISCORE" : _root.gotoAndPlay("Intro", "StaticMainMenu"); } } if (_root.page == "MAINMENU") { _root["button" + selectedItem].gotoAndStop(3); } } }; Key.addListener(_root.menuListener); var name = _root._url; name = name.substr(name.lastIndexOf("/") + 1, name.length); name = name.substr(8, name.length); name = name.substr(0, name.lastIndexOf(".")); _root.game_version = "v." + (int(name) / 100); _root.selectedItem = 0;
Frame 30
Instance of Symbol 394 MovieClip "button0" in Frame 30
on (rollOver) { _root.selectedItem = 0; this.gotoAndPlay(2); _root.gotoAndPlay(50); } on (press) { Key.removeListener(_root.someListener); _root.gotoAndPlay("PlayGame"); }
Instance of Symbol 397 MovieClip "button1" in Frame 33
on (rollOver) { _root.selectedItem = 1; _root.gotoAndPlay(50); } on (press) { _root.gotoAndPlay("Instructions"); }
Instance of Symbol 401 MovieClip "button2" in Frame 36
on (rollOver) { _root.selectedItem = 2; _root.gotoAndPlay(50); } on (press) { _root.gotoAndPlay("Credits"); }
Instance of Symbol 404 MovieClip "button3" in Frame 39
on (rollOver) { _root.selectedItem = 3; _root.gotoAndPlay(50); } on (press) { fscommand ("quit"); fscommand ("close"); }
Instance of Symbol 391 MovieClip "StaticMainMenu" in Frame 48
onClipEvent (enterFrame) { var i = 0; while (i <= 6) { if (i == _root.selectedItem) { if (_root["button" + i]._currentframe != 2) { _root["button" + i].gotoAndPlay(2); } } else if (_root["button" + i]._currentframe != 1) { _root["button" + i].gotoAndPlay(1); } i++; } }
Frame 302
gotoAndPlay (581);
Frame 303
gotoAndPlay (866);
Frame 304
gotoAndPlay (4);
Frame 305
gotoAndPlay (802);
Frame 306
gotoAndPlay (4);
Frame 307
gotoAndPlay (543);
Frame 580
stop();
Frame 581
_root.gameInPlay = false; _root.page = "INSTRUCTIONS";
Instance of Symbol 425 MovieClip in Frame 581
onClipEvent (enterFrame) { var i = 0; while (i <= 2) { if (i == _root.selectedItem) { if (_root["but" + i]._currentframe != 2) { _root["but" + i].gotoAndPlay(2); } } else if (_root["but" + i]._currentframe != 1) { _root["but" + i].gotoAndPlay(1); } i++; } }
Instance of Symbol 394 MovieClip "but1" in Frame 581
on (rollOver) { _root.selectedItem = 1; } on (press) { _root.gotoAndPlay("playGame"); }
Instance of Symbol 441 MovieClip "but0" in Frame 581
onClipEvent (load) { _root.selectedItem = 0; this.gotoAndStop(2); } on (rollOver) { _root.selectedItem = 0; } on (press) { _root.gotoAndPlay("Intro", "StaticMainMenu"); }
Frame 800
gotoAndPlay (4);
Frame 801
gotoAndPlay (866);
Frame 802
stop(); _root.gameInPlay = false; _root.page = "INSTRUCTIONS";
Frame 803
gotoAndPlay (581);
Frame 820
stop();
Frame 866
batHit = new Sound(); batHit.attachSound("brickHit2"); electric = new Sound(); electric.attachSound("electric"); laserShoot = new Sound(); laserShoot.attachSound("LaserShoot"); brickHit = new Sound(); brickHit.attachSound("brickHit1"); clankHit = new Sound(); clankHit.attachSound("clankHit"); powerUp = new Sound(); powerUp.attachSound("powerUp"); powerUpHitBat = new Sound(); powerUpHitBat.attachSound("powerUpHitBat"); nextLevelSnd = new Sound(); nextLevelSnd.attachSound("nextLevel"); drainHit = new Sound(); drainHit.attachSound("ballDrop"); newBall = new Sound(); newBall.attachSound("newBall"); explode = new Sound(); explode.attachSound("explode"); function MAKEVECTOR(vx, vy, vz) { this.x = vx; this.y = vy; this.z = vz; } function tVector(x, y, z) { this.x = x; this.y = y; this.z = z; this.MAKEVECTOR = _root.MAKEVECTOR; } function f_contact() { this.ball = ball; this.ball1 = ball1; this.normal = new tVector(); this.type = "none"; this.Kr = 0; } function tBall() { this.pos = new tVector(); this.v = new tVector(); this.f = new tVector(); this.angmom = new tVector(); this.torque = new tVector(); this.oneOverM = 0; this.flags = 0; this.radius = 0; this.hits = 2; } function t_CollisionPlane() { this.normal = new tVector(); this.d = 0; } function VectorSquaredLength(v) { return(((v.x * v.x) + (v.y * v.y)) + (v.z * v.z)); } function VectorLength(v) { return(Math.sqrt(VectorSquaredLength(v))); } function NormalizeVector(v) { var len = VectorLength(v); if (len != 0) { v.x = v.x / len; v.y = v.y / len; v.z = v.z / len; } return(v); } function DotProduct(v1, v2) { return(((v1.x * v2.x) + (v1.y * v2.y)) + (v1.z * v2.z)); } function CrossProduct(v1, v2) { var result = new tVector(); result.x = (v1.y * v2.z) - (v1.z * v2.y); result.y = (v1.z * v2.x) - (v1.x * v2.z); result.z = (v1.x * v2.y) - (v1.y * v2.x); return(result); } function VectorSquaredDistance(v1, v2) { return((((v1.x - v2.x) * (v1.x - v2.x)) + ((v1.y - v2.y) * (v1.y - v2.y))) + ((v1.z - v2.z) * (v1.z - v2.z))); } function ScaleVector(v, scale) { var result = new tVector(); result.x = v.x * scale; result.y = v.y * scale; result.z = v.z * scale; return(result); } function VectorSum(v1, v2) { var result = new tVector(); result.x = v1.x + v2.x; result.y = v1.y + v2.y; result.z = v1.z + v2.z; return(result); } function VectorDifference(v1, v2) { var result = new tVector(); result.x = v1.x - v2.x; result.y = v1.y - v2.y; result.z = v1.z - v2.z; return(result); } Math.sinD = function (angle) { return(Math.sin(angle * (Math.PI/180))); }; Math.cosD = function (angle) { return(Math.cos(angle * (Math.PI/180))); }; Math.acosD = function (ratio) { return(Math.acos(ratio) * 57.2957795130823); }; _global.Vector = function (x, y) { this.x = x; this.y = y; }; Vector.prototype.toString = function () { var rx = (Math.round(this.x * 1000) / 1000); var ry = (Math.round(this.y * 1000) / 1000); return(((("[" + rx) + ", ") + ry) + "]"); }; Vector.prototype.reset = function (x, y) { this.constructor(x, y); }; Vector.prototype.getClone = function () { return(new this.constructor(this.x, this.y)); }; Vector.prototype.plus = function (v) { with (this) { x = x + v.x; y = y + v.y; } }; Vector.prototype.plusNew = function (v) { with (this) { return(new constructor(x + v.x, y + v.y)); } }; Vector.prototype.minus = function (v) { with (this) { x = x - v.x; y = y - v.y; } }; Vector.prototype.minusNew = function (v) { with (this) { return(new constructor(x - v.x, y - v.y)); } }; Vector.prototype.negate = function () { with (this) { x = -x; y = -y; } }; Vector.prototype.negateNew = function (v) { with (this) { return(new constructor(-x, -y)); } }; Vector.prototype.scale = function (s) { with (this) { x = x * s; y = y * s; } }; Vector.prototype.scaleNew = function (s) { with (this) { return(new constructor(x * s, y * s)); } }; Vector.prototype.getLength = function () { with (this) { return(Math.sqrt((x * x) + (y * y))); } }; Vector.prototype.setLength = function (len) { var r = this.getLength(); if (r) { this.scale(len / r); } else { this.x = len; } }; Vector.prototype.getAngle = function () { return(_root.atan2(this.y, this.x)); }; Vector.prototype.setAngle = function (ang) { with (this) { var r = getLength(); x = r * _root.cos(ang); y = r * _root.sin(ang); } }; Vector.prototype.rotate = function (ang) { with (Math) { var ca = _root.cos(ang); var sa = _root.sin(ang); } with (this) { var rx = ((x * ca) - (y * sa)); var ry = ((x * sa) + (y * ca)); x = rx; y = ry; } }; Vector.prototype.rotateNew = function (ang) { with (this) { var v = new constructor(x, y, z); } v.rotate(ang); return(v); }; Vector.prototype.dot = function (v) { with (this) { return((x * v.x) + (y * v.y)); } }; Vector.prototype.getNormal = function () { with (this) { new constructor(-y, x); } }; Vector.prototype.isNormalTo = function (v) { return(this.dot(v) == 0); }; Vector.prototype.angleBetween = function (v) { var dp = this.dot(v); var cosAngle = (dp / (this.getLength() * v.getLength())); return(Math.acos(cosAngle)); }; with (Vector.prototype) { addProperty("length", getLength, setLength); addProperty("angle", getAngle, setAngle); } n_walls = 5; n_maxballs = 3; CollisionObject = function (aObject, aType, aSubType, aDepth) { this.object = aObject; this.objectType = aType; this.objectSubType = aSubType; this.objectDepth = aDepth; }; CollisionList = function () { this.objectList = new Array(); this.size = 0; }; CollisionList.prototype.addObject = function (aObject, aType, aSubType, aDepth) { thisObject = new CollisionObject(aObject, aType, aSubType, aDepth); this.size = this.objectList.push(thisObject); this.objectList.sort(order); }; CollisionList.prototype.removeObject = function (aObject) { var i; i = 0; while (i < this.objectList.length) { var thisObject = this.objectList[i]; if (thisObject.object == aObject) { this.objectList.splice(i, 1); return(undefined); } i++; } }; CollisionList.prototype.destroyAllObjects = function () { i = 0; while (i < this.objectList.length) { var thisObject = this.objectList[i]; thisObject.object.removeMovieClip(); i++; } this.objectList.splice(0, 0); }; CollisionList.prototype.getObject = function (aObject) { var i; i = 0; while (i < this.objectList.length) { var thisObject = this.objectList[i]; if (thisObject.object == aObject) { return(thisObject.object); } i++; } return("Unknown object: " + aObject); }; CollisionList.prototype.getAllObjectOfType = function (aObjectType) { var i; returnVal = new Array(); i = 0; while (i < this.objectList.length) { if (aObjectType == objectList[i].objectType) { retVal.push(objectList[i]); } i++; } return(retVal); }; CollisionList.prototype.order = function (a, b) { var at = a.objectType; var bt = b.objectType; if (at < bt) { return(-1); } if (at > bt) { return(1); } return(0); }; function spawnRandomPickup(x, y) { _root.timeSinceLastRandom++; _root.timeSinceLastRandom = 0; var levelRnd = false; if (_root.DEBUG) { if (random(100) < 65) { levelRnd = true; } } else if (random(100) < (35 + (_root.level / 2))) { levelRnd = true; } if (levelRnd) { var pickupChooser = random(100); var pickupsChosen = 0; var pickupChooserArray = new Array(); var i = 0; while (i < _root.PU_NUM) { if ((pickupObject[i][PUVAR_LEVEL] <= _root.level) && (pickupObject[i][PUVAR_VERSION] <= _root.VERSION)) { if (pickupObject[i][PUVAR_RANDOM] >= pickupChooser) { pickupChooserArray[pickupsChosen] = i; pickupsChosen++; } } i++; } if (pickupsChosen > 0) { var rnd = pickupChooserArray[random(pickupsChosen)]; spawnPickup(rnd, x, y); } } } function spawnPickup(pickupType, x, y) { powerUp.start(); var txt = ""; var objD = depth[PICKUP_OBJ][CURRENT_DEPTH]; updateDepth(depth[PICKUP_OBJ]); _root.attachMovie(pickupObject[pickupType][PUVAR_CLIP_NAME], "Pickup" + objD, objD); thisPickup = _root["Pickup" + objD]; thisPickup._x = x; thisPickup._y = y; _root.colList.addObject(thisPickup, PICKUP_OBJ, pickupType, objD); } function updatePickup(aPickup) { var obj = aPickup.object; if (random(100) > 90) { var i = depth[STAR_OBJ][CURRENT_DEPTH]; updateDepth(depth[STAR_OBJ]); _root.attachMovie("Star", "Star" + i, i); var thisStar = _root["Star" + i]; thisStar._x = (obj._x + random(obj._width)) - (obj._width / 2); thisStar._y = (obj._y + random(obj._height)) - (obj._height / 2); } obj._x = obj._x - ((obj._x - _root.halfWidth) / 40); obj._y = obj._y - ((obj._y - _root.halfHeight) / 40); if ((((obj._x > (_root.drain._x - 10)) && (obj._x < (_root.drain._x + 10))) && (obj._y > (_root.drain._y - 10))) && (obj._y < (_root.drain._y + 10))) { colList.removeObject(obj); obj.removeMovieClip(); return(undefined); } b = 0; while (b <= 1) { if (b == 0) { thisBat = _root.bat; } else { thisBat = _root.bat1; } if (thisBat) { if (thisBat.hitTest(obj)) { obj.pos = new Vector(obj._x, obj._y); obj.vel = new Vector(-101010, -101010); wallNum = 0; while (wallNum < thisBat.walls) { wall = thisBat["wall" + wallNum]; if (testHit(obj, wall, false, true)) { powerUpHitBat.start(); bat.addPickup(aPickup.objectSubType, obj._x, obj._y); obj._visible = false; colList.removeObject(obj); obj.removeMovieClip(); break; } wallNum++; } } } b++; } } function drawPickupVals() { if (_root.bat.pickupCount > -1) { _root.pickupCounter.gotoAndPlay((31 - int((_root.bat.cpc / _root.bat.pickupCount) * 31)) + 1); } else if (_root.pickupCounter._currentframe != 1) { _root.pickupCounter.gotoAndPlay(1); } } _root.timeSinceLastRandom = 0; function testHit(thisBall, wall, adjustAngle, collisionOnly) { var tp = new Object(); var temp = thisBall.hitTest(wall); if (temp) { var px = thisBall.pos.x; var py = thisBall.pos.y; var br = (thisBall._width / 2); var wallWidth = (wall._width / 2); tp.x = wall._x; tp.y = wall._y; wall._parent.localToGlobal(tp); var x = (px - tp.x); var y = (py - tp.y); var angle = ((wall._parent._rotation + wall._rotation) * _root.rad); var cosa = cos(angle); var sina = sin(angle); var xpos = ((cosa * x) + (sina * y)); if (!((xpos >= (-(wallWidth + br))) && (xpos <= (wallWidth + br)))) { return(false); } var ypos = ((cosa * y) - (sina * x)); var vy1 = ((cosa * thisBall.vel.y) - (sina * thisBall.vel.x)); if ((Math.abs(ypos) < br) && (vy1 < 0)) { if (!collisionOnly) { Set("thisBall/pos/:x", ((cosa * xpos) - (sina * ypos)) + tp.x); Set("thisBall/pos/:y", ((cosa * ypos) + (sina * xpos)) + tp.y); if (adjustAngle) { var reflectAng = (angle - ((xpos / 20) - __90__)); thisBall.vel.setAngle(reflectAng); thisBall.vel.scale(1.5); } else { thisBall.vel.setAngle((2 * angle) - thisBall.vel.getAngle()); } } return(true); } } return(false); } function circleHitTest(b1, b2, bUpdate, bInner, b1radius, b2radius) { var tx = (b1.pos.x - b2._x); var ty = (b1.pos.y - b2._y); var d = Math.sqrt((tx * tx) + (ty * ty)); var bTest = false; if (bInner) { if (d > (b2radius - b1radius)) { bTest = true; } } else if (d < (b1radius + b2radius)) { bTest = true; } if (bTest) { if (bUpdate) { var current_angle = Math.atan2(b1.pos.x - b2._x, b1.pos.y - b2._y); if (bInner) { b1.pos.x = b2._x + ((b2radius - b1radius) * sin(current_angle)); b1.pos.y = b2._y + ((b2radius - b1radius) * cos(current_angle)); } else { b1.pos.x = b2._x + ((b2radius + b1radius) * sin(current_angle)); b1.pos.y = b2._y + ((b2radius + b1radius) * cos(current_angle)); } var vx = b1.vel.x; var vy = b1.vel.y; var x = (b2radius * sin(current_angle)); var y = (b2radius * cos(current_angle)); var x2 = (x * x); var y2 = (y * y); var x2y2 = (x2 + y2); var nvx = (((vx * (y2 - x2)) - (((2 * vy) * x) * y)) / x2y2); var nvy = (((vy * (x2 - y2)) - (((2 * vx) * x) * y)) / x2y2); b1.vel.x = nvx; b1.vel.y = nvy; b1.vel.scale(1.3); } return(true); } return(false); } var batAngleStep = (__180__ / 60); function calcDistanceFromCentre(thisBall) { var x; var y; x = thisBall.pos.x - _root.halfWidth; y = thisBall.pos.y - _root.halfHeight; distanceFromCentre = Math.sqrt((x * x) + (y * y)); } function checkBeamCollisions() { if (_root.bat.hasPickup(_root.PU_SINGLE_LASER) != -1) { var sector = getSectorFromAngle((_root.bat._rotation - 90) * _root.ang2rad); p = 0; while (p < numBrickLayers) { brick = bricks["brick_" + ((sector * numBrickLayers) + p)]; if (brick) { brick.hitAction.hitAction(1, ballVY); } p++; } } } function checkBulletCollisions() { if (_root.bat.activeBullets > 0) { var min = _root.depth[_root.BULLET_OBJ][_root.MIN_DEPTH]; var max = ((min + _root.depth[_root.BULLET_OBJ][_root.NUM_OBJECTS]) + 1); var p; var thisObj; var d = min; while (d <= max) { thisObj = _root["sb" + d]; if (thisObj) { var bv = new object(); bv.x = thisObj.bulletGfx._x; bv.y = thisObj.bulletGfx._y; thisObj.localToGlobal(bv); if (_root.bricks.hitTest(bv.x, bv.y, true) || (_root.bricks.hitTest(bv.x + (thisObj.vx / 2), bv.y + (thisObj.vy / 2), true))) { var sector = getSector(bv.x, bv.y); _root.bat.activeBullets--; _root.startParticleExplosion(bv.x, bv.y); _root.explode.start(); p = 0; while (p < numBrickLayers) { brick = bricks["brick_" + ((sector * numBrickLayers) + p)]; if (brick) { brick.hitAction.hitAction(99999, ballVY); break; } p++; } thisObj.removeMovieClip(); return; } } d++; } } } function getSectorFromAngle(angle) { var rb = bricks; angle = angle + __90__; if (angle > __360__) { angle = angle - __360__; } else if (angle < 0) { angle = angle + __360__; } return(int(angle / brickSizeAngleRad)); } function getSector(x, y) { var angle = atan2(y - halfHeight, x - halfWidth); return(getSectorFromAngle(angle)); } function CheckCollisions(thisBall) { var i; var j; var k; var brick; var wallNum; calcDistanceFromCentre(thisBall); checkBulletCollisions(); checkBeamCollisions(); checkSpecials(thisBall); checkHitOuterRing(thisBall); _root.bounce = 0.9; var sector = getSector(thisBall.pos.x, thisBall.pos.y); j = sector - 1; while (j <= (sector + 1)) { checkSector(j, thisBall); if (thisBall.bounced) { break; } j++; } if (!thisBall.bounced) { checkBatCollision(bat, thisBall); if (bat1) { checkBatCollision(bat1, thisBall); } } checkDrainCollision(thisBall); } function checkHitOuterRing(thisBall) { if (thisBall._visible) { if (circleHitTest(thisBall, _root.boundingRing, true, true, thisBall._width / 2, _root.ringWidth / 2)) { clankHit.start(); _root.startCountedStarBurst(thisBall.pos.x, thisBall.pos.y, 4, "QuickStar" + (random(2) + 1)); } } } function checkBatCollision(thisBat, thisBall) { if (distanceFromCentre < distanceBrickLayers[numBrickLayers - 2]) { _root.bounce = 1.2; var wall; var wallNum; wallNum = 0; while (wallNum < thisBat.walls) { wall = thisBat["wall" + wallNum]; adjustAngle = true; if (testHit(thisBall, wall, adjustAngle, false)) { if (thisBall.vel.getLength() < 8) { thisBall.vel.setLength(8); } batHit.start(); startCountedStarBurst(thisBall.pos.x, thisBall.pos.y, 4, "QuickStar" + (random(2) + 1)); thisBall.bounced = true; return(undefined); } wallNum++; } } } function checkDrainCollision(thisBall) { if (distanceFromCentre < distanceBrickLayers[numBrickLayers - 1]) { if (_root.invulnerability > 0) { if (circleHitTest(thisBall, _root.invuln, true, false, thisBall._width / 2, _root.drainCoverRadius)) { thisBall.vel.scale(1.35); clankHit.start(); thisBall.bounced = true; _root.startCountedStarBurst(thisBall.pos.x, thisBall.pos.y, 4, "QuickStar" + (random(2) + 1)); } } else if (bat.hasPickup(PU_DRAIN_COVER) != -1) { if (circleHitTest(thisBall, /:DrainCover, true, false, thisBall._width / 2, _root.drainCoverRadius)) { thisBall.vel.scale(1.35); clankHit.start(); thisBall.bounced = true; _root.startCountedStarBurst(thisBall.pos.x, thisBall.pos.y, 4, "QuickStar" + (random(2) + 1)); } } else if ((((((thisBall.pos.x + thisBall.radius) < (drain._x + drain.drainRadius)) && ((thisBall.pos.x - thisBall.radius) > (drain._x - drain.drainRadius))) && ((thisBall.pos.y + thisBall.radius) < (drain._y + drain.drainRadius))) && ((thisBall.pos.y - thisBall.radius) > (drain._y - drain.drainRadius))) && (thisBall._currentframe < 5)) { drainHit.start(); thisBall.gotoAndPlay(5); } } } function checkBallCollision(thisBall) { } function checkSpecials(thisBall) { var brick; var k = _root.specialBricks; while (k < (_root.specialBricks + _root.numSpecialBricks)) { brick = _root.bricks["brick_" + k]; if (brick) { if (circleHitTest(thisBall, brick, true, false, thisBall._width / 2, _root.drainCoverRadius)) { _root.clankHit.start(); thisBall.bounced = true; _root.startCountedStarBurst(thisBall.pos.x, thisBall.pos.y, 4, "QuickStar" + (random(2) + 1)); } } k++; } } function calcZones() { var diameter = 15.4; p = 0; while (p < numBrickLayers) { minDist[p] = distanceBrickLayers[p] - diameter; if (minDist[p] < 0) { minDist[p] = 0; } if (p == 0) { maxDist[p] = 1000; } else { maxDist[p] = distanceBrickLayers[p - 1] + diameter; } p++; } } function checkSector(j, thisBall) { var p; var brick; var wall; p = 0; while (p < numBrickLayers) { if ((distanceFromCentre >= minDist[p]) && (distanceFromCentre <= maxDist[p])) { brick = bricks["brick_" + ((j * numBrickLayers) + p)]; if (brick) { var wall; var wallNum = 0; while (wallNum < brick.walls) { wall = brick["wall" + wallNum]; ballVY = thisBall.pos; if (!(brick.type & BR_NORMAL)) { reboundThis = false; } else if ((bat.hasPickup(PU_FIREBALL) == -1) || (bat.hasBomb)) { reboundThis = false; } else { reboundThis = true; } if (testHit(thisBall, wall, false, reboundThis)) { if (brick.brickType != BR_NORMAL) { thisBall.vel.scale(1.1); } else { thisBall.vel.scale(0.9); } _root.startCountedStarBurst(thisBall.pos.x, thisBall.pos.y, 4, "QuickStar" + (random(2) + 1)); thisBall.bounced = true; if (bat.hasBomb) { bat.hasBomb = false; var frame = 2; if (bat.hasPickup(PU_FIREBALL) != -1) { frame = 3; } var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; if (thisBall._currentframe != frame) { thisBall.gotoAndStop(frame); } g++; } brick.hitAction.hitAction(99999, ballVY); _root.explode.start(); _root.createExplosion(thisBall.pos.x, thisBall.pos.y, "Multi"); k_plus = ((j + 1) % numBrickSectors) * numBrickLayers; k_minus = ((j - 1) % numBrickSectors) * numBrickLayers; if (p < (numBrickLayers - 1)) { bricks["brick_" + (((j * numBrickLayers) + p) + 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_plus + p) + 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_minus + p) + 1)].hitAction.hitAction(1000, ballVY); } if (p > 0) { bricks["brick_" + (((j * numBrickLayers) + p) - 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_plus + p) - 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_minus + p) - 1)].hitAction.hitAction(1000, ballVY); } k = j; bricks["brick_" + (k_plus + p)].hitAction.hitAction(1000, ballVY); bricks["brick_" + (k_minus + p)].hitAction.hitAction(1000, ballVY); } else if (reboundThis) { brick.hitAction.hitAction(1000, ballVY); } else { brick.hitAction.hitAction(1, ballVY); } if (!brick) { spawnRandomPickup(thisBall.pos.x, thisBall.pos.y); } return(undefined); } wallNum++; } } } p++; } } function changeSkin() { if ((_root.level > 8) && (_root.level < 18)) { _root.skin = 2; } else if ((_root.level >= 18) && (_root.level < 30)) { _root.skin = 1; } else { _root.skin = 0; } _root.drain.gotoAndStop(_root.skin + 1); _root.Ring.gotoAndStop(_root.skin + 1); _root.bg.gotoAndStop(_root.skin + 1); } function popupScore(anum, x, y) { var d = depth[POINTS_OBJ][CURRENT_DEPTH]; updateDepth(depth[POINTS_OBJ]); _root.attachMovie("PointsScoreNotify", "points" + d, d); _root["points" + d]._x = x; _root["points" + d]._y = y; _root["points" + d].num = anum; } function createExplosion(x, y, type) { var d = depth[EXPLODE_OBJ][CURRENT_DEPTH]; updateDepth(depth[EXPLODE_OBJ]); _root.attachMovie("ExplodeAnim" + type, "eam" + d, d); _root["eam" + d]._x = x; _root["eam" + d]._y = y; } function fireBullet() { var d = _root.depth[_root.BULLET_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.BULLET_OBJ]); _root.attachMovie("SmallBullet", "sb" + d, d); var thisBullet = _root["sb" + d]; thisBullet._rotation = _root.bat._rotation; thisBullet._x = _root.bat._x; thisBullet._y = _root.bat._y; var v = new Vector(0, -2); v.rotate(_root.bat._rotation / _root.rad2ang); thisBullet.vx = v.x; thisBullet.vy = v.y; } function addScore(aAdd) { if (((_root.totalScore + aAdd) % _root.extraLifeScore) < (_root.totalScore % _root.extraLifeScore)) { _root.attachMovie("ExtraLife", "extralife", _root.EXTRA_LIFE_DEPTH); _root.extralife._x = halfWidth; _root.extralife._y = halfHeight; _root.extralife._alpha = 70; addLife(1); } _root.totalScore = _root.totalScore + aAdd; updateScore(); } function resetInvuln() { _root.invuln._visible = true; _root.invulnerability = 200; _root.invuln._alpha = 50; } function updateScore() { drawNum(_root.totalScore, halfWidth, halfHeight, _root.oScore, true, 40, _root.scoreDepth, true, 80); } function addLife(num) { _root.lives = _root.lives + num; drawNum(lives, halfWidth, halfHeight, _root.oLife, true, 2, 10000, false, 80); } function removeLife() { _root.lives--; drawNum(_root.lives, halfWidth, halfHeight, _root.oLife, true, 2, 10000, false, 80); if (lives <= 0) { gotoAndPlay (878); } } function destroyCurrentArena() { var j; var p; var brickNum; _root.bricks.removeMovieClip(); var j = 0; while (j < (numSpecialBricks + 1)) { var brick = _root["brick_" + (brickNum + j)]; if (brick) { brick._visible = false; brick.removeMovieClip(); brick = null; } j++; } depth[BRICK_OBJ][CURRENT_DEPTH] = depth[BRICK_OBJ][MIN_DEPTH]; numSpecialBricks = 0; } function cleanUp() { _root.sbl.removeMovieClip(); _root.oScore.removeMovieClip(); _root.oLife.removeMovieClip(); _root.destroyCurrentArena(); _root.colList.destroyAllObjects(); _root.DrainCover.removeMovieClip(); _root.bat.resetBat(); _root.removeAllBalls(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } } function updateObjects() { var o; var k = 0; while (k < colList.objectList.length) { o = colList.objectList[k]; if (o.objectType == PICKUP_OBJ) { updatePickup(o); } k++; } } function removeAllBalls() { var g = 0; while (g < _root.ballIndex.length) { removeBall(_root["ball" + _root.ballIndex[g]]); g++; } } function removeBall(thisBall) { thisBall._visible = false; var g = 0; while (g < _root.ballIndex.length) { if (_root["ball" + _root.ballIndex[g]] == thisBall) { _root.ballIndex.splice(g, 1); } g++; } _root.ballNum--; thisBall.removeMovieClip(); } function launchBall() { _root.bat.hasBomb = false; var ballDepth = depth[BALL_OBJ][CURRENT_DEPTH]; _root.updateDepth(depth[BALL_OBJ]); var i = (ballNum++); _root.attachMovie("ball", "ball" + i, ballDepth); var thisBall = _root["ball" + i]; thisBall._x = -2000; thisBall._y = -2000; thisBall.pos.x = -2000; thisBall.pos.y = -2000; ballIndex.push(i); thisBall._visible = false; var launcherDepth = depth[LAUNCHER_OBJ][CURRENT_DEPTH]; _root.updateDepth(depth[LAUNCHER_OBJ]); _root.attachMovie("ballLauncher", "bl" + launcherDepth, launcherDepth); angle = random(360); bl = _root["bl" + launcherDepth]; bl._x = (120 * Math.cos(angle / _root.rad)) + halfWidth; bl._y = (120 * Math.sin(angle / _root.rad)) + halfHeight; bl.thisBall = thisBall; } function resetBall(thisBall, x, y) { thisBall._x = (thisBall.pos.x = x); thisBall._y = (thisBall.pos.y = y); thisBall.radius = thisBall._width / 2; thisBall.m = 10; var angle = Math.round(random(360)); var speed = 7; thisBall.vel.x = speed * Math.cos(angle * _root.rad); thisBall.vel.y = speed * Math.sin(angle * _root.rad); thisBall._visible = true; } function upgradeLevel(upDown) { _root.level = _root.level + upDown; if (_root.level > _root.MAX_LEVEL) { _root.level = 0; } if (_root.level < 0) { _root.level = _root.MAX_LEVEL; } colList.destroyAllObjects(); removeAllBalls(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } destroyCurrentArena(); gotoAndPlay (868); } function BallsMove() { if (_root.bricksToDestroy <= 0) { _root.bat.removeCurrentPickup(); _root.gotoAndPlay("NextLevel"); } else if (_root.ballNum <= 0) { removeLife(); _root.bat.removeCurrentPickup(); if (lives > 0) { _root.resetInvuln(); LaunchBall(); } } bat.update(); var j = 0; while (j < _root.ballNum) { var thisBall = _root["ball" + ballIndex[j]]; if ((!thisBall.bounced) && (thisBall.applyGravity)) { thisBall.doForce(); } else { thisBall.bounced = false; } CheckCollisions(thisBall); thisBall.move(); j++; } if (_root.invulnerability > 0) { _root.invulnerability--; _root.invuln._alpha = 50; if ((_root.invulnerability < 100) && (_root.invulnerability % 2)) { _root.invuln._visible = !_root.invuln._visible; } } else { _root.invuln._visible = false; } _root.drawPickupVals(); updateObjects(); printFps(); } if (!_root.DESIGN) { designBut._visible = false; dumpBut._visible = false; } Key.removeListener(_root.someListener); _root.createEmptyMovieClip("oScore", 60000); _root.createEmptyMovieClip("oLife", 60001); _root.gameInPlay = true; oLife.createEmptyMovieClip("ballGfx", 989282); oLife.BallGfx.attachMovie("ballGfx", "Norbit", 10292); oLife.BallGfx.Norbit._xscale = (oLife.BallGfx.Norbit._yscale = 40); oLife.BallGfx.Norbit._y = -(_root.txtRingWidth / 2); oLife.BallGfx._rotation = 33; _root.lives = 6; _root.addLife(0); _root.paused = false; someListener = new Object(); someListener.onKeyDown = function () { if (Key.isDown(81)) { _root.paused = true; _root.attachMovie("quit", "quitObj", _root.QUIT_DEPTH); _root.quitObj._alpha = 70; _root.quitObj._x = halfWidth; _root.quitObj._y = halfHeight; } if (Key.isDown(80)) { _root.paused = !_root.paused; if (_root.paused) { _root.attachMovie("paused", "pausedObj", _root.pausedDepth); _root.pausedObj._x = halfWidth; _root.pausedObj._y = halfHeight; } else { _root.pausedObj.removeMovieClip(); } } }; Key.addListener(someListener); _root.level = 0; totalScore = 0; updateScore(); _root.changeSkin(); _root.attachMovie("DrainCover_skin" + _root.skin, "invuln", _root.INVULN_DEPTH); _root.invuln._x = _root.halfWidth; _root.invuln._y = _root.halfHeight;
Instance of Symbol 440 MovieClip "drain" in Frame 867
onClipEvent (load) { this._x = _root.halfWidth; this._y = _root.halfHeight; }
Instance of Symbol 502 MovieClip "bat" in Frame 867
onClipEvent (load) { this.initWidth = this._width; this.initHeight = this._height; this.move = 0; this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; this.moveDir = 0; this._x = /:halfWidth; this._y = /:halfHeight; this.width = 90; this.cp = -1; this.cpc = -1; this.hasBomb = false; this.pickupCount = -1; this.activeBullets = 0; this.fireDelay = 0; this.oldMouseX = 0; this.oldMouseY = 0; } onClipEvent (enterFrame) { if ((_root._xmouse != this.oldMouseX) || (_root._ymouse != this.oldMouseY)) { this.oldMouseX = _root._xmouse; this.oldMouseY = _root._ymouse; var ang; if (this.hasPickup(_root.PU_REVERSE_BAT) != -1) { ang = (_root.atan2(_root._ymouse - _root.halfHeight, _root._xmouse - _root.halfWidth) / _root.rad) + 270; } else { ang = (_root.atan2(_root._ymouse - _root.halfHeight, _root._xmouse - _root.halfWidth) / _root.rad) + 90; } _root.bat._rotation = ang; if (_root.bat1) { _root.bat1._rotation = _root.bat._rotation + 180; } } if (this.hasPickup(_root.PU_SINGLE_LASER) != -1) { var rx = (random(6) - 3); var ry = (random(6) - 3); this._x = _root.halfWidth + rx; this._y = _root.halfHeight + ry; _root.bm._x = _root.halfWidth + rx; _root.bm._y = _root.halfHeight + ry; _root.bm._rotation = this._rotation + 180; } else { this._x = _root.halfWidth; this._y = _root.halfHeight; } if (!_root.paused) { var left; var right; if (this.hasPickup(_root.PU_REVERSE_BAT) != -1) { left = 39; right = 37; } else { left = 37; right = 39; } if (Key.isDown(right)) { this.moveDir = this.moveStep; } else if (Key.isDown(left)) { this.moveDir = -this.moveStep; } else { this.moveDir = 0; } if (this.hasPickup(_root.PU_MULTI_LASER) != -1) { if (Key.isDown(32)) { if ((this.activeBullets == 0) && (this.fireDelay > 10)) { _root.sbl.removeMovieClip(); _root.laserShoot.start(); fireDelay = 0; _root.fireBullet(); this.activeBullets++; } } this.fireDelay++; if ((this.activeBullets == 0) && (!_root.sbl)) { _root.attachMovie("SmallBulletLaunch", "sbl", _root.BULLET_LAUNCHER_DEPTH); _root.sbl._x = _root.halfWidth; _root.sbl._y = _root.halfHeight; } } if (_root.sbl) { _root.sbl._rotation = this._rotation; } this.move = this.move + this.moveDir; if (this.moveDir == 0) { if (this.move > 0) { this.move = this.move - moveStep; } if (this.move < 0) { this.move = this.move + moveStep; } } if (this.move > this.maxMove) { this.move = this.maxMove; } if (this.move < (-this.maxMove)) { this.move = -this.maxMove; } if (Key.isDown(33) && (/:DEBUG)) { _root.bat.removeCurrentPickup(); _root.gotoAndPlay("NextLevel"); } else if (Key.isDown(34) && (/:DEBUG)) { _root.bat.removeCurrentPickup(); _root.upgradeLevel(-1); } } }
Frame 868
_root.attachMovie("LevelPanel", "levelPanelText", _root.LEVEL_PANEL_DEPTH); levelPanelText._x = _root.halfWidth; levelPanelText._y = _root.halfHeight; _root.drawSingleNum(_root.level + 1, 15, 10, _root.levelPanelText, false, true, 400); nextLevelSnd.start(); var circleRadius = new Array(177, 154, 129); var arenaData = levelData[level]; var i; var j; i = 0; j = 0; var brick; var brickType; var brickNum; var bricksToDestroy = 0; _root.createEmptyMovieClip("bricks", 1); _root.changeSkin(); _root.resetInvuln();
Frame 869
j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brickType = arenaData[brickNum] & PU_MASK; pickupType = arenaData[brickNum] >> PU_SHIFT; if (brickType != 0) { var d = depth[BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[BRICK_OBJ]); brickName = "BR_"; if (brickType & BR_NORMAL) { brickName = brickName + ("normal_" + j); brickHits = 4 - j; _root.bricksToDestroy++; } else if (brickType & BR_S_BARRIER) { brickName = brickName + "s_barrier"; brickHits = 9999; } else if (brickType & BR_I_BARRIER) { brickName = brickName + "i_barrier"; brickHits = 9999; } else if (brickType & BR_D_BARRIER) { brickName = brickName + "d_barrier"; brickHits = 9999; } else if (brickType & BR_INDESTRUCTABLE) { brickName = brickName + ("unbreakable_" + j); brickHits = 9999; } brickname = brickname + ("_skin" + _root.skin); var brick = _root.bricks.attachMovie(brickName, "brick_" + brickNum, d); brick.hits = brickHits; brick.maxHits = brickHits; brick.type = brickType; brick.x = (brick._x = brick_middle_x); brick.y = (brick._y = brick_middle_y); brick.pickup = pickupType; if (brick.pickup != 0) { var pickupStr = (_root.pickupObject[brick.pickup][_root.PUVAR_CLIP_NAME] + "Gfx"); var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var thispickup = brick.attachMovie(pickupStr, "brick_pickup_" + brickNum, objD); thispickup._rotation = 5; switch (brick.pickup) { case PU_BOMB : thispickup._xscale = (thispickup._yscale = 60); thispickup._y = (-brick._height) + 25; break; case PU_NEXT_LEVEL : thispickup._xscale = (thispickup._yscale = 60); thispickup._y = (-brick._height) + 35; break; default : thispickup._xscale = (thispickup._yscale = 70); thispickup._y = (-brick._height) + 25; } thispickup._x = 20; } brick._xscale = (brick._yscale = 83); brick._rotation = i * _root.brickSizeAngle; } j++; } i++;
Frame 870
if (i < numBrickSectors) { gotoAndPlay (869); } else { brickNum++; _root.specialBricks = brickNum; currentPos = numBrickSectors * numBrickLayers; currentPos++; while (arenaData[currentPos] != "@") { panicVar++; if (panicVar > 100) { break; } _root.numSpecialBricks++; var d = depth[SPECIAL_BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[SPECIAL_BRICK_OBJ]); brickName = "BR_"; brickName = brickName + ("c_barrier_skin" + _root.skin); brickHits = 9999; brick = _root.bricks.attachMovie(brickName, "brick_" + (brickNum++), d); brick.hits = brickHits; brick.type = brickType; brick.radius = brick.thisBrick._width / 2; brick.m = 10000000000000; brick.vx = 0; brick.vy = 0; currentPos++; brick._x = arenaData[currentPos++]; brick._y = arenaData[currentPos++]; } gotoAndPlay (871); }
Frame 871
_root.levelPanelText._visible = false; _root.levelPanelText.gotoAndPlay("KILLME"); _root.levelPanelText.removeMovieClip(); colList = new CollisionList(); calcZones(); LaunchBall(); newVect = new Vector(); stop();
Instance of Symbol 504 MovieClip "Runner" in Frame 871
onClipEvent (enterFrame) { if (!_root.paused) { _root.BallsMove(); } }
Frame 878
oScore.removeMovieClip(); oLife.removeMovieClip(); _root.bat.resetBat(); Key.removeListener(_root.someListener); Key.addListener(_root.menuListener); colList.destroyAllObjects(); removeAllBalls(); _root.sbl.removeMovieClip(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; }
Frame 879
hiStatus = false; gotHighScore = false; gotGlobalHighScore = false; var o; if (_root.totalScore > _root.THRESHOLD_IMPRESSED) { o = _root.gameOverTxt.attachMovie("ImpressedTxt", "txt", 10); } else { o = _root.gameOverTxt.attachMovie("TryHarderTxt", "txt", 10); } o._y = 50; o._alpha = 80;
Instance of Symbol 507 MovieClip "gameOverTxt" in Frame 879
onClipEvent (load) { this.swapDepths(1010029); }
Frame 947
stop();
Frame 949
destroyCurrentArena(); _root.sbl.removeMovieClip(); gotoAndPlay (866);
Frame 950
_root.DrainCover.removeMovieClip(); _root.ball.gotoAndStop(1); _root.addScore(_root.LEVELS_SCORE_MULTIPLIER * (_root.level + 1)); _root.addScore(_root.BALLS_SCORE_MULTIPLIER * _root.lives); colList.destroyAllObjects(); _root.bat.resetBat(); removeAllBalls(); _root.sbl.removeMovieClip(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; }
Instance of Symbol 512 MovieClip "nextLevelFlasher" in Frame 950
onClipEvent (load) { this.swapDepths(_root.LEVEL_COMPLETE_DEPTH); } on (press) { _root.gotoAndPlay("gotoNextLevel"); }
Frame 1105
_root.nextLevelFlasher.removeMovieClip(); if ((_root.VERSION == _root.VERSION_DEMO) && (_root.level >= _root.MAX_DEMO_LEVELS)) { _root.sbl.removeMovieClip(); oScore.removeMovieClip(); oLife.removeMovieClip(); destroyCurrentArena(); colList.destroyAllObjects(); _root.DrainCover.removeMovieClip(); _root.bat.hasBomb = false; colList.destroyAllObjects(); _root.bat.removeCurrentPickup(); removeAllBalls(); Key.removeListener(_root.someListener); Key.addListener(_root.menuListener); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } gotoAndPlay (1106); } else { _root.upgradeLevel(1); }
Frame 1535
stop();
Frame 1541
function updateDepth(obj) { if (obj[_root.CURRENT_DEPTH] > (obj[_root.MIN_DEPTH] + obj[_root.NUM_OBJECTS])) { obj[_root.CURRENT_DEPTH] = obj[_root.MIN_DEPTH]; } else { obj[_root.CURRENT_DEPTH]++; } } function clearLevel() { i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brick = _root.bricks["brick_" + brickNum]; if (brick) { brick.gotoAndStop(1); brick.thisBrick.pickup = -1; } j++; } i++; } k = _root.specialBricks; while (k < (_root.specialBricks + _root.numSpecialBricks)) { brick = _root.bricks["brick_" + k]; brick.removeMovieClip(); k++; } _root.numSpecialBricks = 0; ldata.clear(); clearGeneratedObjects(); } function buildBlankArena() { var i; var j; var brick; var brickType; var brickNum; _root.createEmptyMovieClip("bricks", 1); i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brickType = BR_DEV; var d = depth[BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[BRICK_OBJ]); var brickName = ""; if (j <= 3) { brickName = "DEVBR_normal_" + j; } else if ((j == 4) && ((i % 2) == 0)) { brickName = "DEVBR_d_barrier"; } else if ((j == 5) && ((i % 2) == 0)) { brickName = "DEVBR_i_barrier"; } if (brickName != "") { brick = _root.bricks.attachMovie(brickName, "brick_" + brickNum, d); brick.hits = brickHits; brick.type = brickType; brick.x = (brick._x = brick_middle_x); brick.y = (brick._y = brick_middle_y); brick.thisBrick.pickup = -1; var maskedBrick = (ldata[brickNum] & _root.PU_MASK); switch (maskedBrick) { case BR_INDESTRUCTABLE : brick.gotoAndPlay(3); break; case BR_NORMAL : brick.gotoAndPlay(2); break; case BR_D_BARRIER : brick.gotoAndPlay(2); break; case BR_S_BARRIER : brick.gotoAndPlay(3); break; case BR_I_BARRIER : brick.gotoAndPlay(2); } pickupType = ldata[brickNum] >> PU_SHIFT; if (pickupType != 0) { brick.thisBrick.pickup = pickupType; brick.pickup = pickupType; var pickupStr = (_root.pickupObject[pickupType][_root.PUVAR_CLIP_NAME] + "Gfx"); var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var thispickup = brick.attachMovie(pickupStr, "brick_pickup_" + brickNum, objD); thispickup._xscale = (thispickup._yscale = 40); thispickup._rotation = 5; thispickup._y = (-brick._height) + 14; thispickup._x = 20; } brick._rotation = i * _root.brickSizeAngle; brick._xscale = (brick._yscale = 83); } j++; } i++; } _root.specialBricks = brickNum; if (ldata) { brickNum++; _root.specialBricks = brickNum; currentPos = numBrickSectors * numBrickLayers; currentPos++; while (arenaData[currentPos] != "@") { panicVar++; if (panicVar > 100) { return; } _root.numSpecialBricks++; var d = depth[BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[BRICK_OBJ]); brickName = "DEVBR_c_barrier"; brick = _root.bricks.attachMovie(brickName, "brick_" + (brickNum++), d); currentPos++; brick._x = arenaData[currentPos++]; brick._y = arenaData[currentPos++]; } } } function buildLevel() { var i; var j; ldata = new Array(); var d = depth[BRICK_OBJ][MIN_DEPTH]; i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brick = _root.bricks["brick_" + brickNum]; var pickupVar = 0; if (brick.thisBrick.pickup > 0) { pickupVar = brick.thisBrick.pickup << _root.PU_SHIFT; } if (brick) { if (j < 4) { switch (brick._currentframe) { case 3 : ldata.push(BR_INDESTRUCTABLE + pickupVar); break; case 2 : ldata.push(BR_NORMAL + pickupVar); break; default : ldata.push(0); } } else if (j == 4) { switch (brick._currentframe) { case 2 : ldata.push(BR_D_BARRIER + pickupVar); break; case 3 : ldata.push(BR_S_BARRIER + pickupVar); break; default : ldata.push(0); } } else if (j == 5) { switch (brick._currentframe) { case 2 : ldata.push(BR_I_BARRIER + pickupVar); break; default : ldata.push(0); } } else { ldata.push(0); } } else { ldata.push(0); } j++; } i++; } ldata.push("#"); k = _root.specialBricks; while (k < (_root.specialBricks + _root.numSpecialBricks)) { brickNum = k; brick = _root.bricks["brick_" + k]; ldata.push(BR_C_BARRIER); ldata.push(brick._x); ldata.push(brick._y); k++; } ldata.push("@"); } function testLevel() { _root.levelData[level] = ldata; destroyCurrentArena(); gotoAndPlay (866); } function clearGeneratedObjects() { i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; _root["pb" + brickNum].removeMovieClip(); j++; } i++; } var k = _root.depth[_root.PICKUP_BRICK_OBJ][_root.MIN_DEPTH]; while (k < (_root.depth[_root.PICKUP_BRICK_OBJ][_root.MIN_DEPTH] + _root.depth[_root.PICKUP_BRICK_OBJ][_root.NUM_OBJECTS])) { if (_root["pickup" + k]) { _root["pickup" + k].removeMovieClip(); } k++; } } function destroyCurrentArena() { _root.bricks.removeMovieClip(); clearGeneratedObjects(); depth[BRICK_OBJ][CURRENT_DEPTH] = depth[BRICK_OBJ][MIN_DEPTH]; numSpecialBricks = 0; } _root.gameInPlay = false; _root.numSpecialBricks = 0; _root.specialBricks = 0; _root.levelTxt = _root.level + 1; buildBlankArena(); stop(); var ldata;
Instance of Symbol 373 MovieClip [OuterRing_skin0] "ring" in Frame 1541
onClipEvent (load) { _root.pressedObject = ""; this.activePickups = new Array(); this.currentPickup = 0; } onClipEvent (enterFrame) { if ((_root.pressedObject != "") && (_root.pressedObject != "HOLD")) { var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var p = _root.attachMovie(_root.pressedObject, "pickup" + objD, objD); p.pickupType = _root.pressedObject.substr(0, _root.pressedObject.length() - 3); _root.pressedObject = "HOLD"; p.draggable = true; p.mousePressed = true; p._alpha = 100; p._x = _root._xmouse; p._y = _root._ymouse; this.activePickups.push(p); } } onClipEvent (mouseDown) { var i = 0; while (i < this.activePickups.length) { if (this.activePickups[i].hitTest(_root._xmouse, _root._ymouse, true)) { this.currentPickup = this.activePickups[i]; _root.carryingPickup = true; } i++; } } onClipEvent (mouseMove) { if (this.currentPickup != 0) { this.currentPickup._x = _root._xmouse; this.currentPickup._y = _root._ymouse; } } onClipEvent (mouseUp) { if (currentPickup != 0) { var i = 0; while (i < _root.numBrickSectors) { var j = 0; while (j < _root.numBrickLayers) { brickNum = (i * _root.numBrickLayers) + j; var thisBrick = _root.bricks["brick_" + brickNum].thisBrick; p = new object(); p.x = _root._xmouse; p.y = _root._ymouse; if (thisBrick.hitTest(p.x, p.y, true)) { var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var t = _root.attachMovie(currentPickup.pickupType + "Gfx", "pb" + brickNum, (thisBrick.getDepth() + 900000) + brickNum); t._x = p.x; t._y = p.y; t._xscale = (t._yscale = 40); var pickupNum = -1; var pt = 0; while (pt < _root.pickupObject.length) { if (_root.pickupObject[pt][_root.PUVAR_CLIP_NAME] == currentPickup.pickupType) { thisBrick.pickup = pt; break; } pt++; } } j++; } i++; } var p = 0; while (p < this.activePickups.length) { if (this.activePickups[p] == this.currentPickup) { this.activePickups.slice(p, p); } p++; } _root.ring.currentPickup.removeMovieClip(); _root.ring.currentPickup = 0; _root.carryingPickup = false; _root.pressedObject = ""; } }
Instance of Symbol 357 MovieClip [BR_c_barrier_skin0] in Frame 1541
onClipEvent (load) { _root.moved = true; } on (press) { if (_root.moved) { _root.moved = false; var ball = _root.bricks.attachMovie("DEVBR_c_barrier", "brick_" + (_root.specialBricks + _root.numSpecialBricks), _root.depth[_root.BRICK_OBJ][_root.CURRENT_DEPTH] + (_root.specialBricks + _root.numSpecialBricks)); _root.numSpecialBricks++; ball.brickType = "CIRCLE"; ball._alpha = 100; ball._x = this._x; ball._y = this._y + this._height; } }
Instance of Symbol 154 MovieClip [BananaBunchPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "BananaBunchPickupGfx"; }
Instance of Symbol 152 MovieClip [BananaPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "BananaPickupGfx"; }
Instance of Symbol 184 MovieClip [BigBatPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "BigBatPickupGfx"; }
Instance of Symbol 107 MovieClip [BombPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "BombPickupGfx"; }
Instance of Symbol 169 MovieClip [CherryPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "CherryPickupGfx"; }
Instance of Symbol 166 MovieClip [DiamondPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "DiamondPickupGfx"; }
Instance of Symbol 172 MovieClip [DoubleBatPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "DoubleBatPickupGfx"; }
Instance of Symbol 365 MovieClip [DrainCoverPickup] in Frame 1541
on (press) { _root.pressedObject = "DrainCoverPickupGfx"; }
Instance of Symbol 159 MovieClip [EatenMelonPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "EatenMelonPickupGfx"; }
Instance of Symbol 127 MovieClip [FireballPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "FireballPickupGfx"; }
Instance of Symbol 132 MovieClip [LittleBatPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "LittleBatPickupGfx"; }
Instance of Symbol 162 MovieClip [MelonPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "MelonPickupGfx"; }
Instance of Symbol 122 MovieClip [MultiBallPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "MultiBallPickupGfx"; }
Instance of Symbol 137 MovieClip [MultiLaserPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "MultiLaserPickupGfx"; }
Instance of Symbol 119 MovieClip [NextLevelPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "NextLevelPickupGfx"; }
Instance of Symbol 116 MovieClip [NoGravityPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "NoGravityPickupGfx"; }
Instance of Symbol 148 MovieClip [RaspberryPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "RaspberryPickupGfx"; }
Instance of Symbol 182 MovieClip in Frame 1541
on (press) { _root.pressedObject = "ReverseBatPickupGfx"; }
Instance of Symbol 176 MovieClip [ReverseGravityPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "ReverseGravityPickupGfx"; }
Instance of Symbol 144 MovieClip [SingleLaserPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "SingleLaserPickupGfx"; }
Instance of Symbol 187 MovieClip [SpeedDownPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "SpeedDownPickupGfx"; }
Instance of Symbol 190 MovieClip [SpeedPickupGfx] in Frame 1541
on (press) { _root.pressedObject = "SpeedPickupGfx"; }
Symbol 24 MovieClip [OuterRing_skin0] Frame 1
stop();
Symbol 24 MovieClip [OuterRing_skin0] Frame 2
stop();
Symbol 30 MovieClip [DrainCover_skin1] Frame 1
this.radius = _width / 2; this.pos = new Vector(0, 0); this.vel = new Vector(0, 0); this.m = 9999;
Symbol 30 MovieClip [DrainCover_skin1] Frame 10
stop();
Instance of Symbol 29 MovieClip in Symbol 30 MovieClip [DrainCover_skin1] Frame 10
onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; }
Symbol 30 MovieClip [DrainCover_skin1] Frame 20
this.removeMovieClip();
Symbol 32 MovieClip [DrainCover_skin2] Frame 1
this.radius = _width / 2; this.pos = new Vector(0, 0); this.vel = new Vector(0, 0); this.m = 9999;
Symbol 32 MovieClip [DrainCover_skin2] Frame 10
stop();
Symbol 32 MovieClip [DrainCover_skin2] Frame 20
this.removeMovieClip();
Symbol 37 MovieClip [DrainCover_skin0] Frame 1
this.radius = _width / 2; this.pos = new Vector(0, 0); this.vel = new Vector(0, 0); this.m = 9999; stop();
Instance of Symbol 34 MovieClip in Symbol 37 MovieClip [DrainCover_skin0] Frame 1
onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; }
Symbol 37 MovieClip [DrainCover_skin0] Frame 10
stop();
Instance of Symbol 34 MovieClip in Symbol 37 MovieClip [DrainCover_skin0] Frame 10
onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; }
Instance of Symbol 36 MovieClip in Symbol 37 MovieClip [DrainCover_skin0] Frame 10
onClipEvent (enterFrame) { _parent._rotation = _parent._rotation + 2; }
Symbol 37 MovieClip [DrainCover_skin0] Frame 20
this.removeMovieClip();
Instance of Symbol 34 MovieClip in Symbol 37 MovieClip [DrainCover_skin0] Frame 20
onClipEvent (enterFrame) { _parent.removeMovieClip(); }
Symbol 42 MovieClip Frame 1
_visible = false; stop();
Symbol 42 MovieClip Frame 2
_visible = true;
Symbol 46 MovieClip Frame 1
function hitAction(aDamage, aPos) { _parent.hits = _parent.hits - aDamage; if (_parent.hits <= 0) { _parent.normalHitSound.start(); _root.addScore(_parent.score); _root.updateScore(); if (_parent.pickup > 0) { _root.spawnPickup(_parent.pickup, aPos.x, aPos.y); } else { _root.spawnRandomPickup(aPos.x, aPos.y); } _parent.gotoAndPlay("destroy"); } else { if (_parent.hits < 10) { myColor = new Color(_parent); myColorTransform = new Object(); var offset = (-((_parent.maxHits - _parent.hits) * 40)); myColorTransform.rb = offset; myColorTransform.gb = offset; myColorTransform.bb = offset; myColor.setTransform(myColorTransform); } _parent.hardHitSound.start(); _root.clankHit.start(); } }
Symbol 47 MovieClip [BR_unbreakable_0_skin1] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 50 MovieClip [BR_unbreakable_0_skin2] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 51 MovieClip [BR_unbreakable_0_skin0] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 54 MovieClip [DEVBR_normal_0] Frame 1
this.onLoad = function () { this.mouseIsDown = false; }; this.onMouseUp = function () { this.mouseIsDown = false; }; this.onMouseDown = function () { this.mouseIsDown = true; p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { var f = (this._currentframe + 1); if (f > 3) { f = 1; } this.gotoAndPlay(f); this.mouseIsDown = false; } }; this.onMouseMove = function () { if (this.mouseIsDown && (!_root.carryingPickup)) { p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { var f = (this._currentframe + 1); if (f > 3) { f = 1; } this.gotoAndPlay(f); this.mouseIsDown = false; } } }; stop();
Symbol 54 MovieClip [DEVBR_normal_0] Frame 2
stop();
Symbol 54 MovieClip [DEVBR_normal_0] Frame 3
stop();
Symbol 59 MovieClip [BR_normal_0_skin1] Frame 1
walls = 3; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Instance of Symbol 58 MovieClip "thisBrick" in Symbol 59 MovieClip [BR_normal_0_skin1] Frame 1
/* no clip actions */
Symbol 59 MovieClip [BR_normal_0_skin1] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 62 MovieClip [BR_normal_0_skin2] Frame 1
walls = 3; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Instance of Symbol 61 MovieClip "thisBrick" in Symbol 62 MovieClip [BR_normal_0_skin2] Frame 1
/* no clip actions */
Symbol 62 MovieClip [BR_normal_0_skin2] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 63 MovieClip [BR_normal_0_skin0] Frame 1
walls = 3; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Instance of Symbol 53 MovieClip "thisBrick" in Symbol 63 MovieClip [BR_normal_0_skin0] Frame 1
/* no clip actions */
Symbol 63 MovieClip [BR_normal_0_skin0] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 65 MovieClip [BR_unbreakable_1_skin1] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 66 MovieClip [BR_unbreakable_1_skin2] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 67 MovieClip [BR_unbreakable_1_skin0] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 70 MovieClip [DEVBR_normal_1] Frame 1
this.onLoad = function () { this.mouseIsDown = false; }; this.onMouseUp = function () { this.mouseIsDown = false; }; this.onMouseDown = function () { this.mouseIsDown = true; p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { var f = (this._currentframe + 1); if (f > 3) { f = 1; } this.gotoAndPlay(f); this.mouseIsDown = false; } }; this.onMouseMove = function () { if (this.mouseIsDown && (!_root.carryingPickup)) { p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { var f = (this._currentframe + 1); if (f > 3) { f = 1; } this.gotoAndPlay(f); this.mouseIsDown = false; } } }; stop();
Symbol 70 MovieClip [DEVBR_normal_1] Frame 2
stop();
Symbol 70 MovieClip [DEVBR_normal_1] Frame 3
stop();
Symbol 73 MovieClip [BR_normal_1_skin1] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 15; stop();
Symbol 73 MovieClip [BR_normal_1_skin1] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 75 MovieClip [BR_normal_1_skin2] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 15; stop();
Symbol 75 MovieClip [BR_normal_1_skin2] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 76 MovieClip [BR_normal_1_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 15; stop();
Symbol 76 MovieClip [BR_normal_1_skin0] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 78 MovieClip [BR_unbreakable_3_skin1] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 79 MovieClip [BR_unbreakable_3_skin2] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 80 MovieClip [BR_unbreakable_3_skin0] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 83 MovieClip [DEVBR_normal_3] Frame 1
this.onLoad = function () { this.mouseIsDown = false; }; this.onMouseUp = function () { this.mouseIsDown = false; if (_root.carryingPickup) { p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { } } }; this.onMouseDown = function () { this.mouseIsDown = true; p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { var f = (this._currentframe + 1); if (f > 3) { f = 1; } this.gotoAndPlay(f); this.mouseIsDown = false; } }; this.onMouseMove = function () { if (this.mouseIsDown && (!_root.carryingPickup)) { p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { var f = (this._currentframe + 1); if (f > 3) { f = 1; } this.gotoAndPlay(f); this.mouseIsDown = false; } } }; stop();
Symbol 83 MovieClip [DEVBR_normal_3] Frame 2
stop();
Symbol 83 MovieClip [DEVBR_normal_3] Frame 3
stop();
Instance of Symbol 82 MovieClip "thisBrick" in Symbol 83 MovieClip [DEVBR_normal_3] Frame 3
/* no clip actions */
Symbol 83 MovieClip [DEVBR_normal_3] Frame 4
stop();
Symbol 86 MovieClip [BR_normal_3_skin1] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 5; stop();
Instance of Symbol 85 MovieClip "thisBrick" in Symbol 86 MovieClip [BR_normal_3_skin1] Frame 1
/* no clip actions */
Symbol 86 MovieClip [BR_normal_3_skin1] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 88 MovieClip [BR_normal_3_skin2] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 5; stop();
Instance of Symbol 87 MovieClip "thisBrick" in Symbol 88 MovieClip [BR_normal_3_skin2] Frame 1
/* no clip actions */
Symbol 88 MovieClip [BR_normal_3_skin2] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 89 MovieClip [BR_normal_3_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 5; stop();
Instance of Symbol 82 MovieClip "thisBrick" in Symbol 89 MovieClip [BR_normal_3_skin0] Frame 1
/* no clip actions */
Symbol 89 MovieClip [BR_normal_3_skin0] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 91 MovieClip [BR_unbreakable_2_skin1] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 92 MovieClip [BR_unbreakable_2_skin2] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 93 MovieClip [BR_unbreakable_2_skin0] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 96 MovieClip [DEVBR_normal_2] Frame 1
this.onLoad = function () { this.mouseIsDown = false; }; this.onMouseUp = function () { this.mouseIsDown = false; }; this.onMouseDown = function () { this.mouseIsDown = true; p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { var f = (this._currentframe + 1); if (f > 3) { f = 1; } this.gotoAndPlay(f); this.mouseIsDown = false; } }; this.onMouseMove = function () { if (this.mouseIsDown && (!_root.carryingPickup)) { p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { var f = (this._currentframe + 1); if (f > 3) { f = 1; } this.gotoAndPlay(f); this.mouseIsDown = false; } } }; stop();
Instance of Symbol 95 MovieClip "thisBrick" in Symbol 96 MovieClip [DEVBR_normal_2] Frame 1
/* no clip actions */
Symbol 96 MovieClip [DEVBR_normal_2] Frame 2
stop();
Symbol 96 MovieClip [DEVBR_normal_2] Frame 3
stop();
Symbol 99 MovieClip [BR_normal_2_skin1] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 10; stop();
Instance of Symbol 98 MovieClip "thisBrick" in Symbol 99 MovieClip [BR_normal_2_skin1] Frame 1
/* no clip actions */
Instance of Symbol 95 MovieClip "thisBrick" in Symbol 99 MovieClip [BR_normal_2_skin1] Frame 2
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 99 MovieClip [BR_normal_2_skin1] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 101 MovieClip [BR_normal_2_skin2] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 10; stop();
Instance of Symbol 100 MovieClip "thisBrick" in Symbol 101 MovieClip [BR_normal_2_skin2] Frame 1
/* no clip actions */
Instance of Symbol 100 MovieClip "thisBrick" in Symbol 101 MovieClip [BR_normal_2_skin2] Frame 2
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 101 MovieClip [BR_normal_2_skin2] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 102 MovieClip [BR_normal_2_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 10; stop();
Instance of Symbol 95 MovieClip "thisBrick" in Symbol 102 MovieClip [BR_normal_2_skin0] Frame 1
/* no clip actions */
Instance of Symbol 95 MovieClip "thisBrick" in Symbol 102 MovieClip [BR_normal_2_skin0] Frame 2
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 102 MovieClip [BR_normal_2_skin0] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 112 MovieClip [Ball] Frame 1
this.thisShadow = "ballShadow"; this.pos = new Vector(-50, -50); this.vel = new Vector(5, 0); this.friction = 0.01; this.anchor = new Vector(_root.halfWidth, _root.halfHeight); this.strength = 10000; this.applyGravity = true; this.doForce = function () { if (!this._visible) { return(undefined); } this.netForce = this.pos.minusNew(this.anchor); var r = this.netForce.getLength(); if (r < 50) { r = 50; } if (_root.bat.hasPickup(_root.PU_REVERSE_GRAVITY) != -1) { this.netForce.setLength((strength * 2) / (r * (r * 2))); } else { this.netForce.setLength((-(this.strength * 2)) / (r * (r * 4))); } }; this.move = function () { if (!this._visible) { return(undefined); } if (this.applyGravity) { this.vel.plus(this.netForce); this.vel.scale(1 - this.friction); } var len = this.vel.getLength(); if (len > 13.7) { this.vel.scale(13.7 / len); } this.pos.plus(this.vel); this._x = this.pos.x; this._y = this.pos.y; }; this.createParticle = function () { var i = _root.depth[_root.STAR_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.STAR_OBJ]); _root.attachMovie(thisShadow, "Star" + i, i); var thisStar = _root["Star" + i]; thisStar._x = _x; thisStar._y = _y; };
Instance of Symbol 104 MovieClip [ballGfx] "ballGfx" in Symbol 112 MovieClip [Ball] Frame 1
onClipEvent (enterFrame) { _parent.createParticle(); }
Symbol 112 MovieClip [Ball] Frame 2
this.thisShadow = "ballShadow"; stop();
Symbol 112 MovieClip [Ball] Frame 3
thisShadow = "fireShadow"; stop();
Instance of Symbol 104 MovieClip [ballGfx] "ballGfx" in Symbol 112 MovieClip [Ball] Frame 3
onClipEvent (enterFrame) { _parent.createParticle(); }
Symbol 112 MovieClip [Ball] Frame 4
thisShadow = "fireShadow"; stop();
Instance of Symbol 111 MovieClip [BombPickup] "ballGfx" in Symbol 112 MovieClip [Ball] Frame 4
onClipEvent (enterFrame) { _parent.createParticle(); }
Symbol 112 MovieClip [Ball] Frame 5
this._x = _root.halfWidth; this._y = _root.halfHeight; this.applyGravity = false; this.vel = new Vector(0, 0); this.pos = new Vector(_root.halfWidth, _root.halfHeight);
Symbol 112 MovieClip [Ball] Frame 20
_root.removeBall(this); stop();
Instance of Symbol 104 MovieClip [ballGfx] "ballGfx" in Symbol 112 MovieClip [Ball] Frame 20
onClipEvent (enterFrame) { _root.removeBall(_parent); stop(); }
Symbol 114 MovieClip [dot] Frame 1
_visible = false;
Instance of Symbol 193 MovieClip in Symbol 194 MovieClip [QuickStar2] Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 30; this._xscale = this._xscale - 2; this._yscale = this._yscale - 2; _parent._x = _parent._x + _parent.vx; _parent._y = _parent._y + _parent.vy; }
Symbol 194 MovieClip [QuickStar2] Frame 17
this.removeMovieClip();
Symbol 197 MovieClip [QuickStar1] Frame 1
Instance of Symbol 196 MovieClip in Symbol 197 MovieClip [QuickStar1] Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 30; this._xscale = this._xscale - 2; this._yscale = this._yscale - 2; _parent._x = _parent._x + _parent.vx; _parent._y = _parent._y + _parent.vy; }
Symbol 197 MovieClip [QuickStar1] Frame 17
this.removeMovieClip();
Instance of Symbol 199 MovieClip in Symbol 200 MovieClip [Star] Frame 1
onClipEvent (enterFrame) { _parent._rotation = _parent._rotation + 8; _parent._xscale = _parent._xscale - 3; _parent._yscale = _parent._yscale - 3; if (_parent._xscale < 30) { _parent.removeMovieClip(); } }
Instance of Symbol 204 MovieClip "thisBrick" in Symbol 205 MovieClip [DEVBR_c_barrier] Frame 1
on (press) { this.mouseIsDown = true; } on (release) { this.mouseIsDown = false; } onClipEvent (load) { this.mouseIsDown = false; } onClipEvent (enterFrame) { if (this.mouseIsDown) { _root.moved = true; _parent._x = _root._xmouse; _parent._y = _root._ymouse; } }
Symbol 209 MovieClip [BR_c_barrier_skin1] Frame 1
this.radius = _width / 2; this.pos = new Vector(0, 0); this.vel = new Vector(0, 0); this.m = 99; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 208 MovieClip "thisBrick" in Symbol 209 MovieClip [BR_c_barrier_skin1] Frame 1
onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; initPosition = _y; radius = _width / 2; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 213 MovieClip [BR_c_barrier_skin2] Frame 1
this.radius = _width / 2; this.pos = new Vector(0, 0); this.vel = new Vector(0, 0); this.m = 99; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 212 MovieClip "thisBrick" in Symbol 213 MovieClip [BR_c_barrier_skin2] Frame 1
onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; initPosition = _y; radius = _width / 2; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 222 MovieClip [DEVBR_d_barrier] Frame 1
this.onMouseDown = function () { p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { var f = (this._currentframe + 1); if (f > 3) { f = 1; } this.gotoAndPlay(f); } }; stop();
Symbol 222 MovieClip [DEVBR_d_barrier] Frame 2
stop();
Symbol 222 MovieClip [DEVBR_d_barrier] Frame 3
stop();
Symbol 227 MovieClip [BR_d_barrier_skin1] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 226 MovieClip "thisBrick" in Symbol 227 MovieClip [BR_d_barrier_skin1] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 228 MovieClip [BR_d_barrier_skin2] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 217 MovieClip "thisBrick" in Symbol 228 MovieClip [BR_d_barrier_skin2] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 229 MovieClip [BR_d_barrier_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 217 MovieClip "thisBrick" in Symbol 229 MovieClip [BR_d_barrier_skin0] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 230 MovieClip [BR_s_barrier_skin1] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 221 MovieClip "thisBrick" in Symbol 230 MovieClip [BR_s_barrier_skin1] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 233 MovieClip [BR_s_barrier_skin2] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 232 MovieClip "thisBrick" in Symbol 233 MovieClip [BR_s_barrier_skin2] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 234 MovieClip [BR_s_barrier_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 221 MovieClip "thisBrick" in Symbol 234 MovieClip [BR_s_barrier_skin0] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 237 MovieClip [DEVBR_i_barrier] Frame 1
this.onMouseDown = function () { p = new object(); p.x = thisBrick._xmouse; p.y = thisBrick._ymouse; this.localToGlobal(p); if (this.thisBrick.hitTest(p.x, p.y, true)) { var f = (this._currentframe + 1); if (f > 2) { f = 1; } this.gotoAndPlay(f); } }; stop();
Symbol 237 MovieClip [DEVBR_i_barrier] Frame 2
stop();
Symbol 238 MovieClip [BR_i_barrier_skin1] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 236 MovieClip "thisBrick" in Symbol 238 MovieClip [BR_i_barrier_skin1] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 239 MovieClip [BR_i_barrier_skin2] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 236 MovieClip "thisBrick" in Symbol 239 MovieClip [BR_i_barrier_skin2] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 240 MovieClip [BR_i_barrier_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 236 MovieClip "thisBrick" in Symbol 240 MovieClip [BR_i_barrier_skin0] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Instance of Symbol 242 MovieClip in Symbol 243 MovieClip [fireShadow] Frame 1
onClipEvent (enterFrame) { this._alpha = this._alpha - 5; }
Symbol 243 MovieClip [fireShadow] Frame 6
this.removeMovieClip();
Instance of Symbol 245 MovieClip in Symbol 246 MovieClip [ballShadow] Frame 1
onClipEvent (enterFrame) { this._alpha = this._alpha - 5; }
Symbol 246 MovieClip [ballShadow] Frame 10
this.removeMovieClip();
Symbol 248 MovieClip [StarFire] Frame 1
this.onEnterFrame = function () { this._y++; this._alpha = this._alpha - 5; if (this._alpha <= 0) { this.removeMovieClip(); } };
Symbol 250 MovieClip [StarfieldStar] Frame 1
this.pos = new Vector(0, 0); this.vel = new Vector(5, 0);
Symbol 255 MovieClip [ballLauncher] Frame 36
_root.newBall.start();
Symbol 255 MovieClip [ballLauncher] Frame 84
_root.resetBall(this.thisBall, this._x, this._y);
Symbol 255 MovieClip [ballLauncher] Frame 135
this.removeMovieClip();
Symbol 256 MovieClip [block] Frame 1
stop();
Instance of Symbol 125 MovieClip in Symbol 256 MovieClip [block] Frame 2
onClipEvent (load) { vx = ((random(50) > 25) ? ((-random(8)) - 1) : (random(8) + 1)); vy = ((random(50) > 25) ? ((-random(8)) - 1) : (random(8) + 1)); } onClipEvent (enterFrame) { _x = (_x + vx); vx = vx * 1.1; _y = (_y + vy); vy = vy * 1.1; }
Symbol 256 MovieClip [block] Frame 19
_parent.removeMovieClip();
Symbol 290 MovieClip [ScoresNotAvailable] Frame 1
stop();
Symbol 290 MovieClip [ScoresNotAvailable] Frame 81
this.removeMovieClip();
Symbol 292 MovieClip [LevelPanel] Frame 19
gotoAndPlay (1);
Symbol 292 MovieClip [LevelPanel] Frame 20
_parent.removeMovieClip();
Symbol 295 MovieClip [ExplodeParticle] Frame 1
this.onEnterFrame = function () { this._x = this._x + this.vx; this._y = this._y + this.vy; this.vx = this.vx * 0.99; this.vy = this.vy * 0.99; this._alpha = this._alpha - 7; this._rotation = this._rotation + (this.vx * 10); if (this._alpha <= 0) { this.removeMovieClip(); } }; stop();
Symbol 298 MovieClip [ExplodeAnim] Frame 11
this.removeMovieClip();
Symbol 299 MovieClip [ExplodeAnimSmall] Frame 1
function newExploder() { this.attachMovie("ExplodeAnim", "ExplodeAnim" + explodeDepth, explodeDepth); this["ExplodeAnim" + explodeDepth]._x = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._y = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._xscale = (this["ExplodeAnim" + explodeDepth]._yscale = random(60) + 60); explodeDepth++; } explodeDepth = 7000; newExploder(); newExploder();
Symbol 299 MovieClip [ExplodeAnimSmall] Frame 3
newExploder(); newExploder();
Symbol 299 MovieClip [ExplodeAnimSmall] Frame 5
newExploder(); newExploder();
Symbol 299 MovieClip [ExplodeAnimSmall] Frame 7
newExploder();
Symbol 299 MovieClip [ExplodeAnimSmall] Frame 8
newExploder(); newExploder();
Symbol 299 MovieClip [ExplodeAnimSmall] Frame 177
this.removeMovieClip();
Symbol 300 MovieClip [ExplodeAnimMulti] Frame 1
function newExploder() { this.attachMovie("ExplodeAnim", "ExplodeAnim" + explodeDepth, explodeDepth); this["ExplodeAnim" + explodeDepth]._x = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._y = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._xscale = (this["ExplodeAnim" + explodeDepth]._yscale = random(60) + 60); explodeDepth++; } explodeDepth = 7000; newExploder(); newExploder(); newExploder();
Symbol 300 MovieClip [ExplodeAnimMulti] Frame 3
newExploder(); newExploder(); newExploder();
Symbol 300 MovieClip [ExplodeAnimMulti] Frame 5
newExploder(); newExploder(); newExploder();
Symbol 300 MovieClip [ExplodeAnimMulti] Frame 7
newExploder(); newExploder(); newExploder();
Symbol 300 MovieClip [ExplodeAnimMulti] Frame 8
newExploder(); newExploder(); newExploder(); newExploder(); newExploder();
Symbol 300 MovieClip [ExplodeAnimMulti] Frame 11
newExploder(); newExploder(); newExploder(); newExploder(); newExploder();
Symbol 300 MovieClip [ExplodeAnimMulti] Frame 15
newExploder(); newExploder(); newExploder(); newExploder(); newExploder();
Symbol 300 MovieClip [ExplodeAnimMulti] Frame 18
newExploder(); newExploder(); newExploder(); newExploder(); newExploder();
Symbol 300 MovieClip [ExplodeAnimMulti] Frame 177
this.removeMovieClip();
Symbol 307 Button
on (press) { _root.cleanUp(); _root.gotoAndPlay("Intro", 1); _root.pausedObj.removeMovieClip(); }
Symbol 310 Button
on (press) { _root.paused = !_root.paused; _root.pausedObj.removeMovieClip(); }
Instance of Symbol 302 MovieClip in Symbol 311 MovieClip [paused] Frame 1
onClipEvent (load) { this._alpha = 40; }
Symbol 312 MovieClip [ballGfxBounce] Frame 10
stop();
Symbol 315 MovieClip [ExtraLife] Frame 33
this.removeMovieClip();
Instance of Symbol 316 MovieClip "numObj" in Symbol 317 MovieClip [PointsScoreNotify] Frame 2
onClipEvent (load) { _root.drawSingleNum(_parent.num, 0, 0, this, false, true); }
Symbol 317 MovieClip [PointsScoreNotify] Frame 22
this.removeMovieClip();
Symbol 320 MovieClip [SmallBulletLaunch] Frame 15
stop();
Symbol 323 MovieClip Frame 1
this.onEnterFrame = function () { };
Instance of Symbol 322 MovieClip in Symbol 323 MovieClip Frame 1
onClipEvent (enterFrame) { this._alpha = random(60) + 20; }
Instance of Symbol 323 MovieClip "bulletGfx" in Symbol 324 MovieClip [SmallBullet] Frame 1
onClipEvent (enterFrame) { _parent._x = _parent._x + _parent.vx; _parent._y = _parent._y + _parent.vy; _parent.vx = _parent.vx * 1.05; _parent.vy = _parent.vy * 1.05; var x = (_parent._x - _root.halfWidth); var y = (_parent._y - _root.halfHeight); var len = Math.sqrt((x * x) + (y * y)); if (len > ((_root.Ring._width / 2) - Math.abs(_parent.bulletGfx._y))) { bv = new object(); bv.x = _parent.bulletGfx._x; bv.y = _parent.bulletGfx._y; _parent.localToGlobal(bv); _root.startParticleExplosion(bv.x, bv.y); _root.explode.start(); _root.bat.activeBullets--; _parent.removeMovieClip(); } }
Instance of Symbol 328 MovieClip in Symbol 329 MovieClip Frame 1
onClipEvent (enterFrame) { this._alpha = random(20) + 80; }
Symbol 330 MovieClip [BeamLaser] Frame 12
function lightningStrike(fromx, fromy, col, depth, xbias) { var origX = fromx; var origY = fromy; var tox; var toy; this.lineStyle(1, col, 100); var bolt = 0; while (bolt < depth) { tox = (origX + (random(20) - 10)) + xbias; toy = fromy + 10; this.moveTo(fromx, fromy); this.lineTo(tox, toy); fromx = tox; fromy = toy; bolt++; } }
Instance of Symbol 326 MovieClip in Symbol 330 MovieClip [BeamLaser] Frame 12
onClipEvent (enterFrame) { this._alpha = random(30) + 50; }
Symbol 330 MovieClip [BeamLaser] Frame 13
this.clear(); lightningStrike(0, 45, 16777215, 15, 0); lightningStrike(0, 45, 14540270, 10, 0); lightningStrike(0, 45, 15658751, 15, 0); gotoAndPlay (12);
Symbol 330 MovieClip [BeamLaser] Frame 15
this.clear();
Symbol 330 MovieClip [BeamLaser] Frame 23
this.removeMovieClip();
Symbol 338 Button
on (press) { _root.gotoAndPlay("GameOver"); gotoAndPlay (2); }
Symbol 342 Button
on (press) { _root.paused = false; gotoAndPlay (2); }
Symbol 343 MovieClip [quit] Frame 1
stop();
Symbol 343 MovieClip [quit] Frame 2
this.removeMovieClip();
Symbol 346 Button
on (press) { _root.cleanUp(); _root.gotoAndPlay("InitAll"); _parent.removeMovieClip(); }
Symbol 349 Button
on (press) { _root.cleanUp(); _root.gotoAndPlay("Intro", 1); _parent.removeMovieClip(); }
Symbol 354 Button
on (press) { var url = ((((((_root.HI_SCORE_SCRIPT + "developer=") + _root.DEVELOPER_NAME) + "&game=") + _root.GAME_NAME) + "&score=") + _root.totalScore); getURL (url, "_top"); }
Symbol 357 MovieClip [BR_c_barrier_skin0] Frame 1
this.radius = _width / 2; this.pos = new Vector(0, 0); this.vel = new Vector(0, 0); this.m = 99; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 204 MovieClip "thisBrick" in Symbol 357 MovieClip [BR_c_barrier_skin0] Frame 1
onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; initPosition = _y; radius = _width / 2; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 362 MovieClip [AreaOfInfluence] Frame 1
Symbol 364 MovieClip [DrainCoverPickupGfx] Frame 1
stop();
Symbol 365 MovieClip [DrainCoverPickup] Frame 1
stop();
Instance of Symbol 104 MovieClip [ballGfx] in Symbol 366 MovieClip [frontEndBall] Frame 1
onClipEvent (load) { this.vx = ((random(100) > 50) ? (-(random(4) + 2)) : (random(4) + 2)); vy = -random(10); bounce = 1; gravity = 0.4; } onClipEvent (enterFrame) { if (!dragging) { this.vy = this.vy + this.gravity; if (_parent._y > 460) { this.bounce = this.bounce - 0.1; this.vy = this.vy * (-bounce); this.vx = ((random(100) > 50) ? (-(random(4) + 2)) : (random(4) + 2)); if (this.bounce < 0.8) { this.bounce = 1; this.vy = -(random(10) + 10); } _parent._y = 460; } if (_parent._x > 640) { this.vx = -this.vx; _parent._x = 640; } else if (_parent._x < 0) { this.vx = -this.vx; _parent._x = 0; } _parent._x = _parent._x + this.vx; _parent._y = _parent._y + this.vy; } }
Symbol 373 MovieClip [OuterRing_skin0] Frame 1
stop();
Symbol 373 MovieClip [OuterRing_skin0] Frame 2
stop();
Symbol 380 MovieClip [Saucer] Frame 1
function createParticle() { i = _root.SAUCER_DEPTH++; if (_root.SAUCER_DEPTH > _root.SAUCER_DEPTH_MAX) { _root.SAUCER_DEPTH = _root.SAUCER_DEPTH_MIN; } _root.attachMovie(thisShadow, "Star" + i, i); var thisStar = _root["Star" + i]; thisStar._alpha = 70; thisStar._rotation = sauce._rotation; thisStar._xscale = this._xscale * 3; thisStar._yscale = this._yscale * 3; thisStar._x = _x; thisStar._y = _y; } thisShadow = "saucerShadow";
Instance of Symbol 379 MovieClip "blob" in Symbol 380 MovieClip [Saucer] Frame 1
onClipEvent (enterFrame) { _parent.createParticle(); if (Math.random() > 0.05) { if (Math.random() > 0.5) { vx = vx + (Math.random() / 2); } else { vx = vx - (Math.random() / 2); } if (Math.random() > 0.5) { vy = vy + (Math.random() / 2); } else { vy = vy - (Math.random() / 2); } } else { if (vx > 0) { vx = vx - 1.6; } if (vx < 0) { vx = vx + 1.6; } if (vy > 0) { vy = vy - 1.6; } if (vy < 0) { vy = vy + 1.6; } } if (vx > 10) { vx = 10; } if (vx < -10) { vx = -10; } if (vy > 10) { vy = 10; } if (vy < -10) { vy = -10; } _parent._x = _parent._x + vx; _parent._y = _parent._y + vy; x = _parent._x; y = _parent._y; h = _parent._height; w = _parent._width; if (x < 0) { if (vx < 0) { vx = -vx; } _parent._x = 1; } else if ((x + w) > 640) { if (vx > 0) { vx = -vx; } _parent._x = (640 - w) - 1; } if (y < 0) { if (vy < 0) { vy = -vy; } _parent._y = 1; } else if ((y + h) > 480) { if (vy > 0) { vy = -vy; } _parent._y = (480 - h) - 1; } } onClipEvent (load) { landingSaucer = false; this.d = 15; this.vy = -(random(5) + 3); this.vx = 0; if (random(10) > 5) { this.vx = random(5); } else { this.vx = -random(5); } this.oldX = this._x; this.oldY = this._y; }
Symbol 380 MovieClip [Saucer] Frame 17
gotoAndPlay (1);
Symbol 385 MovieClip Frame 1
stop();
Symbol 385 MovieClip Frame 2
stop();
Symbol 385 MovieClip Frame 3
stop();
Symbol 394 MovieClip Frame 1
stop();
Symbol 397 MovieClip Frame 1
stop();
Symbol 401 MovieClip Frame 1
stop();
Symbol 404 MovieClip Frame 1
stop();
Symbol 405 Button
on (press) { gotoAndPlay (4); }
Symbol 423 Button
on (press) { getURL ("http://www.plasticmartians.com", "blank"); }
Symbol 438 Button
on (press) { _root.gotoAndPlay("pickups"); }
Symbol 440 MovieClip Frame 1
stop(); drainSize = 40; drainRadius = drainSize / 2;
Symbol 440 MovieClip Frame 2
stop();
Symbol 440 MovieClip Frame 3
stop();
Symbol 441 MovieClip Frame 1
stop();
Symbol 458 Button
on (press) { _root.gotoAndPlay("startInstruct"); }
Symbol 494 MovieClip Frame 1
stop();
Symbol 498 Button
on (press) { if (this._visible) { ldata = levelData[level]; oScore.removeMovieClip(); oLife.removeMovieClip(); Key.removeListener(_root.someListener); colList.destroyAllObjects(); removeAllBalls(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } gotoAndPlay (1541); } }
Symbol 500 Button
on (press) { if (this._visible) { var i = 0; while (i < levelData.length) { txt = ("// level " + (i + 1)) + "\nnew Array("; var j = 0; while (j < levelData[i].length) { if ((levelData[i][j] == "@") || (levelData[i][j] == "#")) { txt = txt + (("\"" + levelData[i][j]) + "\""); } else { txt = txt + levelData[i][j]; } if (j != (levelData[i].length - 1)) { txt = txt + ","; } j++; } txt = txt + "),"; i++; } } }
Symbol 502 MovieClip Frame 1
function addPickup(aPickup, px, py) { var newPickupCount = -1; switch (aPickup) { case _root.PU_BOMB : removeCurrentPickup(); this.hasBomb = true; var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; if (thisBall._currentframe != 4) { thisBall.gotoAndStop(4); } g++; } break; case _root.PU_MULTI_LASER : removeCurrentPickup(); break; case _root.PU_SINGLE_LASER : removeCurrentPickup(); if (!_root.bm) { _root.attachMovie("BeamLaser", "bm", _root.BEAM_DEPTH); _root.bm._x = _x; _root.bm._y = _y; } _root.electric.start(0, 15); this.maxMove = 6; this.moveStep = 1; break; case _root.PU_BANANA : case _root.PU_BANANA_BUNCH : case _root.PU_MELON : case _root.PU_EATEN_MELON : case _root.PU_RASPBERRY : case _root.PU_DIAMOND : case _root.PU_CHERRY : var sc = _root.pickupObject[aPickup][_root.PUVAR_SCORE]; _root.addScore(sc); _root.popupScore(sc, px, py); break; case _root.PU_REVERSE_BAT : removeCurrentPickup(); break; case _root.PU_NEXT_LEVEL : removeCurrentPickup(); cpc = 0; update(); _root.gotoAndPlay("NextLevel"); break; case _root.PU_LARGE_BAT : removeCurrentPickup(); var oldRot = _rotation; _rotation = 0; _width = (initWidth + 20); _rotation = oldRot; break; case _root.PU_SMALL_BAT : removeCurrentPickup(); var oldRot = _rotation; _rotation = 0; _width = (initWidth - 15); _rotation = oldRot; break; case _root.PU_SPEED_UP : this.maxMove = 24; this.moveStep = 8; break; case _root.PU_SPEED_DOWN : this.maxMove = 10; this.moveStep = 2; break; case _root.PU_NO_GRAVITY : removeCurrentPickup(); var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; thisBall.applyGravity = false; g++; } break; case _root.PU_REVERSE_GRAVITY : removeCurrentPickup(); break; case _root.PU_FIREBALL : removeCurrentPickup(); if (!hasBomb) { var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; if (thisBall._currentframe != 3) { thisBall.gotoAndStop(3); } g++; } } break; case _root.PU_MULTI_BALL : _root.LaunchBall(); break; case _root.PU_DOUBLE_BAT : removeCurrentPickup(); if (!_root.bat1) { _root.bat.duplicateMovieClip("bat1", 30); _root.bat1.gotoAndStop(1); _root.bat1._rotation = _root.bat1._rotation + 180; } break; case _root.PU_DRAIN_COVER : removeCurrentPickup(); if (_root.DrainCover) { break; } _root.attachMovie("DrainCover_skin" + _root.skin, "DrainCover", 10); dc = _root.DrainCover; dc.radius = dc._width / 2; dc.m = 1; dc.vx = 0; dc.vy = 0; dc._x = _root.halfWidth; dc._y = _root.halfHeight; } newPickupCount = _root.pickupObject[aPickup][_root.PUVAR_DURATION]; if (newPickupCount != -1) { var pickupNum = hasPickup(aPickup); cpc = 0; pickupCount = newPickupCount; cp = aPickup; cpc = pickupCount; } gotoAndPlay (2); } function resetBat() { this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; this.hasBomb = false; this.removeCurrentPickup(); } function removeCurrentPickup() { switch (cp) { case _root.PU_LARGE_BAT : case _root.PU_SMALL_BAT : var oldRot = _rotation; _rotation = 0; _width = initWidth; _height = initHeight; _rotation = oldRot; gotoAndPlay (2); break; case _root.PU_SPEED_UP : case _root.PU_SPEED_DOWN : this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; break; case _root.PU_DRAIN_COVER : _root.DrainCover.gotoAndPlay(11); break; case _root.PU_FIREBALL : if (!hasBomb) { var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; thisBall.gotoAndStop(2); g++; } } break; case _root.PU_DOUBLE_BAT : _root.bat1.removeMovieClip(); break; case _root.PU_NO_GRAVITY : var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; thisBall.applyGravity = true; g++; } break; case _root.PU_MULTI_LASER : _root.sbl.removeMovieClip(); break; case _root.PU_SINGLE_LASER : _root.bm.gotoAndPlay(15); this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; _root.electric.stop("electric"); case _root.PU_REVERSE_GRAVITY : case _root.PU_MULTI_BALL : } pickupCount = -1; cpc = -1; cp = -1; } function moveBat() { this._rotation = this._rotation + this.move; if (_root.bat1) { _root.bat1._rotation = _root.bat1._rotation + this.move; } } function update() { moveBat(); if (cpc > 0) { cpc--; } if (cpc == 0) { removeCurrentPickup(); } } function hasPickup(aPickup) { if (cp == aPickup) { return(cp); } return(-1); } walls = 4; numDots = 10; stop();
Symbol 502 MovieClip Frame 10
if (this.hasPickup(PU_SINGLE_LASER)) { gotoAndPlay (11); } else { gotoAndPlay (1); }
Symbol 507 MovieClip Frame 20
stop();
Symbol 512 MovieClip Frame 1
function addBall() { this.currentX = (this.ballsHolder._x + 2) + ((this.currentBall % 4) * 18); if ((this.currentBall % 4) == 0) { this.currentY = this.currentY + 18; } this.attachMovie("ballGfxBounce", ball + this.currentBall, 92929 + this.currentBall); this[ball + this.currentBall]._xscale = (this[ball + this.currentBall]._yscale = 50); this[ball + this.currentBall]._x = currentX; this[ball + this.currentBall]._y = currentY; } this.currentY = this.ballsHolder._y; this.currentBall = 0;
Symbol 512 MovieClip Frame 28
_root.drawSingleNum(_root.LEVELS_SCORE_MULTIPLIER * (_root.level + 1), this.levelNum._x, this.levelNum._y, this.levelNum, true, false, 70);
Symbol 512 MovieClip Frame 36
if (this.currentBall < _root.lives) { this.addBall(); this.currentBall++; _root.drawSingleNum(this.currentBall * _root.BALLS_SCORE_MULTIPLIER, this.ballsNum._x, this.levelNum._y, this.ballsNum, true, false, 70); } else { gotoAndPlay (45); }
Symbol 512 MovieClip Frame 44
gotoAndPlay (36);
Symbol 512 MovieClip Frame 55
stop();
Symbol 515 Button
on (press) { _root.buildLevel(); }
Symbol 517 Button
on (press) { _root.testLevel(); }
Symbol 519 Button
on (press) { _root.clearLevel(); }

Library Items

Symbol 1 Sound [strikeDull]
Symbol 2 Sound [electric]
Symbol 3 Sound [powerUpHitBat]
Symbol 4 Sound [powerUp]
Symbol 5 Sound [nextLevel]
Symbol 6 Sound [newBall]
Symbol 7 Sound [LaserShoot]
Symbol 8 Sound [explode]
Symbol 9 Sound [clankHit]
Symbol 10 Sound [brickHit2]
Symbol 11 Sound [brickHit1]
Symbol 12 Sound [ballDrop]
Symbol 13 GraphicUsed by:24 373
Symbol 14 BitmapUsed by:15 16
Symbol 15 GraphicUses:14Used by:24
Symbol 16 GraphicUses:14Used by:24
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:24
Symbol 19 GraphicUsed by:24
Symbol 20 GraphicUsed by:24 373
Symbol 21 GraphicUsed by:24 29 207 373
Symbol 22 GraphicUsed by:24 373
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClip [OuterRing_skin0]Uses:13 15 16 18 19 20 21 22 23
Symbol 25 GraphicUsed by:29
Symbol 26 GraphicUsed by:29 207
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:29 207
Symbol 29 MovieClipUses:25 21 26 28Used by:30
Symbol 30 MovieClip [DrainCover_skin1]Uses:29
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClip [DrainCover_skin2]Uses:31
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:37
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:37
Symbol 37 MovieClip [DrainCover_skin0]Uses:34 36
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClip [baseLine]Uses:38
Symbol 40 GraphicUsed by:42
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:40 41Used by:47 50 51 59 62 63 65 66 67 73 75 76 78 79 80 86 88 89 91 92 93 99 101 102 227 228 229 230 233 234 238 239 240 502
Symbol 43 BitmapUsed by:44 64 77 90 202 215 219 254 287 332 359 367 368
Symbol 44 GraphicUses:43Used by:45
Symbol 45 MovieClipUses:44Used by:47 51 53
Symbol 46 MovieClipUsed by:47 50 51 59 62 63 65 66 67 73 75 76 78 79 80 86 88 89 91 92 93 99 101 102 205 209 213 227 228 229 230 233 234 238 239 240 357
Symbol 47 MovieClip [BR_unbreakable_0_skin1]Uses:42 45 46
Symbol 48 GraphicUsed by:49 60 66 74 79 87 92 100 231
Symbol 49 MovieClipUses:48Used by:50
Symbol 50 MovieClip [BR_unbreakable_0_skin2]Uses:42 49 46
Symbol 51 MovieClip [BR_unbreakable_0_skin0]Uses:42 45 46
Symbol 52 GraphicUsed by:53 58
Symbol 53 MovieClipUses:45 52Used by:54 59 63
Symbol 54 MovieClip [DEVBR_normal_0]Uses:53
Symbol 55 BitmapUsed by:56 71 84 97
Symbol 56 GraphicUses:55Used by:57
Symbol 57 MovieClipUses:56Used by:58
Symbol 58 MovieClipUses:57 52Used by:59
Symbol 59 MovieClip [BR_normal_0_skin1]Uses:58 42 46 53
Symbol 60 MovieClipUses:48Used by:61
Symbol 61 MovieClipUses:60Used by:62
Symbol 62 MovieClip [BR_normal_0_skin2]Uses:61 42 46
Symbol 63 MovieClip [BR_normal_0_skin0]Uses:53 42 46
Symbol 64 GraphicUses:43Used by:65 67 69
Symbol 65 MovieClip [BR_unbreakable_1_skin1]Uses:42 64 46
Symbol 66 MovieClip [BR_unbreakable_1_skin2]Uses:42 48 46
Symbol 67 MovieClip [BR_unbreakable_1_skin0]Uses:42 64 46
Symbol 68 GraphicUsed by:69 72
Symbol 69 MovieClipUses:64 68Used by:70 73 76
Symbol 70 MovieClip [DEVBR_normal_1]Uses:69
Symbol 71 GraphicUses:55Used by:72
Symbol 72 MovieClipUses:71 68Used by:73
Symbol 73 MovieClip [BR_normal_1_skin1]Uses:72 46 42 69
Symbol 74 MovieClipUses:48Used by:75
Symbol 75 MovieClip [BR_normal_1_skin2]Uses:74 46 42
Symbol 76 MovieClip [BR_normal_1_skin0]Uses:69 46 42
Symbol 77 GraphicUses:43Used by:78 80 82
Symbol 78 MovieClip [BR_unbreakable_3_skin1]Uses:42 77 46
Symbol 79 MovieClip [BR_unbreakable_3_skin2]Uses:42 48 46
Symbol 80 MovieClip [BR_unbreakable_3_skin0]Uses:42 77 46
Symbol 81 GraphicUsed by:82 85
Symbol 82 MovieClipUses:77 81Used by:83 89
Symbol 83 MovieClip [DEVBR_normal_3]Uses:82
Symbol 84 GraphicUses:55Used by:85
Symbol 85 MovieClipUses:84 81Used by:86
Symbol 86 MovieClip [BR_normal_3_skin1]Uses:85 46 42
Symbol 87 MovieClipUses:48Used by:88
Symbol 88 MovieClip [BR_normal_3_skin2]Uses:87 46 42
Symbol 89 MovieClip [BR_normal_3_skin0]Uses:82 46 42
Symbol 90 GraphicUses:43Used by:91 93 95
Symbol 91 MovieClip [BR_unbreakable_2_skin1]Uses:42 90 46
Symbol 92 MovieClip [BR_unbreakable_2_skin2]Uses:42 48 46
Symbol 93 MovieClip [BR_unbreakable_2_skin0]Uses:42 90 46
Symbol 94 GraphicUsed by:95 98
Symbol 95 MovieClipUses:90 94Used by:96 99 102
Symbol 96 MovieClip [DEVBR_normal_2]Uses:95
Symbol 97 GraphicUses:55Used by:98
Symbol 98 MovieClipUses:97 94Used by:99
Symbol 99 MovieClip [BR_normal_2_skin1]Uses:98 46 42 95
Symbol 100 MovieClipUses:48Used by:101
Symbol 101 MovieClip [BR_normal_2_skin2]Uses:100 46 42
Symbol 102 MovieClip [BR_normal_2_skin0]Uses:95 46 42
Symbol 103 Graphic [ballGfx]Used by:104 312
Symbol 104 MovieClip [ballGfx]Uses:103Used by:112 255 366
Symbol 105 GraphicUsed by:112
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClip [BombPickupGfx]Uses:106Used by:110  Timeline
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:110
Symbol 110 MovieClipUses:107 109Used by:111
Symbol 111 MovieClip [BombPickup]Uses:110Used by:112
Symbol 112 MovieClip [Ball]Uses:104 105 111
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClip [dot]Uses:113
Symbol 115 GraphicUsed by:116
Symbol 116 MovieClip [NoGravityPickupGfx]Uses:115Used by:117  Timeline
Symbol 117 MovieClip [NoGravityPickup]Uses:116
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClip [NextLevelPickupGfx]Uses:118Used by:120  Timeline
Symbol 120 MovieClip [NextLevelPickup]Uses:119
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClip [MultiBallPickupGfx]Uses:121Used by:123  Timeline
Symbol 123 MovieClip [MultiBallPickup]Uses:122
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:124Used by:127 256
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClip [FireballPickupGfx]Uses:125 126Used by:128  Timeline
Symbol 128 MovieClip [FireballPickup]Uses:127
Symbol 129 GraphicUsed by:132 137 144 176 181 184
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:130Used by:132 184 428 436 456
Symbol 132 MovieClip [LittleBatPickupGfx]Uses:129 131Used by:133  Timeline
Symbol 133 MovieClip [LittleBatPickup]Uses:132
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:137
Symbol 136 GraphicUsed by:137 144
Symbol 137 MovieClip [MultiLaserPickupGfx]Uses:129 135 136Used by:138  Timeline
Symbol 138 MovieClip [MultiLaserPickup]Uses:137
Symbol 139 GraphicUsed by:144
Symbol 140 GraphicUsed by:144
Symbol 141 GraphicUsed by:144
Symbol 142 GraphicUsed by:144
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClip [SingleLaserPickupGfx]Uses:129 139 136 140 141 142 143Used by:145  Timeline
Symbol 145 MovieClip [SingleLaserPickup]Uses:144
Symbol 146 GraphicUsed by:148
Symbol 147 GraphicUsed by:148
Symbol 148 MovieClip [RaspberryPickupGfx]Uses:146 147Used by:149  Timeline
Symbol 149 MovieClip [RaspberryPickup]Uses:148
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:150Used by:152 154
Symbol 152 MovieClip [BananaPickupGfx]Uses:151Used by:153  Timeline
Symbol 153 MovieClip [BananaPickup]Uses:152
Symbol 154 MovieClip [BananaBunchPickupGfx]Uses:151Used by:155  Timeline
Symbol 155 MovieClip [BananaBunchPickup]Uses:154
Symbol 156 GraphicUsed by:159
Symbol 157 GraphicUsed by:158
Symbol 158 MovieClipUses:157Used by:159 162
Symbol 159 MovieClip [EatenMelonPickupGfx]Uses:156 158Used by:160  Timeline
Symbol 160 MovieClip [EatenMelonPickup]Uses:159
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClip [MelonPickupGfx]Uses:161 158Used by:163  Timeline
Symbol 163 MovieClip [MelonPickup]Uses:162
Symbol 164 GraphicUsed by:166
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClip [DiamondPickupGfx]Uses:164 165Used by:167  Timeline
Symbol 167 MovieClip [DiamondPickup]Uses:166
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClip [CherryPickupGfx]Uses:168Used by:170  Timeline
Symbol 170 MovieClip [CherryPickup]Uses:169
Symbol 171 GraphicUsed by:172
Symbol 172 MovieClip [DoubleBatPickupGfx]Uses:171Used by:173  Timeline
Symbol 173 MovieClip [DoubleBatPickup]Uses:172
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:174Used by:176
Symbol 176 MovieClip [ReverseGravityPickupGfx]Uses:129 175Used by:177  Timeline
Symbol 177 MovieClip [ReverseGravityPickup]Uses:176
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:178Used by:181
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClip [ReverseBatPickupGfx]Uses:129 179 180Used by:182
Symbol 182 MovieClipUses:181Used by:183  Timeline
Symbol 183 MovieClip [ReverseBatPickup]Uses:182
Symbol 184 MovieClip [BigBatPickupGfx]Uses:129 131Used by:185  Timeline
Symbol 185 MovieClip [BigBatPickup]Uses:184
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClip [SpeedDownPickupGfx]Uses:186Used by:188  Timeline
Symbol 188 MovieClip [SpeedDownPickup]Uses:187
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClip [SpeedPickupGfx]Uses:189Used by:191  Timeline
Symbol 191 MovieClip [SpeedUpPickup]Uses:190
Symbol 192 GraphicUsed by:193
Symbol 193 MovieClipUses:192Used by:194
Symbol 194 MovieClip [QuickStar2]Uses:193
Symbol 195 GraphicUsed by:196
Symbol 196 MovieClipUses:195Used by:197
Symbol 197 MovieClip [QuickStar1]Uses:196
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198Used by:200
Symbol 200 MovieClip [Star]Uses:199
Symbol 201 GraphicUsed by:204
Symbol 202 GraphicUses:43Used by:203
Symbol 203 MovieClipUses:202Used by:204
Symbol 204 MovieClipUses:201 203Used by:205 357
Symbol 205 MovieClip [DEVBR_c_barrier]Uses:204 46
Symbol 206 GraphicUsed by:207
Symbol 207 MovieClipUses:206 21 26 28Used by:208
Symbol 208 MovieClipUses:207Used by:209
Symbol 209 MovieClip [BR_c_barrier_skin1]Uses:208 46
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClipUses:210Used by:212
Symbol 212 MovieClipUses:211Used by:213
Symbol 213 MovieClip [BR_c_barrier_skin2]Uses:212 46
Symbol 214 GraphicUsed by:217 226
Symbol 215 GraphicUses:43Used by:216
Symbol 216 MovieClipUses:215Used by:217
Symbol 217 MovieClipUses:214 216Used by:222 228 229
Symbol 218 GraphicUsed by:221
Symbol 219 GraphicUses:43Used by:220
Symbol 220 MovieClipUses:219Used by:221
Symbol 221 MovieClipUses:218 220Used by:222 230 234
Symbol 222 MovieClip [DEVBR_d_barrier]Uses:217 221
Symbol 223 BitmapUsed by:224
Symbol 224 GraphicUses:223Used by:225
Symbol 225 MovieClipUses:224Used by:226
Symbol 226 MovieClipUses:214 225Used by:227
Symbol 227 MovieClip [BR_d_barrier_skin1]Uses:226 42 46
Symbol 228 MovieClip [BR_d_barrier_skin2]Uses:217 42 46
Symbol 229 MovieClip [BR_d_barrier_skin0]Uses:217 42 46
Symbol 230 MovieClip [BR_s_barrier_skin1]Uses:221 46 42
Symbol 231 MovieClipUses:48Used by:232
Symbol 232 MovieClipUses:231Used by:233
Symbol 233 MovieClip [BR_s_barrier_skin2]Uses:232 46 42
Symbol 234 MovieClip [BR_s_barrier_skin0]Uses:221 46 42
Symbol 235 GraphicUsed by:236
Symbol 236 MovieClipUses:235Used by:237 238 239 240
Symbol 237 MovieClip [DEVBR_i_barrier]Uses:236
Symbol 238 MovieClip [BR_i_barrier_skin1]Uses:236 42 46
Symbol 239 MovieClip [BR_i_barrier_skin2]Uses:236 42 46
Symbol 240 MovieClip [BR_i_barrier_skin0]Uses:236 42 46
Symbol 241 GraphicUsed by:242
Symbol 242 MovieClipUses:241Used by:243
Symbol 243 MovieClip [fireShadow]Uses:242
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:244Used by:246
Symbol 246 MovieClip [ballShadow]Uses:245
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClip [StarFire]Uses:247
Symbol 249 GraphicUsed by:250
Symbol 250 MovieClip [StarfieldStar]Uses:249
Symbol 251 GraphicUsed by:255
Symbol 252 GraphicUsed by:255
Symbol 253 GraphicUsed by:255
Symbol 254 GraphicUses:43Used by:255
Symbol 255 MovieClip [ballLauncher]Uses:251 252 253 254 104
Symbol 256 MovieClip [block]Uses:125
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClip [0_gfx]Uses:257Used by:259
Symbol 259 MovieClip [0]Uses:258
Symbol 260 GraphicUsed by:261
Symbol 261 MovieClip [9_gfx]Uses:260Used by:262
Symbol 262 MovieClip [9]Uses:261
Symbol 263 GraphicUsed by:264
Symbol 264 MovieClip [8_gfx]Uses:263Used by:265
Symbol 265 MovieClip [8]Uses:264
Symbol 266 GraphicUsed by:267
Symbol 267 MovieClip [7_gfx]Uses:266Used by:268
Symbol 268 MovieClip [7]Uses:267
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClip [6_gfx]Uses:269Used by:271
Symbol 271 MovieClip [6]Uses:270
Symbol 272 GraphicUsed by:273
Symbol 273 MovieClip [5_gfx]Uses:272Used by:274
Symbol 274 MovieClip [5]Uses:273
Symbol 275 GraphicUsed by:276
Symbol 276 MovieClip [4_gfx]Uses:275Used by:277
Symbol 277 MovieClip [4]Uses:276
Symbol 278 GraphicUsed by:279
Symbol 279 MovieClip [3_gfx]Uses:278Used by:280
Symbol 280 MovieClip [3]Uses:279
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClip [2_gfx]Uses:281Used by:283
Symbol 283 MovieClip [2]Uses:282
Symbol 284 GraphicUsed by:285
Symbol 285 MovieClip [1_gfx]Uses:284Used by:286
Symbol 286 MovieClip [1]Uses:285
Symbol 287 GraphicUses:43Used by:288
Symbol 288 MovieClipUses:287Used by:290 292 509
Symbol 289 GraphicUsed by:290
Symbol 290 MovieClip [ScoresNotAvailable]Uses:288 289
Symbol 291 GraphicUsed by:292
Symbol 292 MovieClip [LevelPanel]Uses:288 291
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:293Used by:295
Symbol 295 MovieClip [ExplodeParticle]Uses:294
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:298
Symbol 298 MovieClip [ExplodeAnim]Uses:297
Symbol 299 MovieClip [ExplodeAnimSmall]
Symbol 300 MovieClip [ExplodeAnimMulti]
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:301Used by:311
Symbol 303 GraphicUsed by:304 307 310 346 349 354 405
Symbol 304 MovieClipUses:303Used by:307 310 346 349 354 394 397 401 404 405 441
Symbol 305 GraphicUsed by:307
Symbol 306 GraphicUsed by:307
Symbol 307 ButtonUses:304 305 306 303Used by:311
Symbol 308 GraphicUsed by:310
Symbol 309 GraphicUsed by:310
Symbol 310 ButtonUses:304 308 309 303Used by:311
Symbol 311 MovieClip [paused]Uses:302 307 310
Symbol 312 MovieClip [ballGfxBounce]Uses:103
Symbol 313 GraphicUsed by:314
Symbol 314 MovieClipUses:313Used by:315
Symbol 315 MovieClip [ExtraLife]Uses:314
Symbol 316 MovieClipUsed by:317
Symbol 317 MovieClip [PointsScoreNotify]Uses:316
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:320 323
Symbol 320 MovieClip [SmallBulletLaunch]Uses:319
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:321Used by:323
Symbol 323 MovieClipUses:322 319Used by:324
Symbol 324 MovieClip [SmallBullet]Uses:323
Symbol 325 GraphicUsed by:326
Symbol 326 MovieClipUses:325Used by:330
Symbol 327 GraphicUsed by:328
Symbol 328 MovieClipUses:327Used by:329
Symbol 329 MovieClipUses:328Used by:330
Symbol 330 MovieClip [BeamLaser]Uses:326 329
Symbol 331 GraphicUsed by:343  Timeline
Symbol 332 GraphicUses:43Used by:333
Symbol 333 MovieClipUses:332Used by:343  Timeline
Symbol 334 GraphicUsed by:343
Symbol 335 GraphicUsed by:338
Symbol 336 GraphicUsed by:338
Symbol 337 GraphicUsed by:338
Symbol 338 ButtonUses:335 336 337Used by:343
Symbol 339 GraphicUsed by:342
Symbol 340 GraphicUsed by:342
Symbol 341 GraphicUsed by:342
Symbol 342 ButtonUses:339 340 341Used by:343
Symbol 343 MovieClip [quit]Uses:331 333 334 338 342
Symbol 344 GraphicUsed by:346
Symbol 345 GraphicUsed by:346
Symbol 346 ButtonUses:304 344 345 303Used by:351 356
Symbol 347 GraphicUsed by:349 405 441
Symbol 348 GraphicUsed by:349 405 441
Symbol 349 ButtonUses:304 347 348 303Used by:351 356
Symbol 350 GraphicUsed by:351
Symbol 351 MovieClip [TryHarderTxt]Uses:346 349 350
Symbol 352 GraphicUsed by:354
Symbol 353 GraphicUsed by:354
Symbol 354 ButtonUses:304 352 353 303Used by:356
Symbol 355 GraphicUsed by:356
Symbol 356 MovieClip [ImpressedTxt]Uses:354 346 349 355
Symbol 357 MovieClip [BR_c_barrier_skin0]Uses:204 46Used by:Timeline
Symbol 358 GraphicUsed by:360
Symbol 359 GraphicUses:43Used by:360
Symbol 360 MovieClip [bat]Uses:358 359Used by:502
Symbol 361 GraphicUsed by:362
Symbol 362 MovieClip [AreaOfInfluence]Uses:361Used by:Timeline
Symbol 363 GraphicUsed by:364
Symbol 364 MovieClip [DrainCoverPickupGfx]Uses:363Used by:365
Symbol 365 MovieClip [DrainCoverPickup]Uses:364Used by:Timeline
Symbol 366 MovieClip [frontEndBall]Uses:104Used by:Timeline
Symbol 367 GraphicUses:43Used by:373
Symbol 368 GraphicUses:43Used by:373
Symbol 369 BitmapUsed by:370
Symbol 370 GraphicUses:369Used by:373
Symbol 371 GraphicUsed by:373 385
Symbol 372 GraphicUsed by:373
Symbol 373 MovieClip [OuterRing_skin0]Uses:13 367 368 370 371 20 21 22 372Used by:Timeline
Symbol 374 GraphicUsed by:378
Symbol 375 GraphicUsed by:376
Symbol 376 MovieClipUses:375Used by:377
Symbol 377 MovieClipUses:376Used by:378
Symbol 378 MovieClipUses:374 377Used by:380
Symbol 379 MovieClipUsed by:380
Symbol 380 MovieClip [Saucer]Uses:378 379Used by:Timeline
Symbol 381 BitmapUsed by:382
Symbol 382 GraphicUses:381Used by:385
Symbol 383 BitmapUsed by:384
Symbol 384 GraphicUses:383Used by:385
Symbol 385 MovieClipUses:382 384 371Used by:Timeline
Symbol 386 MovieClipUsed by:512  Timeline
Symbol 387 GraphicUsed by:Timeline
Symbol 388 GraphicUsed by:389 391
Symbol 389 MovieClipUses:388Used by:Timeline
Symbol 390 SoundUsed by:Timeline
Symbol 391 MovieClipUses:388Used by:Timeline
Symbol 392 GraphicUsed by:394
Symbol 393 GraphicUsed by:394
Symbol 394 MovieClipUses:304 392 393Used by:Timeline
Symbol 395 GraphicUsed by:397 456
Symbol 396 GraphicUsed by:397
Symbol 397 MovieClipUses:304 395 396Used by:Timeline
Symbol 398 GraphicUsed by:401
Symbol 399 FontUsed by:400 501
Symbol 400 TextUses:399Used by:401
Symbol 401 MovieClipUses:304 398 400Used by:Timeline
Symbol 402 GraphicUsed by:404
Symbol 403 GraphicUsed by:404
Symbol 404 MovieClipUses:304 402 403Used by:Timeline
Symbol 405 ButtonUses:304 347 348 303Used by:Timeline
Symbol 406 GraphicUsed by:Timeline
Symbol 407 GraphicUsed by:408
Symbol 408 MovieClipUses:407Used by:Timeline
Symbol 409 GraphicUsed by:410
Symbol 410 MovieClipUses:409Used by:Timeline
Symbol 411 GraphicUsed by:412
Symbol 412 MovieClipUses:411Used by:Timeline
Symbol 413 GraphicUsed by:414
Symbol 414 MovieClipUses:413Used by:Timeline
Symbol 415 GraphicUsed by:416
Symbol 416 MovieClipUses:415Used by:Timeline
Symbol 417 GraphicUsed by:418
Symbol 418 MovieClipUses:417Used by:Timeline
Symbol 419 GraphicUsed by:422 423
Symbol 420 GraphicUsed by:422 423
Symbol 421 GraphicUsed by:422 423
Symbol 422 ButtonUses:419 420 421Used by:Timeline
Symbol 423 ButtonUses:419 420 421Used by:Timeline
Symbol 424 GraphicUsed by:425
Symbol 425 MovieClipUses:424Used by:Timeline
Symbol 426 GraphicUsed by:427
Symbol 427 MovieClipUses:426Used by:428
Symbol 428 MovieClipUses:427 131Used by:Timeline
Symbol 429 FontUsed by:430 431 432 433 442 443 444 445 446 447 448 449 450 451 452 453 454 455
Symbol 430 TextUses:429Used by:Timeline
Symbol 431 TextUses:429Used by:Timeline
Symbol 432 TextUses:429Used by:Timeline
Symbol 433 TextUses:429Used by:Timeline
Symbol 434 GraphicUsed by:Timeline
Symbol 435 GraphicUsed by:436
Symbol 436 MovieClipUses:435 131Used by:438
Symbol 437 GraphicUsed by:438
Symbol 438 ButtonUses:436 437Used by:Timeline
Symbol 439 GraphicUsed by:440
Symbol 440 MovieClipUses:439Used by:Timeline
Symbol 441 MovieClipUses:304 347 348Used by:Timeline
Symbol 442 TextUses:429Used by:Timeline
Symbol 443 TextUses:429Used by:Timeline
Symbol 444 TextUses:429Used by:Timeline
Symbol 445 TextUses:429Used by:Timeline
Symbol 446 TextUses:429Used by:Timeline
Symbol 447 TextUses:429Used by:Timeline
Symbol 448 TextUses:429Used by:Timeline
Symbol 449 TextUses:429Used by:Timeline
Symbol 450 TextUses:429Used by:Timeline
Symbol 451 TextUses:429Used by:Timeline
Symbol 452 TextUses:429Used by:Timeline
Symbol 453 TextUses:429Used by:Timeline
Symbol 454 TextUses:429Used by:Timeline
Symbol 455 TextUses:429Used by:Timeline
Symbol 456 MovieClipUses:395 131Used by:458
Symbol 457 GraphicUsed by:458
Symbol 458 ButtonUses:456 457Used by:Timeline
Symbol 459 GraphicUsed by:494
Symbol 460 GraphicUsed by:494
Symbol 461 GraphicUsed by:494
Symbol 462 GraphicUsed by:494
Symbol 463 GraphicUsed by:494
Symbol 464 GraphicUsed by:494
Symbol 465 GraphicUsed by:494
Symbol 466 GraphicUsed by:494
Symbol 467 GraphicUsed by:494
Symbol 468 GraphicUsed by:494
Symbol 469 GraphicUsed by:494
Symbol 470 GraphicUsed by:494
Symbol 471 GraphicUsed by:494
Symbol 472 GraphicUsed by:494
Symbol 473 GraphicUsed by:494
Symbol 474 GraphicUsed by:494
Symbol 475 GraphicUsed by:494
Symbol 476 GraphicUsed by:494
Symbol 477 GraphicUsed by:494
Symbol 478 GraphicUsed by:494
Symbol 479 GraphicUsed by:494
Symbol 480 GraphicUsed by:494
Symbol 481 GraphicUsed by:494
Symbol 482 GraphicUsed by:494
Symbol 483 GraphicUsed by:494
Symbol 484 GraphicUsed by:494
Symbol 485 GraphicUsed by:494
Symbol 486 GraphicUsed by:494
Symbol 487 GraphicUsed by:494
Symbol 488 GraphicUsed by:494
Symbol 489 GraphicUsed by:494
Symbol 490 GraphicUsed by:494
Symbol 491 GraphicUsed by:494
Symbol 492 GraphicUsed by:494
Symbol 493 GraphicUsed by:494
Symbol 494 MovieClipUses:459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493Used by:Timeline
Symbol 495 GraphicUsed by:498 500 515 517 519
Symbol 496 GraphicUsed by:498
Symbol 497 GraphicUsed by:498 500 515 517 519
Symbol 498 ButtonUses:495 496 497Used by:Timeline
Symbol 499 GraphicUsed by:500
Symbol 500 ButtonUses:495 499 497Used by:Timeline
Symbol 501 EditableTextUses:399Used by:Timeline
Symbol 502 MovieClipUses:360 42Used by:Timeline
Symbol 503 GraphicUsed by:504
Symbol 504 MovieClipUses:503Used by:Timeline
Symbol 505 GraphicUsed by:506
Symbol 506 MovieClipUses:505Used by:507
Symbol 507 MovieClipUses:506Used by:Timeline
Symbol 508 GraphicUsed by:509
Symbol 509 MovieClipUses:288 508Used by:512
Symbol 510 GraphicUsed by:511 512
Symbol 511 MovieClipUses:510Used by:512
Symbol 512 MovieClipUses:509 386 511 510Used by:Timeline
Symbol 513 GraphicUsed by:Timeline
Symbol 514 GraphicUsed by:515
Symbol 515 ButtonUses:495 514 497Used by:Timeline
Symbol 516 GraphicUsed by:517
Symbol 517 ButtonUses:495 516 497Used by:Timeline
Symbol 518 GraphicUsed by:519
Symbol 519 ButtonUses:495 518 497Used by:Timeline
Symbol 520 FontUsed by:521
Symbol 521 EditableTextUses:520Used by:Timeline

Instance Names

"timerObj"Frame 1Symbol 386 MovieClip
"sauce"Frame 2Symbol 380 MovieClip [Saucer]
"button0"Frame 30Symbol 394 MovieClip
"button1"Frame 33Symbol 397 MovieClip
"button2"Frame 36Symbol 401 MovieClip
"button3"Frame 39Symbol 404 MovieClip
"StaticMainMenu"Frame 48Symbol 391 MovieClip
"but1"Frame 581Symbol 394 MovieClip
"but0"Frame 581Symbol 441 MovieClip
"bg"Frame 866Symbol 385 MovieClip
"boundingRing"Frame 866Symbol 362 MovieClip [AreaOfInfluence]
"Ring"Frame 866Symbol 373 MovieClip [OuterRing_skin0]
"pickupCounter"Frame 866Symbol 494 MovieClip
"designBut"Frame 866Symbol 498 Button
"dumpBut"Frame 866Symbol 500 Button
"fpsdebug"Frame 866Symbol 501 EditableText
"drain"Frame 867Symbol 440 MovieClip
"bat"Frame 867Symbol 502 MovieClip
"Runner"Frame 871Symbol 504 MovieClip
"gameOverTxt"Frame 879Symbol 507 MovieClip
"nextLevelFlasher"Frame 950Symbol 512 MovieClip
"ring"Frame 1541Symbol 373 MovieClip [OuterRing_skin0]
"wall4"Symbol 47 MovieClip [BR_unbreakable_0_skin1] Frame 1Symbol 42 MovieClip
"wall3"Symbol 47 MovieClip [BR_unbreakable_0_skin1] Frame 1Symbol 42 MovieClip
"wall0"Symbol 47 MovieClip [BR_unbreakable_0_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 47 MovieClip [BR_unbreakable_0_skin1] Frame 1Symbol 42 MovieClip
"wall2"Symbol 47 MovieClip [BR_unbreakable_0_skin1] Frame 1Symbol 42 MovieClip
"wall5"Symbol 47 MovieClip [BR_unbreakable_0_skin1] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 47 MovieClip [BR_unbreakable_0_skin1] Frame 1Symbol 46 MovieClip
"wall4"Symbol 50 MovieClip [BR_unbreakable_0_skin2] Frame 1Symbol 42 MovieClip
"wall3"Symbol 50 MovieClip [BR_unbreakable_0_skin2] Frame 1Symbol 42 MovieClip
"wall0"Symbol 50 MovieClip [BR_unbreakable_0_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 50 MovieClip [BR_unbreakable_0_skin2] Frame 1Symbol 42 MovieClip
"wall2"Symbol 50 MovieClip [BR_unbreakable_0_skin2] Frame 1Symbol 42 MovieClip
"wall5"Symbol 50 MovieClip [BR_unbreakable_0_skin2] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 50 MovieClip [BR_unbreakable_0_skin2] Frame 1Symbol 46 MovieClip
"wall4"Symbol 51 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 42 MovieClip
"wall3"Symbol 51 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 42 MovieClip
"wall0"Symbol 51 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 51 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 42 MovieClip
"wall2"Symbol 51 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 42 MovieClip
"wall5"Symbol 51 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 51 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 54 MovieClip [DEVBR_normal_0] Frame 1Symbol 53 MovieClip
"thisBrick"Symbol 59 MovieClip [BR_normal_0_skin1] Frame 1Symbol 58 MovieClip
"wall3"Symbol 59 MovieClip [BR_normal_0_skin1] Frame 1Symbol 42 MovieClip
"wall2"Symbol 59 MovieClip [BR_normal_0_skin1] Frame 1Symbol 42 MovieClip
"wall0"Symbol 59 MovieClip [BR_normal_0_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 59 MovieClip [BR_normal_0_skin1] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 59 MovieClip [BR_normal_0_skin1] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 59 MovieClip [BR_normal_0_skin1] Frame 2Symbol 53 MovieClip
"thisBrick"Symbol 62 MovieClip [BR_normal_0_skin2] Frame 1Symbol 61 MovieClip
"wall3"Symbol 62 MovieClip [BR_normal_0_skin2] Frame 1Symbol 42 MovieClip
"wall2"Symbol 62 MovieClip [BR_normal_0_skin2] Frame 1Symbol 42 MovieClip
"wall0"Symbol 62 MovieClip [BR_normal_0_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 62 MovieClip [BR_normal_0_skin2] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 62 MovieClip [BR_normal_0_skin2] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 62 MovieClip [BR_normal_0_skin2] Frame 2Symbol 61 MovieClip
"thisBrick"Symbol 63 MovieClip [BR_normal_0_skin0] Frame 1Symbol 53 MovieClip
"wall3"Symbol 63 MovieClip [BR_normal_0_skin0] Frame 1Symbol 42 MovieClip
"wall2"Symbol 63 MovieClip [BR_normal_0_skin0] Frame 1Symbol 42 MovieClip
"wall0"Symbol 63 MovieClip [BR_normal_0_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 63 MovieClip [BR_normal_0_skin0] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 63 MovieClip [BR_normal_0_skin0] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 63 MovieClip [BR_normal_0_skin0] Frame 2Symbol 53 MovieClip
"wall4"Symbol 65 MovieClip [BR_unbreakable_1_skin1] Frame 1Symbol 42 MovieClip
"wall3"Symbol 65 MovieClip [BR_unbreakable_1_skin1] Frame 1Symbol 42 MovieClip
"wall0"Symbol 65 MovieClip [BR_unbreakable_1_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 65 MovieClip [BR_unbreakable_1_skin1] Frame 1Symbol 42 MovieClip
"wall2"Symbol 65 MovieClip [BR_unbreakable_1_skin1] Frame 1Symbol 42 MovieClip
"wall5"Symbol 65 MovieClip [BR_unbreakable_1_skin1] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 65 MovieClip [BR_unbreakable_1_skin1] Frame 1Symbol 46 MovieClip
"wall4"Symbol 66 MovieClip [BR_unbreakable_1_skin2] Frame 1Symbol 42 MovieClip
"wall3"Symbol 66 MovieClip [BR_unbreakable_1_skin2] Frame 1Symbol 42 MovieClip
"wall0"Symbol 66 MovieClip [BR_unbreakable_1_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 66 MovieClip [BR_unbreakable_1_skin2] Frame 1Symbol 42 MovieClip
"wall2"Symbol 66 MovieClip [BR_unbreakable_1_skin2] Frame 1Symbol 42 MovieClip
"wall5"Symbol 66 MovieClip [BR_unbreakable_1_skin2] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 66 MovieClip [BR_unbreakable_1_skin2] Frame 1Symbol 46 MovieClip
"wall4"Symbol 67 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 42 MovieClip
"wall3"Symbol 67 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 42 MovieClip
"wall0"Symbol 67 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 67 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 42 MovieClip
"wall2"Symbol 67 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 42 MovieClip
"wall5"Symbol 67 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 67 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 70 MovieClip [DEVBR_normal_1] Frame 1Symbol 69 MovieClip
"thisBrick"Symbol 73 MovieClip [BR_normal_1_skin1] Frame 1Symbol 72 MovieClip
"hitAction"Symbol 73 MovieClip [BR_normal_1_skin1] Frame 1Symbol 46 MovieClip
"wall3"Symbol 73 MovieClip [BR_normal_1_skin1] Frame 1Symbol 42 MovieClip
"wall2"Symbol 73 MovieClip [BR_normal_1_skin1] Frame 1Symbol 42 MovieClip
"wall0"Symbol 73 MovieClip [BR_normal_1_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 73 MovieClip [BR_normal_1_skin1] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 73 MovieClip [BR_normal_1_skin1] Frame 2Symbol 69 MovieClip
"thisBrick"Symbol 75 MovieClip [BR_normal_1_skin2] Frame 1Symbol 74 MovieClip
"hitAction"Symbol 75 MovieClip [BR_normal_1_skin2] Frame 1Symbol 46 MovieClip
"wall3"Symbol 75 MovieClip [BR_normal_1_skin2] Frame 1Symbol 42 MovieClip
"wall2"Symbol 75 MovieClip [BR_normal_1_skin2] Frame 1Symbol 42 MovieClip
"wall0"Symbol 75 MovieClip [BR_normal_1_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 75 MovieClip [BR_normal_1_skin2] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 76 MovieClip [BR_normal_1_skin0] Frame 1Symbol 69 MovieClip
"hitAction"Symbol 76 MovieClip [BR_normal_1_skin0] Frame 1Symbol 46 MovieClip
"wall3"Symbol 76 MovieClip [BR_normal_1_skin0] Frame 1Symbol 42 MovieClip
"wall2"Symbol 76 MovieClip [BR_normal_1_skin0] Frame 1Symbol 42 MovieClip
"wall0"Symbol 76 MovieClip [BR_normal_1_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 76 MovieClip [BR_normal_1_skin0] Frame 1Symbol 42 MovieClip
"wall4"Symbol 78 MovieClip [BR_unbreakable_3_skin1] Frame 1Symbol 42 MovieClip
"wall3"Symbol 78 MovieClip [BR_unbreakable_3_skin1] Frame 1Symbol 42 MovieClip
"wall0"Symbol 78 MovieClip [BR_unbreakable_3_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 78 MovieClip [BR_unbreakable_3_skin1] Frame 1Symbol 42 MovieClip
"wall2"Symbol 78 MovieClip [BR_unbreakable_3_skin1] Frame 1Symbol 42 MovieClip
"wall5"Symbol 78 MovieClip [BR_unbreakable_3_skin1] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 78 MovieClip [BR_unbreakable_3_skin1] Frame 1Symbol 46 MovieClip
"wall4"Symbol 79 MovieClip [BR_unbreakable_3_skin2] Frame 1Symbol 42 MovieClip
"wall3"Symbol 79 MovieClip [BR_unbreakable_3_skin2] Frame 1Symbol 42 MovieClip
"wall0"Symbol 79 MovieClip [BR_unbreakable_3_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 79 MovieClip [BR_unbreakable_3_skin2] Frame 1Symbol 42 MovieClip
"wall2"Symbol 79 MovieClip [BR_unbreakable_3_skin2] Frame 1Symbol 42 MovieClip
"wall5"Symbol 79 MovieClip [BR_unbreakable_3_skin2] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 79 MovieClip [BR_unbreakable_3_skin2] Frame 1Symbol 46 MovieClip
"wall4"Symbol 80 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 42 MovieClip
"wall3"Symbol 80 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 42 MovieClip
"wall0"Symbol 80 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 80 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 42 MovieClip
"wall2"Symbol 80 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 42 MovieClip
"wall5"Symbol 80 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 80 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 83 MovieClip [DEVBR_normal_3] Frame 1Symbol 82 MovieClip
"thisBrick"Symbol 83 MovieClip [DEVBR_normal_3] Frame 3Symbol 82 MovieClip
"thisBrick"Symbol 86 MovieClip [BR_normal_3_skin1] Frame 1Symbol 85 MovieClip
"hitAction"Symbol 86 MovieClip [BR_normal_3_skin1] Frame 1Symbol 46 MovieClip
"wall2"Symbol 86 MovieClip [BR_normal_3_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 86 MovieClip [BR_normal_3_skin1] Frame 1Symbol 42 MovieClip
"wall0"Symbol 86 MovieClip [BR_normal_3_skin1] Frame 1Symbol 42 MovieClip
"wall3"Symbol 86 MovieClip [BR_normal_3_skin1] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 86 MovieClip [BR_normal_3_skin1] Frame 2Symbol 85 MovieClip
"thisBrick"Symbol 88 MovieClip [BR_normal_3_skin2] Frame 1Symbol 87 MovieClip
"hitAction"Symbol 88 MovieClip [BR_normal_3_skin2] Frame 1Symbol 46 MovieClip
"wall2"Symbol 88 MovieClip [BR_normal_3_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 88 MovieClip [BR_normal_3_skin2] Frame 1Symbol 42 MovieClip
"wall0"Symbol 88 MovieClip [BR_normal_3_skin2] Frame 1Symbol 42 MovieClip
"wall3"Symbol 88 MovieClip [BR_normal_3_skin2] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 88 MovieClip [BR_normal_3_skin2] Frame 2Symbol 87 MovieClip
"thisBrick"Symbol 89 MovieClip [BR_normal_3_skin0] Frame 1Symbol 82 MovieClip
"hitAction"Symbol 89 MovieClip [BR_normal_3_skin0] Frame 1Symbol 46 MovieClip
"wall2"Symbol 89 MovieClip [BR_normal_3_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 89 MovieClip [BR_normal_3_skin0] Frame 1Symbol 42 MovieClip
"wall0"Symbol 89 MovieClip [BR_normal_3_skin0] Frame 1Symbol 42 MovieClip
"wall3"Symbol 89 MovieClip [BR_normal_3_skin0] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 89 MovieClip [BR_normal_3_skin0] Frame 2Symbol 82 MovieClip
"wall4"Symbol 91 MovieClip [BR_unbreakable_2_skin1] Frame 1Symbol 42 MovieClip
"wall3"Symbol 91 MovieClip [BR_unbreakable_2_skin1] Frame 1Symbol 42 MovieClip
"wall0"Symbol 91 MovieClip [BR_unbreakable_2_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 91 MovieClip [BR_unbreakable_2_skin1] Frame 1Symbol 42 MovieClip
"wall2"Symbol 91 MovieClip [BR_unbreakable_2_skin1] Frame 1Symbol 42 MovieClip
"wall5"Symbol 91 MovieClip [BR_unbreakable_2_skin1] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 91 MovieClip [BR_unbreakable_2_skin1] Frame 1Symbol 46 MovieClip
"wall4"Symbol 92 MovieClip [BR_unbreakable_2_skin2] Frame 1Symbol 42 MovieClip
"wall3"Symbol 92 MovieClip [BR_unbreakable_2_skin2] Frame 1Symbol 42 MovieClip
"wall0"Symbol 92 MovieClip [BR_unbreakable_2_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 92 MovieClip [BR_unbreakable_2_skin2] Frame 1Symbol 42 MovieClip
"wall2"Symbol 92 MovieClip [BR_unbreakable_2_skin2] Frame 1Symbol 42 MovieClip
"wall5"Symbol 92 MovieClip [BR_unbreakable_2_skin2] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 92 MovieClip [BR_unbreakable_2_skin2] Frame 1Symbol 46 MovieClip
"wall4"Symbol 93 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 42 MovieClip
"wall3"Symbol 93 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 42 MovieClip
"wall0"Symbol 93 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 93 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 42 MovieClip
"wall2"Symbol 93 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 42 MovieClip
"wall5"Symbol 93 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 93 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 96 MovieClip [DEVBR_normal_2] Frame 1Symbol 95 MovieClip
"thisBrick"Symbol 99 MovieClip [BR_normal_2_skin1] Frame 1Symbol 98 MovieClip
"hitAction"Symbol 99 MovieClip [BR_normal_2_skin1] Frame 1Symbol 46 MovieClip
"wall3"Symbol 99 MovieClip [BR_normal_2_skin1] Frame 1Symbol 42 MovieClip
"wall2"Symbol 99 MovieClip [BR_normal_2_skin1] Frame 1Symbol 42 MovieClip
"wall0"Symbol 99 MovieClip [BR_normal_2_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 99 MovieClip [BR_normal_2_skin1] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 99 MovieClip [BR_normal_2_skin1] Frame 2Symbol 95 MovieClip
"thisBrick"Symbol 101 MovieClip [BR_normal_2_skin2] Frame 1Symbol 100 MovieClip
"hitAction"Symbol 101 MovieClip [BR_normal_2_skin2] Frame 1Symbol 46 MovieClip
"wall3"Symbol 101 MovieClip [BR_normal_2_skin2] Frame 1Symbol 42 MovieClip
"wall2"Symbol 101 MovieClip [BR_normal_2_skin2] Frame 1Symbol 42 MovieClip
"wall0"Symbol 101 MovieClip [BR_normal_2_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 101 MovieClip [BR_normal_2_skin2] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 101 MovieClip [BR_normal_2_skin2] Frame 2Symbol 100 MovieClip
"thisBrick"Symbol 102 MovieClip [BR_normal_2_skin0] Frame 1Symbol 95 MovieClip
"hitAction"Symbol 102 MovieClip [BR_normal_2_skin0] Frame 1Symbol 46 MovieClip
"wall3"Symbol 102 MovieClip [BR_normal_2_skin0] Frame 1Symbol 42 MovieClip
"wall2"Symbol 102 MovieClip [BR_normal_2_skin0] Frame 1Symbol 42 MovieClip
"wall0"Symbol 102 MovieClip [BR_normal_2_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 102 MovieClip [BR_normal_2_skin0] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 102 MovieClip [BR_normal_2_skin0] Frame 2Symbol 95 MovieClip
"ballGfx"Symbol 112 MovieClip [Ball] Frame 1Symbol 104 MovieClip [ballGfx]
"ballGfx"Symbol 112 MovieClip [Ball] Frame 3Symbol 104 MovieClip [ballGfx]
"ballGfx"Symbol 112 MovieClip [Ball] Frame 4Symbol 111 MovieClip [BombPickup]
"ballGfx"Symbol 112 MovieClip [Ball] Frame 5Symbol 104 MovieClip [ballGfx]
"ballGfx"Symbol 112 MovieClip [Ball] Frame 20Symbol 104 MovieClip [ballGfx]
"thisBrick"Symbol 205 MovieClip [DEVBR_c_barrier] Frame 1Symbol 204 MovieClip
"hitAction"Symbol 205 MovieClip [DEVBR_c_barrier] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 209 MovieClip [BR_c_barrier_skin1] Frame 1Symbol 208 MovieClip
"hitAction"Symbol 209 MovieClip [BR_c_barrier_skin1] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 213 MovieClip [BR_c_barrier_skin2] Frame 1Symbol 212 MovieClip
"hitAction"Symbol 213 MovieClip [BR_c_barrier_skin2] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 222 MovieClip [DEVBR_d_barrier] Frame 1Symbol 217 MovieClip
"thisBrick"Symbol 222 MovieClip [DEVBR_d_barrier] Frame 3Symbol 221 MovieClip
"thisBrick"Symbol 227 MovieClip [BR_d_barrier_skin1] Frame 1Symbol 226 MovieClip
"wall0"Symbol 227 MovieClip [BR_d_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 227 MovieClip [BR_d_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall2"Symbol 227 MovieClip [BR_d_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall3"Symbol 227 MovieClip [BR_d_barrier_skin1] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 227 MovieClip [BR_d_barrier_skin1] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 228 MovieClip [BR_d_barrier_skin2] Frame 1Symbol 217 MovieClip
"wall0"Symbol 228 MovieClip [BR_d_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 228 MovieClip [BR_d_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall2"Symbol 228 MovieClip [BR_d_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall3"Symbol 228 MovieClip [BR_d_barrier_skin2] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 228 MovieClip [BR_d_barrier_skin2] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 229 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 217 MovieClip
"wall0"Symbol 229 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 229 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall2"Symbol 229 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall3"Symbol 229 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 229 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 230 MovieClip [BR_s_barrier_skin1] Frame 1Symbol 221 MovieClip
"hitAction"Symbol 230 MovieClip [BR_s_barrier_skin1] Frame 1Symbol 46 MovieClip
"wall0"Symbol 230 MovieClip [BR_s_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 230 MovieClip [BR_s_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall2"Symbol 230 MovieClip [BR_s_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall3"Symbol 230 MovieClip [BR_s_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall4"Symbol 230 MovieClip [BR_s_barrier_skin1] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 233 MovieClip [BR_s_barrier_skin2] Frame 1Symbol 232 MovieClip
"hitAction"Symbol 233 MovieClip [BR_s_barrier_skin2] Frame 1Symbol 46 MovieClip
"wall0"Symbol 233 MovieClip [BR_s_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 233 MovieClip [BR_s_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall2"Symbol 233 MovieClip [BR_s_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall3"Symbol 233 MovieClip [BR_s_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall4"Symbol 233 MovieClip [BR_s_barrier_skin2] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 234 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 221 MovieClip
"hitAction"Symbol 234 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 46 MovieClip
"wall0"Symbol 234 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 234 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall2"Symbol 234 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall3"Symbol 234 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall4"Symbol 234 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 42 MovieClip
"thisBrick"Symbol 237 MovieClip [DEVBR_i_barrier] Frame 1Symbol 236 MovieClip
"thisBrick"Symbol 238 MovieClip [BR_i_barrier_skin1] Frame 1Symbol 236 MovieClip
"wall0"Symbol 238 MovieClip [BR_i_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall1"Symbol 238 MovieClip [BR_i_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall2"Symbol 238 MovieClip [BR_i_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall3"Symbol 238 MovieClip [BR_i_barrier_skin1] Frame 1Symbol 42 MovieClip
"wall4"Symbol 238 MovieClip [BR_i_barrier_skin1] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 238 MovieClip [BR_i_barrier_skin1] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 239 MovieClip [BR_i_barrier_skin2] Frame 1Symbol 236 MovieClip
"wall0"Symbol 239 MovieClip [BR_i_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall1"Symbol 239 MovieClip [BR_i_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall2"Symbol 239 MovieClip [BR_i_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall3"Symbol 239 MovieClip [BR_i_barrier_skin2] Frame 1Symbol 42 MovieClip
"wall4"Symbol 239 MovieClip [BR_i_barrier_skin2] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 239 MovieClip [BR_i_barrier_skin2] Frame 1Symbol 46 MovieClip
"thisBrick"Symbol 240 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 236 MovieClip
"wall0"Symbol 240 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall1"Symbol 240 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall2"Symbol 240 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall3"Symbol 240 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 42 MovieClip
"wall4"Symbol 240 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 42 MovieClip
"hitAction"Symbol 240 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 46 MovieClip
"num"Symbol 259 MovieClip [0] Frame 1Symbol 258 MovieClip [0_gfx]
"num"Symbol 262 MovieClip [9] Frame 1Symbol 261 MovieClip [9_gfx]
"num"Symbol 265 MovieClip [8] Frame 1Symbol 264 MovieClip [8_gfx]
"num"Symbol 268 MovieClip [7] Frame 1Symbol 267 MovieClip [7_gfx]
"num"Symbol 271 MovieClip [6] Frame 1Symbol 270 MovieClip [6_gfx]
"num"Symbol 274 MovieClip [5] Frame 1Symbol 273 MovieClip [5_gfx]
"num"Symbol 277 MovieClip [4] Frame 1Symbol 276 MovieClip [4_gfx]
"num"Symbol 280 MovieClip [3] Frame 1Symbol 279 MovieClip [3_gfx]
"num"Symbol 283 MovieClip [2] Frame 1Symbol 282 MovieClip [2_gfx]
"num"Symbol 286 MovieClip [1] Frame 1Symbol 285 MovieClip [1_gfx]
"numObj"Symbol 317 MovieClip [PointsScoreNotify] Frame 2Symbol 316 MovieClip
"numObj"Symbol 317 MovieClip [PointsScoreNotify] Frame 22Symbol 316 MovieClip
"bulletGfx"Symbol 324 MovieClip [SmallBullet] Frame 1Symbol 323 MovieClip
"thisBrick"Symbol 357 MovieClip [BR_c_barrier_skin0] Frame 1Symbol 204 MovieClip
"hitAction"Symbol 357 MovieClip [BR_c_barrier_skin0] Frame 1Symbol 46 MovieClip
"sauce"Symbol 380 MovieClip [Saucer] Frame 1Symbol 378 MovieClip
"blob"Symbol 380 MovieClip [Saucer] Frame 1Symbol 379 MovieClip
"bat0"Symbol 502 MovieClip Frame 1Symbol 360 MovieClip [bat]
"wall2"Symbol 502 MovieClip Frame 1Symbol 42 MovieClip
"wall1"Symbol 502 MovieClip Frame 1Symbol 42 MovieClip
"wall0"Symbol 502 MovieClip Frame 1Symbol 42 MovieClip
"wall2"Symbol 502 MovieClip Frame 1Symbol 42 MovieClip
"ballsNum"Symbol 512 MovieClip Frame 1Symbol 386 MovieClip
"ballsHolder"Symbol 512 MovieClip Frame 1Symbol 386 MovieClip
"levelNum"Symbol 512 MovieClip Frame 28Symbol 386 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "strikeDull"
ExportAssets (56)Timeline Frame 1Symbol 2 as "electric"
ExportAssets (56)Timeline Frame 1Symbol 3 as "powerUpHitBat"
ExportAssets (56)Timeline Frame 1Symbol 4 as "powerUp"
ExportAssets (56)Timeline Frame 1Symbol 5 as "nextLevel"
ExportAssets (56)Timeline Frame 1Symbol 6 as "newBall"
ExportAssets (56)Timeline Frame 1Symbol 7 as "LaserShoot"
ExportAssets (56)Timeline Frame 1Symbol 8 as "explode"
ExportAssets (56)Timeline Frame 1Symbol 9 as "clankHit"
ExportAssets (56)Timeline Frame 1Symbol 10 as "brickHit2"
ExportAssets (56)Timeline Frame 1Symbol 11 as "brickHit1"
ExportAssets (56)Timeline Frame 1Symbol 12 as "ballDrop"
ExportAssets (56)Timeline Frame 1Symbol 24 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1Symbol 30 as "DrainCover_skin1"
ExportAssets (56)Timeline Frame 1Symbol 32 as "DrainCover_skin2"
ExportAssets (56)Timeline Frame 1Symbol 37 as "DrainCover_skin0"
ExportAssets (56)Timeline Frame 1Symbol 39 as "baseLine"
ExportAssets (56)Timeline Frame 1Symbol 47 as "BR_unbreakable_0_skin1"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BR_unbreakable_0_skin2"
ExportAssets (56)Timeline Frame 1Symbol 51 as "BR_unbreakable_0_skin0"
ExportAssets (56)Timeline Frame 1Symbol 54 as "DEVBR_normal_0"
ExportAssets (56)Timeline Frame 1Symbol 59 as "BR_normal_0_skin1"
ExportAssets (56)Timeline Frame 1Symbol 62 as "BR_normal_0_skin2"
ExportAssets (56)Timeline Frame 1Symbol 63 as "BR_normal_0_skin0"
ExportAssets (56)Timeline Frame 1Symbol 65 as "BR_unbreakable_1_skin1"
ExportAssets (56)Timeline Frame 1Symbol 66 as "BR_unbreakable_1_skin2"
ExportAssets (56)Timeline Frame 1Symbol 67 as "BR_unbreakable_1_skin0"
ExportAssets (56)Timeline Frame 1Symbol 70 as "DEVBR_normal_1"
ExportAssets (56)Timeline Frame 1Symbol 73 as "BR_normal_1_skin1"
ExportAssets (56)Timeline Frame 1Symbol 75 as "BR_normal_1_skin2"
ExportAssets (56)Timeline Frame 1Symbol 76 as "BR_normal_1_skin0"
ExportAssets (56)Timeline Frame 1Symbol 78 as "BR_unbreakable_3_skin1"
ExportAssets (56)Timeline Frame 1Symbol 79 as "BR_unbreakable_3_skin2"
ExportAssets (56)Timeline Frame 1Symbol 80 as "BR_unbreakable_3_skin0"
ExportAssets (56)Timeline Frame 1Symbol 83 as "DEVBR_normal_3"
ExportAssets (56)Timeline Frame 1Symbol 86 as "BR_normal_3_skin1"
ExportAssets (56)Timeline Frame 1Symbol 88 as "BR_normal_3_skin2"
ExportAssets (56)Timeline Frame 1Symbol 89 as "BR_normal_3_skin0"
ExportAssets (56)Timeline Frame 1Symbol 91 as "BR_unbreakable_2_skin1"
ExportAssets (56)Timeline Frame 1Symbol 92 as "BR_unbreakable_2_skin2"
ExportAssets (56)Timeline Frame 1Symbol 93 as "BR_unbreakable_2_skin0"
ExportAssets (56)Timeline Frame 1Symbol 96 as "DEVBR_normal_2"
ExportAssets (56)Timeline Frame 1Symbol 99 as "BR_normal_2_skin1"
ExportAssets (56)Timeline Frame 1Symbol 101 as "BR_normal_2_skin2"
ExportAssets (56)Timeline Frame 1Symbol 102 as "BR_normal_2_skin0"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 111 as "BombPickup"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "Ball"
ExportAssets (56)Timeline Frame 1Symbol 114 as "dot"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 117 as "NoGravityPickup"
ExportAssets (56)Timeline Frame 1Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 120 as "NextLevelPickup"
ExportAssets (56)Timeline Frame 1Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 123 as "MultiBallPickup"
ExportAssets (56)Timeline Frame 1Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 128 as "FireballPickup"
ExportAssets (56)Timeline Frame 1Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "LittleBatPickup"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 138 as "MultiLaserPickup"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 145 as "SingleLaserPickup"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 149 as "RaspberryPickup"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 153 as "BananaPickup"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 155 as "BananaBunchPickup"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 160 as "EatenMelonPickup"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 163 as "MelonPickup"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 167 as "DiamondPickup"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 170 as "CherryPickup"
ExportAssets (56)Timeline Frame 1Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 173 as "DoubleBatPickup"
ExportAssets (56)Timeline Frame 1Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 177 as "ReverseGravityPickup"
ExportAssets (56)Timeline Frame 1Symbol 111 as "BombPickup"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 183 as "ReverseBatPickup"
ExportAssets (56)Timeline Frame 1Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 185 as "BigBatPickup"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 188 as "SpeedDownPickup"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 191 as "SpeedUpPickup"
ExportAssets (56)Timeline Frame 1Symbol 194 as "QuickStar2"
ExportAssets (56)Timeline Frame 1Symbol 197 as "QuickStar1"
ExportAssets (56)Timeline Frame 1Symbol 200 as "Star"
ExportAssets (56)Timeline Frame 1Symbol 205 as "DEVBR_c_barrier"
ExportAssets (56)Timeline Frame 1Symbol 209 as "BR_c_barrier_skin1"
ExportAssets (56)Timeline Frame 1Symbol 213 as "BR_c_barrier_skin2"
ExportAssets (56)Timeline Frame 1Symbol 222 as "DEVBR_d_barrier"
ExportAssets (56)Timeline Frame 1Symbol 227 as "BR_d_barrier_skin1"
ExportAssets (56)Timeline Frame 1Symbol 228 as "BR_d_barrier_skin2"
ExportAssets (56)Timeline Frame 1Symbol 229 as "BR_d_barrier_skin0"
ExportAssets (56)Timeline Frame 1Symbol 230 as "BR_s_barrier_skin1"
ExportAssets (56)Timeline Frame 1Symbol 233 as "BR_s_barrier_skin2"
ExportAssets (56)Timeline Frame 1Symbol 234 as "BR_s_barrier_skin0"
ExportAssets (56)Timeline Frame 1Symbol 237 as "DEVBR_i_barrier"
ExportAssets (56)Timeline Frame 1Symbol 238 as "BR_i_barrier_skin1"
ExportAssets (56)Timeline Frame 1Symbol 239 as "BR_i_barrier_skin2"
ExportAssets (56)Timeline Frame 1Symbol 240 as "BR_i_barrier_skin0"
ExportAssets (56)Timeline Frame 1Symbol 243 as "fireShadow"
ExportAssets (56)Timeline Frame 1Symbol 246 as "ballShadow"
ExportAssets (56)Timeline Frame 1Symbol 248 as "StarFire"
ExportAssets (56)Timeline Frame 1Symbol 250 as "StarfieldStar"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 255 as "ballLauncher"
ExportAssets (56)Timeline Frame 1Symbol 256 as "block"
ExportAssets (56)Timeline Frame 1Symbol 258 as "0_gfx"
ExportAssets (56)Timeline Frame 1Symbol 259 as "0"
ExportAssets (56)Timeline Frame 1Symbol 261 as "9_gfx"
ExportAssets (56)Timeline Frame 1Symbol 262 as "9"
ExportAssets (56)Timeline Frame 1Symbol 264 as "8_gfx"
ExportAssets (56)Timeline Frame 1Symbol 265 as "8"
ExportAssets (56)Timeline Frame 1Symbol 267 as "7_gfx"
ExportAssets (56)Timeline Frame 1Symbol 268 as "7"
ExportAssets (56)Timeline Frame 1Symbol 270 as "6_gfx"
ExportAssets (56)Timeline Frame 1Symbol 271 as "6"
ExportAssets (56)Timeline Frame 1Symbol 273 as "5_gfx"
ExportAssets (56)Timeline Frame 1Symbol 274 as "5"
ExportAssets (56)Timeline Frame 1Symbol 276 as "4_gfx"
ExportAssets (56)Timeline Frame 1Symbol 277 as "4"
ExportAssets (56)Timeline Frame 1Symbol 279 as "3_gfx"
ExportAssets (56)Timeline Frame 1Symbol 280 as "3"
ExportAssets (56)Timeline Frame 1Symbol 282 as "2_gfx"
ExportAssets (56)Timeline Frame 1Symbol 283 as "2"
ExportAssets (56)Timeline Frame 1Symbol 285 as "1_gfx"
ExportAssets (56)Timeline Frame 1Symbol 286 as "1"
ExportAssets (56)Timeline Frame 1Symbol 258 as "0_gfx"
ExportAssets (56)Timeline Frame 1Symbol 285 as "1_gfx"
ExportAssets (56)Timeline Frame 1Symbol 282 as "2_gfx"
ExportAssets (56)Timeline Frame 1Symbol 279 as "3_gfx"
ExportAssets (56)Timeline Frame 1Symbol 276 as "4_gfx"
ExportAssets (56)Timeline Frame 1Symbol 273 as "5_gfx"
ExportAssets (56)Timeline Frame 1Symbol 270 as "6_gfx"
ExportAssets (56)Timeline Frame 1Symbol 267 as "7_gfx"
ExportAssets (56)Timeline Frame 1Symbol 264 as "8_gfx"
ExportAssets (56)Timeline Frame 1Symbol 261 as "9_gfx"
ExportAssets (56)Timeline Frame 1Symbol 290 as "ScoresNotAvailable"
ExportAssets (56)Timeline Frame 1Symbol 292 as "LevelPanel"
ExportAssets (56)Timeline Frame 1Symbol 295 as "ExplodeParticle"
ExportAssets (56)Timeline Frame 1Symbol 298 as "ExplodeAnim"
ExportAssets (56)Timeline Frame 1Symbol 299 as "ExplodeAnimSmall"
ExportAssets (56)Timeline Frame 1Symbol 300 as "ExplodeAnimMulti"
ExportAssets (56)Timeline Frame 1Symbol 311 as "paused"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 312 as "ballGfxBounce"
ExportAssets (56)Timeline Frame 1Symbol 315 as "ExtraLife"
ExportAssets (56)Timeline Frame 1Symbol 317 as "PointsScoreNotify"
ExportAssets (56)Timeline Frame 1Symbol 320 as "SmallBulletLaunch"
ExportAssets (56)Timeline Frame 1Symbol 324 as "SmallBullet"
ExportAssets (56)Timeline Frame 1Symbol 330 as "BeamLaser"
ExportAssets (56)Timeline Frame 1Symbol 343 as "quit"
ExportAssets (56)Timeline Frame 1Symbol 351 as "TryHarderTxt"
ExportAssets (56)Timeline Frame 1Symbol 356 as "ImpressedTxt"
ExportAssets (56)Timeline Frame 1Symbol 181 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 364 as "DrainCoverPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 364 as "DrainCoverPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 104 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 1Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1Symbol 380 as "Saucer"
ExportAssets (56)Timeline Frame 2Symbol 380 as "Saucer"
ExportAssets (56)Timeline Frame 3Symbol 380 as "Saucer"
ExportAssets (56)Timeline Frame 4Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 4Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 4Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 4Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 4Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 4Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 5Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 5Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 5Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 5Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 5Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 5Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 6Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 6Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 6Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 6Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 6Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 6Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 7Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 7Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 7Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 7Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 7Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 7Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 8Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 8Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 8Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 8Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 8Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 8Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 9Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 9Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 9Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 9Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 9Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 9Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 10Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 10Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 10Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 10Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 10Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 10Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 11Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 11Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 11Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 11Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 11Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 11Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 12Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 12Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 12Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 12Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 12Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 12Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 13Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 13Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 13Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 13Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 13Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 13Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 14Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 14Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 14Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 14Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 14Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 14Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 15Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 15Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 15Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 15Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 15Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 15Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 16Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 16Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 16Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 16Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 16Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 16Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 17Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 17Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 17Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 17Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 17Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 17Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 18Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 18Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 18Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 18Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 18Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 18Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 19Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 19Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 19Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 19Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 19Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 19Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 20Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 20Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 20Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 20Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 20Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 20Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 21Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 21Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 21Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 21Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 21Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 21Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 22Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 22Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 22Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 22Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 22Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 22Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 23Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 23Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 23Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 23Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 23Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 23Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 24Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 24Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 24Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 24Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 24Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 24Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 25Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 25Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 25Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 25Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 25Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 25Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 26Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 26Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 26Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 26Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 26Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 26Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 27Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 27Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 27Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 27Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 27Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 27Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 28Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 28Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 28Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 28Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 28Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 28Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 29Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 29Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 29Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 29Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 29Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 29Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 30Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 30Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 30Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 30Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 30Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 30Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 31Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 31Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 31Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 31Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 31Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 31Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 32Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 32Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 32Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 32Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 32Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 32Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 33Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 33Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 33Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 33Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 33Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 33Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 34Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 34Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 34Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 34Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 34Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 34Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 35Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 35Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 35Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 35Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 35Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 35Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 36Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 36Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 36Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 36Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 36Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 36Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 37Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 37Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 37Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 37Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 37Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 37Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 38Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 38Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 38Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 38Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 38Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 38Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 39Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 39Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 39Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 39Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 39Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 39Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 40Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 40Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 40Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 40Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 40Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 40Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 41Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 41Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 41Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 41Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 41Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 41Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 42Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 42Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 42Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 42Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 42Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 42Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 43Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 43Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 43Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 43Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 43Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 43Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 44Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 44Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 44Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 44Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 44Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 44Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 45Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 45Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 45Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 45Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 45Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 45Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 46Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 46Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 46Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 46Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 46Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 46Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 47Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 47Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 47Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 47Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 47Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 47Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 48Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 48Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 48Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 48Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 48Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 48Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 49Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 49Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 49Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 49Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 49Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 49Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 50Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 50Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 50Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 50Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 50Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 50Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 51Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 51Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 51Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 51Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 51Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 51Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 52Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 52Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 52Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 52Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 52Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 52Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 53Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 53Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 53Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 53Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 53Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 53Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 54Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 54Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 54Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 54Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 54Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 54Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 55Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 55Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 55Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 55Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 55Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 55Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 56Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 56Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 56Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 56Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 56Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 56Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 57Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 57Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 57Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 57Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 57Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 57Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 58Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 58Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 58Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 58Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 58Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 58Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 59Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 59Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 59Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 59Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 59Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 59Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 60Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 60Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 60Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 60Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 60Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 60Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 61Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 61Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 61Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 61Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 61Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 61Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 62Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 62Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 62Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 62Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 62Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 62Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 63Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 63Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 63Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 63Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 63Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 63Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 64Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 64Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 64Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 64Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 64Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 64Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 65Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 65Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 65Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 65Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 65Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 65Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 66Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 66Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 66Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 66Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 66Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 66Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 67Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 67Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 67Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 67Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 67Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 67Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 68Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 68Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 68Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 68Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 68Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 68Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 69Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 69Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 69Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 69Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 69Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 69Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 70Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 70Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 70Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 70Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 70Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 70Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 71Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 71Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 71Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 71Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 71Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 71Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 72Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 72Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 72Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 72Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 72Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 72Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 73Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 73Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 73Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 73Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 73Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 73Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 74Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 74Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 74Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 74Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 74Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 74Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 75Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 75Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 75Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 75Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 75Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 75Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 76Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 76Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 76Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 76Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 76Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 76Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 77Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 77Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 77Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 77Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 77Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 77Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 78Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 78Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 78Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 78Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 78Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 78Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 79Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 79Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 79Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 79Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 79Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 79Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 80Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 80Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 80Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 80Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 80Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 80Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 81Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 81Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 81Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 81Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 81Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 81Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 82Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 82Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 82Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 82Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 82Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 82Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 83Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 83Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 83Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 83Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 83Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 83Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 84Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 84Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 84Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 84Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 84Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 84Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 85Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 85Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 85Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 85Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 85Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 85Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 86Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 86Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 86Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 86Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 86Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 86Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 87Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 87Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 87Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 87Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 87Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 87Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 88Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 88Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 88Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 88Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 88Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 88Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 89Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 89Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 89Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 89Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 89Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 89Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 90Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 90Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 90Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 90Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 90Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 90Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 91Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 91Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 91Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 91Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 91Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 91Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 92Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 92Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 92Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 92Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 92Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 92Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 93Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 93Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 93Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 93Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 93Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 93Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 94Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 94Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 94Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 94Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 94Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 94Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 95Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 95Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 95Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 95Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 95Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 95Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 96Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 96Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 96Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 96Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 96Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 96Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 97Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 97Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 97Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 97Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 97Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 97Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 98Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 98Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 98Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 98Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 98Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 98Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 99Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 99Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 99Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 99Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 99Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 99Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 100Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 100Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 100Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 100Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 100Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 100Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 101Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 101Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 101Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 101Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 101Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 101Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 102Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 102Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 102Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 102Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 102Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 102Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 103Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 103Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 103Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 103Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 103Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 103Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 104Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 104Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 104Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 104Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 104Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 104Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 105Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 105Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 105Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 105Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 105Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 105Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 106Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 106Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 106Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 106Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 106Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 106Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 107Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 107Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 107Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 107Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 107Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 107Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 108Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 108Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 108Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 108Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 108Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 108Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 109Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 109Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 109Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 109Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 109Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 109Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 110Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 110Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 110Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 110Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 110Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 110Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 111Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 111Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 111Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 111Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 111Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 111Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 112Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 112Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 112Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 112Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 112Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 112Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 113Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 113Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 113Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 113Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 113Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 113Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 114Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 114Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 114Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 114Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 114Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 114Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 115Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 115Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 115Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 115Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 115Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 115Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 116Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 116Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 116Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 116Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 116Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 116Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 117Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 117Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 117Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 117Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 117Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 117Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 118Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 118Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 118Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 118Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 118Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 118Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 119Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 119Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 119Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 119Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 119Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 119Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 120Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 120Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 120Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 120Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 120Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 120Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 121Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 121Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 121Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 121Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 121Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 121Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 122Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 122Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 122Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 122Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 122Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 122Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 123Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 123Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 123Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 123Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 123Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 123Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 124Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 124Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 124Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 124Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 124Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 124Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 125Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 125Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 125Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 125Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 125Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 125Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 126Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 126Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 126Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 126Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 126Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 126Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 127Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 127Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 127Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 127Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 127Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 127Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 128Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 128Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 128Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 128Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 128Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 128Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 129Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 129Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 129Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 129Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 129Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 129Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 130Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 130Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 130Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 130Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 130Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 130Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 131Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 131Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 131Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 131Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 131Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 131Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 132Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 132Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 132Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 132Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 132Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 132Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 133Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 133Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 133Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 133Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 133Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 133Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 134Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 134Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 134Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 134Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 134Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 134Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 135Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 135Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 135Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 135Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 135Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 135Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 136Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 136Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 136Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 136Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 136Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 136Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 137Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 137Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 137Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 137Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 137Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 137Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 138Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 138Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 138Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 138Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 138Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 138Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 139Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 139Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 139Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 139Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 139Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 139Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 140Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 140Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 140Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 140Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 140Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 140Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 141Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 141Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 141Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 141Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 141Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 141Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 142Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 142Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 142Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 142Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 142Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 142Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 143Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 143Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 143Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 143Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 143Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 143Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 144Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 144Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 144Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 144Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 144Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 144Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 145Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 145Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 145Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 145Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 145Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 145Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 146Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 146Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 146Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 146Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 146Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 146Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 147Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 147Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 147Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 147Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 147Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 147Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 148Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 148Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 148Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 148Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 148Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 148Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 149Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 149Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 149Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 149Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 149Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 149Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 150Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 150Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 150Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 150Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 150Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 150Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 151Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 151Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 151Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 151Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 151Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 151Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 152Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 152Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 152Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 152Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 152Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 152Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 153Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 153Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 153Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 153Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 153Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 153Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 154Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 154Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 154Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 154Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 154Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 154Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 155Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 155Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 155Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 155Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 155Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 155Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 156Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 156Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 156Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 156Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 156Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 156Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 157Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 157Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 157Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 157Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 157Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 157Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 158Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 158Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 158Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 158Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 158Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 158Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 159Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 159Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 159Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 159Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 159Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 159Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 160Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 160Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 160Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 160Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 160Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 160Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 161Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 161Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 161Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 161Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 161Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 161Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 162Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 162Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 162Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 162Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 162Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 162Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 163Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 163Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 163Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 163Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 163Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 163Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 164Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 164Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 164Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 164Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 164Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 164Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 165Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 165Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 165Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 165Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 165Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 165Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 166Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 166Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 166Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 166Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 166Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 166Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 167Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 167Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 167Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 167Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 167Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 167Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 168Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 168Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 168Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 168Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 168Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 168Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 169Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 169Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 169Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 169Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 169Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 169Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 170Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 170Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 170Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 170Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 170Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 170Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 171Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 171Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 171Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 171Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 171Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 171Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 172Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 172Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 172Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 172Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 172Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 172Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 173Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 173Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 173Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 173Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 173Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 173Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 174Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 174Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 174Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 174Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 174Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 174Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 175Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 175Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 175Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 175Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 175Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 175Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 176Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 176Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 176Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 176Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 176Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 176Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 177Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 177Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 177Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 177Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 177Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 177Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 178Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 178Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 178Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 178Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 178Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 178Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 179Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 179Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 179Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 179Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 179Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 179Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 180Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 180Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 180Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 180Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 180Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 180Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 181Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 181Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 181Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 181Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 181Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 181Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 182Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 182Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 182Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 182Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 182Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 182Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 183Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 183Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 183Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 183Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 183Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 183Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 184Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 184Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 184Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 184Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 184Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 184Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 185Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 185Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 185Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 185Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 185Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 185Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 186Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 186Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 186Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 186Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 186Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 186Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 187Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 187Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 187Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 187Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 187Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 187Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 188Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 188Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 188Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 188Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 188Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 188Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 189Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 189Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 189Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 189Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 189Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 189Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 190Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 190Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 190Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 190Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 190Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 190Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 191Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 191Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 191Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 191Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 191Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 191Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 192Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 192Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 192Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 192Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 192Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 192Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 193Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 193Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 193Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 193Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 193Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 193Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 194Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 194Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 194Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 194Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 194Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 194Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 195Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 195Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 195Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 195Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 195Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 195Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 196Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 196Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 196Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 196Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 196Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 196Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 197Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 197Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 197Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 197Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 197Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 197Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 198Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 198Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 198Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 198Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 198Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 198Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 199Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 199Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 199Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 199Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 199Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 199Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 200Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 200Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 200Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 200Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 200Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 200Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 201Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 201Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 201Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 201Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 201Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 201Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 202Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 202Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 202Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 202Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 202Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 202Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 203Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 203Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 203Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 203Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 203Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 203Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 204Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 204Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 204Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 204Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 204Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 204Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 205Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 205Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 205Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 205Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 205Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 205Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 206Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 206Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 206Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 206Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 206Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 206Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 207Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 207Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 207Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 207Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 207Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 207Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 208Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 208Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 208Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 208Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 208Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 208Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 209Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 209Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 209Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 209Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 209Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 209Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 210Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 210Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 210Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 210Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 210Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 210Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 211Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 211Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 211Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 211Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 211Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 211Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 212Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 212Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 212Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 212Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 212Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 212Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 213Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 213Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 213Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 213Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 213Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 213Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 214Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 214Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 214Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 214Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 214Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 214Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 215Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 215Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 215Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 215Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 215Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 215Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 216Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 216Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 216Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 216Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 216Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 216Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 217Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 217Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 217Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 217Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 217Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 217Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 218Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 218Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 218Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 218Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 218Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 218Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 219Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 219Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 219Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 219Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 219Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 219Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 220Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 220Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 220Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 220Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 220Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 220Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 221Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 221Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 221Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 221Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 221Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 221Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 222Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 222Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 222Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 222Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 222Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 222Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 223Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 223Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 223Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 223Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 223Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 223Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 224Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 224Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 224Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 224Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 224Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 224Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 225Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 225Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 225Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 225Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 225Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 225Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 226Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 226Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 226Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 226Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 226Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 226Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 227Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 227Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 227Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 227Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 227Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 227Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 228Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 228Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 228Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 228Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 228Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 228Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 229Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 229Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 229Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 229Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 229Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 229Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 230Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 230Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 230Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 230Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 230Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 230Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 231Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 231Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 231Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 231Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 231Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 231Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 232Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 232Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 232Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 232Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 232Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 232Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 233Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 233Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 233Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 233Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 233Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 233Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 234Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 234Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 234Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 234Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 234Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 234Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 235Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 235Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 235Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 235Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 235Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 235Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 236Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 236Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 236Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 236Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 236Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 236Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 237Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 237Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 237Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 237Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 237Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 237Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 238Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 238Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 238Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 238Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 238Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 238Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 239Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 239Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 239Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 239Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 239Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 239Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 240Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 240Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 240Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 240Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 240Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 240Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 241Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 241Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 241Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 241Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 241Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 241Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 242Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 242Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 242Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 242Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 242Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 242Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 243Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 243Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 243Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 243Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 243Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 243Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 244Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 244Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 244Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 244Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 244Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 244Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 245Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 245Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 245Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 245Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 245Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 245Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 246Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 246Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 246Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 246Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 246Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 246Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 247Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 247Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 247Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 247Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 247Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 247Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 248Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 248Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 248Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 248Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 248Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 248Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 249Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 249Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 249Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 249Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 249Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 249Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 250Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 250Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 250Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 250Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 250Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 250Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 251Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 251Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 251Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 251Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 251Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 251Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 252Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 252Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 252Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 252Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 252Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 252Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 253Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 253Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 253Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 253Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 253Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 253Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 254Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 254Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 254Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 254Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 254Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 254Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 255Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 255Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 255Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 255Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 255Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 255Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 256Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 256Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 256Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 256Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 256Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 256Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 257Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 257Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 257Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 257Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 257Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 257Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 258Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 258Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 258Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 258Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 258Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 258Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 259Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 259Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 259Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 259Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 259Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 259Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 260Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 260Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 260Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 260Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 260Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 260Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 261Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 261Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 261Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 261Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 261Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 261Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 262Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 262Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 262Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 262Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 262Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 262Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 263Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 263Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 263Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 263Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 263Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 263Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 264Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 264Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 264Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 264Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 264Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 264Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 265Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 265Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 265Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 265Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 265Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 265Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 266Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 266Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 266Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 266Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 266Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 266Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 267Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 267Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 267Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 267Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 267Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 267Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 268Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 268Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 268Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 268Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 268Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 268Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 269Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 269Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 269Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 269Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 269Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 269Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 270Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 270Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 270Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 270Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 270Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 270Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 271Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 271Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 271Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 271Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 271Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 271Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 272Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 272Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 272Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 272Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 272Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 272Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 273Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 273Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 273Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 273Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 273Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 273Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 274Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 274Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 274Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 274Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 274Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 274Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 275Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 275Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 275Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 275Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 275Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 275Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 276Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 276Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 276Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 276Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 276Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 276Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 277Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 277Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 277Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 277Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 277Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 277Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 278Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 278Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 278Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 278Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 278Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 278Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 279Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 279Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 279Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 279Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 279Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 279Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 280Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 280Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 280Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 280Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 280Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 280Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 281Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 281Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 281Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 281Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 281Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 281Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 282Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 282Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 282Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 282Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 282Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 282Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 283Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 283Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 283Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 283Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 283Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 283Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 284Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 284Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 284Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 284Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 284Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 284Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 285Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 285Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 285Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 285Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 285Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 285Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 286Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 286Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 286Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 286Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 286Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 286Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 287Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 287Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 287Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 287Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 287Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 287Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 288Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 288Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 288Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 288Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 288Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 288Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 289Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 289Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 289Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 289Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 289Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 289Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 290Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 290Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 290Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 290Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 290Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 290Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 291Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 291Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 291Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 291Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 291Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 291Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 292Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 292Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 292Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 292Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 292Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 292Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 293Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 293Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 293Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 293Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 293Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 293Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 294Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 294Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 294Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 294Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 294Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 294Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 295Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 295Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 295Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 295Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 295Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 295Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 296Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 296Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 296Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 296Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 296Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 296Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 297Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 297Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 297Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 297Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 297Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 297Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 298Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 298Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 298Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 298Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 298Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 298Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 299Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 299Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 299Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 299Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 299Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 299Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 300Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 300Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 300Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 300Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 300Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 300Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 301Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 301Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 301Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 301Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 301Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 301Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 302Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 302Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 302Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 302Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 302Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 302Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 303Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 303Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 303Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 303Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 303Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 303Symbol 366 as "frontEndBall"
ExportAssets (56)Timeline Frame 820Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 820Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 820Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 866Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 866Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 867Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 867Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 867Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 867Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 867Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 867Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 867Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 867Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 867Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 867Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 867Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 867Symbol 360 as "bat"
ExportAssets (56)Timeline Frame 868Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 868Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 869Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 869Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 870Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 870Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 871Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 871Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 872Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 872Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 873Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 873Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 874Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 874Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 875Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 875Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 876Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 876Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 877Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 877Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 878Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 878Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 879Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 879Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 880Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 880Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 881Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 881Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 882Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 882Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 883Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 883Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 884Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 884Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 885Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 885Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 886Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 886Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 887Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 887Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 888Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 888Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 889Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 889Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 890Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 890Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 891Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 891Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 892Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 892Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 893Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 893Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 894Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 894Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 895Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 895Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 896Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 896Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 897Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 897Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 898Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 898Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 899Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 899Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 900Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 900Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 901Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 901Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 902Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 902Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 903Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 903Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 904Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 904Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 905Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 905Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 906Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 906Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 907Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 907Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 908Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 908Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 909Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 909Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 910Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 910Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 911Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 911Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 912Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 912Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 913Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 913Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 914Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 914Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 915Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 915Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 916Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 916Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 917Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 917Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 918Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 918Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 919Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 919Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 920Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 920Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 921Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 921Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 922Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 922Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 923Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 923Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 924Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 924Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 925Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 925Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 926Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 926Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 927Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 927Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 928Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 928Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 929Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 929Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 930Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 930Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 931Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 931Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 932Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 932Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 933Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 933Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 934Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 934Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 935Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 935Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 936Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 936Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 937Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 937Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 938Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 938Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 939Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 939Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 940Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 940Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 941Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 941Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 942Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 942Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 943Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 943Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 944Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 944Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 945Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 945Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 946Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 946Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 947Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 947Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 948Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 948Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 949Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 949Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 950Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 950Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 951Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 951Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 952Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 952Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 953Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 953Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 954Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 954Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 955Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 955Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 956Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 956Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 957Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 957Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 958Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 958Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 959Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 959Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 960Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 960Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 961Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 961Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 962Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 962Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 963Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 963Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 964Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 964Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 965Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 965Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 966Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 966Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 967Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 967Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 968Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 968Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 969Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 969Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 970Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 970Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 971Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 971Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 972Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 972Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 973Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 973Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 974Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 974Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 975Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 975Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 976Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 976Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 977Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 977Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 978Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 978Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 979Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 979Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 980Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 980Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 981Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 981Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 982Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 982Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 983Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 983Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 984Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 984Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 985Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 985Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 986Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 986Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 987Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 987Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 988Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 988Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 989Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 989Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 990Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 990Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 991Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 991Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 992Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 992Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 993Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 993Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 994Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 994Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 995Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 995Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 996Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 996Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 997Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 997Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 998Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 998Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 999Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 999Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1000Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1000Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1001Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1001Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1002Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1002Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1003Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1003Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1004Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1004Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1005Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1005Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1006Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1006Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1007Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1007Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1008Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1008Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1009Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1009Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1010Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1010Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1011Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1011Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1012Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1012Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1013Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1013Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1014Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1014Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1015Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1015Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1016Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1016Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1017Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1017Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1018Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1018Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1019Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1019Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1020Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1020Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1021Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1021Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1022Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1022Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1023Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1023Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1024Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1024Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1025Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1025Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1026Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1026Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1027Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1027Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1028Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1028Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1029Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1029Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1030Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1030Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1031Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1031Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1032Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1032Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1033Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1033Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1034Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1034Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1035Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1035Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1036Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1036Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1037Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1037Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1038Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1038Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1039Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1039Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1040Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1040Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1041Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1041Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1042Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1042Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1043Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1043Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1044Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1044Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1045Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1045Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1046Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1046Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1047Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1047Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1048Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1048Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1049Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1049Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1050Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1050Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1051Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1051Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1052Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1052Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1053Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1053Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1054Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1054Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1055Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1055Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1056Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1056Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1057Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1057Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1058Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1058Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1059Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1059Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1060Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1060Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1061Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1061Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1062Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1062Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1063Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1063Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1064Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1064Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1065Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1065Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1066Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1066Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1067Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1067Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1068Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1068Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1069Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1069Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1070Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1070Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1071Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1071Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1072Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1072Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1073Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1073Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1074Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1074Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1075Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1075Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1076Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1076Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1077Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1077Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1078Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1078Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1079Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1079Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1080Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1080Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1081Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1081Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1082Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1082Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1083Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1083Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1084Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1084Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1085Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1085Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1086Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1086Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1087Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1087Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1088Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1088Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1089Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1089Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1090Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1090Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1091Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1091Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1092Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1092Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1093Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1093Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1094Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1094Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1095Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1095Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1096Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1096Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1097Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1097Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1098Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1098Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1099Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1099Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1100Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1100Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1101Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1101Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1102Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1102Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1103Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1103Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1104Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1104Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1105Symbol 362 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1105Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1541Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1541Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1541Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1541Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1541Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1542Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1542Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1542Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1542Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1543Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1543Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1543Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1543Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1544Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1544Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1544Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1544Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1545Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1545Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1545Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1545Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1546Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1546Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1546Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1546Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1547Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1547Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1547Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1547Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1548Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1548Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1548Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1548Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1549Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1549Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1549Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1549Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1550Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1550Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1550Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1550Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1551Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1551Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1551Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1551Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1552Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1552Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1552Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1552Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1553Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1553Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1553Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1553Symbol 190 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 373 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1554Symbol 357 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1554Symbol 154 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 152 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 184 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 107 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 169 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 166 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 172 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 365 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1554Symbol 159 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 127 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 132 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 162 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 122 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 137 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 119 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 116 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 148 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 176 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 144 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 187 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1554Symbol 190 as "SpeedPickupGfx"

Labels

"Intro"Frame 3
"playButShow"Frame 21
"StaticMainMenu"Frame 48
"PlayGame"Frame 303
"Nag"Frame 304
"Instructions"Frame 305
"HiScore"Frame 306
"Credits"Frame 307
"startInstruct"Frame 581
"playGame"Frame 801
"StaticInstructions"Frame 802
"gotoHiscore"Frame 803
"pickups"Frame 820
"InitAll"Frame 866
"Start"Frame 868
"BuildArena"Frame 869
"InitGame"Frame 871
"GameOver"Frame 878
"Finish"Frame 949
"NextLevel"Frame 950
"gotoNextLevel"Frame 1105
"DemoOver"Frame 1106
"NagDemoOver"Frame 1281
"Quit"Frame 1540
"DESIGN"Frame 1541
"destroy"Symbol 59 MovieClip [BR_normal_0_skin1] Frame 2
"destroy"Symbol 62 MovieClip [BR_normal_0_skin2] Frame 2
"destroy"Symbol 63 MovieClip [BR_normal_0_skin0] Frame 2
"destroy"Symbol 73 MovieClip [BR_normal_1_skin1] Frame 2
"destroy"Symbol 75 MovieClip [BR_normal_1_skin2] Frame 2
"destroy"Symbol 76 MovieClip [BR_normal_1_skin0] Frame 2
"destroy"Symbol 86 MovieClip [BR_normal_3_skin1] Frame 2
"destroy"Symbol 88 MovieClip [BR_normal_3_skin2] Frame 2
"destroy"Symbol 89 MovieClip [BR_normal_3_skin0] Frame 2
"destroy"Symbol 99 MovieClip [BR_normal_2_skin1] Frame 2
"destroy"Symbol 101 MovieClip [BR_normal_2_skin2] Frame 2
"destroy"Symbol 102 MovieClip [BR_normal_2_skin0] Frame 2
"explode"Symbol 256 MovieClip [block] Frame 2
"KILLME"Symbol 292 MovieClip [LevelPanel] Frame 20
"startWobble"Symbol 380 MovieClip [Saucer] Frame 1
"addBallMarker"Symbol 512 MovieClip Frame 36
"ballsAdded"Symbol 512 MovieClip Frame 45

Dynamic Text Variables

fpsdebugSymbol 501 EditableText"fps"
levelTxtSymbol 521 EditableText"level"




http://swfchan.com/7/31453/info.shtml
Created: 18/5 -2019 15:19:22 Last modified: 18/5 -2019 15:19:22 Server time: 28/04 -2024 07:34:46