STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
A Very Merry Christmas! |
This is the info page for Flash #58389 |
Level: 1 |
Creator: Zoranan |
Name: Maze |
Level: 1 |
Creator: Zoranan |
Name: Maze |
CREDITS... Zoranan (ME!) - Programmer / Designer MUSIC! Rig - Rap Thing LEVEL DESIGN... Csdthegreat Salvador Allison Samantha Chase Terryquan B-fin JO-whizard Speedy1000 Burgelschnouser Rabbidfighter Im Sorry to say I lost many good levels with the death of my computer. SPECIAL THANKS TO... My Sisters and Brother, for supporting me so much... Salvador, for comming up with some of the most unique and challenging levels Csdthegreat, for supporting me (as always) and designing some amazing levels JO - whizard, the only person who designed levels that I gave up on before I completed them. Because I couldn't complete them, I set them as challenges. |
CREDITS... Zoranan (ME!) - Programmer / Designer MUSIC! Rig - Rap Thing LEVEL DESIGN... Csdthegreat Salvador Allison Samantha Chase Terryquan B-fin JO-whizard Speedy1000 Burgelschnouser Rabbidfighter Im Sorry to say I lost many good levels with the death of my computer. SPECIAL THANKS TO... My Sisters and Brother, for supporting me so much... Salvador, for comming up with some of the most unique and challenging levels Csdthegreat, for supporting me (as always) and designing some amazing levels JO - whizard, the only person who designed levels that I gave up on before I completed them. Because I couldn't complete them, I set them as challenges. |
ActionScript [AS1/AS2]
Frame 1setProperty("orig_port", _visible , 1); setProperty("orig_lava", _visible , 1); setProperty("orig_wall", _visible , 1); setProperty("orig_move", _visible , 1); setProperty("orig_en", _visible , 1); setProperty("guy1", _visible , 0); setProperty("end1", _visible , 0); setProperty("portalin1", _visible , 0); portalin1.gotoAndStop(1); setProperty("explosion15", _visible , 0); explosion15.gotoAndStop(1); setProperty("ingamemenu1", _visible , 0); setProperty("mainmenu1", _visible , 1); setProperty("playmenu1", _visible , 0); setProperty("challenges1", _visible , 0); setProperty("credits2", _visible , 0); setProperty("trophiesmenu1", _visible , 0); setProperty("winnerbutton1", _visible , 0); _top_depth = 686; function start() { gotoAndPlay(1); } stage = Stage; graphics = this; if (!hasOwnProperty("save")) { (save);// not popped } function TrophyElementHandler() { hammer = 0; explorer = 0; da_key = 0; veteran = 0; ghost = 0; save = SharedObject.getLocal("UL2"); if (save.data.max_lvl != null) { max_lvl = save.data.max_lvl; lvl = max_lvl + 1; veteran = save.data.veteran; explorer = save.data.explorer; ghost = save.data.ghost; da_key = save.data.da_key; hammer = save.data.hammer; } if (lvl > 40) { lvl = 40; } } row1 = new String("111111111111111111111111111111111"); row2 = new String("100000000000000000000000000000001"); row3 = new String("100111101111011100011100000000001"); row4 = new String("100100101001010010100000000000001"); row5 = new String("100100101001011100011000000000001"); row6 = new String("100111101111010000000100000000001"); row7 = new String("100000000000000000111000000000001"); row8 = new String("100000000000000000000000000000001"); row9 = new String("100000000000000000000000000000001"); row10 = new String("100000000000000000000000000000001"); row11 = new String("100000000000000000000000000000001"); row12 = new String("100000000000000000000000000000001"); row13 = new String("100000000000000000000000000000001"); row14 = new String("100000000000000000000000000000001"); row15 = new String("100000000000000000000000000000001"); row16 = new String("100000000000000000000000000000001"); row17 = new String("100000000000000000000000000000001"); row18 = new String("100000000000000000000000000000001"); row19 = new String("100000000000000000000000000000001"); row20 = new String("100000000000000000000000000000001"); row21 = new String("100000000000000000000000000000001"); row22 = new String("100000000000000000000000000000001"); row23 = new String("100000000000000000000000000000001"); row24 = new String("000000000000000000000000000000001"); row25 = new String("111111111111111111111111111111111"); enem_time = 0; walls = new Array(); lavas = new Array(); ports = new Array(); enems = new Array(); h_enems = new Array(); v_enems = new Array(); moves = new Array(); rows = new Array(); rows.push(row1); rows.push(row2); rows.push(row3); rows.push(row4); rows.push(row5); rows.push(row6); rows.push(row7); rows.push(row8); rows.push(row9); rows.push(row10); rows.push(row11); rows.push(row12); rows.push(row13); rows.push(row14); rows.push(row15); rows.push(row16); rows.push(row17); rows.push(row18); rows.push(row19); rows.push(row20); rows.push(row21); rows.push(row22); rows.push(row23); rows.push(row24); rows.push(row25); pos = new flash.geom.Point(20, 20); start = new flash.geom.Point(20, 20); dir = new String(""); playing = false; lvl = 1; max_lvl = 0; chal = 1; author = new String(""); name = new String(""); last = 0; TrophyElementHandler(); function right() { if (playing && (_root.ingamemenu1._visible == false)) { if ((Math.abs(pos._x - _root.guy1._x) <= 20) && (Math.abs(pos._y - _root.guy1._y) <= 20)) { if ((rows[Y].charAt(X + 1) != "1") && (rows[Y].charAt(X + 1) != "<")) { pos._x = pos._x + 20; dir = "right"; } } } } function left() { if (playing && (_root.ingamemenu1._visible == false)) { if ((Math.abs(pos._x - _root.guy1._x) <= 20) && (Math.abs(pos._y - _root.guy1._y) <= 20)) { if ((rows[Y].charAt(X - 1) != "1") && (rows[Y].charAt(X - 1) != ">")) { pos._x = pos._x - 20; dir = "left"; } } } } function up() { if (playing && (_root.ingamemenu1._visible == false)) { if ((Math.abs(pos._x - _root.guy1._x) <= 20) && (Math.abs(pos._y - _root.guy1._y) <= 20)) { if ((rows[Y - 1].charAt(X) != "1") && (rows[Y - 1].charAt(X) != "_")) { pos._y = pos._y - 20; dir = "up"; } } } } function down() { if (playing && (_root.ingamemenu1._visible == false)) { if ((Math.abs(pos._x - _root.guy1._x) <= 20) && (Math.abs(pos._y - _root.guy1._y) <= 20)) { if ((rows[Y + 1].charAt(X) != "1") && (rows[Y + 1].charAt(X) != "^")) { pos._y = pos._y + 20; dir = "down"; } } } } function EnemyElementHandler() { var _local1 = 0; while (_local1 < h_enems.length) { if ((h_enems[_local1].velocity_x == 0) && (h_enems[_local1].velocity_y == 0)) { h_enems[_local1].velocity_x = 80; } _local1++; } _local1 = 0; while (_local1 < v_enems.length) { if ((v_enems[_local1].velocity_x == 0) && (v_enems[_local1].velocity_y == 0)) { v_enems[_local1].velocity_y = 80; } _local1++; } _local1 = 0; while (_local1 < h_enems.length) { e_x = Math.round(h_enems[_local1]._x / 20); e_y = Math.round(h_enems[_local1]._y / 20); if ((e_x == Math.round(pos._x / 20)) && (e_y == Math.round(pos._y / 20))) { _root.explosion15._x = pos._x; _root.explosion15._y = pos._y; _root.explosion15._visible = 1; _root.explosion15.play(); _root.explosion41.play(); pos._x = start._x; pos._y = start._y; } if (rows[e_y].charAt(e_x) == "<") { h_enems[_local1].velocity_x = -80; h_enems[_local1].velocity_y = 0; h_enems[_local1]._y = e_y * 20; } if (rows[e_y].charAt(e_x) == ">") { h_enems[_local1].velocity_x = 80; h_enems[_local1].velocity_y = 0; h_enems[_local1]._y = e_y * 20; } if (rows[e_y].charAt(e_x) == "^") { h_enems[_local1].velocity_y = -80; h_enems[_local1].velocity_x = 0; h_enems[_local1]._x = e_x * 20; } if (rows[e_y].charAt(e_x) == "_") { h_enems[_local1].velocity_y = 80; h_enems[_local1].velocity_x = 0; h_enems[_local1]._x = e_x * 20; } _local1++; } _local1 = 0; while (_local1 < v_enems.length) { e_x = Math.round(v_enems[_local1]._x / 20); e_y = Math.round(v_enems[_local1]._y / 20); if ((e_x == Math.round(pos._x / 20)) && (e_y == Math.round(pos._y / 20))) { _root.explosion15._x = pos._x; _root.explosion15._y = pos._y; _root.explosion15._visible = 1; _root.explosion15.play(); _root.explosion41.play(); pos._x = start._x; pos._y = start._y; } if (rows[e_y].charAt(e_x) == "<") { v_enems[_local1].velocity_x = -80; v_enems[_local1].velocity_y = 0; v_enems[_local1]._y = e_y * 20; } if (rows[e_y].charAt(e_x) == ">") { v_enems[_local1].velocity_x = 80; v_enems[_local1].velocity_y = 0; v_enems[_local1]._y = e_y * 20; } if (rows[e_y].charAt(e_x) == "^") { v_enems[_local1].velocity_y = -80; v_enems[_local1].velocity_x = 0; v_enems[_local1]._x = e_x * 20; } if (rows[e_y].charAt(e_x) == "_") { v_enems[_local1].velocity_y = 80; v_enems[_local1].velocity_x = 0; v_enems[_local1]._x = e_x * 20; } _local1++; } _local1 = 0; while (_local1 < v_enems.length) { e_x = Math.round(v_enems[_local1]._x / 20); e_y = Math.round(v_enems[_local1]._y / 20); if ((rows[e_y].charAt(e_x + 1) == "1") && (v_enems[_local1].velocity_x != 0)) { v_enems[_local1].velocity_x = -80; v_enems[_local1].velocity_y = 0; } if ((rows[e_y].charAt(e_x - 1) == "1") && (v_enems[_local1].velocity_x != 0)) { v_enems[_local1].velocity_x = 80; v_enems[_local1].velocity_y = 0; } if ((rows[e_y + 1].charAt(e_x) == "1") && (v_enems[_local1].velocity_y != 0)) { v_enems[_local1].velocity_y = -80; v_enems[_local1].velocity_x = 0; } if ((rows[e_y - 1].charAt(e_x) == "1") && (v_enems[_local1].velocity_y != 0)) { v_enems[_local1].velocity_y = 80; v_enems[_local1].velocity_x = 0; } _local1++; } _local1 = 0; while (_local1 < h_enems.length) { e_x = Math.round(h_enems[_local1]._x / 20); e_y = Math.round(h_enems[_local1]._y / 20); if ((rows[e_y].charAt(e_x + 1) == "1") && (h_enems[_local1].velocity_x != 0)) { h_enems[_local1].velocity_x = -80; h_enems[_local1].velocity_y = 0; } if ((rows[e_y].charAt(e_x - 1) == "1") && (h_enems[_local1].velocity_x != 0)) { h_enems[_local1].velocity_x = 80; h_enems[_local1].velocity_y = 0; } if ((rows[e_y + 1].charAt(e_x) == "1") && (h_enems[_local1].velocity_y != 0)) { h_enems[_local1].velocity_y = -80; h_enems[_local1].velocity_x = 0; } if ((rows[e_y - 1].charAt(e_x) == "1") && (h_enems[_local1].velocity_y != 0)) { h_enems[_local1].velocity_y = 80; h_enems[_local1].velocity_x = 0; } _local1++; } } function LevelsElementHandler() { if (_root.playmenu1._visible) { _root.last = 0; } if (_root.challenges1._visible) { _root.last = 1; } if (last == 0) { if (lvl == 1) { author = "csdthegreat"; name = "Gravity"; row1 = "111111111111111111111111111111111"; row2 = "1P______________________________1"; row3 = "1_______________________________1"; row4 = "1_______________________________1"; row5 = "1_______________________________1"; row6 = "1_______________________________1"; row7 = "1_______________________________1"; row8 = "1_______________________________1"; row9 = "1_______________________________1"; row10 = "1_______________________________1"; row11 = "1_______________________________1"; row12 = "1_______________________________1"; row13 = "1______________________________E1"; row14 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row15 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row16 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row17 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row18 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row19 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row20 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row21 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row22 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row23 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row24 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row25 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; } if (lvl == 2) { author = "csdthegreat"; name = "Olympics"; row1 = "LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL"; row2 = "L|L>0_L>0_L>0_L>>>_L>>_L+++++++_L"; row3 = "L0L0L>0^L0L0L0L^LL>>^L_L+++++++_L"; row4 = "L0L0LLLLL>0^L0L^<LLLLL0L+++++++_L"; row5 = "L0L^000<LLLLL0LL^L<<<<<L+++++++_L"; row6 = "L_LLLLL0L00<L0L>^L_LLLLL+++++++_L"; row7 = "L>00000^L0L^0<L^LL_L^>>L+++++++_L"; row8 = "LLLLLLLLL0LLLLL^L<<L^L_L+++++++_L"; row9 = "L>L<L^L0<0>_L>>^L_LL^L_L+++++++_L"; row10 = "L0L000L0LLL_L^LLL_>>>L_L+++++++_L"; row11 = "L^L0L0L00L_<L^<<LLLLLL_L+++++++_L"; row12 = "L0L_L0LL0L_LLLL^L_<<<<P>+++++++_L"; row13 = "L000L0000L>>>>>^L_LLLL1LLLLLLLL0L"; row14 = "L_LLLLLLLLLLLLLLL>>>_LEL00000000L"; row15 = "L0L0L0>0>0>0>0>0LLL^<L^L0LLLLLLLL"; row16 = "L0L0L0LLLLL0LLL0L_<<<L^L0L0000L0L"; row17 = "L0>0>0>0L0>0>0>0L_LLLL^L0L0LL0L0L"; row18 = "L0LLLLL0L0LLL0LLL>>>_L^L0L0L00L0L"; row19 = "L0>0>0L0L0L0>0L0LLLL_L^L0L0L0LL0L"; row20 = "L0L0L0L0LLLLL0L0L_<<<L^L0L0L00L0L"; row21 = "L0>0L0>0>0>0L0>0L_LLLL^L0L0LL0L0L"; row22 = "L0L0L0LLL0LLLLL0L>>>_L^L000L0000L"; row23 = "L0L0>0L0>0>0>0L0LLLL_L^LLLLLLLL0L"; row24 = "L0L0L0L0L0L0L0L00000>>^<00000000L"; row25 = "LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL"; } if (lvl == 3) { author = "Samantha"; name = "First Attempt"; row1 = "111111111111111111111111111111111"; row2 = "11110000000000000000000LLLLLLLL01"; row3 = "1101LL0000000000>>_0000L000000L01"; row4 = "1100000111100>>>^0_LLLLL0>>_00L01"; row5 = "1LLLLL0L0000000000_<E0000^0_00L01"; row6 = "10100L0L0000000000_111111^<<00L-1"; row7 = "10100L0LLLLLLLLLLL_00000000000L01"; row8 = "1P100L000000000000_0000000LLLLL01"; row9 = "10100L0LLLLLLLLLLL_000+0000000L01"; row10 = "10100L0L0000000000_101010101LLL01"; row11 = "10100L0L0000000000_000000001L0001"; row12 = "10111L0LLLLLLLL000+000000001L0>>1"; row13 = "1010000000000+LLL0L0000000000>>_1"; row14 = "10100000000000+0L0000+111111000_1"; row15 = "10100L0000000000+L11111L0000000_1"; row16 = "10LLLL0111100+00000000000000>>>_1"; row17 = "10000L01001000000000000L0000000_1"; row18 = "1LLL0L0100100000LLL000000000000_1"; row19 = "100L0L0100100000L+L0000L0000000_1"; row20 = "100L0L010+1+0000LLL000000000000_1"; row21 = "10L00L011111+0000000000L0000000_1"; row22 = "10L0LL0100000000000000000000000_1"; row23 = "10100001000000000000000L0000000_1"; row24 = "10111111000000000000000^<<<<<<<<1"; row25 = "111111111111111111111111111111111"; } if (lvl == 4) { author = "Salvador"; name = "Spaz"; row1 = "111111111111111111111111111111111"; row2 = "1+++++++++++++++++++++++++++++++1"; row3 = "1101++++++++++++++++++++++++++++1"; row4 = "1000++++++++++++++++++++++++++++1"; row5 = "1+01++++++++++++++++++++++++++++1"; row6 = "1111++++++++++++++++++1111+1111+1"; row7 = "1111111+++++++++++++++111+++111+1"; row8 = "1+11111+++++++++++++++1+++++++1+1"; row9 = "1++++11++++++++++++111+++++++++11"; row10 = "1++++11++++++++++++11+++++++++1+1"; row11 = "1++++1111111111111111+++11+111++1"; row12 = "1+000111111111111111++++10001+++1"; row13 = "1+0E0++++++++++++++++++++0+0+1+P1"; row14 = "1+000111111111111111++++10001+++1"; row15 = "1++++1111111111111111+++11+111++1"; row16 = "1++++11++++++++++++11+++++++++1+1"; row17 = "1++++11++++++++++++111+++++++++11"; row18 = "1+11111+++++++++++++++1+++++++1+1"; row19 = "1111111+++++++++++++++111+++111+1"; row20 = "1111++++++++++++++++++1111+1111+1"; row21 = "1+01++++++++++++++++++++++++++++1"; row22 = "1000++++++++++++++++++++++++++++1"; row23 = "1101++++++++++++++++++++++++++++1"; row24 = "1+++++++++++++++++++++++++++++++1"; row25 = "111111111111111111111111111111111"; } if (lvl == 5) { author = "Allison"; name = "Hello"; row1 = "111111111111111111111111111111111"; row2 = "1P00000000000000000000000|0|0|0|1"; row3 = "1+00000+0000+000+0000000000000001"; row4 = "100000000000000000000000000000001"; row5 = "10000000000000000000000000|000|01"; row6 = "100000000000000000000000000000001"; row7 = "10|000|0||||0|0|0||||||0000000001"; row8 = "10|000|0|0000|0|0|0000|000|0+0|01"; row9 = "10|000|0|0000|0|0|0000|0000000001"; row10 = "10|000|0|0000|0|0|0000|0000000001"; row11 = "10|||||0|||00|0|0|0000|000|000|01"; row12 = "10|000|0|0000|0|0|0000|0011101111"; row13 = "10|000|0|0000|0|0|0000|0000000001"; row14 = "10|000|0|0000|0|0|0000|00000+0001"; row15 = "10|000|0||||0|0|0||||||0000000001"; row16 = "100000000000000000000000000000001"; row17 = "100000000000000000000000000000001"; row18 = "100000000000000000000000000000001"; row19 = "100000000000000000000000000000001"; row20 = "100000000000000000000000000000001"; row21 = "100000000000000000000000000000001"; row22 = "100000000000000000000000000001111"; row23 = "100000000000000000000000000001+01"; row24 = "1000000000000000000000000000010E1"; row25 = "111111111111111111111111111111111"; } if (lvl == 6) { author = "Salvador"; name = "Red Rings Of Death"; row1 = "111111111111111111111111111111111"; row2 = "1111111111100000P0000111111111111"; row3 = "111111111100111111110001111111111"; row4 = "111111110001110000011100011111111"; row5 = "111111110111000L01000111011111111"; row6 = "1111110001100LLL01110011000111111"; row7 = "111111011100LLLL01111001110111111"; row8 = "11111001100LLLLL01111100110011111"; row9 = "1111101100LLLLL000111110011011111"; row10 = "111100110LLLL000_0001111011001111"; row11 = "111001100LLLL000_0001111001100111"; row12 = "11101110LLLL000000000111101110111"; row13 = "100000000000000<E>000000000000001"; row14 = "11101110LLLL000<_>000LLLL01110111"; row15 = "111001100LLLL000_000LLLL001100111"; row16 = "111100110LLLL0000000LLLL011001111"; row17 = "1111101100LLLLL000LLLLL0011011111"; row18 = "11111001100LLLLL0LLLLL00110011111"; row19 = "111111011100LLLL0LLLL001110111111"; row20 = "1111110001100LLL0LLL0011000111111"; row21 = "111111110111000L0L000111011111111"; row22 = "111111110001110000011100011111111"; row23 = "111111111100011101110001111111111"; row24 = "111111111111000000000111111111111"; row25 = "111111111111111111111111111111111"; } if (lvl == 7) { author = "Allison"; name = "Paths"; row1 = "111111111111111111111111111111111"; row2 = "10000L00000000000000000000LLLLLL1"; row3 = "10P10L0LLL1L11L1011L1L10L_LE000L1"; row4 = "10010L0L0000000101000000L_LLLL0L1"; row5 = "1_+10L0L0L110101L1011110L_L1LL0L1"; row6 = "1_110LLL0L00010000010010L>>_LL0L1"; row7 = "1_1000000L00011110110100LLL_L00L1"; row8 = "1_1LLL+0LL00000010100010L0L_L0LL1"; row9 = "1>>>_LL00L00000010110100L0L_L00L1"; row10 = "1LLL_L0L0L00000011110010L0L_LL0L1"; row11 = "1L0L_L0L0L00000000010100L0L_L00L1"; row12 = "1L0L_L0L00L0000000L10010L0L_L0LL1"; row13 = "1L0L_L00L00L00000L1L0100L0L_L00L1"; row14 = "100LLL000L0_L000L1010010L0L<LL0L1"; row15 = "1L0|000000L0L00L10L1010010L_L00L1"; row16 = "1000000000L0L0L10L10001010L+L0LL1"; row17 = "1L__00_000L0L0100100010000L0L00L1"; row18 = "10__L1L1L1L00L1L10000010L0L0LL0L1"; row19 = "1L__1-000000010000000100L0L0L00L1"; row20 = "1000L00+00LLLL0000000010L0L0L0LL1"; row21 = "1L00L00000L0010101000100L0L0L00L1"; row22 = "10000|||0|L0000000000010L0L|LL0L1"; row23 = "1L00L1L1L1L000000000010000L0L00L1"; row24 = "1000000000000|0|0|000000L00000L01"; row25 = "111111111111111111111111111111111"; } if (lvl == 8) { author = "Salvador"; name = "Bouncing Off The Walls"; row1 = "111111111111111111111111111111111"; row2 = "1+++++++++++++++++++++++++++++++1"; row3 = "1+++++++++++++++++++++++++++++++1"; row4 = "1+++++++++++++++++++++++++++++++1"; row5 = "1+++++++++++++++++++++++++++++++1"; row6 = "1+++++++++++++++++++++++++++++++1"; row7 = "1+++++++++++++++++++++++++++++++1"; row8 = "1+++++++++++++++++++++++++++++++1"; row9 = "1+++++++++++++++++++++++++++++++1"; row10 = "1+++++++++++++++++++++++++++++++1"; row11 = "1+++++++++++++++++++++++++++++++1"; row12 = "1+++++++++++++++++++++++++++++++1"; row13 = "1++++++++++++++P+E++++++++++++++1"; row14 = "1+++++++++++++++++++++++++++++++1"; row15 = "1+++++++++++++++++++++++++++++++1"; row16 = "1+++++++++++++++++++++++++++++++1"; row17 = "1+++++++++++++++++++++++++++++++1"; row18 = "1+++++++++++++++++++++++++++++++1"; row19 = "1+++++++++++++++++++++++++++++++1"; row20 = "1+++++++++++++++++++++++++++++++1"; row21 = "1+++++++++++++++++++++++++++++++1"; row22 = "1+++++++++++++++++++++++++++++++1"; row23 = "1+++++++++++++++++++++++++++++++1"; row24 = "1+++++++++++++++++++++++++++++++1"; row25 = "111111111111111111111111111111111"; } if (lvl == 9) { author = "Allison"; name = "Lost Treasure"; row1 = "111111111111111111111111111111111"; row2 = "1000+LL00000000000000000000000001"; row3 = "10P00>_L0000000000000000000000001"; row4 = "1000+L>_L000000000000000000000001"; row5 = "1+1+00L>_1-000001-000001-00000101"; row6 = "10|0000L+0LLLLLLLLLLLLLLLLLLLLLL1"; row7 = "100000LL00>>>>>>>>>>>>>>>>>>>>>_1"; row8 = "100000LLLLLLLLLLLLLLLLLLLLLLLLL_1"; row9 = "100000L>>>>>>>>>>>>>>>>>>>>>>>L_1"; row10 = "100000L^LLLLLLLLLLLLLLLLLLLLL_L_1"; row11 = "100000L^L>>>>>>>>>>>>>>>>>>_L_L_1"; row12 = "100000L^L^LLLLLLLLLLLLLLL+0_L_L_1"; row13 = "100000L^L^L>>>>>>>>>>>>+LL1_L_L_1"; row14 = "100000L^L^L^LLLLLLLLLLLLE0+_L_L_1"; row15 = "10|000L^L^L^<<<<<<<<<<<<<<<<L_L_1"; row16 = "101000L^L^LLLLLLLLLLLLLLLLLLL_L_1"; row17 = "10|000L^L^<<<<<<<<<<<<<<<<<<<<L_1"; row18 = "100000L^LLLLLLLLLLLLLLLLLLLLLLL_1"; row19 = "100000L^<<<<<<<<<<<<<<<<<<<<<<<<1"; row20 = "100000LLLLLLLLLLLLLLLLLLLLLLLLLL1"; row21 = "100000000000000000000000000001111"; row22 = "100000000000000000000000000000001"; row23 = "100000000000000000000000000000001"; row24 = "1+-000000000000-1-000000000000-+1"; row25 = "111111111111111111111111111111111"; } if (lvl == 10) { author = "Allison"; name = "X Marks The Spot"; row1 = "111111111111111111111111111111111"; row2 = "1+0010000000100000000001000000001"; row3 = "10P010000000L0L0000000L1111111001"; row4 = "1001000000000+0000000L1>>>>>_1001"; row5 = "1110L0000000L0L00000L11^0000_1001"; row6 = "10000L0000000000000L01>^0010_1111"; row7 = "100000L00000000000L011^L1L1L>>_11"; row8 = "1000000L000000000L001>^L111L1L_11"; row9 = "10000000L0000000L0001^L0L11111_11"; row10 = "100000000L00000L00001^L0011L1L_11"; row11 = "1000000000L000L000001^<<0L_<<<<11"; row12 = "1L000000000L|L000000111^L0_LLLLL1"; row13 = "100000000000100+0>>>_0L^0_<L111L1"; row14 = "1+L00000000L0L000000_00^L_LL11LL1"; row15 = "1000000000L000L00000>>>^L>>>>_L11"; row16 = "1L0000000L00000L00000001LLLLL_LL1"; row17 = "10000000L00L0L00L000000000L11>_L1"; row18 = "1000000L0000+0000L00000000L1LL_11"; row19 = "100000L0000L0L0000L0000000001L_11"; row20 = "10000L0000000000000L0000000L1L0L1"; row21 = "1000L000000000000000L0000001-0001"; row22 = "100L00000000000000000L00000L11001"; row23 = "1|L0000000000000000000L|0001-0001"; row24 = "110000000000|00000000001000L000E1"; row25 = "111111111111111111111111111111111"; } if (lvl == 11) { author = "Salvador"; name = "Strategy"; row1 = "111111111111111111111111111111111"; row2 = "1000001111111LLLLLLL1111111000001"; row3 = "1000<00000001LLLLLLL10000000<0001"; row4 = "1L<<<<1011111LLLLLLL1111101L<<<<1"; row5 = "100000101LLL1LLLLLLL1LLL101000001"; row6 = "1L<<<<101LLL1LLLLLLL1LLL101L<<<<1"; row7 = "100000101LLL1LLLLLLL1LLL101000001"; row8 = "1L<<<<101LLL1LLLLLLL1LLL101L<<<<1"; row9 = "10_0<01011111LLLLLLL11111010<0^01"; row10 = "1000001000001LLLLLLL1000001000001"; row11 = "1101101010101LLLLLLL1010101011011"; row12 = "100010|0|0|01111111110|0|0|010001"; row13 = "10+000000000000P1E000000000000+01"; row14 = "100010|0|0|01111111110|0|0|010001"; row15 = "1101101010101LLLLLLL1010101011011"; row16 = "1000001000001LLLLLLL1000001000001"; row17 = "10^0<01011111LLLLLLL11111010<0_01"; row18 = "1L<<<<101LLL1LLLLLLL1LLL101L<<<<1"; row19 = "100000101LLL1LLLLLLL1LLL101000001"; row20 = "1L<<<<101LLL1LLLLLLL1LLL101L<<<<1"; row21 = "100000101LLL1LLLLLLL1LLL101000001"; row22 = "1L<<<<1011111LLLLLLL1111101L<<<<1"; row23 = "1000<00000001LLLLLLL10000000<0001"; row24 = "1000001111111LLLLLLL1111111000001"; row25 = "111111111111111111111111111111111"; } if (lvl == 12) { author = "Salvador"; name = "MaZe"; row1 = "111111111111111111111111111111111"; row2 = "100010000000000000001001000110001"; row3 = "1P1010101011110111011011010010101"; row4 = "111010101000010110010000010110101"; row5 = "100010101111010100110111010100111"; row6 = "101110100001000101100001011110001"; row7 = "100000111101110000001101000110101"; row8 = "111110100001000111111001010000101"; row9 = "100010101111010100001011011110111"; row10 = "1011101010000101011010010000100+1"; row11 = "101010101111110100101111111010111"; row12 = "100000100000010110100010101010101"; row13 = "101111111111010010111010101110101"; row14 = "101010101001011110101010100000101"; row15 = "100010001011000000101000101111101"; row16 = "101011101011111111101110111000001"; row17 = "101000000000000101001010000011101"; row18 = "10111101111110110101101011111E101"; row19 = "100001000001001001000000101000101"; row20 = "111100011101101101111111101011101"; row21 = "100101000100001000000000001000001"; row22 = "101101101111100011101011101011111"; row23 = "101000101010111110101110101110001"; row24 = "1000101000100000000000001000001+1"; row25 = "111111111111111111111111111111111"; } if (lvl == 13) { author = "Salvador"; name = "J-Walking"; row1 = "111111111111111111111111111111111"; row2 = "10L1|1L000000000L111111L10000LLL1"; row3 = "10L1|1L0L11111L0LLLLLLLL10LL0L1L1"; row4 = "10L1|1L0LL1LLLL00000000L10L10L1L1"; row5 = "10L1|1L00L1L0000LLLLLL0LL0L10L111"; row6 = "10L1|1LL0L1L011111111L0000L10LLL1"; row7 = "10L1|11L0LLL01LLLLLLLLL010L1000L1"; row8 = "10LL|LLL0L0000L1111111LL1LLLLL0L1"; row9 = "100L|0000LLLLLLLLLLLL1L111111L0L1"; row10 = "10LL|LLLLL1111L00000L1LLLLLLLL0L1"; row11 = "10L1|1L1111L01L0LLL0L1L00000000L1"; row12 = "10LL0LLLLLLL01L0L1L0LLL0LLLLLLLL1"; row13 = "10P>0<E000000000L1L00000L11111111"; row14 = "10LL0LLLLLLL01L0L1L0LLL0LLLLLLLL1"; row15 = "10L1|1L1111L01L0LLL0L1L00000000L1"; row16 = "10LL|LLLLL1111L00000L1LLLLLLLL0L1"; row17 = "100L|0000LLLLLLLLLLLL1L111111L0L1"; row18 = "10LL|LLL0L0000L1111111LL1LLLLL0L1"; row19 = "10L1|11L0LLL01LLLLLLLLL010L1000L1"; row20 = "10L1|1LL0L1L011111111L0000L10LLL1"; row21 = "10L1|1L00L1L0000LLLLLL0LL0L10L111"; row22 = "10L1|1L0LL1LLLL00000000L10L10L1L1"; row23 = "10L1|1L0L11111L0LLLLLLLL10LL0L1L1"; row24 = "10L1|1L000000000L111111L10000LLL1"; row25 = "111111111111111111111111111111111"; } if (lvl == 14) { author = "Salvador"; name = "Ring Of Fire"; row1 = "111111111111111111111111111111111"; row2 = "100010101000101001101001000010101"; row3 = "101110001011100001000011011010101"; row4 = "1000001L100010101101001LL10010001"; row5 = "1111101110100010100101L11L0110101"; row6 = "1-00000000111000001101L1L1L1L0111"; row7 = "10101111100100111010000001110L001"; row8 = "101L00010011011010111L10110001101"; row9 = "101110L1L001000010001110010101L01"; row10 = "100000011111110111111L11010101111"; row11 = "10101100000-1000001|00L10001000L1"; row12 = "101001111010111111101111111111011"; row13 = "10110001P01110000100100L0001E10+1"; row14 = "100001011110111101101011LL1101111"; row15 = "11111101000010000010000111L1000L1"; row16 = "1000010001L1101011101100000L1L011"; row17 = "10110111111100100100011101L1L-001"; row18 = "101+0L10001|011011010001011111101"; row19 = "10110110111011100001110000L110001"; row20 = "100000000-1010101100010110|010111"; row21 = "100111111010100|0111011100L000101"; row22 = "1011L1L01000001100000101010011101"; row23 = "101001101110100110110100010110001"; row24 = "100000001000110000L100010100001L1"; row25 = "111111111111111111111111111111111"; } if (lvl == 15) { author = "Terryquan"; name = "Use ur imagination"; row1 = "111111111111111111111111111111111"; row2 = "11LL0000000000000L00LLLLL0|0|0|01"; row3 = "1P0L000000L0LLLL0L000000L00000001"; row4 = "10LL00000LL0LL000L00LLL0L00000001"; row5 = "10L000000L000L0LLL0|L000L00000001"; row6 = "10L00LLLLL000L000001L00LLL0|0|001"; row7 = "10LLLL000L010LLLLLLLL0000L1111101"; row8 = "1000000-00010L000100LLLL0L000|001"; row9 = "1LLLLL000L010L0L01-00000010L00001"; row10 = "10000LLL1L000L0L01000000-10L00001"; row11 = "1L0L00000LL0LL0L01-0000001-L00001"; row12 = "1L0L010-01L0LL0L01011011110L00001"; row13 = "1L0LLL00^0L0LL0L0L0L111L000L0|001"; row14 = "1L0001LL00L0LL0L000L000LL0LLL1001"; row15 = "1LLL>00L0LL0LL0LLLLLL00000L_<<<11"; row16 = "100LL|0L0000LL000000L1-00-1>>>>_1"; row17 = "1000000LLLLLLLL111L00L0000L_<<<<1"; row18 = "10L0001L000L000000L10L0LLLL>>>>_1"; row19 = "10LLL10L0L0LLL1000000L0L_<_<_<<<1"; row20 = "10L0000L0L0>0_1-0011000L_^<^<^>_1"; row21 = "10L0L00L0L1-001000LLLLLL>_>_>_^_1"; row22 = "1000L00L0L0000L0|00L_<_<<>^>^>^_1"; row23 = "1LLLL0010L0LLLL1110L_^<<^<<<<<<<1"; row24 = "1-0000|001000000000L>>>>>>>>>>0E1"; row25 = "111111111111111111111111111111111"; } if (lvl == 16) { author = "Allison"; name = "Lava Mirage"; row1 = "111111111111111111111111111111111"; row2 = "1000L0L0L0L0000000000L000000L+001"; row3 = "10P00L0L000L00000000L00LLLL0L0001"; row4 = "10000000L0L00000000L00L00000L|001"; row5 = "1LLLLLL000LLL00000L00L00LLLL00|01"; row6 = "1000000LL0000L000L00L0000000000|1"; row7 = "100000L000LL00L0L00L00L00LLLLLLL1"; row8 = "1000000L0L00L0L00L00L0L0L000L1111"; row9 = "1000000L0L00L00L00L0L0LL00L00L001"; row10 = "10000LL000LL0L0L0L00L0000L0L00L01"; row11 = "1000L000L000LL0LL00L0000L000L0L01"; row12 = "100L00LL0LL00L0LLLL0000L000L00L01"; row13 = "100L0L00000L00L0L00000L0000L0L001"; row14 = "100L0L0000L00L000L000L0000L00L001"; row15 = "10L00L0L^L00L00000L0L0000L00L0001"; row16 = "1L00L00L00L00L0000L0L000L00L00001"; row17 = "100L000L000L00L000L0L00L00L000001"; row18 = "10L000L000L00L000L00L00L0L0000001"; row19 = "1L000L00LL00L000L00L000L0L0000001"; row20 = "1000L00L00L00L0L00L0000L00L000001"; row21 = "111L00L0000L00L00L000000L00L00001"; row22 = "100L0L000000L000L00000000L00L0001"; row23 = "1+0L0LLLLLLLLLLLLLLLLLLLLLL0L0001"; row24 = "1E0L000000000000000000000000L0001"; row25 = "111111111111111111111111111111111"; } if (lvl == 17) { author = "Salvador"; name = "Fire Field"; row1 = "1L111L11L111111111111111111111111"; row2 = "1LLLLL0L00LL00L000L0L0000L0L0LL01"; row3 = "LLLLLLL0L0LL0LLLL00L00LL00L000L01"; row4 = "LL111L0L0LL0LL0LL0L0LL000L00LLL01"; row5 = "LLLL1LL1LLLLL0+0LLLLL0LLLL0L000L1"; row6 = "1LL1LL1L1L1110E0L0LLLLLLL0L0L0L01"; row7 = "LL1LLL1L1L1L1LL1LLL0LLL0LLL0L0LL1"; row8 = "LL111L1L1L111L1L1L1LL1LLL0LLLL0L1"; row9 = "LLLLLLL1LL11LL111L11L1LL1LLL0LLL1"; row10 = "1LL0LL0LLL1L1L1L1L1L11L1L1L1LL1L1"; row11 = "LLLL0L0L0LLLLL1L1L1L11L111L11L1L1"; row12 = "L0L0L0LLLL0LLLLLLL1LL1L1L1L1L11L1"; row13 = "L0LL00L0LL0LLPLL0LLL0LL1L1L1L11L1"; row14 = "LLL0L00L0LL0L0LLLL0LLLLLLLL1LL1L1"; row15 = "10LLLL0L00L0L00LL0LL0LL0L0LLL0LL1"; row16 = "1L0L000LL0L0LL000L0L000L0L0L0LL01"; row17 = "10000L000L000LLL00L00L0L00L0L00L1"; row18 = "10L0LLLL000L00L0L00L0L00L00000001"; row19 = "10LL000LLLL0L0LL0L0L0LL0L00L0LL01"; row20 = "10L00L0L0000L000LL0L0LL00L00LL001"; row21 = "1000L00L0LL0LLL0000L0LLL0LL0L0L01"; row22 = "1LLL00L00L00L0LLLLL00L000L00LL0+1"; row23 = "1L000000LL0L000LL000L00LL00L0LL01"; row24 = "1LLLLLLLL0000L0000LL0L0000LLLLLL1"; row25 = "111111111111111111111111111111111"; } if (lvl == 18) { author = "Salvador"; name = "Suicide Portal"; row1 = "111111111111111111111111111111111"; row2 = "100001L000000000L111111L10000LLL1"; row3 = "10LL01L0L11111L0LLLLLLLL10LL0L1L1"; row4 = "10L101L0LL1LLLL00000000L10L10L1L1"; row5 = "10L101L00L1L0000LLLLLL0LL0L10L111"; row6 = "10L101LL0L1L011111111L0000L10LLL1"; row7 = "10L1011L0LLL01LLLLLLLLL010L1000L1"; row8 = "10LL0LLL0L0000L1111111LL1LLLLL0L1"; row9 = "100L00000LLLLLLLLLLLL1L111111L0L1"; row10 = "10LLLLLLLL1111L00000L1LLLLLLLL0L1"; row11 = "10L111L1111L01L0LLL0L1L+0000000L1"; row12 = "10LL1LLLLLLL01L0L1L0LLLLLLLLLLLL1"; row13 = "100L1LE00000+1L00P000000L11111111"; row14 = "10LL1LLLLLLL01L0L1L0LLL0LLLLLLLL1"; row15 = "10L111L1111L01L0LLL0L1L00000000L1"; row16 = "10LLLLLLLL1111L00000L1LLLLLLLL0L1"; row17 = "100L00000LLLLLLLLLLLL1L111111L0L1"; row18 = "10LL0LLL0L0000L1111111LL1LLLLL0L1"; row19 = "10L1011L0LLL01LLLLLLLLL010L1000L1"; row20 = "10L101LL0L1L011111111L0000L10LLL1"; row21 = "10L101L00L1L0000LLLLLL0LL0L10L111"; row22 = "10L101L0LL1LLLL00000000L10L10L1L1"; row23 = "10L101L0L11111L0LLLLLLLL10LL0L1L1"; row24 = "100001L000000000L111111L10000LLL1"; row25 = "111111111111111111111111111111111"; } if (lvl == 19) { author = "Salvador"; name = "Roadkill"; row1 = "111111111111111111111111111111111"; row2 = "1L101000000000L1|1L0001L000000001"; row3 = "10001L11011101L1|1L11011101110101"; row4 = "1010111001L100L1|1L1L010001L00101"; row5 = "10100000110110L1|1L1100010110L1L1"; row6 = "111011101L0010L1|1L0101110L111111"; row7 = "10001L10111011L1|1L0111L100100001"; row8 = "10111000001000L1|1L00000110101101"; row9 = "10100011011011L1|1L01100010101001"; row10 = "1000L010010000L1|1L01001010101111"; row11 = "10100010111010L1|1L01001010000001"; row12 = "10101110101110LL|LL01011111L11101"; row13 = "1+0000000001000P|E0000000011100+1"; row14 = "10111L01011110LL|LL01L11101000101"; row15 = "101L1101001000L1|1L01110001010101"; row16 = "10000101111011L1|1L00100111010001"; row17 = "10110100001000L1|1L01101100010111"; row18 = "10100101011010L1|1L0000100L011101"; row19 = "11101111000010L1|1L01001110010001"; row20 = "10001000010111L1|1L01111000111101"; row21 = "1010001011000LL1|1L00100001100001"; row22 = "10101110L10111L1|1L10111100001011"; row23 = "10101L10011100L1|1L10000110111001"; row24 = "1L10001L000001L1|1L10010L100L10L1"; row25 = "111111111111111111111111111111111"; } if (lvl == 20) { author = "Salvador"; name = "Lucky"; row1 = "111111111111111111111111111111111"; row2 = "1+0>++<+>+_+>+_1E1_+<+_+<+>++<0+1"; row3 = "100^++<+^>+^>>+101+<<^+<^+>++^001"; row4 = "1+0^++<+^+^+>++101++<+^+^+>++^0+1"; row5 = "100^++<+^>+^>>+101+<<^+<^+>++^001"; row6 = "1>>^++<+^+_+>++101++<+_+^+>++^<<1"; row7 = "1^++++<+^>+^>>+1+1+<<^+<^+>++++^1"; row8 = "1^+<++<+^+^+^^11111^^+^+^+>++>+^1"; row9 = "1^+<++<+^>+_>^1_P_1^<_+<^+>++>+^1"; row10 = "1^+<++<+^+_++^1___1^++_+^++>+>+^1"; row11 = "1^+++<++^>+_>+1>_<1+<_+<^<+++++^1"; row12 = "1^+<+++>^+_>+111_111+<_+<^<++>+^1"; row13 = "1^+<+>>^+_>+_+11_11+_+<_+<^<+>+^1"; row14 = "1^+<+^>+>+__+_+1_1+_+__+<+<^+>+^1"; row15 = "1^+<+^<>+_>+_+1>+<1+_+<_+<_^+>+^1"; row16 = "1^+<+^>+>++>+<+1^1+>+<<+<+<^+>+^1"; row17 = "1^+<+^<>++>+^+11^11+^+<<+<>^+>+^1"; row18 = "1^+<++^<>++>+^+1+1+^+<++<>^++>+^1"; row19 = "1^++<++^<>++>+^+_+^+<++<>^++>+>^1"; row20 = "1^<++<++^<>++>+>+<+<++<>^++>+>^01"; row21 = "10^<++<++^<>++>+^+<++<>^++>+>^001"; row22 = "1+0^<+<+++^+>++_^_++<+^+++>+^00+1"; row23 = "10+0^+<+++^>++>+^+<++<^+++>+^0+01"; row24 = "1+00^+<+++^^>++^+^++<^^+++>+^00+1"; row25 = "111111111111111111111111111111111"; } if (lvl == 21) { author = "Chase"; name = "Owch!"; row1 = "111111111111111111111111111111111"; row2 = "1111111000000000L000L000L000L0001"; row3 = "11P0001011111LL000L000L000L000L01"; row4 = "11111010100000LLLLLLLLLLLLLLLLL01"; row5 = "10001010100000000000000000000L001"; row6 = "10L01010100000000000000000000LL01"; row7 = "10L01010100000000000000000000L001"; row8 = "10L01000100000000000000000000L0L1"; row9 = "10L011110L0111110000000000000L001"; row10 = "10L000L00L1>---_1000000000000LL01"; row11 = "10L0L000L01|000|1111111111111L001"; row12 = "10LLLL0LL01|0|0|1000|000|000|00L1"; row13 = "10L0000L001||00010000000000000011"; row14 = "10L0000L001|0E0|10|000|000|000011"; row15 = "1010LLLLLL1^---<10111111111111111"; row16 = "10100LL00001110110100000000000001"; row17 = "101100L0LL00000-10100000000000001"; row18 = "1-0010L0L0LLLLLL10100000000000001"; row19 = "101100L0L000000010100000000000001"; row20 = "101100L0LLLLLLLL10100000000000001"; row21 = "1-001-L000000000101110_0_0_0_0_01"; row22 = "101100L0L00L00L010|00L|LLL|LLL|L1"; row23 = "10100LLL0LL0LL0010000000000000001"; row24 = "1+1000000000000-1L00|000|000|0+01"; row25 = "111111111111111111111111111111111"; } if (lvl == 22) { author = "B-fin"; name = "Lava Labyrinth"; row1 = "L1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL"; row2 = "1P0L0L0L0L0L0L0L0L0L0L0L0L0L000LL"; row3 = "L10L0000000000000L0L0000000L0L0LL"; row4 = "L00L0L0LLL0L0LLLLL0LLL0LLLLL0L00L"; row5 = "L0LL0L00000L000L0L00000L0L000LL0L"; row6 = "L00L0L0L0LLLLLLL0L0LLL0L0L0LLL00L"; row7 = "LL0L0L0L0L00000000000000000L0L0LL"; row8 = "L00L0LLLLLLL0LLLLL0L0L0LLL0L0L00L"; row9 = "L0LL0L0L00000L0L000L0L00000L0LL0L"; row10 = "L00L0L0L0L0LLL0LLLLL0L0L0LLL0L00L"; row11 = "LL0L0L0L0L000L000L00000L000L0L00L"; row12 = "L00L0L0L0LLL0LLL0LLL0LLL0LLL0L00L"; row13 = "L0LL0L0L00000L000L0000000L000L00L"; row14 = "L00L0L0LLL0LLL0L0L0L0LLL0L0L0LL0L"; row15 = "LL0L0L000L000L0L000L0000000L0L00L"; row16 = "L00L0LLL0LLLLLLLLLLLLL0L0LLLLL0LL"; row17 = "L0LL00000000000L0000000L00000L00L"; row18 = "L00L0L0L0LLL0L0L0LLL0LLL0LLL0LL0L"; row19 = "LL0L0L0L000L0L0L0L000L000L0L0L00L"; row20 = "L00LLL0LLLLL0LLL0L0LLL0LLL0L0L0LL"; row21 = "L0LLE0000L0000000L000L00000L0L00L"; row22 = "L00LLLLLLLLLLLLLLLLLLLLLLLLLLLL0L"; row23 = "LL0L000L000L000L000L000L000L0000L"; row24 = "LL000L000L000L000L000L000L000L0LL"; row25 = "LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL"; } if (lvl == 23) { author = "Salvador"; name = "Death Trap"; row1 = "111111111111111111111111111111111"; row2 = "11P010000000000000000000000010011"; row3 = "110001000000LL00000LL000000100011"; row4 = "1110+1L00|00L1-000-1L00|00L100111"; row5 = "110111L0|1-00011011000-1|0L111011"; row6 = "1100LLL0111110100010111110LLL0011"; row7 = "11000000|100LLL010LLL001|00000011"; row8 = "11000-1001000000|0000001001-00011"; row9 = "1100-1LL01L0LL01010LL0L10LL1-0011"; row10 = "110111L100L0L0000000L0L001L111011"; row11 = "1100010|11L000LL0LL000L11|01|0011"; row12 = "11010100100010L000L01000100101011"; row13 = "11+10000001-0000E0000-10000001+11"; row14 = "11010100100010L000L01000100101011"; row15 = "1100|10|11L000LL0LL000L11|0100011"; row16 = "110111L100L0L0000000L0L001L111011"; row17 = "1100-1LL01L0LL01010LL0L10LL1-0011"; row18 = "11000-1001000000|0000001001-00011"; row19 = "11000000|100LLL010LLL001|00000011"; row20 = "1100LLL0111110100010111110LLL0011"; row21 = "110111L0|1-00011011000-1|0L111011"; row22 = "111001L00|00L1-000-1L00|00L100111"; row23 = "110001000000LL00000LL000000100011"; row24 = "110010000000000000000000000010011"; row25 = "111111111111111111111111111111111"; } if (lvl == 24) { author = "JO-whizard"; name = "Wall Dungeon"; row1 = "111111111111111111111111111111111"; row2 = "1P1000100000101010000001110111111"; row3 = "101010101110-00010110101000100001"; row4 = "10>01010001111101000|100010110101"; row5 = "101110111010100010110111110100101"; row6 = "1010000-0011001111100100000101101"; row7 = "101111111110011000101101111101001"; row8 = "10>010001011000010001000100001011"; row9 = "101010101111101111111110001111001"; row10 = "101000100000101000100011111011101"; row11 = "10111110111000-010001110-00001001"; row12 = "10>01-000011111111100011110101011"; row13 = "101000111-00001000111|11000101001"; row14 = "101111100010101010000010011101101"; row15 = "1010001|11101|0011101010110001001"; row16 = "10>010101001101000101000100111011"; row17 = "10111010011000111010111110110-001"; row18 = "101000101010101000100101001001111"; row19 = "10111000101|1000111|11|1011111011"; row20 = "10>011111000111110100101011010001"; row21 = "101010001010101000100101010000101"; row22 = "10100010001000101110110-000111101"; row23 = "101111101110100010000111111100001"; row24 = "10>00-000000111000110001000-001E1"; row25 = "111111111111111111111111111111111"; } if (lvl == 25) { author = "Zoranan"; name = "Pods"; row1 = "111111111111111111111111111111111"; row2 = "11P1+11+<L>>>000000000>>|00|0|||1"; row3 = "11_1^>+1L>^LLLLLLLLLLL1>|00|00|01"; row4 = "11+1LL1+1^L00000001_<<<>||||00|01"; row5 = "1L1LLL_^L^<L00000L1_1>^>|00|00|01"; row6 = "11LL11+1L1^1L101L_|0L>^>|00|0|||1"; row7 = "1+<>+1111L^L10101_00L>^>000000001"; row8 = "11LL11|0|>^L00001_00L>^>000000001"; row9 = "1L11100001^L00001_00|>^<000000001"; row10 = "111+100001^L00001_1010^>000000001"; row11 = "1+1^L00001^L00001_00000>000000001"; row12 = "1_1_110001L111101_000001111111111"; row13 = "1_1>>000010000101_000000|000|0001"; row14 = "1_1^L100010001001_000000|000|0001"; row15 = "1_1^L000010010001_000000|0|0|0001"; row16 = "1_1^L000010100001_00000000|000|01"; row17 = "1_1^L00|01011110L>0|000000|000101"; row18 = "1_1^L^^^^^^^^^^^^^^^^^^^^^^^^^101"; row19 = "1_1^__________________________101"; row20 = "1_1^<<<<<<<<<<<<<<<<<<<<<<<<<<<01"; row21 = "1_1^^^^^^^^^^^^^^^^^^^^^^^^^^^101"; row22 = "1_111111111111111111111111111^101"; row23 = "1_1-0-0-0-000000000-0-0-0-001^101"; row24 = "1>>>>>>>>>>>>>>>>>>>>>>>>>>>>^1E1"; row25 = "111111111111111111111111111111111"; } if (lvl == 26) { author = "Speedy1000"; name = "Squares"; row1 = "111111111111111111111111111111111"; row2 = "10|000|0|0|0|0|0|0|0|0|0|0||0||11"; row3 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLL11"; row4 = "100000000000000000000000000000011"; row5 = "101101100000000000000000000000011"; row6 = "111000111111111111111111111110011"; row7 = "1>00>00------00000000_1-|00000011"; row8 = "1000^00000000------<|_10010111111"; row9 = "1|11111111111111111^<<11010100001"; row10 = "1|1>-0000_1_0000-<100001010101101"; row11 = "1|1011011|1|111110100111010101101"; row12 = "1|101000101010001010010001-000001"; row13 = "1|1010+0100010P010100111011111101"; row14 = "1|10100010101000101-0L0101-000001"; row15 = "101|1111101011011|100111010110111"; row16 = "101^0000-<1>-0000^1001000100101|1"; row17 = "101111111111111111110101111010001"; row18 = "|^1_0000-<1|0|000|010101000011101"; row19 = "1|1|11011010000000010101011110101"; row20 = "1|101000101LLLLLLLL10101000010101"; row21 = "1|1010+01000000000000101111010001"; row22 = "1|101000101LLLLLLLL11101000011101"; row23 = "1|1011111|1000000001_<<_<<1000101"; row24 = "1|1>-0000^1E|0|0|0|<<^<<^^1|10001"; row25 = "111111111111111111111111111111111"; } if (lvl == 27) { author = "Burgelschnouser"; name = "Paths"; row1 = "111111111111111111111111111111111"; row2 = "1P>>>>>>>>>>>>>>>>>>>>>>>>>>>>>_1"; row3 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLL_1"; row4 = "1_<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<1"; row5 = "1_LLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row6 = "1>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>_1"; row7 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLL_1"; row8 = "1_<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<1"; row9 = "1_LLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row10 = "1>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>_1"; row11 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLL_1"; row12 = "11>>>>>>>>>>>>>>>>>>_L111111111_1"; row13 = "11^<<<<<<<<<<<<<<<<<<11111111_<<1"; row14 = "1L^111L111_<<<<<<<<<<<<<<<<<<0111"; row15 = "11^1_<<<<1_11_<<1111111111L11_001"; row16 = "11^1__<<^1_11_L^<<<<<<<<<<111_001"; row17 = "11^1_>L^^1_11_1111L111111^<<<<001"; row18 = "1L^1>>>^^1_L1>>>>_111E0L111111001"; row19 = "11^11111^1_111111_>_100L000000001"; row20 = "11^1L1L1^1_111111_>_1L^L00000LLL1"; row21 = "11^11111^1>>>>_11_>_1L^L00000L_<1"; row22 = "11^1111L^<<<<<<1L_>+1L^L00000L_+1"; row23 = "11^<<<<<<<<<11111_>^1L^LLLLLLL__1"; row24 = "1111111L111^<<<<<<111L^<<<<<<<<<1"; row25 = "1111111111111L1111111111111111111"; } if (lvl == 28) { author = "Rabbidfighter"; name = "Random Level"; row1 = "111111111111111111111111111111111"; row2 = "1P0000100000001000000000100000001"; row3 = "100100100010001010111110111000001"; row4 = "111100100010011010000010001000001"; row5 = "100000100010011011111010001000001"; row6 = "1-000010001||11000000010111000001"; row7 = "1LLLL00|0011111000000000000000001"; row8 = "111111111010000010111110111111001"; row9 = "1-0000000|10111010-00000100001001"; row10 = "101000010110100010111110111101001"; row11 = "10100000111010001|001000100000001"; row12 = "101000001100000011101011100000101"; row13 = "111110111100000000001000111111001"; row14 = "100000001111111111101000100000001"; row15 = "100LLLLLL11000000010001111-000001"; row16 = "100LLLLLL11^^1111010001L100000101"; row17 = "10000100001001001010001L101111101"; row18 = "100001000010010011111010101000101"; row19 = "10000111111001000000001-101000101"; row20 = "100001-00000010000000010101010101"; row21 = "100001010000000001111010111010101"; row22 = "10000001011111100100001000<010101"; row23 = "100|000100000000|1000011111110101"; row24 = "100000-100000010010000-0000-001E1"; row25 = "111111111111111111111111111111111"; } if (lvl == 29) { author = "Allison"; name = "Evasive Maneuvers"; row1 = "111111111111111111111111111111111"; row2 = "1P0L00L0000L000L00LL000L000LL0L01"; row3 = "100L00LL0L000L0L00L00L000L0L>>_01"; row4 = "10LL00L00LLLL00L00LL0LLLL00L^L>_1"; row5 = "100L00L0LL00L0LL00L00L00L0LL^<L_1"; row6 = "1L0L00L00L00L00L00L0LL00L|0LL^L_1"; row7 = "1|0L00LL0L00LL0L00L00L00LL0L>^L_1"; row8 = "10LL00L|0L00L|0L00LL0L00L00L^LL_1"; row9 = "100L00L0LL00L0LL00L|0L00L0LL^<L_1"; row10 = "1L0L00L00L00L00L00L0LL00L00LL^L_1"; row11 = "100L00LL0L00LL0L00L00L00LL0L>^L_1"; row12 = "10LL00L00L00L00L00LL0L00L00L^LL_1"; row13 = "100L00L0LL00L0LL00L00L00L0LL^<L_1"; row14 = "1L0L00L00L00L00L00L0LL00L00LL^L_1"; row15 = "100L00LL0L00LL0L00L00L00LL0L>^L_1"; row16 = "10LL00L00L00L00L00LL0L00L00L^LL_1"; row17 = "100L00L0LL00L0LL00L00L00L0LL^<L_1"; row18 = "1L0L00L00L00L00L00L0LL00L00LL^L_1"; row19 = "100L00LL0L00LL0L00L00L00LL0L>^L_1"; row20 = "10LL00L00L00L00L00LL0L00L00L^LL_1"; row21 = "100L00L0LL00L0LL00L00L00L0LL^<L_1"; row22 = "1L0LLLL00L00L00LLLL0LL00L00LL^L_1"; row23 = "100L000L0L00LL000L000L00LL->>^_<1"; row24 = "1L|00L00|L00L0|L000L|L00L0|^<<<E1"; row25 = "111111111111111111111111111111111"; } if (lvl == 30) { author = "Csdthegreat"; name = "Locked In The Rooms"; row1 = "LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL"; row2 = "LP00L000L000L>>____L000L00000000L"; row3 = "L0L0L0L000L0L^<_^<_L0L0L0LLLLLLLL"; row4 = "L0L0L0LLLLL0L>^>>^_L0L0L0L000000L"; row5 = "L0L0L0000L00L^>_^<<L0L0L0L^LLLL0L"; row6 = "L0L0LLLL0L0LL0>>_>>00L0L0L0>0L00L"; row7 = "L0L000000L0L00L<<^<LLL0L0L0L0L0LL"; row8 = "L0LL1111LL0L0LL>>>^L000L0L0L0L00L"; row9 = "L0L00||00L0L^LLLLLLL0LLL^L0L0LL0L"; row10 = "L0>000000>000L000000000000^L00L0L"; row11 = "L0L0|00|0L0L0L_LLLLLLLLLL_LLL0L0L"; row12 = "L0LL1111LL0LLL000000L000L0L000L0L"; row13 = "L00000000000LL0+++++10L0L0L0LLL0L"; row14 = "L0LLLLLLLLL0LL0+++++10L0L000L0<0L"; row15 = "L0L011111110LL0+++++10L0LLLLL0L0L"; row16 = "L0L01-0|0010LL000010L0L0000000L0L"; row17 = "L0L0>00L00>0LLLL^LL_L^LLLLLLLLL_L"; row18 = "L0L010000-10000L0L00000000000000L"; row19 = "L0L01111111LLL0L0L0LLLLLLLLLLLL1L"; row20 = "L0L0000000000L0L0L0000011111111E1"; row21 = "L0LLLLLLLLLL0L0L0L0L0L0>|000|0001"; row22 = "L0L>>>>>>>>L0L0L0L000001-000000|1"; row23 = "L0>>>>>>>>>L000L0L00LL010000000-1"; row24 = "L0L>>>>>>>>>0L000L0L00L1-0|000|01"; row25 = "LLLLLLLLLLLLLLLLLL1LLLL1111111111"; } if (lvl == 31) { author = "Burgelschnouser"; name = "Closing The Gaps"; row1 = "1111111111LLLLLLLLLLLLLLLLLLLLL11"; row2 = "1000L0L0L0L000000000000000L000L11"; row3 = "1000L00000L0LLLLLLLLLLLLL0L0L0L11"; row4 = "1000LL000LL0000000000000L0L0L0LL1"; row5 = "1000L0LLL0LLLLLLLLLLLLL0L000L00L1"; row6 = "10001111111L1111111LLLL0LLLLLL0L1"; row7 = "1000|||||||L|||||||LLLL000000L0L1"; row8 = "10000000000000000000LLLLLLLL0L0L1"; row9 = "100000000000000000000LL1111L0L0L1"; row10 = "1000000000000000000000LLLLLL0L0L1"; row11 = "1P0>000000000000000000>000000L0L1"; row12 = "1000000000000000000000LLLLLLLL0L1"; row13 = "100000000000000000000LL_<<<<<00L1"; row14 = "10000000000000000000LLL_0000000L1"; row15 = "1000|||||||L|||||||LL0L_0LLLLLLL1"; row16 = "10001111111L1111111L00L_0L>>>>>_1"; row17 = "1000L010|+|01000000000L_0L^LLLL_1"; row18 = "1000L01000001000000000L_0L0000L01"; row19 = "1000L010-00010LLLLLLLLL_0L0LL0L11"; row20 = "1000L01000|010L<<<<<<<<<0L0LL0L+1"; row21 = "1000L010000010L0000000000L0LL0_01"; row22 = "1000L01|000-10L0LLLLLLLLLL0LLL001"; row23 = "1000L010000010L000000000000LLLL01"; row24 = "1000L010|E|010LLLLLLLLLLLLLLLLL|1"; row25 = "111111111111111111111111111111111"; } if (lvl == 32) { author = "Allison"; name = "Stairway To Hell"; row1 = "111111111111111111111111111111111"; row2 = "100010000000000000000000000000001"; row3 = "10P0L1000000000000000000000000001"; row4 = "10000L100000000000000000000000001"; row5 = "111-00L10000000000000000000000001"; row6 = "1001-00L1000000000000000000000001"; row7 = "10001000L100000000000000000000001"; row8 = "100001-00L10000000000000000000001"; row9 = "1000001-00L1000000000000000000001"; row10 = "10000001000L100000000000000000001"; row11 = "100000001-00L10000000000000000001"; row12 = "1000000001-00L1000000000000000001"; row13 = "10000000001000L100000000000000001"; row14 = "100000000001-00L10000000000000001"; row15 = "1000000000001-00L1000000000000001"; row16 = "10000000000001000L100000000000001"; row17 = "100000000000001-00L10000000000001"; row18 = "1000000000000001-00L1000000000001"; row19 = "10000000000000001000L100000000001"; row20 = "100000000000000001-00L10000000001"; row21 = "1000000000000000001-00L1000000001"; row22 = "10000000000000000001000L101000001"; row23 = "100000000000000000001000110111111"; row24 = "1000000000000000000010-000000-0E1"; row25 = "111111111111111111111111111111111"; } if (lvl == 33) { author = "JO-whizard"; name = "Lava Labyrinth"; row1 = "1111111111LLLLLLLLLLLLLLLLLLLLLLL"; row2 = "1P>>>>>+010+L000L00LL0L0LL0L000LL"; row3 = "10000000010LL0L00L000L0L00L00L0LL"; row4 = "11111101110L000L00LL0000L00L00L0L"; row5 = "10000000-0-10LL0L0L0L0L0L0L0L000L"; row6 = "10LLLLLLLLLL000L000000L00L000L0LL"; row7 = "10>000000L00LL0L0L0L0L0L0L0L0000L"; row8 = "10L0L00L00L00000L0L0L00L00L00L0LL"; row9 = "10>000L00L00LL0L0L00L0L0LL0L0L00L"; row10 = "10LL0L0L00L0000L00L000L000L0L0L0L"; row11 = "10>00L00L0L0L000LL0L0L00LL0L0000L"; row12 = "10LLL0L0L00L00L0000L00LL00L0LL0LL"; row13 = "10>00L000L00LL00L0L0L0000L000000L"; row14 = "10L0000L00L0000L0L00L0L0L0E00L00L"; row15 = "10LL0L00L000L0L0000L0L0LL00L00L0L"; row16 = "10>000L00LL00L0LL0L00LL000L0L00LL"; row17 = "10LLL000000L00L000LL0000L0LL00L0L"; row18 = "10>00LLLL0000L000L000L0L0L000L00L"; row19 = "10L000000L0L000LL00LL0L0L00L0L0LL"; row20 = "10LL0L0L0LL0L0L00L0L00L000L0L0L0L"; row21 = "10>000L00L000L00L0L0L00L0L000L00L"; row22 = "10LL0L00L00L000L000L0L000L0L000LL"; row23 = "10L000L000L00L000L0000L0L0L00LL0L"; row24 = "10>0L000L000L00L00L0L000L000L000L"; row25 = "11LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL"; } if (lvl == 34) { author = "Csdthegreat"; name = "Midnight Mission"; row1 = "111111111111111111111111111111111"; row2 = "1P>>>>>1E1>00----00_00|000|000|01"; row3 = "1LLLLL_1^10_00--00<01-00000000001"; row4 = "1+00+1_1^1|0000000001000000000001"; row5 = "100001_1^1||00LL000010000000000-1"; row6 = "10++01_1^1|00000000010000000000-1"; row7 = "1+00+1_1^10>00--00^01000000000001"; row8 = "1++++1_1^0^<0----00<1-000|||00001"; row9 = "111111_11111111111111111111111101"; row10 = "10000000010||0|0|0|0|0|0|0|0|0|^1"; row11 = "10000-00010|0000000000000000000^1"; row12 = "100000-001000|00|0|0|0|00000000^1"; row13 = "1000000-010LLLLLLLLLLLLLLLLLLLLL1"; row14 = "10000000-1000|0|0|0|0|00000000001"; row15 = "1000000-010|000000000000000000001"; row16 = "100000-0010||0||0|0|0|0|0|0|0|001"; row17 = "10000-000111111111111111111111101"; row18 = "1000-00001|||||000000000000000|^1"; row19 = "100-000001000000000000000000000^1"; row20 = "10-0000001000000000000000000000^1"; row21 = "1-0000000100000|||||00000||||||^1"; row22 = "10-0000001000000000000000000000^1"; row23 = "100-000001000000000000000000000^1"; row24 = "1>>>>>>>>00000000000|||||00000|^1"; row25 = "111111111111111111111111111111111"; } if (lvl == 35) { author = "Allison"; name = "Guards Quarters"; row1 = "111111111111111111111111111111111"; row2 = "1+0LLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row3 = "10P1000000000LL>>_1|0|0|0|0|0|+L1"; row4 = "1L1L000LLLLLL>>^0_10-0-0-0-0-0-L1"; row5 = "1L000|L>>>>_L^LLL_1000000000000L1"; row6 = "1L0LL-L^L1L_L^L0L_1-00-00-00-00L1"; row7 = "1L+>_>>^L^L_L^L0L_1000000000000L1"; row8 = "1L0L_LLLL<<<L^L0L_1000000000000L1"; row9 = "1L0L>>>>_LLLL^L0L01-0-0-0-0-0-0L1"; row10 = "1L0LLLLL>>>>>^L00010|0|0|0|0|0|L1"; row11 = "1L0000LLLLLLLLL1001111111111111L1"; row12 = "1L00000L11000001-0001LLLLLLLL1+L1"; row13 = "1L111L0L|000000L1000>>--0-0EL10L1"; row14 = "1L|0+L0L00LL00L00L101L00000|0<0L1"; row15 = "1L000L000|00LL00000LL1L|000|L10L1"; row16 = "1L0|0L00|00L000L0000001L0||0L10L1"; row17 = "1L000L000000L0000L0L0LL1LLLLL10L1"; row18 = "1L|0|L000|0>00L0L000L0011111111L1"; row19 = "1L000L00|001L10L000L000|0|0|000L1"; row20 = "1L0|0L000|0|0|0LLL0L00000000000L1"; row21 = "1L000L000000000000L0000|0|0|000L1"; row22 = "1L000L00||000000000000000000+0LL1"; row23 = "1L0|0L00110|0|000000000|0|0|0L0L1"; row24 = "1LLLLLLLLLL1L1LLLLLLLLLLLLLLLL001"; row25 = "111111111111111111111111111111111"; } if (lvl == 36) { author = "Salvador"; name = "Mine Field"; row1 = "111111111111111111111111111111111"; row2 = "1100001>00000_1000L000000000|0001"; row3 = "11P1101011011010L000L1L11L1L01L_1"; row4 = "111100101>0_1010LLLLL000000101L_1"; row5 = "100001100000001|0|L|001L101101L01"; row6 = "1L1011101^-<101LL000L1L0000101L01"; row7 = "1L1000001101101LLLLLLL10111101<_1"; row8 = "1L1101101_000<EL1LLLLLL00LLL0>L01"; row9 = "10L101>^10101101L111LLLL000L0>L01"; row10 = "11L111|110<00<00|0010000LL0L00<_1"; row11 = "10010001_<101---01010L10000L00<_1"; row12 = "101101^0<110110001010001LLLL0>L01"; row13 = "10000111110|<>-000-0L10000L0|<<_1"; row14 = "1+11111010^111010101LLLLL0L0+<<01"; row15 = "11>00-00<0110001010111110010|>L01"; row16 = "111010100-0101110001LL000L10^^<01"; row17 = "100011001>00-<1111101101111000<01"; row18 = "10111001111101100000000-111110L01"; row19 = "100<001000L<0011101111111111101_1"; row20 = "11010L001000_00LL0L0|000|000|01_1"; row21 = "100<00010010LL0LL00001010101001_1"; row22 = "101111_1_100000LLLL000|000|0001_1"; row23 = "1010000001_L_1LLLLL111111111111_1"; row24 = "1000111100000<<<0<<<<<<<<<<<<<<<1"; row25 = "111111111111111111111111111111111"; } if (lvl == 37) { author = "Salvador"; name = "Forced Motion"; row1 = "111111111111111111111111111111111"; row2 = "1+1>_>>>>_LLLL_<<<<<<01_<<1>>>>_1"; row3 = "10>^_^<_<<>^1_<1LL1L1010L^1^_<<<1"; row4 = "101L>_^_L>^11>_1>^_<1^<0L^1^L_<<1"; row5 = "10>_L>^>>^L1_<<L^+_^1L10L^1^<<1^1"; row6 = "101>LLLLL0L1_LLL^<<^<_<0L^11011^1"; row7 = "10>_0^1000000<<LLLLL^<10L^<<<<1^1"; row8 = "1^1>>^1_1_1_1L^<<L_<<L1_LLLLL^1^1"; row9 = "1^1_<<L0L>L_>LLL^<<L00<<<L_<<^1^1"; row10 = "1^1>L^^011L>^LLLLLLL0011^<<L^^1^1"; row11 = "1^>>>^^L>>L111111111_<001L_<001^1"; row12 = "1^>^LL^0^0>>_1|0|-|1__<0<<<^101^1"; row13 = "1^1L>0^0^0>>_1|-|0|1___0>_L^<0>^1"; row14 = "1^>>^1LLL0>>00000001LLLLL>>_^0^L1"; row15 = "1^>^L1L<11110000000>>>>_L^1_>^>^1"; row16 = "1^1L_<L^<<<111|0|-|1LL1>0<1_^L^11"; row17 = "1^1LL^<LLL^<<1000001>_11011_^<^<1"; row18 = "1^1111^<1L11^1|-|0|1^>_L0L_<L^<^1"; row19 = "1^<<1L1^<1L1^<111111^^<<0>__LL^^1"; row20 = "11^^<1L^^<1L^^<11L>>^1L<E>__>^001"; row21 = "11^^^<L^^^<1^^^<11^<<<L__>__^1L01"; row22 = "11^^^^<^^^^<^^^^<1111^>>_<<L0>_^1"; row23 = "11L^^^L^^^^^^^^^^1L_<^<0P111^_<^1"; row24 = "1L<<<<<<<<<<<<<<<<<<^<<0>>>>^>>^1"; row25 = "111111111111111111111111111111111"; } if (lvl == 38) { author = "Salvador"; name = "Hunting Grounds"; row1 = "LLLLLLLLLLLLLL1111111111111LLLLLL"; row2 = "LLLLLLLLLLLLLL1-0000000-101111111"; row3 = "LL11111L11111L1-00000010000|000|1"; row4 = "LL10001L10001L1-0000000-101011101"; row5 = "LL10P01L10+01L11111110111110|0001"; row6 = "LL10001L10001LLLLL10001LLL1000001"; row7 = "L11101111101111111101111111000|01"; row8 = "L1|000|1-000010|||000||||01010101"; row9 = "L1010101000001-000-0-0000-1000001"; row10 = "L1001001011101-000-0-0000-1100011"; row11 = "L101|1010000-1-000-0-0000-1-00001"; row12 = "L1000001010101-000-0-0000-10000-1"; row13 = "L10101010000010|||000||||01-00001"; row14 = "L100000101110111111111111010000-1"; row15 = "L10101010000010000000000001110111"; row16 = "L100000101010101111111111100101LL"; row17 = "L101010100000101||0||1||0|0E101LL"; row18 = "L10010010000-101001-01001000101LL"; row19 = "L10101010111010100000000001110111"; row20 = "L1000001|000|1000010010-101-000|1"; row21 = "L11101111101111100000000001000001"; row22 = "LLL100000001LLL10010-10010100+001"; row23 = "LLL111111111LLL1||0||1||0|1000001"; row24 = "LLLLLLLLLLLLLLL111111111111|000-1"; row25 = "LLLLLLLLLLLLLLLLLLLLLLLLLL1111111"; } if (lvl == 39) { author = "Csdthegreat"; name = "Time Bomb"; row1 = "111111111111111111111111111111111"; row2 = "1-00000000000000000000000000000_1"; row3 = "LLLLLLLLLLLLLLLLLLLLLLLLLLLLL_0<1"; row4 = "L0000L0000000000000000000000L>0_1"; row5 = "L0LL0L0LLL0LLLLLLLLLL0L0L0L0L_0<1"; row6 = "L0L00L0L0000L000L00000L0L000L>0_1"; row7 = "L0L0LL0LL0L000L0L0LLL0L0LLL0L_0<1"; row8 = "L0L0L000L0L0L0L0L000L0L00000L>0_1"; row9 = "L0L000L000L0L0LLLLL0L0LL0LLLL_0<1"; row10 = "L0LLLLLLLLL0L0000000L0000000L>0_1"; row11 = "L00000000000LLLLLLLLLLL0LLL0L_0<1"; row12 = "LLL0LLLLLLL000000L0000L0L000L>0_1"; row13 = "L000L00000LL0L0LLL0LL0L0L0LLL_0<1"; row14 = "L0LLL0LLL00L0L0L0000L0L0L000L>0_1"; row15 = "L0L00000LL0L0L0L0LL0L0L0LLL0L_0<1"; row16 = "L0L0L0L00L0L0L000L00L0L00000L>0_1"; row17 = "L0L0L0LL0L0L0LLLLLLLL0LLLLL0L_0<1"; row18 = "L0L0L00L000L00000000000000L0L>0_1"; row19 = "L0L0LL0L0LLL0LLLLLLLLLLLL0L0L_0<1"; row20 = "L0L0L00L0L000000000L000000L0L>0_1"; row21 = "L0L0L0LL0L0LLLL0LL0L0LL0LLL0L_0<1"; row22 = "L0L0000L0L0L00000L0L00L0L000L>_L1"; row23 = "L0LLLL0L0L0LLLLL0L0LL0L0L0L0LL_L1"; row24 = "LP00000L000000000L0000L000L0000E1"; row25 = "LLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1L1"; } if (lvl == 40) { author = "JO-whizard"; name = "Crawl Space"; row1 = "111111111111111111111111111111111"; row2 = "1P00101000L0001000-0000000-000001"; row3 = "100+1+10L0L01011L0L0L0L0L0L0L1L01"; row4 = "11111010L0L0101100000-00000001L01"; row5 = "10000010L0L0101L0L0L0L0L0L0L0LL01"; row6 = "10111110L0L0101100000000-00001L01"; row7 = "10000000L0L01011L0L1L0L0L1L0L1L01"; row8 = "11L1L1L1L0L0101100000010000001L01"; row9 = "1-000|01L0L010111100L0|0L00111L01"; row10 = "1000L000L0001011-00001010000-1L01"; row11 = "10L00010LLL1101LLLL00L0L00LLLLL01"; row12 = "1-00001000000010000|00000|0000L01"; row13 = "1011111111111111000000-0000001L01"; row14 = "1-00000-000|0011-00001010000-1L01"; row15 = "111011101110111000010-00010000L01"; row16 = "1000101000101|10000LL111LL0000L01"; row17 = "1011101111101011L0000L1L0000L1L01"; row18 = "100000_1|0001011L1-0001000-1L1L01"; row19 = "1111110101111011>>L000L000L<<1L01"; row20 = "10000001-000001100000000000001L01"; row21 = "101111110110101LLL0LLL0LLL0LLLL01"; row22 = "1-000000001-000000000000000000101"; row23 = "111101111010111LLLLLLLLLLLLLLLL01"; row24 = "1000-00010101E0000000000000000001"; row25 = "111111111111111111111111111111111"; } } rows[0] = row1; rows[1] = row2; rows[2] = row3; rows[3] = row4; rows[4] = row5; rows[5] = row6; rows[6] = row7; rows[7] = row8; rows[8] = row9; rows[9] = row10; rows[10] = row11; rows[11] = row12; rows[12] = row13; rows[13] = row14; rows[14] = row15; rows[15] = row16; rows[16] = row17; rows[17] = row18; rows[18] = row19; rows[19] = row20; rows[20] = row21; rows[21] = row22; rows[22] = row23; rows[23] = row24; rows[24] = row25; } function ChallengeScriptElementHandler() { if (_root.mainmenu1.visable) { _root.challenges1._visible = 0; } if (last == 1) { if (_root.chal == 1) { _root.author = "JO-whizard"; _root.name = "The Hideout"; row1 = "111111111111111111111111111111111"; row2 = "1110001E0000|00000|000-0|00000001"; row3 = "1P00101-00000-0|0-000|0-000|000+1"; row4 = "11111010-00|00|000|0|000|00000001"; row5 = "100|001000-000000|00000|000000001"; row6 = "10100|10000-00|000-00|000000-0001"; row7 = "1|00101000|00-000|00|00-0|000-0+1"; row8 = "101000100|0000-0|0000-00-000000-1"; row9 = "100|101000000|00000|00000|0000001"; row10 = "10100|100|00|000|0|000|0-00-00001"; row11 = "1|001010|000000|000-0|000-000-0+1"; row12 = "10100011111111111111111111+111111"; row13 = "1110111L0L00LLL0L0LL0LL0LL00LLL01"; row14 = "100010L0L0LL000L0L00L00L00L0000L1"; row15 = "10111L0000L00L000LL0L000L00L0L0L1"; row16 = "10L0L00L00LL00LL000L00L0L0L0L00L1"; row17 = "100L0L00L000L0L00L000L0L0L00LL001"; row18 = "1L00000L00L00000L00L00L0000L00001"; row19 = "10LLL0L0L000LL0L00L0LL00L000L0L01"; row20 = "10L000000L0L0000L00L0000L0LL000L1"; row21 = "100L0L0L0L00L0L0L0L0L0L000000L0L1"; row22 = "1L000L00000L0L00000L000L0L0LL0001"; row23 = "100LL0L0L0L0000L0L000L0000L000L01"; row24 = "1000L000L000L0L00L0L0L00L0L0L00L1"; row25 = "111111111111111111111111111111111"; } if (_root.chal == 2) { _root.author = "csdthegreat"; _root.name = "A Lesson In Avoidance"; row1 = "111111111111111111100000000000000"; row2 = "1P>|0|0|0|0|>0>000100000000000000"; row3 = "11100000000011100-100000000000000"; row4 = "0010|0|0|0|0101-00100000000000000"; row5 = "00111111111110100-100000000000000"; row6 = "000000000000001-00100000000000000"; row7 = "00000000000000100-100000000000000"; row8 = "000000000000001-00100000000000000"; row9 = "00000000000000100-100000000000000"; row10 = "000000000000001-00100000000000000"; row11 = "00000000000000100-100000000000000"; row12 = "000000000000001E11100000000000000"; row13 = "000000000000000000000000000000000"; row14 = "000000000000000000000000000000000"; row15 = "000000000000000000000000000000000"; row16 = "000000000000000000000000000000000"; row17 = "000000000000000000000000000000000"; row18 = "000000000000000000000000000000000"; row19 = "000000000000000000000000000000000"; row20 = "000000000000000000000000000000000"; row21 = "000000000000000000000000000000000"; row22 = "000000000000000000000000000000000"; row23 = "000000000000000000000000000000000"; row24 = "000000000000000000000000000000000"; row25 = "000000000000000000000000000000000"; } if (_root.chal == 3) { _root.author = "JO-whizard"; _root.name = "Battlefield"; row1 = "111111111111111111111111111111111"; row2 = "1P0010000000000|0-000000000000001"; row3 = "1000100-00000000|0-00000000000001"; row4 = "10+01000-000+0000|0-0000+000000|1"; row5 = "10001|000-00000000|0-000000000|01"; row6 = "111110||00-00000000|0-0000000|001"; row7 = "10011000||0-00000000|0-00000|0001"; row8 = "1001100000||-00000000|0-000|00001"; row9 = "110110+000000-||||0000|0-0|---001"; row10 = "101010000000-00000||000|0|000--01"; row11 = "10101000000-00000000||00|00|00-01"; row12 = "1101100000-0|00--00000||000|00-01"; row13 = "110110000-00|0-00-00000000|0|0-01"; row14 = "11011000-000|-0000-000000|00|0-01"; row15 = "1010100-0000|-0000-0|||00||0|00|1"; row16 = "100010-00000|-0000-00000|000|00|1"; row17 = "10001|0|0000|-0000-0000|00|0||001"; row18 = "10101000|00|00-00-00|00|000||0001"; row19 = "100010|00||0000--0000|0|0|00|00|1"; row20 = "1010100|00000000000000|||000|||01"; row21 = "10101000||---------||00|||||||001"; row22 = "1111100000|000-0000|0|00000000001"; row23 = "100010+0000|000--000|0|0000000001"; row24 = "100010000000|0000-000|0|0000000E1"; row25 = "111111111111111111111111111111111"; } if (_root.chal == 4) { _root.author = "Salvador"; _root.name = "Outside The Box"; row1 = "111111111111111111111111111111111"; row2 = "1000000000000000+0000000000000001"; row3 = "100-000000-11110001111-000000-001"; row4 = "101000111111001101100111111000101"; row5 = "101|0|100000000101000000001|0|101"; row6 = "111111100111001101101111001111101"; row7 = "1000000-1LL0001-001000LL1-0000001"; row8 = "11111000011001100-110001011011111"; row9 = "110111100001011-00111100001110001"; row10 = "10001000111000100-110010111000101"; row11 = "10100100000100|000|1010010111-001"; row12 = "100100100100110101011001000010101"; row13 = "110010010000-101E10100110110100-1"; row14 = "101001011110110111010100010000101"; row15 = "110010000000-1|1+1|10010011001001"; row16 = "100100010000111101111000100101011"; row17 = "101011111111L1-000-1L111111110001"; row18 = "10011LL1L1L1L1110111L1L1L1LL11011"; row19 = "110011LLLLLLLL1L0L1LLLLLLLL110001"; row20 = "101001L1L1L1L1LL0LL1L1L1L1L100011"; row21 = "1101001111L1L1110111L1L1111001101"; row22 = "100010|000011LL101LL1100000010001"; row23 = "1010010101|0<1L0P0L1_0|0111100101"; row24 = "00110000|00>^1100011>^10000001100"; row25 = "111111111111111111111111111111111"; } if (_root.chal == 5) { _root.author = "Salvador"; _root.name = "Ghost Gate"; row1 = "111111111111111111111111111111111"; row2 = "1LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL1"; row3 = "1LLLLLLLLLLLL1111LLLLLLLLLLLLLLL1"; row4 = "1LLL1111111111>_11111111LLLLLLLL1"; row5 = "1LLL1>_0000001^<00000001LLLLLLLL1"; row6 = "11111^<11111111111111101111111111"; row7 = "1LLL1101LLLLLLLLLLLLL101LLLLLLLL1"; row8 = "1LLLL10111111L11111LL101LLLLLLLL1"; row9 = "111111011>>_1L1_<<1111111111111L1"; row10 = "11P000000^+_1L1_+^0000>_1000>_1L1"; row11 = "111011111^<<1L1>>^1011^<1111^<1L1"; row12 = "1L101LLL11111L11111011111LL1111L1"; row13 = "1L101LLLLLLLLLLLLL101L101LLL101L1"; row14 = "1L10111111111111111111101111101L1"; row15 = "1L1001>_0000000001_<1L101LL1>_1L1"; row16 = "1L1101^<1111111111>^1L101LL1^<1L1"; row17 = "1111111111LLLLLLL1011L101LL1111L1"; row18 = "1>_0000>_1LLLLLLL101LL1011L1001L1"; row19 = "1^<1111^<1LLLLLLL101111>_1L1011L1"; row20 = "1111>_11111111111100001^<1L101LL1"; row21 = "11E1^<0001101>_0011111111111011L1"; row22 = "1111111111001^<100011>_00001_<1L1"; row23 = "1_<1101>_101111111001^<11111>^1L1"; row24 = "1>^0001^<001LLLLL1111111LLL1111L1"; row25 = "111111111111111111111111111111111"; } } rows[0] = row1; rows[1] = row2; rows[2] = row3; rows[3] = row4; rows[4] = row5; rows[5] = row6; rows[6] = row7; rows[7] = row8; rows[8] = row9; rows[9] = row10; rows[10] = row11; rows[11] = row12; rows[12] = row13; rows[13] = row14; rows[14] = row15; rows[15] = row16; rows[16] = row17; rows[17] = row18; rows[18] = row19; rows[19] = row20; rows[20] = row21; rows[21] = row22; rows[22] = row23; rows[23] = row24; rows[24] = row25; if (_root.veteran == 1) { _root.trophiesmenu1.veteran_trophies1._visible = 1; } if (_root.veteran == 0) { _root.trophiesmenu1.veteran_trophies1._visible = 0; } if (_root.explorer == 1) { _root.trophiesmenu1.telescope1._visible = 1; } if (_root.explorer == 0) { _root.trophiesmenu1.telescope1._visible = 0; } if (_root.ghost == 1) { _root.trophiesmenu1.ghost1._visible = 1; } if (_root.ghost == 0) { _root.trophiesmenu1.ghost1._visible = 0; } if (_root.da_key == 1) { _root.trophiesmenu1.key1._visible = 1; } if (_root.da_key == 0) { _root.trophiesmenu1.key1._visible = 0; } if (_root.hammer == 1) { _root.trophiesmenu1.hammer1._visible = 1; } if (_root.hammer == 0) { _root.trophiesmenu1.hammer1._visible = 0; } } function onEnterFrame() { _root.guy1.swapDepths(getNextHighestDepth()); _root.portalin1.swapDepths(getNextHighestDepth()); _root.explosion15.swapDepths(getNextHighestDepth()); _root.ingamemenu1.swapDepths(getNextHighestDepth()); X = Math.round(pos._x / 20); Y = Math.round(pos._y / 20); if (playing) { _root.guy1._visible = 1; _root.end1._visible = 1; } if (playing == false) { pos._x = -20; pos._y = -20; _root.ingamemenu1._visible = 0; _root.erase_board(); _root.guy1._visible = 0; _root.end1._visible = 0; } _root.guy1.velocity_x = (pos._x - _root.guy1._x) * 10; _root.guy1.velocity_y = (pos._y - _root.guy1._y) * 10; if (rows[Y].charAt(X) == "L") { _root.explosion15._x = pos._x; _root.explosion15._y = pos._y; _root.explosion15._visible = 1; _root.explosion15.play(); _root.explosion41.play(); pos._x = start._x; pos._y = start._y; } if (rows[Y].charAt(X) == "+") { portal = ports[random(ports.length)]; _root.portalin1._x = pos._x; _root.portalin1._y = pos._y; _root.portalin1._visible = 1; _root.portalin1.gotoAndPlay(1); _root.portal1.play(); if (dir == "left") { if (rows[Math.round(portal._y / 20)].charAt(Math.round(portal._x / 20) - 1) != "1") { pos._x = portal._x - 20; pos._y = portal._y; } if (rows[Math.round(portal._y / 20)].charAt(Math.round(portal._x / 20) - 1) == "1") { dir = "right"; } } if (dir == "right") { if (rows[Math.round(portal._y / 20)].charAt(Math.round(portal._x / 20) + 1) != "1") { pos._x = portal._x + 20; pos._y = portal._y; } if (rows[Math.round(portal._y / 20)].charAt(Math.round(portal._x / 20) + 1) == "1") { dir = "up"; } } if (dir == "up") { if (rows[Math.round(portal._y / 20) - 1].charAt(Math.round(portal._x / 20)) != "1") { pos._x = portal._x; pos._y = portal._y - 20; } if (rows[Math.round(portal._y / 20) - 1].charAt(Math.round(portal._x / 20)) == "1") { dir = "down"; } } if (dir == "down") { if (rows[Math.round(portal._y / 20) + 1].charAt(Math.round(portal._x / 20)) != "1") { pos._x = portal._x; pos._y = portal._y + 20; } if (rows[Math.round(portal._y / 20) + 1].charAt(Math.round(portal._x / 20)) == "1") { dir = "left"; } } } if ((Math.abs(pos._x - _root.guy1._x) <= 10) && (Math.abs(pos._y - _root.guy1._y) <= 10)) { if ((rows[Y].charAt(X) == ">") && (rows[Y].charAt(X + 1) != "1")) { pos._x = pos._x + 20; dir = "right"; } if ((rows[Y].charAt(X) == "<") && (rows[Y].charAt(X - 1) != "1")) { pos._x = pos._x - 20; dir = "left"; } if ((rows[Y].charAt(X) == "^") && (rows[Y - 1].charAt(X) != "1")) { pos._y = pos._y - 20; dir = "up"; } if ((rows[Y].charAt(X) == "_") && (rows[Y + 1].charAt(X) != "1")) { pos._y = pos._y + 20; dir = "down"; } } if ((rows[Y].charAt(X) == "E") && (playing)) { playing = false; _root.winnerbutton1._visible = 1; pos._x = -20; pos._y = -20; } var _local1 = _global.poll_objects.length - 1; while (_local1 >= 0) { var _local2 = _global.poll_objects[_local1]; _local2.poll(0.0333333313465118); _local1--; } EnemyElementHandler(); LevelsElementHandler(); ChallengeScriptElementHandler(); } function onMouseDown() { _root.click2.play(); } function onKeyDown() { if (Key.getCode() == 39) { _root.right(); } if (Key.getCode() == 37) { _root.left(); } if (Key.getCode() == 40) { _root.down(); } if (Key.getCode() == 38) { _root.up(); } if (Key.getCode() == 32) { if (playing) { _root.ingamemenu1._visible = 1; } } } Key.addListener(this);Frame 2function erase_board() { var _local1 = 0; while (_local1 < walls.length) { walls[_local1].removeMovieClip(); _local1++; } _local1 = 0; while (_local1 < lavas.length) { lavas[_local1].removeMovieClip(); _local1++; } _local1 = 0; while (_local1 < ports.length) { ports[_local1].removeMovieClip(); _local1++; } _local1 = 0; while (_local1 < moves.length) { moves[_local1].removeMovieClip(); _local1++; } _local1 = 0; while (_local1 < v_enems.length) { v_enems[_local1].removeMovieClip(); _local1++; } _local1 = 0; while (_local1 < h_enems.length) { h_enems[_local1].removeMovieClip(); _local1++; } walls.length = 0; lavas.length = 0; ports.length = 0; moves.length = 0; v_enems.length = 0; h_enems.length = 0; } function place_enemies() { var _local1 = 0; while (_local1 < 33) { var _local2 = 0; while (_local2 < rows.length) { if (rows[_local2].charAt(_local1) == "-") { enem = orig_en.duplicateMovieClip(stage, getNextHighestDepth()); enem._x = _local1 * 20; enem._y = _local2 * 20; enem.velocity_x = 80; h_enems.push(enem); } if (rows[_local2].charAt(_local1) == "|") { enem = orig_en.duplicateMovieClip(stage, getNextHighestDepth()); enem._x = _local1 * 20; enem._y = _local2 * 20; enem.velocity_y = 80; v_enems.push(enem); } _local2++; } _local1++; } } function draw() { var _local1 = 0; while (_local1 < walls.length) { walls[_local1].removeMovieClip(); _local1++; } _local1 = 0; while (_local1 < lavas.length) { lavas[_local1].removeMovieClip(); _local1++; } _local1 = 0; while (_local1 < ports.length) { ports[_local1].removeMovieClip(); _local1++; } _local1 = 0; while (_local1 < moves.length) { moves[_local1].removeMovieClip(); _local1++; } _local1 = 0; while (_local1 < v_enems.length) { v_enems[_local1].removeMovieClip(); _local1++; } _local1 = 0; while (_local1 < h_enems.length) { h_enems[_local1].removeMovieClip(); _local1++; } walls.length = 0; lavas.length = 0; ports.length = 0; moves.length = 0; v_enems.length = 0; h_enems.length = 0; var _local2 = 0; while (_local2 < 33) { _local1 = 0; while (_local1 < rows.length) { if (rows[_local1].charAt(_local2) == "1") { wall = orig_wall.duplicateMovieClip(stage, getNextHighestDepth()); wall._x = _local2 * 20; wall._y = _local1 * 20; walls.push(wall); } if (rows[_local1].charAt(_local2) == "L") { lava = orig_lava.duplicateMovieClip(stage, getNextHighestDepth()); lava._x = _local2 * 20; lava._y = _local1 * 20; lavas.push(lava); } if (rows[_local1].charAt(_local2) == "+") { port = orig_port.duplicateMovieClip(stage, getNextHighestDepth()); port._x = _local2 * 20; port._y = _local1 * 20; ports.push(port); } if (rows[_local1].charAt(_local2) == ">") { move = orig_move.duplicateMovieClip(stage, getNextHighestDepth()); move._x = _local2 * 20; move._y = _local1 * 20; move._rotation = 90; moves.push(move); } if (rows[_local1].charAt(_local2) == "<") { move = orig_move.duplicateMovieClip(stage, getNextHighestDepth()); move._x = _local2 * 20; move._y = _local1 * 20; move._rotation = 270; moves.push(move); } if (rows[_local1].charAt(_local2) == "^") { move = orig_move.duplicateMovieClip(stage, getNextHighestDepth()); move._x = _local2 * 20; move._y = _local1 * 20; move._rotation = 0; moves.push(move); } if (rows[_local1].charAt(_local2) == "_") { move = orig_move.duplicateMovieClip(stage, getNextHighestDepth()); move._x = _local2 * 20; move._y = _local1 * 20; move._rotation = 180; moves.push(move); } if (rows[_local1].charAt(_local2) == "P") { pos._x = _local2 * 20; pos._y = _local1 * 20; start._x = _local2 * 20; start._y = _local1 * 20; _root.guy1._x = pos._x; _root.guy1._y = pos._y; } if (rows[_local1].charAt(_local2) == "E") { _root.end1._x = _local2 * 20; _root.end1._y = _local1 * 20; } _local1++; } _local2++; } place_enemies(); } function AutoDrawElementHandler() { } AutoDrawElementHandler();Frame 3stop();Symbol 5 MovieClip [_init_globals] Frame 0#initclip _global.poll_objects = new Array(); _global.poll_objects.removeValue = function (_v) { var _local2 = 0; var _local3 = this; var _local4 = _local3.length; while (_local2 < _local4) { if (_local3[_local2] == _v) { this.splice(_local2, 1); return(_local2); } _local2 = _local2 + 1; } return("removeValue"); }; (ASSetPropFlags(_global.poll_objects.removeValue, null, 1));// not popped #endinitclipSymbol 7 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function destroy() { this.removeMovieClip(); if (_cp) { _cp.clone_array.removeValue = function (_v) { var _local2 = 0; var _local3 = this; var _local4 = _local3.length; while (_local2 < _local4) { if (_local3[_local2] == _v) { this.splice(_local2, 1); return(_local2); } _local2 = _local2 + 1; } return("removeValue"); }; (_cp.clone_array.removeValue(this));// not popped } } function reset() { _x = 20; _y = -20; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; var _local1 = new flash.filters.BlurFilter(); _local1.blurX = 4; _local1.blurY = 4; _local1.quality = 1; var _local2 = this.filters; _local2.push(_local1); this.filters = _local2; clone_array = new Array(); sprite_array = new Array();Symbol 7 MovieClip Frame 2stop();Symbol 11 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function destroy() { this.removeMovieClip(); if (_cp) { _cp.clone_array.removeValue = function (_v) { var _local2 = 0; var _local3 = this; var _local4 = _local3.length; while (_local2 < _local4) { if (_local3[_local2] == _v) { this.splice(_local2, 1); return(_local2); } _local2 = _local2 + 1; } return("removeValue"); }; (_cp.clone_array.removeValue(this));// not popped } } function reset() { _x = 20; _y = -20; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; var _local1 = new flash.filters.GlowFilter(); _local1.alpha = 1; _local1.blurX = 10; _local1.blurY = 10; _local1.color = 16711680; _local1.inner = false; _local1.knockout = false; _local1.quality = 2; _local1.strength = 1; var _local2 = this.filters; _local2.push(_local1); this.filters = _local2; clone_array = new Array(); sprite_array = new Array();Symbol 11 MovieClip Frame 2stop();Symbol 15 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function destroy() { this.removeMovieClip(); if (_cp) { _cp.clone_array.removeValue = function (_v) { var _local2 = 0; var _local3 = this; var _local4 = _local3.length; while (_local2 < _local4) { if (_local3[_local2] == _v) { this.splice(_local2, 1); return(_local2); } _local2 = _local2 + 1; } return("removeValue"); }; (_cp.clone_array.removeValue(this));// not popped } } function reset() { _x = 60; _y = -20; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 15 MovieClip Frame 2stop();Symbol 19 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function destroy() { this.removeMovieClip(); if (_cp) { _cp.clone_array.removeValue = function (_v) { var _local2 = 0; var _local3 = this; var _local4 = _local3.length; while (_local2 < _local4) { if (_local3[_local2] == _v) { this.splice(_local2, 1); return(_local2); } _local2 = _local2 + 1; } return("removeValue"); }; (_cp.clone_array.removeValue(this));// not popped } } function reset() { _x = 100; _y = -20; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 19 MovieClip Frame 2stop();Symbol 23 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function destroy() { this.removeMovieClip(); if (_cp) { _cp.clone_array.removeValue = function (_v) { var _local2 = 0; var _local3 = this; var _local4 = _local3.length; while (_local2 < _local4) { if (_local3[_local2] == _v) { this.splice(_local2, 1); return(_local2); } _local2 = _local2 + 1; } return("removeValue"); }; (_cp.clone_array.removeValue(this));// not popped } } function reset() { _x = 140; _y = -20; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; if (_cc == null) { velocity_x = 0; velocity_y = 0; acceleration_x = 0; acceleration_y = 0; scale_rate_x = 0; scale_rate_y = 0; alpha_rate = 0; friction_x = 0; friction_y = 0; angular_velocity = 0; angular_acceleration = 0; angular_friction = 0; } clone_array = new Array(); sprite_array = new Array(); function physics(velocity, acceleration, maximum, friction) { if (acceleration != 0) { velocity = velocity + (acceleration * 0.0333333313465118); } if (friction > 0) { if (velocity > 0) { velocity = velocity - (friction * 0.0333333313465118); if (velocity < 0) { velocity = 0; } } else if (velocity < 0) { velocity = velocity + (friction * 0.0333333313465118); if (velocity > 0) { velocity = 0; } } } if (maximum > 0) { if (velocity > maximum) { velocity = maximum; } if (velocity < (-maximum)) { velocity = -maximum; } } return(velocity); } function onEnterFrame() { if (velocity_x != 0) { _x = _x + (velocity_x * 0.0333333313465118); } if (velocity_y != 0) { _y = _y + (velocity_y * 0.0333333313465118); } if (angular_velocity != 0) { _rotation = _rotation + (angular_velocity * 0.0333333313465118); } velocity_x = physics(velocity_x, acceleration_x, 0, friction_x); velocity_y = physics(velocity_y, acceleration_y, 0, friction_y); angular_velocity = physics(angular_velocity, angular_acceleration, 0, angular_friction); if (scale_rate_x != 0) { _xscale = ((_xscale / 100) + (scale_rate_x * 0.000333333300659433)) * 100; } if (scale_rate_y != 0) { _yscale = ((_yscale / 100) + (scale_rate_y * 0.000333333300659433)) * 100; } if (alpha_rate != 0) { _alpha = ((_alpha / 100) + (alpha_rate * 0.000333333300659433)) * 100; } }Symbol 23 MovieClip Frame 2stop();Symbol 27 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 320; _y = 260; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; if (_cc == null) { velocity_x = 0; velocity_y = 0; acceleration_x = 0; acceleration_y = 0; scale_rate_x = 0; scale_rate_y = 0; alpha_rate = 0; friction_x = 0; friction_y = 0; angular_velocity = 0; angular_acceleration = 0; angular_friction = 0; } clone_array = new Array(); sprite_array = new Array(); function physics(velocity, acceleration, maximum, friction) { if (acceleration != 0) { velocity = velocity + (acceleration * 0.0333333313465118); } if (friction > 0) { if (velocity > 0) { velocity = velocity - (friction * 0.0333333313465118); if (velocity < 0) { velocity = 0; } } else if (velocity < 0) { velocity = velocity + (friction * 0.0333333313465118); if (velocity > 0) { velocity = 0; } } } if (maximum > 0) { if (velocity > maximum) { velocity = maximum; } if (velocity < (-maximum)) { velocity = -maximum; } } return(velocity); } function onEnterFrame() { if (velocity_x != 0) { _x = _x + (velocity_x * 0.0333333313465118); } if (velocity_y != 0) { _y = _y + (velocity_y * 0.0333333313465118); } if (angular_velocity != 0) { _rotation = _rotation + (angular_velocity * 0.0333333313465118); } velocity_x = physics(velocity_x, acceleration_x, 0, friction_x); velocity_y = physics(velocity_y, acceleration_y, 0, friction_y); angular_velocity = physics(angular_velocity, angular_acceleration, 0, angular_friction); if (scale_rate_x != 0) { _xscale = ((_xscale / 100) + (scale_rate_x * 0.000333333300659433)) * 100; } if (scale_rate_y != 0) { _yscale = ((_yscale / 100) + (scale_rate_y * 0.000333333300659433)) * 100; } if (alpha_rate != 0) { _alpha = ((_alpha / 100) + (alpha_rate * 0.000333333300659433)) * 100; } }Symbol 27 MovieClip Frame 2stop();Symbol 31 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 320; _y = 220; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; if (_cc == null) { velocity_x = 0; velocity_y = 0; acceleration_x = 0; acceleration_y = 0; scale_rate_x = 0; scale_rate_y = 0; alpha_rate = 0; friction_x = 0; friction_y = 0; angular_velocity = 0; angular_acceleration = 0; angular_friction = 0; } clone_array = new Array(); sprite_array = new Array(); function physics(velocity, acceleration, maximum, friction) { if (acceleration != 0) { velocity = velocity + (acceleration * 0.0333333313465118); } if (friction > 0) { if (velocity > 0) { velocity = velocity - (friction * 0.0333333313465118); if (velocity < 0) { velocity = 0; } } else if (velocity < 0) { velocity = velocity + (friction * 0.0333333313465118); if (velocity > 0) { velocity = 0; } } } if (maximum > 0) { if (velocity > maximum) { velocity = maximum; } if (velocity < (-maximum)) { velocity = -maximum; } } return(velocity); } function onEnterFrame() { if (velocity_x != 0) { _x = _x + (velocity_x * 0.0333333313465118); } if (velocity_y != 0) { _y = _y + (velocity_y * 0.0333333313465118); } if (angular_velocity != 0) { _rotation = _rotation + (angular_velocity * 0.0333333313465118); } velocity_x = physics(velocity_x, acceleration_x, 0, friction_x); velocity_y = physics(velocity_y, acceleration_y, 0, friction_y); angular_velocity = physics(angular_velocity, angular_acceleration, 0, angular_friction); if (scale_rate_x != 0) { _xscale = ((_xscale / 100) + (scale_rate_x * 0.000333333300659433)) * 100; } if (scale_rate_y != 0) { _yscale = ((_yscale / 100) + (scale_rate_y * 0.000333333300659433)) * 100; } if (alpha_rate != 0) { _alpha = ((_alpha / 100) + (alpha_rate * 0.000333333300659433)) * 100; } }Symbol 31 MovieClip Frame 2stop();Symbol 32 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 320; _y = 240; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } function explode() { this._visible = 1; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 32 MovieClip Frame 18this.stop(); this._visible = 0; this.stop();Symbol 59 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 320; _y = 240; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } function explode() { this._visible = 1; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 59 MovieClip Frame 32this.stop(); this._visible = 0; this.stop();Symbol 108 MovieClip Frame 1function play() { sound.start(0, 1); is_playing = true; } function start(position) { if (position == null) { position = 0; } sound.start(position, 1); is_playing = true; } function stop() { sound.stop("Explosion3"); is_playing = false; } function getDuration() { return(sound.duration / 1000); } function getPosition() { return(sound.position / 1000); } function getVolume() { return(sound.getVolume()); } function setPosition(pos) { var _local2 = isPlaying(); sound.start(pos); if (!_local2) { sound.stop(); } } function setVolume(value) { return(sound.setVolume(value)); } function setBalance(value) { return(sound.setPan(value)); } function getBalance() { return(sound.getPan()); } function getBytesLoaded() { return(sound.getBytesLoaded()); } function getBytesTotal() { return(sound.getBytesTotal()); } function isPlaying() { return((sound.position > 0) && ((sound.position < sound.duration) && (is_playing))); } is_playing = false; sound = new Sound(); sound.attachSound("Explosion3");Symbol 109 MovieClip Frame 1function play() { sound.start(0, 1); is_playing = true; } function start(position) { if (position == null) { position = 0; } sound.start(position, 1); is_playing = true; } function stop() { sound.stop("Whosh"); is_playing = false; } function getDuration() { return(sound.duration / 1000); } function getPosition() { return(sound.position / 1000); } function getVolume() { return(sound.getVolume()); } function setPosition(pos) { var _local2 = isPlaying(); sound.start(pos); if (!_local2) { sound.stop(); } } function setVolume(value) { return(sound.setVolume(value)); } function setBalance(value) { return(sound.setPan(value)); } function getBalance() { return(sound.getPan()); } function getBytesLoaded() { return(sound.getBytesLoaded()); } function getBytesTotal() { return(sound.getBytesTotal()); } function isPlaying() { return((sound.position > 0) && ((sound.position < sound.duration) && (is_playing))); } is_playing = false; sound = new Sound(); sound.attachSound("Whosh");Symbol 116 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -11; _y = -62.5185203552246; _xscale = 242; _yscale = 103.70369720459; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array(); function onPress() { _root.ingamemenu1.startDrag(false); } function onRelease() { _root.ingamemenu1.stopDrag(); }Symbol 116 MovieClip Frame 2stop();Symbol 127 MovieClip Frame 2stop();Symbol 131 MovieClip Frame 2stop();Symbol 133 MovieClip Frame 2stop();Symbol 117 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.ingamemenu1._visible = 0; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 117 MovieClip Frame 2stop();Symbol 157 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -116; _y = -62; _xscale = 75; _yscale = 76.9230804443359; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 157 MovieClip Frame 2stop();Symbol 158 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.ingamemenu1._visible = 0; if (_root.last == 0) { _root.playmenu1._visible = 1; } if (_root.last == 1) { _root.challenges1._visible = 1; } _root.mainmenu1._visible = 0; _root.playing = false; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 158 MovieClip Frame 2stop();Symbol 187 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.draw(); _root.ingamemenu1._visible = 0; _root.playing = true; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 187 MovieClip Frame 2stop();Symbol 205 MovieClip Frame 1setProperty("titlebar1", _visible , 1); setProperty("xingamemenu1", _visible , 1); setProperty("stanley1", _visible , 1); setProperty("quit1", _visible , 1); setProperty("restart1", _visible , 1); function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 319; _y = 240; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; titlebar1.reset(); xingamemenu1.reset(); stanley1.reset(); quit1.reset(); restart1.reset(); this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 205 MovieClip Frame 2stop();Symbol 206 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 0; _y = 0; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 206 MovieClip Frame 233_root.mainmenu1.play1._visible = 1; _root.mainmenu1.credits1._visible = 1; _root.mainmenu1.gototrophies1._visible = 1; _root.mainmenu1.gotochallenges1._visible = 1;Symbol 206 MovieClip Frame 234stop();Symbol 279 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 0; _y = 0; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 279 MovieClip Frame 66stop();Symbol 352 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.playmenu1._visible = 1; _root.mainmenu1._visible = 0; _root.playmenu1.playmenutitle1._visible = 1; _root.playmenu1.playmenutitle1.gotoAndPlay(1); }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 352 MovieClip Frame 2stop();Symbol 381 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { if (_root.max_lvl == 40) { _root.mainmenu1._visible = 0; _root.challenges1._visible = 1; _root.challenges1.challengetitle1.gotoAndPlay(1); } if (_root.max_lvl < 40) { _root.mainmenu1.no_chal1._visible = 1; } }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; tellTarget ("_parent") { _root.mainmenu1.no_chal1._visible = 0; }; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 381 MovieClip Frame 2stop();Symbol 402 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.mainmenu1._visible = 0; _root.trophiesmenu1.trophiestitle1.gotoAndPlay(1); _root.trophiesmenu1._visible = 1; _root.challenges1.chk_menu_arrow1._visible = 0; _root.mainmenu1.chk_tro_arrow1._visible = 0; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 402 MovieClip Frame 2stop();Symbol 443 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.mainmenu1._visible = 0; _root.credits2._visible = 1; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 443 MovieClip Frame 2stop();Symbol 486 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -18; _y = -16; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 486 MovieClip Frame 2stop();Symbol 487 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 120; _y = 61; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 487 MovieClip Frame 33this.gotoAndPlay(2);Symbol 489 MovieClip Frame 1setProperty("menu1", _visible , 1); menu1.gotoAndPlay(1); setProperty("menu_from_other1", _visible , 0); menu_from_other1.gotoAndStop(1); setProperty("play1", _visible , 0); setProperty("gotochallenges1", _visible , 0); setProperty("gototrophies1", _visible , 0); setProperty("credits1", _visible , 0); setProperty("no_chal1", _visible , 0); setProperty("chk_tro_arrow1", _visible , 0); chk_tro_arrow1.gotoAndStop(1); function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 320; _y = 240; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; menu1.reset(); menu_from_other1.reset(); play1.reset(); gotochallenges1.reset(); gototrophies1.reset(); credits1.reset(); no_chal1.reset(); chk_tro_arrow1.reset(); this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 489 MovieClip Frame 2stop();Symbol 490 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 0; _y = 0; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 490 MovieClip Frame 88stop();Symbol 553 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.playmenu1._visible = 0; _root.mainmenu1._visible = 1; _root.mainmenu1.menu_from_other1._visible = 1; _root.mainmenu1.menu1._visible = 0; _root.mainmenu1.menu_from_other1.gotoAndPlay(1); }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 553 MovieClip Frame 2stop();Symbol 572 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.playmenu1._visible = 0; _root.mainmenu1._visible = 0; _root.draw(); _root.last = 0; _root.playing = true; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 572 MovieClip Frame 2stop();Symbol 601 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { if ((_root.lvl <= _root.max_lvl) && (_root.lvl < 40)) { _root.lvl = _root.lvl + 1; } }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 601 MovieClip Frame 2stop();Symbol 612 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { if (_root.lvl > 1) { _root.lvl = _root.lvl - 1; } }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 612 MovieClip Frame 2stop();Symbol 623 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_root") { _root.lvl = 1; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 623 MovieClip Frame 2stop();Symbol 640 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_root") { _root.lvl = _root.max_lvl + 1; if (_root.lvl > 40) { _root.lvl = 40; } }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 640 MovieClip Frame 2stop();Symbol 665 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 665 MovieClip Frame 2stop();Symbol 669 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 669 MovieClip Frame 2stop();Symbol 673 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 673 MovieClip Frame 2stop();Symbol 677 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 677 MovieClip Frame 2stop();Symbol 681 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 681 MovieClip Frame 2stop();Symbol 685 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 685 MovieClip Frame 2stop();Symbol 689 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 689 MovieClip Frame 2stop();Symbol 693 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 693 MovieClip Frame 2stop();Symbol 697 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 697 MovieClip Frame 2stop();Symbol 701 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 701 MovieClip Frame 2stop();Symbol 705 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 705 MovieClip Frame 2stop();Symbol 709 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 709 MovieClip Frame 2stop();Symbol 713 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 713 MovieClip Frame 2stop();Symbol 717 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 717 MovieClip Frame 2stop();Symbol 721 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 721 MovieClip Frame 2stop();Symbol 725 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 725 MovieClip Frame 2stop();Symbol 729 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 729 MovieClip Frame 2stop();Symbol 733 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 733 MovieClip Frame 2stop();Symbol 737 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 737 MovieClip Frame 2stop();Symbol 741 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 741 MovieClip Frame 2stop();Symbol 745 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 745 MovieClip Frame 2stop();Symbol 749 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 749 MovieClip Frame 2stop();Symbol 753 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 753 MovieClip Frame 2stop();Symbol 757 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 757 MovieClip Frame 2stop();Symbol 761 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 761 MovieClip Frame 2stop();Symbol 765 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 765 MovieClip Frame 2stop();Symbol 769 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 769 MovieClip Frame 2stop();Symbol 773 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 773 MovieClip Frame 2stop();Symbol 777 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 777 MovieClip Frame 2stop();Symbol 781 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 781 MovieClip Frame 2stop();Symbol 785 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 785 MovieClip Frame 2stop();Symbol 789 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 789 MovieClip Frame 2stop();Symbol 793 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 793 MovieClip Frame 2stop();Symbol 797 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 797 MovieClip Frame 2stop();Symbol 801 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 801 MovieClip Frame 2stop();Symbol 805 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 805 MovieClip Frame 2stop();Symbol 809 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 809 MovieClip Frame 2stop();Symbol 813 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 813 MovieClip Frame 2stop();Symbol 817 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 817 MovieClip Frame 2stop();Symbol 821 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 821 MovieClip Frame 2stop();Symbol 661 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 0; _y = -40; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 825 MovieClip Frame 1setProperty("playmenutitle1", _visible , 0); playmenutitle1.gotoAndStop(1); setProperty("gotomain1", _visible , 1); setProperty("startlvl1", _visible , 1); setProperty("level1", _visible , 1); setProperty("level2", _visible , 1); setProperty("lvl1", _visible , 1); setProperty("lvlmax1", _visible , 1); setProperty("leveldisp1", _visible , 1); setProperty("authordisp1", _visible , 1); setProperty("namedisp1", _visible , 1); setProperty("lvl_ico1", _visible , 1); lvl_ico1.gotoAndPlay(1); function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 320; _y = 240; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; playmenutitle1.reset(); gotomain1.reset(); startlvl1.reset(); level1.reset(); level2.reset(); lvl1.reset(); lvlmax1.reset(); leveldisp1.reset(); authordisp1.reset(); namedisp1.reset(); lvl_ico1.reset(); this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array(); function onEnterFrame() { _root.playmenu1.leveldisp1.text = "Level: " + _root.lvl; _root.playmenu1.authordisp1.text = "Creator: " + _root.author; _root.playmenu1.namedisp1.text = "Name: " + _root.name; _root.playmenu1.lvl_ico1.gotoAndStop(_root.lvl); }Symbol 825 MovieClip Frame 2stop();Symbol 826 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -2; _y = -11; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 826 MovieClip Frame 51stop();Symbol 867 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.challenges1._visible = 0; _root.mainmenu1._visible = 1; _root.mainmenu1.menu_from_other1._visible = 1; _root.mainmenu1.menu1._visible = 0; _root.mainmenu1.menu_from_other1.gotoAndPlay(1); }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 867 MovieClip Frame 2stop();Symbol 908 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { if (_root.chal < 5) { _root.chal = _root.chal + 1; } }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 908 MovieClip Frame 2stop();Symbol 919 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { if (_root.chal > 1) { _root.chal = _root.chal - 1; } }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 919 MovieClip Frame 2stop();Symbol 930 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.challenges1._visible = 0; _root.mainmenu1._visible = 0; _root.draw(); _root.last = 1; _root.playing = true; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 930 MovieClip Frame 2stop();Symbol 949 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 949 MovieClip Frame 2stop();Symbol 953 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 953 MovieClip Frame 2stop();Symbol 957 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 957 MovieClip Frame 2stop();Symbol 961 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 961 MovieClip Frame 2stop();Symbol 965 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -73; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 965 MovieClip Frame 2stop();Symbol 945 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -2; _y = -49; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 972 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 258; _y = 190; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 972 MovieClip Frame 33this.gotoAndPlay(2);Symbol 974 MovieClip Frame 1setProperty("challengetitle1", _visible , 1); challengetitle1.gotoAndPlay(1); setProperty("gotomain2", _visible , 1); setProperty("chal1", _visible , 1); setProperty("chal2", _visible , 1); setProperty("startchal1", _visible , 1); setProperty("chal_icon1", _visible , 1); chal_icon1.gotoAndPlay(1); setProperty("chaldisp_1", _visible , 1); setProperty("authordisp_1", _visible , 1); setProperty("namedisp_1", _visible , 1); setProperty("chk_menu_arrow1", _visible , 0); chk_menu_arrow1.gotoAndStop(1); function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 322; _y = 251; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; challengetitle1.reset(); gotomain2.reset(); chal1.reset(); chal2.reset(); startchal1.reset(); chal_icon1.reset(); chaldisp_1.reset(); authordisp_1.reset(); namedisp_1.reset(); chk_menu_arrow1.reset(); this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array(); function onEnterFrame() { _root.challenges1.chaldisp_1.text = "Challenge: " + _root.chal; _root.challenges1.authordisp_1.text = "Creator: " + _root.author; _root.challenges1.namedisp_1.text = "Name: " + _root.name; _root.challenges1.chal_icon1.gotoAndStop(_root.chal); }Symbol 974 MovieClip Frame 2stop();Symbol 981 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } stage = Stage; graphics = this; function onPress() { this.startDrag(false, 0, 0, 0, 189); _drag = true; } function onRelease() { this.stopDrag(); _drag = false; } function onReleaseOutside() { onRelease(); } function onMouseMove() { if (_drag) { _root.credits2.cred_txt1.moveScroll(_y / 189); } }Symbol 981 MovieClip Frame 2stop();Symbol 992 MovieClip Frame 2stop();Symbol 982 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.credits2.cred_txt1.clickScroll(-1); clicker = -1; counter = 10; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; tellTarget ("_parent") { clicker = 0; }; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 982 MovieClip Frame 2stop();Symbol 1004 MovieClip Frame 2stop();Symbol 994 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.credits2.cred_txt1.clickScroll(1); clicker = 1; counter = 10; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; tellTarget ("_parent") { clicker = 0; }; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 994 MovieClip Frame 2stop();Symbol 1006 MovieClip Frame 1setProperty("slider1", _visible , 1); setProperty("upbutton1", _visible , 1); setProperty("downbutton1", _visible , 1); function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function setRatio(r) { if (!slider1._drag) { var _local2 = r * 189; slider1._y = _local2; } } stage = Stage; graphics = this; clicker = 0; counter = 0; slider1._drag = false; function onEnterFrame() { if (clicker) { counter--; if (counter < 0) { counter = 2; _root.credits2.cred_txt1.clickScroll(clicker); } } }Symbol 1006 MovieClip Frame 2stop();Symbol 1007 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.credits2._visible = 0; _root.mainmenu1._visible = 1; _root.mainmenu1.menu_from_other1._visible = 1; _root.mainmenu1.menu1._visible = 0; _root.mainmenu1.menu_from_other1.gotoAndPlay(1); }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 1007 MovieClip Frame 2stop();Symbol 1048 MovieClip Frame 1cred_txt1.clickScroll = function (i) { this.scroll = this.scroll + i; }; cred_txt1.moveScroll = function (i) { this.scroll = i * this.maxscroll; }; cred_txt1.onScroller = function (i) { _root.credits2.scroll1.setRatio((this.scroll - 1) / (this.maxscroll - 1)); }; setProperty("cred_shadow1", _visible , 1); setProperty("cred_txt1", _visible , 1); setProperty("scroll1", _visible , 1); setProperty("gotomain3", _visible , 1); function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 320; _y = 240; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; cred_shadow1.reset(); cred_txt1.reset(); scroll1.reset(); gotomain3.reset(); this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array(); function onEnterFrame() { _root.credits2.cred_shadow1.scroll = _root.credits2.cred_txt1.scroll; }Symbol 1048 MovieClip Frame 2stop();Symbol 1049 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 0; _y = 0; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 1049 MovieClip Frame 45stop();Symbol 1082 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.trophiesmenu1._visible = 0; _root.mainmenu1._visible = 1; _root.mainmenu1.menu_from_other1._visible = 1; _root.mainmenu1.menu1._visible = 0; _root.mainmenu1.menu_from_other1.gotoAndPlay(1); }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 1082 MovieClip Frame 2stop();Symbol 1125 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 0; _y = -60; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array(); function onPress() { getURL ("http://www.youtube.com/watch?v=FbYXV0UivpM", "_blank"); }Symbol 1125 MovieClip Frame 2stop();Symbol 1128 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 140; _y = -63; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array(); function onPress() { getURL ("http://www.youtube.com/user/xzoranan", "_blank"); }Symbol 1128 MovieClip Frame 2stop();Symbol 1131 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 260; _y = -55; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array(); function onPress() { getURL ("http://www.youtube.com/watch?v=H0BUysglCZA", "_blank"); }Symbol 1131 MovieClip Frame 2stop();Symbol 1134 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -240.5; _y = -62; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array(); function onPress() { getURL ("http://whatninja.com/", "_blank"); }Symbol 1134 MovieClip Frame 2stop();Symbol 1138 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -120; _y = -53; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array(); function onPress() { getURL ("http://www.youtube.com/watch?v=b9nptjUs9FM", "_blank"); }Symbol 1138 MovieClip Frame 2stop();Symbol 1139 MovieClip Frame 1setProperty("trophiestitle1", _visible , 1); trophiestitle1.gotoAndPlay(1); setProperty("gotomain4", _visible , 1); setProperty("veteran_trophies1", _visible , 0); setProperty("telescope1", _visible , 0); setProperty("ghost1", _visible , 0); setProperty("key1", _visible , 0); setProperty("hammer1", _visible , 0); function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 320; _y = 240; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; trophiestitle1.reset(); gotomain4.reset(); veteran_trophies1.reset(); telescope1.reset(); ghost1.reset(); key1.reset(); hammer1.reset(); this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();Symbol 1139 MovieClip Frame 2stop();Symbol 1140 MovieClip Frame 1function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_root") { if ((lvl == (max_lvl + 1)) && (_root.last == 0)) { max_lvl = max_lvl + 1; lvl = lvl + 1; } _root.mainmenu1._visible = 0; _root.ingamemenu1._visible = 0; _root.winnerbutton1._visible = 0; _root.rigrapthing1.play(); if (_root.last == 0) { _root.playmenu1._visible = 1; } if (_root.last == 1) { if ((_root.chal == 1) && (_root.da_key == 0)) { _root.da_key = 1; _root.challenges1.chk_menu_arrow1._visible = 1; _root.mainmenu1.chk_tro_arrow1._visible = 1; _root.challenges1.chk_menu_arrow1.play(); _root.mainmenu1.chk_tro_arrow1.play(); } if ((_root.chal == 2) && (_root.hammer == 0)) { _root.hammer = 1; _root.challenges1.chk_menu_arrow1._visible = 1; _root.mainmenu1.chk_tro_arrow1._visible = 1; _root.challenges1.chk_menu_arrow1.play(); _root.mainmenu1.chk_tro_arrow1.play(); } if ((_root.chal == 3) && (_root.veteran == 0)) { _root.veteran = 1; _root.challenges1.chk_menu_arrow1._visible = 1; _root.mainmenu1.chk_tro_arrow1._visible = 1; _root.challenges1.chk_menu_arrow1.play(); _root.mainmenu1.chk_tro_arrow1.play(); } if ((_root.chal == 4) && (_root.explorer == 0)) { _root.explorer = 1; _root.challenges1.chk_menu_arrow1._visible = 1; _root.mainmenu1.chk_tro_arrow1._visible = 1; _root.challenges1.chk_menu_arrow1.play(); _root.mainmenu1.chk_tro_arrow1.play(); } if ((_root.chal == 5) && (_root.ghost == 0)) { _root.ghost = 1; _root.challenges1.chk_menu_arrow1._visible = 1; _root.mainmenu1.chk_tro_arrow1._visible = 1; _root.challenges1.chk_menu_arrow1.play(); _root.mainmenu1.chk_tro_arrow1.play(); } _root.challenges1._visible = 1; } var _local1 = SharedObject.getLocal("UL2"); _local1.data.max_lvl = _root.max_lvl; _local1.data.veteran = _root.veteran; _local1.data.explorer = _root.explorer; _local1.data.ghost = _root.ghost; _local1.data.da_key = _root.da_key; _local1.data.hammer = _root.hammer; _local1.flush(); }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;Symbol 1140 MovieClip Frame 2stop();Symbol 1159 MovieClip Frame 1function play() { if (isPlaying()) { return(); } sound.start(0, 100); is_playing = true; } function start(position) { if (position == null) { position = 0; } if (isPlaying()) { stop(); } sound.start(position, 100); is_playing = true; } function stop() { sound.stop("RigRapThingLow"); is_playing = false; } function getDuration() { return(sound.duration / 1000); } function getPosition() { return(sound.position / 1000); } function getVolume() { return(sound.getVolume()); } function setPosition(pos) { var _local2 = isPlaying(); sound.start(pos); if (!_local2) { sound.stop(); } } function setVolume(value) { return(sound.setVolume(value)); } function setBalance(value) { return(sound.setPan(value)); } function getBalance() { return(sound.getPan()); } function getBytesLoaded() { return(sound.getBytesLoaded()); } function getBytesTotal() { return(sound.getBytesTotal()); } function isPlaying() { return((sound.position > 0) && ((sound.position < sound.duration) && (is_playing))); } is_playing = false; sound = new Sound(); sound.attachSound("RigRapThingLow"); start();Symbol 1160 MovieClip Frame 1function play() { sound.start(0, 1); is_playing = true; } function start(position) { if (position == null) { position = 0; } sound.start(position, 1); is_playing = true; } function stop() { sound.stop("Click2"); is_playing = false; } function getDuration() { return(sound.duration / 1000); } function getPosition() { return(sound.position / 1000); } function getVolume() { return(sound.getVolume()); } function setPosition(pos) { var _local2 = isPlaying(); sound.start(pos); if (!_local2) { sound.stop(); } } function setVolume(value) { return(sound.setVolume(value)); } function setBalance(value) { return(sound.setPan(value)); } function getBalance() { return(sound.getPan()); } function getBytesLoaded() { return(sound.getBytesLoaded()); } function getBytesTotal() { return(sound.getBytesTotal()); } function isPlaying() { return((sound.position > 0) && ((sound.position < sound.duration) && (is_playing))); } is_playing = false; sound = new Sound(); sound.attachSound("Click2");
Library Items
Symbol 1 Sound [Explosion3] | ||
Symbol 2 Sound [Whosh] | ||
Symbol 3 Sound [RigRapThingLow] | ||
Symbol 4 Sound [Click2] | ||
Symbol 5 MovieClip [_init_globals] | ||
Symbol 6 Graphic | Used by:7 | |
Symbol 7 MovieClip | Uses:6 | Used by:Timeline |
Symbol 9 Bitmap | Used by:10 | |
Symbol 10 Graphic | Uses:9 | Used by:11 |
Symbol 11 MovieClip | Uses:10 | Used by:Timeline |
Symbol 13 Bitmap | Used by:14 | |
Symbol 14 Graphic | Uses:13 | Used by:15 |
Symbol 15 MovieClip | Uses:14 | Used by:Timeline |
Symbol 17 Bitmap | Used by:18 | |
Symbol 18 Graphic | Uses:17 | Used by:19 |
Symbol 19 MovieClip | Uses:18 | Used by:Timeline |
Symbol 21 Bitmap | Used by:22 | |
Symbol 22 Graphic | Uses:21 | Used by:23 |
Symbol 23 MovieClip | Uses:22 | Used by:Timeline |
Symbol 25 Bitmap | Used by:26 | |
Symbol 26 Graphic | Uses:25 | Used by:27 |
Symbol 27 MovieClip | Uses:26 | Used by:Timeline |
Symbol 29 Bitmap | Used by:30 | |
Symbol 30 Graphic | Uses:29 | Used by:31 |
Symbol 31 MovieClip | Uses:30 | Used by:Timeline |
Symbol 33 Graphic | Used by:32 | |
Symbol 34 Graphic | Used by:32 | |
Symbol 35 Graphic | Used by:32 | |
Symbol 36 Graphic | Used by:32 | |
Symbol 37 Graphic | Used by:32 | |
Symbol 38 Graphic | Used by:32 | |
Symbol 39 Graphic | Used by:32 | |
Symbol 40 Graphic | Used by:32 | |
Symbol 41 Graphic | Used by:32 | |
Symbol 42 Graphic | Used by:32 | |
Symbol 43 Graphic | Used by:32 | |
Symbol 44 Graphic | Used by:32 | |
Symbol 45 Graphic | Used by:32 | |
Symbol 46 Graphic | Used by:32 | |
Symbol 47 Graphic | Used by:32 | |
Symbol 48 Graphic | Used by:32 | |
Symbol 49 Graphic | Used by:32 | |
Symbol 50 Graphic | Used by:32 | |
Symbol 51 Graphic | Used by:32 | |
Symbol 52 Graphic | Used by:32 | |
Symbol 53 Graphic | Used by:32 | |
Symbol 54 Graphic | Used by:32 | |
Symbol 55 Graphic | Used by:32 | |
Symbol 56 Graphic | Used by:32 | |
Symbol 57 Graphic | Used by:32 | |
Symbol 58 Graphic | Used by:32 | |
Symbol 32 MovieClip | Uses:33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | Used by:Timeline |
Symbol 60 Graphic | Used by:59 | |
Symbol 61 Graphic | Used by:59 | |
Symbol 62 Graphic | Used by:59 | |
Symbol 63 Graphic | Used by:59 | |
Symbol 64 Graphic | Used by:59 | |
Symbol 65 Graphic | Used by:59 | |
Symbol 66 Graphic | Used by:59 | |
Symbol 67 Graphic | Used by:59 | |
Symbol 68 Graphic | Used by:59 | |
Symbol 69 Graphic | Used by:59 | |
Symbol 70 Graphic | Used by:59 | |
Symbol 71 Graphic | Used by:59 | |
Symbol 72 Graphic | Used by:59 | |
Symbol 73 Graphic | Used by:59 | |
Symbol 74 Graphic | Used by:59 | |
Symbol 75 Graphic | Used by:59 | |
Symbol 76 Graphic | Used by:59 | |
Symbol 77 Graphic | Used by:59 | |
Symbol 78 Graphic | Used by:59 | |
Symbol 79 Graphic | Used by:59 | |
Symbol 80 Graphic | Used by:59 | |
Symbol 81 Graphic | Used by:59 | |
Symbol 82 Graphic | Used by:59 | |
Symbol 83 Graphic | Used by:59 | |
Symbol 84 Graphic | Used by:59 | |
Symbol 85 Graphic | Used by:59 | |
Symbol 86 Graphic | Used by:59 | |
Symbol 87 Graphic | Used by:59 | |
Symbol 88 Graphic | Used by:59 | |
Symbol 89 Graphic | Used by:59 | |
Symbol 90 Graphic | Used by:59 | |
Symbol 91 Graphic | Used by:59 | |
Symbol 92 Graphic | Used by:59 | |
Symbol 93 Graphic | Used by:59 | |
Symbol 94 Graphic | Used by:59 | |
Symbol 95 Graphic | Used by:59 | |
Symbol 96 Graphic | Used by:59 | |
Symbol 97 Graphic | Used by:59 | |
Symbol 98 Graphic | Used by:59 | |
Symbol 99 Graphic | Used by:59 | |
Symbol 100 Graphic | Used by:59 | |
Symbol 101 Graphic | Used by:59 | |
Symbol 102 Graphic | Used by:59 | |
Symbol 103 Graphic | Used by:59 | |
Symbol 104 Graphic | Used by:59 | |
Symbol 105 Graphic | Used by:59 | |
Symbol 106 Graphic | Used by:59 | |
Symbol 107 Graphic | Used by:59 | |
Symbol 59 MovieClip | Uses:60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | Used by:Timeline |
Symbol 108 MovieClip | Used by:Timeline | |
Symbol 109 MovieClip | Used by:Timeline | |
Symbol 111 Bitmap | Used by:112 | |
Symbol 112 Graphic | Uses:111 | Used by:205 |
Symbol 114 Bitmap | Used by:115 | |
Symbol 115 Graphic | Uses:114 | Used by:116 |
Symbol 116 MovieClip | Uses:115 | Used by:205 |
Symbol 125 Bitmap | Used by:126 | |
Symbol 126 Graphic | Uses:125 | Used by:127 |
Symbol 127 MovieClip | Uses:126 | Used by:118 |
Symbol 129 Bitmap | Used by:130 132 | |
Symbol 130 Graphic | Uses:129 | Used by:131 |
Symbol 131 MovieClip | Uses:130 | Used by:119 |
Symbol 132 Graphic | Uses:129 | Used by:133 |
Symbol 133 MovieClip | Uses:132 | Used by:120 |
Symbol 134 Graphic | Used by:123 | |
Symbol 118 MovieClip | Uses:127 | Used by:117 |
Symbol 119 MovieClip | Uses:131 | Used by:117 |
Symbol 120 MovieClip | Uses:133 | Used by:117 |
Symbol 121 MovieClip | ||
Symbol 122 MovieClip | ||
Symbol 123 MovieClip | Uses:134 | Used by:117 |
Symbol 117 MovieClip | Uses:118 119 120 123 | Used by:205 |
Symbol 135 Graphic | Used by:205 | |
Symbol 136 Graphic | Used by:205 | |
Symbol 137 Graphic | Used by:205 | |
Symbol 138 Graphic | Used by:205 | |
Symbol 139 Graphic | Used by:205 | |
Symbol 140 Graphic | Used by:205 | |
Symbol 141 Graphic | Used by:205 | |
Symbol 142 Graphic | Used by:205 | |
Symbol 143 Graphic | Used by:205 | |
Symbol 144 Graphic | Used by:205 | |
Symbol 145 Graphic | Used by:205 | |
Symbol 146 Graphic | Used by:205 | |
Symbol 147 Graphic | Used by:205 | |
Symbol 148 Graphic | Used by:205 | |
Symbol 149 Graphic | Used by:205 | |
Symbol 150 Graphic | Used by:205 | |
Symbol 151 Graphic | Used by:205 | |
Symbol 152 Graphic | Used by:205 | |
Symbol 153 Graphic | Used by:205 | |
Symbol 154 Graphic | Used by:205 | |
Symbol 155 Bitmap | Used by:156 | |
Symbol 156 Graphic | Uses:155 | Used by:157 |
Symbol 157 MovieClip | Uses:156 | Used by:205 |
Symbol 166 Bitmap | Used by:167 | |
Symbol 167 Graphic | Uses:166 | Used by:159 |
Symbol 168 Graphic | Used by:159 | |
Symbol 169 Graphic | Used by:159 | |
Symbol 170 Graphic | Used by:159 | |
Symbol 171 Graphic | Used by:159 | |
Symbol 173 Bitmap | Used by:174 | |
Symbol 174 Graphic | Uses:173 | Used by:160 |
Symbol 175 Graphic | Used by:160 | |
Symbol 176 Graphic | Used by:160 | |
Symbol 177 Graphic | Used by:160 | |
Symbol 178 Graphic | Used by:160 | |
Symbol 180 Bitmap | Used by:181 | |
Symbol 181 Graphic | Uses:180 | Used by:161 |
Symbol 182 Graphic | Used by:161 | |
Symbol 183 Graphic | Used by:161 | |
Symbol 184 Graphic | Used by:161 | |
Symbol 185 Graphic | Used by:161 | |
Symbol 186 Graphic | Used by:164 | |
Symbol 159 MovieClip | Uses:167 168 169 170 171 | Used by:158 |
Symbol 160 MovieClip | Uses:174 175 176 177 178 | Used by:158 |
Symbol 161 MovieClip | Uses:181 182 183 184 185 | Used by:158 |
Symbol 162 MovieClip | ||
Symbol 163 MovieClip | ||
Symbol 164 MovieClip | Uses:186 | Used by:158 |
Symbol 158 MovieClip | Uses:159 160 161 164 | Used by:205 |
Symbol 195 Bitmap | Used by:196 | |
Symbol 196 Graphic | Uses:195 | Used by:188 |
Symbol 197 Graphic | Used by:188 | |
Symbol 198 Graphic | Used by:188 | |
Symbol 199 Graphic | Used by:188 | |
Symbol 200 Graphic | Used by:188 | |
Symbol 201 Graphic | Used by:188 | |
Symbol 202 Graphic | Used by:188 | |
Symbol 203 Graphic | Used by:188 | |
Symbol 204 Graphic | Used by:193 | |
Symbol 188 MovieClip | Uses:196 197 198 199 200 201 202 203 | Used by:187 |
Symbol 189 MovieClip | ||
Symbol 190 MovieClip | ||
Symbol 191 MovieClip | ||
Symbol 192 MovieClip | ||
Symbol 193 MovieClip | Uses:204 | Used by:187 |
Symbol 187 MovieClip | Uses:188 193 | Used by:205 |
Symbol 205 MovieClip | Uses:112 116 117 135 145 136 146 137 147 138 148 139 149 140 150 141 151 142 152 143 153 144 154 157 158 187 | Used by:Timeline |
Symbol 207 Graphic | Used by:206 | |
Symbol 208 Graphic | Used by:206 | |
Symbol 209 Graphic | Used by:206 | |
Symbol 210 Graphic | Used by:206 | |
Symbol 211 Graphic | Used by:206 | |
Symbol 212 Graphic | Used by:206 | |
Symbol 213 Graphic | Used by:206 | |
Symbol 214 Graphic | Used by:206 | |
Symbol 216 Bitmap | Used by:217 | |
Symbol 217 Graphic | Uses:216 | Used by:206 |
Symbol 219 Bitmap | Used by:220 | |
Symbol 220 Graphic | Uses:219 | Used by:206 |
Symbol 222 Bitmap | Used by:223 | |
Symbol 223 Graphic | Uses:222 | Used by:206 |
Symbol 225 Bitmap | Used by:226 | |
Symbol 226 Graphic | Uses:225 | Used by:206 |
Symbol 228 Bitmap | Used by:229 | |
Symbol 229 Graphic | Uses:228 | Used by:206 |
Symbol 231 Bitmap | Used by:232 | |
Symbol 232 Graphic | Uses:231 | Used by:206 |
Symbol 234 Bitmap | Used by:235 | |
Symbol 235 Graphic | Uses:234 | Used by:206 |
Symbol 237 Bitmap | Used by:238 | |
Symbol 238 Graphic | Uses:237 | Used by:206 |
Symbol 239 Graphic | Used by:206 | |
Symbol 240 Graphic | Used by:206 | |
Symbol 241 Graphic | Used by:206 | |
Symbol 242 Graphic | Used by:206 | |
Symbol 243 Graphic | Used by:206 | |
Symbol 244 Graphic | Used by:206 | |
Symbol 245 Graphic | Used by:206 | |
Symbol 246 Graphic | Used by:206 | |
Symbol 247 Graphic | Used by:206 | |
Symbol 249 Bitmap | Used by:250 | |
Symbol 250 Graphic | Uses:249 | Used by:206 |
Symbol 252 Bitmap | Used by:253 | |
Symbol 253 Graphic | Uses:252 | Used by:206 |
Symbol 255 Bitmap | Used by:256 | |
Symbol 256 Graphic | Uses:255 | Used by:206 |
Symbol 258 Bitmap | Used by:259 | |
Symbol 259 Graphic | Uses:258 | Used by:206 |
Symbol 261 Bitmap | Used by:262 | |
Symbol 262 Graphic | Uses:261 | Used by:206 |
Symbol 264 Bitmap | Used by:265 | |
Symbol 265 Graphic | Uses:264 | Used by:206 |
Symbol 267 Bitmap | Used by:268 | |
Symbol 268 Graphic | Uses:267 | Used by:206 |
Symbol 270 Bitmap | Used by:271 | |
Symbol 271 Graphic | Uses:270 | Used by:206 |
Symbol 273 Bitmap | Used by:274 | |
Symbol 274 Graphic | Uses:273 | Used by:206 |
Symbol 275 Graphic | Used by:206 | |
Symbol 277 Bitmap | Used by:278 | |
Symbol 278 Graphic | Uses:277 | Used by:206 |
Symbol 206 MovieClip | Uses:207 208 209 210 211 212 213 214 239 240 241 242 243 244 245 246 247 275 217 250 220 253 223 256 226 259 229 262 232 265 235 268 238 271 274 278 | Used by:489 |
Symbol 280 Graphic | Used by:279 | |
Symbol 281 Graphic | Used by:279 | |
Symbol 282 Graphic | Used by:279 | |
Symbol 283 Graphic | Used by:279 | |
Symbol 284 Graphic | Used by:279 | |
Symbol 285 Graphic | Used by:279 | |
Symbol 286 Graphic | Used by:279 | |
Symbol 287 Graphic | Used by:279 | |
Symbol 289 Bitmap | Used by:290 | |
Symbol 290 Graphic | Uses:289 | Used by:279 |
Symbol 292 Bitmap | Used by:293 | |
Symbol 293 Graphic | Uses:292 | Used by:279 |
Symbol 295 Bitmap | Used by:296 | |
Symbol 296 Graphic | Uses:295 | Used by:279 |
Symbol 298 Bitmap | Used by:299 | |
Symbol 299 Graphic | Uses:298 | Used by:279 |
Symbol 301 Bitmap | Used by:302 | |
Symbol 302 Graphic | Uses:301 | Used by:279 |
Symbol 304 Bitmap | Used by:305 | |
Symbol 305 Graphic | Uses:304 | Used by:279 |
Symbol 307 Bitmap | Used by:308 | |
Symbol 308 Graphic | Uses:307 | Used by:279 |
Symbol 310 Bitmap | Used by:311 | |
Symbol 311 Graphic | Uses:310 | Used by:279 |
Symbol 312 Graphic | Used by:279 | |
Symbol 313 Graphic | Used by:279 | |
Symbol 314 Graphic | Used by:279 | |
Symbol 315 Graphic | Used by:279 | |
Symbol 316 Graphic | Used by:279 | |
Symbol 317 Graphic | Used by:279 | |
Symbol 318 Graphic | Used by:279 | |
Symbol 319 Graphic | Used by:279 | |
Symbol 320 Graphic | Used by:279 | |
Symbol 322 Bitmap | Used by:323 | |
Symbol 323 Graphic | Uses:322 | Used by:279 |
Symbol 325 Bitmap | Used by:326 | |
Symbol 326 Graphic | Uses:325 | Used by:279 |
Symbol 328 Bitmap | Used by:329 | |
Symbol 329 Graphic | Uses:328 | Used by:279 |
Symbol 331 Bitmap | Used by:332 | |
Symbol 332 Graphic | Uses:331 | Used by:279 |
Symbol 334 Bitmap | Used by:335 | |
Symbol 335 Graphic | Uses:334 | Used by:279 |
Symbol 337 Bitmap | Used by:338 | |
Symbol 338 Graphic | Uses:337 | Used by:279 |
Symbol 340 Bitmap | Used by:341 | |
Symbol 341 Graphic | Uses:340 | Used by:279 |
Symbol 343 Bitmap | Used by:344 | |
Symbol 344 Graphic | Uses:343 | Used by:279 |
Symbol 346 Bitmap | Used by:347 | |
Symbol 347 Graphic | Uses:346 | Used by:279 |
Symbol 348 Graphic | Used by:279 | |
Symbol 350 Bitmap | Used by:351 | |
Symbol 351 Graphic | Uses:350 | Used by:279 |
Symbol 279 MovieClip | Uses:280 281 282 283 284 285 286 287 312 313 314 315 316 317 318 319 320 348 290 323 293 326 296 329 299 332 302 335 305 338 308 341 311 344 347 351 | Used by:489 |
Symbol 360 Bitmap | Used by:361 | |
Symbol 361 Graphic | Uses:360 | Used by:353 |
Symbol 362 Graphic | Used by:353 | |
Symbol 363 Graphic | Used by:353 | |
Symbol 364 Graphic | Used by:353 | |
Symbol 365 Graphic | Used by:353 | |
Symbol 367 Bitmap | Used by:368 | |
Symbol 368 Graphic | Uses:367 | Used by:354 |
Symbol 369 Graphic | Used by:354 | |
Symbol 370 Graphic | Used by:354 | |
Symbol 371 Graphic | Used by:354 | |
Symbol 372 Graphic | Used by:354 | |
Symbol 374 Bitmap | Used by:375 | |
Symbol 375 Graphic | Uses:374 | Used by:355 |
Symbol 376 Graphic | Used by:355 | |
Symbol 377 Graphic | Used by:355 | |
Symbol 378 Graphic | Used by:355 | |
Symbol 379 Graphic | Used by:355 | |
Symbol 380 Graphic | Used by:358 | |
Symbol 353 MovieClip | Uses:361 362 363 364 365 | Used by:352 |
Symbol 354 MovieClip | Uses:368 369 370 371 372 | Used by:352 |
Symbol 355 MovieClip | Uses:375 376 377 378 379 | Used by:352 |
Symbol 356 MovieClip | ||
Symbol 357 MovieClip | ||
Symbol 358 MovieClip | Uses:380 | Used by:352 |
Symbol 352 MovieClip | Uses:353 354 355 358 | Used by:489 |
Symbol 389 Bitmap | Used by:390 | |
Symbol 390 Graphic | Uses:389 | Used by:382 |
Symbol 391 Graphic | Used by:382 | |
Symbol 392 Graphic | Used by:382 | |
Symbol 393 Graphic | Used by:382 | |
Symbol 394 Graphic | Used by:382 | |
Symbol 395 Graphic | Used by:382 | |
Symbol 396 Graphic | Used by:382 | |
Symbol 397 Graphic | Used by:382 | |
Symbol 398 Graphic | Used by:382 | |
Symbol 399 Graphic | Used by:382 | |
Symbol 400 Graphic | Used by:382 | |
Symbol 401 Graphic | Used by:387 | |
Symbol 382 MovieClip | Uses:390 391 392 393 394 395 396 397 398 399 400 | Used by:381 |
Symbol 383 MovieClip | ||
Symbol 384 MovieClip | ||
Symbol 385 MovieClip | ||
Symbol 386 MovieClip | ||
Symbol 387 MovieClip | Uses:401 | Used by:381 |
Symbol 381 MovieClip | Uses:382 387 | Used by:489 |
Symbol 410 Bitmap | Used by:411 | |
Symbol 411 Graphic | Uses:410 | Used by:403 |
Symbol 412 Graphic | Used by:403 | |
Symbol 413 Graphic | Used by:403 | |
Symbol 414 Graphic | Used by:403 | |
Symbol 415 Graphic | Used by:403 | |
Symbol 416 Graphic | Used by:403 | |
Symbol 417 Graphic | Used by:403 | |
Symbol 418 Graphic | Used by:403 | |
Symbol 419 Graphic | Used by:403 | |
Symbol 421 Bitmap | Used by:422 | |
Symbol 422 Graphic | Uses:421 | Used by:404 |
Symbol 423 Graphic | Used by:404 | |
Symbol 424 Graphic | Used by:404 | |
Symbol 425 Graphic | Used by:404 | |
Symbol 426 Graphic | Used by:404 | |
Symbol 427 Graphic | Used by:404 | |
Symbol 428 Graphic | Used by:404 | |
Symbol 429 Graphic | Used by:404 | |
Symbol 430 Graphic | Used by:404 | |
Symbol 432 Bitmap | Used by:433 | |
Symbol 433 Graphic | Uses:432 | Used by:405 |
Symbol 434 Graphic | Used by:405 | |
Symbol 435 Graphic | Used by:405 | |
Symbol 436 Graphic | Used by:405 | |
Symbol 437 Graphic | Used by:405 | |
Symbol 438 Graphic | Used by:405 | |
Symbol 439 Graphic | Used by:405 | |
Symbol 440 Graphic | Used by:405 | |
Symbol 441 Graphic | Used by:405 | |
Symbol 442 Graphic | Used by:408 | |
Symbol 403 MovieClip | Uses:411 412 413 414 415 416 417 418 419 | Used by:402 |
Symbol 404 MovieClip | Uses:422 423 424 425 426 427 428 429 430 | Used by:402 |
Symbol 405 MovieClip | Uses:433 434 435 436 437 438 439 440 441 | Used by:402 |
Symbol 406 MovieClip | ||
Symbol 407 MovieClip | ||
Symbol 408 MovieClip | Uses:442 | Used by:402 |
Symbol 402 MovieClip | Uses:403 404 405 408 | Used by:489 |
Symbol 451 Bitmap | Used by:452 | |
Symbol 452 Graphic | Uses:451 | Used by:444 |
Symbol 453 Graphic | Used by:444 | |
Symbol 454 Graphic | Used by:444 | |
Symbol 455 Graphic | Used by:444 | |
Symbol 456 Graphic | Used by:444 | |
Symbol 457 Graphic | Used by:444 | |
Symbol 458 Graphic | Used by:444 | |
Symbol 459 Graphic | Used by:444 | |
Symbol 460 Graphic | Used by:449 | |
Symbol 444 MovieClip | Uses:452 453 454 455 456 457 458 459 | Used by:443 |
Symbol 445 MovieClip | ||
Symbol 446 MovieClip | ||
Symbol 447 MovieClip | ||
Symbol 448 MovieClip | ||
Symbol 449 MovieClip | Uses:460 | Used by:443 |
Symbol 443 MovieClip | Uses:444 449 | Used by:489 |
Symbol 461 Graphic | Used by:486 | |
Symbol 462 Graphic | Used by:486 | |
Symbol 463 Graphic | Used by:486 | |
Symbol 464 Graphic | Used by:486 | |
Symbol 465 Graphic | Used by:486 | |
Symbol 466 Graphic | Used by:486 | |
Symbol 467 Graphic | Used by:486 | |
Symbol 468 Graphic | Used by:486 | |
Symbol 469 Graphic | Used by:486 | |
Symbol 470 Graphic | Used by:486 | |
Symbol 471 Graphic | Used by:486 | |
Symbol 472 Graphic | Used by:486 | |
Symbol 473 Graphic | Used by:486 | |
Symbol 474 Graphic | Used by:486 | |
Symbol 475 Graphic | Used by:486 | |
Symbol 476 Graphic | Used by:486 | |
Symbol 477 Graphic | Used by:486 | |
Symbol 478 Graphic | Used by:486 | |
Symbol 479 Graphic | Used by:486 | |
Symbol 480 Graphic | Used by:486 | |
Symbol 481 Graphic | Used by:486 | |
Symbol 482 Graphic | Used by:486 | |
Symbol 483 Graphic | Used by:486 | |
Symbol 484 Graphic | Used by:486 | |
Symbol 485 Graphic | Used by:486 | |
Symbol 486 MovieClip | Uses: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 | Used by:489 |
Symbol 488 Graphic | Used by:487 | |
Symbol 487 MovieClip | Uses:488 | Used by:489 |
Symbol 489 MovieClip | Uses:206 279 352 381 402 443 486 487 | Used by:Timeline |
Symbol 491 Graphic | Used by:490 | |
Symbol 492 Graphic | Used by:490 | |
Symbol 493 Graphic | Used by:490 | |
Symbol 494 Graphic | Used by:490 | |
Symbol 496 Bitmap | Used by:497 | |
Symbol 497 Graphic | Uses:496 | Used by:490 |
Symbol 499 Bitmap | Used by:500 | |
Symbol 500 Graphic | Uses:499 | Used by:490 |
Symbol 502 Bitmap | Used by:503 | |
Symbol 503 Graphic | Uses:502 | Used by:490 |
Symbol 505 Bitmap | Used by:506 | |
Symbol 506 Graphic | Uses:505 | Used by:490 |
Symbol 507 Graphic | Used by:490 | |
Symbol 508 Graphic | Used by:490 | |
Symbol 509 Graphic | Used by:490 | |
Symbol 510 Graphic | Used by:490 | |
Symbol 511 Graphic | Used by:490 | |
Symbol 512 Graphic | Used by:490 | |
Symbol 513 Graphic | Used by:490 | |
Symbol 514 Graphic | Used by:490 | |
Symbol 515 Graphic | Used by:490 | |
Symbol 516 Graphic | Used by:490 | |
Symbol 517 Graphic | Used by:490 | |
Symbol 518 Graphic | Used by:490 | |
Symbol 519 Graphic | Used by:490 | |
Symbol 520 Graphic | Used by:490 | |
Symbol 521 Graphic | Used by:490 | |
Symbol 522 Graphic | Used by:490 | |
Symbol 523 Graphic | Used by:490 | |
Symbol 524 Graphic | Used by:490 | |
Symbol 525 Graphic | Used by:490 | |
Symbol 526 Graphic | Used by:490 | |
Symbol 527 Graphic | Used by:490 | |
Symbol 528 Graphic | Used by:490 | |
Symbol 529 Graphic | Used by:490 | |
Symbol 530 Graphic | Used by:490 | |
Symbol 531 Graphic | Used by:490 | |
Symbol 532 Graphic | Used by:490 | |
Symbol 533 Graphic | Used by:490 | |
Symbol 534 Graphic | Used by:490 | |
Symbol 535 Graphic | Used by:490 | |
Symbol 536 Graphic | Used by:490 | |
Symbol 537 Graphic | Used by:490 | |
Symbol 538 Graphic | Used by:490 | |
Symbol 539 Graphic | Used by:490 | |
Symbol 540 Graphic | Used by:490 | |
Symbol 541 Graphic | Used by:490 | |
Symbol 542 Graphic | Used by:490 | |
Symbol 543 Graphic | Used by:490 | |
Symbol 544 Graphic | Used by:490 | |
Symbol 545 Graphic | Used by:490 | |
Symbol 546 Graphic | Used by:490 | |
Symbol 547 Graphic | Used by:490 | |
Symbol 548 Graphic | Used by:490 | |
Symbol 549 Graphic | Used by:490 | |
Symbol 550 Graphic | Used by:490 | |
Symbol 551 Graphic | Used by:490 | |
Symbol 552 Graphic | Used by:490 | |
Symbol 490 MovieClip | Uses:491 492 493 494 507 508 509 510 511 512 513 514 515 516 517 518 519 497 520 521 500 522 523 524 503 525 526 506 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 | Used by:825 |
Symbol 561 Bitmap | Used by:562 | |
Symbol 562 Graphic | Uses:561 | Used by:554 |
Symbol 563 Graphic | Used by:554 | |
Symbol 564 Graphic | Used by:554 | |
Symbol 565 Graphic | Used by:554 | |
Symbol 566 Graphic | Used by:554 | |
Symbol 567 Graphic | Used by:554 | |
Symbol 568 Graphic | Used by:554 | |
Symbol 569 Graphic | Used by:554 | |
Symbol 570 Graphic | Used by:554 | |
Symbol 571 Graphic | Used by:559 | |
Symbol 554 MovieClip | Uses:562 563 564 565 566 567 568 569 570 | Used by:553 |
Symbol 555 MovieClip | ||
Symbol 556 MovieClip | ||
Symbol 557 MovieClip | ||
Symbol 558 MovieClip | ||
Symbol 559 MovieClip | Uses:571 | Used by:553 |
Symbol 553 MovieClip | Uses:554 559 | Used by:825 |
Symbol 580 Bitmap | Used by:581 | |
Symbol 581 Graphic | Uses:580 | Used by:573 |
Symbol 582 Graphic | Used by:573 | |
Symbol 583 Graphic | Used by:573 | |
Symbol 584 Graphic | Used by:573 | |
Symbol 585 Graphic | Used by:573 | |
Symbol 587 Bitmap | Used by:588 | |
Symbol 588 Graphic | Uses:587 | Used by:574 |
Symbol 589 Graphic | Used by:574 | |
Symbol 590 Graphic | Used by:574 | |
Symbol 591 Graphic | Used by:574 | |
Symbol 592 Graphic | Used by:574 | |
Symbol 594 Bitmap | Used by:595 | |
Symbol 595 Graphic | Uses:594 | Used by:575 |
Symbol 596 Graphic | Used by:575 | |
Symbol 597 Graphic | Used by:575 | |
Symbol 598 Graphic | Used by:575 | |
Symbol 599 Graphic | Used by:575 | |
Symbol 600 Graphic | Used by:578 | |
Symbol 573 MovieClip | Uses:581 582 583 584 585 | Used by:572 |
Symbol 574 MovieClip | Uses:588 589 590 591 592 | Used by:572 |
Symbol 575 MovieClip | Uses:595 596 597 598 599 | Used by:572 |
Symbol 576 MovieClip | ||
Symbol 577 MovieClip | ||
Symbol 578 MovieClip | Uses:600 | Used by:572 |
Symbol 572 MovieClip | Uses:573 574 575 578 | Used by:825 |
Symbol 609 Bitmap | Used by:610 | |
Symbol 610 Graphic | Uses:609 | Used by:602 |
Symbol 611 Graphic | Used by:607 | |
Symbol 602 MovieClip | Uses:610 | Used by:601 |
Symbol 603 MovieClip | ||
Symbol 604 MovieClip | ||
Symbol 605 MovieClip | ||
Symbol 606 MovieClip | ||
Symbol 607 MovieClip | Uses:611 | Used by:601 |
Symbol 601 MovieClip | Uses:602 607 | Used by:825 |
Symbol 620 Bitmap | Used by:621 | |
Symbol 621 Graphic | Uses:620 | Used by:613 |
Symbol 622 Graphic | Used by:618 | |
Symbol 613 MovieClip | Uses:621 | Used by:612 |
Symbol 614 MovieClip | ||
Symbol 615 MovieClip | ||
Symbol 616 MovieClip | ||
Symbol 617 MovieClip | ||
Symbol 618 MovieClip | Uses:622 | Used by:612 |
Symbol 612 MovieClip | Uses:613 618 | Used by:825 |
Symbol 631 Bitmap | Used by:632 | |
Symbol 632 Graphic | Uses:631 | Used by:624 |
Symbol 634 Bitmap | Used by:635 | |
Symbol 635 Graphic | Uses:634 | Used by:625 |
Symbol 637 Bitmap | Used by:638 | |
Symbol 638 Graphic | Uses:637 | Used by:626 |
Symbol 639 Graphic | Used by:629 | |
Symbol 624 MovieClip | Uses:632 | Used by:623 |
Symbol 625 MovieClip | Uses:635 | Used by:623 |
Symbol 626 MovieClip | Uses:638 | Used by:623 |
Symbol 627 MovieClip | ||
Symbol 628 MovieClip | ||
Symbol 629 MovieClip | Uses:639 | Used by:623 |
Symbol 623 MovieClip | Uses:624 625 626 629 | Used by:825 |
Symbol 648 Bitmap | Used by:649 | |
Symbol 649 Graphic | Uses:648 | Used by:641 |
Symbol 651 Bitmap | Used by:652 | |
Symbol 652 Graphic | Uses:651 | Used by:642 |
Symbol 654 Bitmap | Used by:655 | |
Symbol 655 Graphic | Uses:654 | Used by:643 |
Symbol 656 Graphic | Used by:646 | |
Symbol 641 MovieClip | Uses:649 | Used by:640 |
Symbol 642 MovieClip | Uses:652 | Used by:640 |
Symbol 643 MovieClip | Uses:655 | Used by:640 |
Symbol 644 MovieClip | ||
Symbol 645 MovieClip | ||
Symbol 646 MovieClip | Uses:656 | Used by:640 |
Symbol 640 MovieClip | Uses:641 642 643 646 | Used by:825 |
Symbol 657 Font | Used by:658 659 660 969 970 971 975 976 | |
Symbol 658 EditableText | Uses:657 | Used by:825 |
Symbol 659 EditableText | Uses:657 | Used by:825 |
Symbol 660 EditableText | Uses:657 | Used by:825 |
Symbol 663 Bitmap | Used by:664 | |
Symbol 664 Graphic | Uses:663 | Used by:665 |
Symbol 665 MovieClip | Uses:664 | Used by:661 |
Symbol 667 Bitmap | Used by:668 | |
Symbol 668 Graphic | Uses:667 | Used by:669 |
Symbol 669 MovieClip | Uses:668 | Used by:661 |
Symbol 671 Bitmap | Used by:672 | |
Symbol 672 Graphic | Uses:671 | Used by:673 |
Symbol 673 MovieClip | Uses:672 | Used by:661 |
Symbol 675 Bitmap | Used by:676 | |
Symbol 676 Graphic | Uses:675 | Used by:677 |
Symbol 677 MovieClip | Uses:676 | Used by:661 |
Symbol 679 Bitmap | Used by:680 | |
Symbol 680 Graphic | Uses:679 | Used by:681 |
Symbol 681 MovieClip | Uses:680 | Used by:661 |
Symbol 683 Bitmap | Used by:684 | |
Symbol 684 Graphic | Uses:683 | Used by:685 |
Symbol 685 MovieClip | Uses:684 | Used by:661 |
Symbol 687 Bitmap | Used by:688 | |
Symbol 688 Graphic | Uses:687 | Used by:689 |
Symbol 689 MovieClip | Uses:688 | Used by:661 |
Symbol 691 Bitmap | Used by:692 | |
Symbol 692 Graphic | Uses:691 | Used by:693 |
Symbol 693 MovieClip | Uses:692 | Used by:661 |
Symbol 695 Bitmap | Used by:696 | |
Symbol 696 Graphic | Uses:695 | Used by:697 |
Symbol 697 MovieClip | Uses:696 | Used by:661 |
Symbol 699 Bitmap | Used by:700 | |
Symbol 700 Graphic | Uses:699 | Used by:701 |
Symbol 701 MovieClip | Uses:700 | Used by:661 |
Symbol 703 Bitmap | Used by:704 | |
Symbol 704 Graphic | Uses:703 | Used by:705 |
Symbol 705 MovieClip | Uses:704 | Used by:661 |
Symbol 707 Bitmap | Used by:708 | |
Symbol 708 Graphic | Uses:707 | Used by:709 |
Symbol 709 MovieClip | Uses:708 | Used by:661 |
Symbol 711 Bitmap | Used by:712 | |
Symbol 712 Graphic | Uses:711 | Used by:713 |
Symbol 713 MovieClip | Uses:712 | Used by:661 |
Symbol 715 Bitmap | Used by:716 | |
Symbol 716 Graphic | Uses:715 | Used by:717 |
Symbol 717 MovieClip | Uses:716 | Used by:661 |
Symbol 719 Bitmap | Used by:720 | |
Symbol 720 Graphic | Uses:719 | Used by:721 |
Symbol 721 MovieClip | Uses:720 | Used by:661 |
Symbol 723 Bitmap | Used by:724 | |
Symbol 724 Graphic | Uses:723 | Used by:725 |
Symbol 725 MovieClip | Uses:724 | Used by:661 |
Symbol 727 Bitmap | Used by:728 | |
Symbol 728 Graphic | Uses:727 | Used by:729 |
Symbol 729 MovieClip | Uses:728 | Used by:661 |
Symbol 731 Bitmap | Used by:732 | |
Symbol 732 Graphic | Uses:731 | Used by:733 |
Symbol 733 MovieClip | Uses:732 | Used by:661 |
Symbol 735 Bitmap | Used by:736 | |
Symbol 736 Graphic | Uses:735 | Used by:737 |
Symbol 737 MovieClip | Uses:736 | Used by:661 |
Symbol 739 Bitmap | Used by:740 | |
Symbol 740 Graphic | Uses:739 | Used by:741 |
Symbol 741 MovieClip | Uses:740 | Used by:661 |
Symbol 743 Bitmap | Used by:744 | |
Symbol 744 Graphic | Uses:743 | Used by:745 |
Symbol 745 MovieClip | Uses:744 | Used by:661 |
Symbol 747 Bitmap | Used by:748 | |
Symbol 748 Graphic | Uses:747 | Used by:749 |
Symbol 749 MovieClip | Uses:748 | Used by:661 |
Symbol 751 Bitmap | Used by:752 | |
Symbol 752 Graphic | Uses:751 | Used by:753 |
Symbol 753 MovieClip | Uses:752 | Used by:661 |
Symbol 755 Bitmap | Used by:756 | |
Symbol 756 Graphic | Uses:755 | Used by:757 |
Symbol 757 MovieClip | Uses:756 | Used by:661 |
Symbol 759 Bitmap | Used by:760 | |
Symbol 760 Graphic | Uses:759 | Used by:761 |
Symbol 761 MovieClip | Uses:760 | Used by:661 |
Symbol 763 Bitmap | Used by:764 | |
Symbol 764 Graphic | Uses:763 | Used by:765 |
Symbol 765 MovieClip | Uses:764 | Used by:661 |
Symbol 767 Bitmap | Used by:768 | |
Symbol 768 Graphic | Uses:767 | Used by:769 |
Symbol 769 MovieClip | Uses:768 | Used by:661 |
Symbol 771 Bitmap | Used by:772 | |
Symbol 772 Graphic | Uses:771 | Used by:773 |
Symbol 773 MovieClip | Uses:772 | Used by:661 |
Symbol 775 Bitmap | Used by:776 | |
Symbol 776 Graphic | Uses:775 | Used by:777 |
Symbol 777 MovieClip | Uses:776 | Used by:661 |
Symbol 779 Bitmap | Used by:780 | |
Symbol 780 Graphic | Uses:779 | Used by:781 |
Symbol 781 MovieClip | Uses:780 | Used by:661 |
Symbol 783 Bitmap | Used by:784 | |
Symbol 784 Graphic | Uses:783 | Used by:785 |
Symbol 785 MovieClip | Uses:784 | Used by:661 |
Symbol 787 Bitmap | Used by:788 | |
Symbol 788 Graphic | Uses:787 | Used by:789 |
Symbol 789 MovieClip | Uses:788 | Used by:661 |
Symbol 791 Bitmap | Used by:792 | |
Symbol 792 Graphic | Uses:791 | Used by:793 |
Symbol 793 MovieClip | Uses:792 | Used by:661 |
Symbol 795 Bitmap | Used by:796 | |
Symbol 796 Graphic | Uses:795 | Used by:797 |
Symbol 797 MovieClip | Uses:796 | Used by:661 |
Symbol 799 Bitmap | Used by:800 | |
Symbol 800 Graphic | Uses:799 | Used by:801 |
Symbol 801 MovieClip | Uses:800 | Used by:661 |
Symbol 803 Bitmap | Used by:804 | |
Symbol 804 Graphic | Uses:803 | Used by:805 |
Symbol 805 MovieClip | Uses:804 | Used by:661 |
Symbol 807 Bitmap | Used by:808 | |
Symbol 808 Graphic | Uses:807 | Used by:809 |
Symbol 809 MovieClip | Uses:808 | Used by:661 |
Symbol 811 Bitmap | Used by:812 | |
Symbol 812 Graphic | Uses:811 | Used by:813 |
Symbol 813 MovieClip | Uses:812 | Used by:661 |
Symbol 815 Bitmap | Used by:816 | |
Symbol 816 Graphic | Uses:815 | Used by:817 |
Symbol 817 MovieClip | Uses:816 | Used by:661 |
Symbol 819 Bitmap | Used by:820 | |
Symbol 820 Graphic | Uses:819 | Used by:821 |
Symbol 821 MovieClip | Uses:820 | Used by:661 |
Symbol 661 MovieClip | Uses:665 669 673 677 681 685 689 693 697 701 705 709 713 717 721 725 729 733 737 741 745 749 753 757 761 765 769 773 777 781 785 789 793 797 801 805 809 813 817 821 | Used by:825 |
Symbol 823 Bitmap | Used by:824 | |
Symbol 824 Graphic | Uses:823 | Used by:825 |
Symbol 825 MovieClip | Uses:490 553 572 601 612 623 640 658 659 660 661 824 | Used by:Timeline |
Symbol 827 Graphic | Used by:826 | |
Symbol 828 Graphic | Used by:826 | |
Symbol 829 Graphic | Used by:826 | |
Symbol 830 Graphic | Used by:826 | |
Symbol 831 Graphic | Used by:826 | |
Symbol 832 Graphic | Used by:826 | |
Symbol 833 Graphic | Used by:826 | |
Symbol 834 Graphic | Used by:826 | |
Symbol 835 Graphic | Used by:826 | |
Symbol 836 Graphic | Used by:826 | |
Symbol 838 Bitmap | Used by:839 | |
Symbol 839 Graphic | Uses:838 | Used by:826 |
Symbol 841 Bitmap | Used by:842 | |
Symbol 842 Graphic | Uses:841 | Used by:826 |
Symbol 844 Bitmap | Used by:845 | |
Symbol 845 Graphic | Uses:844 | Used by:826 |
Symbol 847 Bitmap | Used by:848 | |
Symbol 848 Graphic | Uses:847 | Used by:826 |
Symbol 850 Bitmap | Used by:851 | |
Symbol 851 Graphic | Uses:850 | Used by:826 |
Symbol 853 Bitmap | Used by:854 | |
Symbol 854 Graphic | Uses:853 | Used by:826 |
Symbol 856 Bitmap | Used by:857 | |
Symbol 857 Graphic | Uses:856 | Used by:826 |
Symbol 859 Bitmap | Used by:860 | |
Symbol 860 Graphic | Uses:859 | Used by:826 |
Symbol 862 Bitmap | Used by:863 | |
Symbol 863 Graphic | Uses:862 | Used by:826 |
Symbol 865 Bitmap | Used by:866 | |
Symbol 866 Graphic | Uses:865 | Used by:826 |
Symbol 826 MovieClip | Uses:827 828 829 830 831 832 833 834 835 836 839 842 845 848 851 854 857 860 863 866 | Used by:974 |
Symbol 875 Bitmap | Used by:876 | |
Symbol 876 Graphic | Uses:875 | Used by:868 |
Symbol 877 Graphic | Used by:868 | |
Symbol 878 Graphic | Used by:868 | |
Symbol 879 Graphic | Used by:868 | |
Symbol 880 Graphic | Used by:868 | |
Symbol 881 Graphic | Used by:868 | |
Symbol 882 Graphic | Used by:868 | |
Symbol 883 Graphic | Used by:868 | |
Symbol 884 Graphic | Used by:868 | |
Symbol 886 Bitmap | Used by:887 | |
Symbol 887 Graphic | Uses:886 | Used by:869 |
Symbol 888 Graphic | Used by:869 | |
Symbol 889 Graphic | Used by:869 | |
Symbol 890 Graphic | Used by:869 | |
Symbol 891 Graphic | Used by:869 | |
Symbol 892 Graphic | Used by:869 | |
Symbol 893 Graphic | Used by:869 | |
Symbol 894 Graphic | Used by:869 | |
Symbol 895 Graphic | Used by:869 | |
Symbol 897 Bitmap | Used by:898 | |
Symbol 898 Graphic | Uses:897 | Used by:870 |
Symbol 899 Graphic | Used by:870 | |
Symbol 900 Graphic | Used by:870 | |
Symbol 901 Graphic | Used by:870 | |
Symbol 902 Graphic | Used by:870 | |
Symbol 903 Graphic | Used by:870 | |
Symbol 904 Graphic | Used by:870 | |
Symbol 905 Graphic | Used by:870 | |
Symbol 906 Graphic | Used by:870 | |
Symbol 907 Graphic | Used by:873 | |
Symbol 868 MovieClip | Uses:876 877 878 879 880 881 882 883 884 | Used by:867 |
Symbol 869 MovieClip | Uses:887 888 889 890 891 892 893 894 895 | Used by:867 |
Symbol 870 MovieClip | Uses:898 899 900 901 902 903 904 905 906 | Used by:867 |
Symbol 871 MovieClip | ||
Symbol 872 MovieClip | ||
Symbol 873 MovieClip | Uses:907 | Used by:867 |
Symbol 867 MovieClip | Uses:868 869 870 873 | Used by:974 |
Symbol 916 Bitmap | Used by:917 | |
Symbol 917 Graphic | Uses:916 | Used by:909 |
Symbol 918 Graphic | Used by:914 | |
Symbol 909 MovieClip | Uses:917 | Used by:908 |
Symbol 910 MovieClip | ||
Symbol 911 MovieClip | ||
Symbol 912 MovieClip | ||
Symbol 913 MovieClip | ||
Symbol 914 MovieClip | Uses:918 | Used by:908 |
Symbol 908 MovieClip | Uses:909 914 | Used by:974 |
Symbol 927 Bitmap | Used by:928 | |
Symbol 928 Graphic | Uses:927 | Used by:920 |
Symbol 929 Graphic | Used by:925 | |
Symbol 920 MovieClip | Uses:928 | Used by:919 |
Symbol 921 MovieClip | ||
Symbol 922 MovieClip | ||
Symbol 923 MovieClip | ||
Symbol 924 MovieClip | ||
Symbol 925 MovieClip | Uses:929 | Used by:919 |
Symbol 919 MovieClip | Uses:920 925 | Used by:974 |
Symbol 938 Bitmap | Used by:939 | |
Symbol 939 Graphic | Uses:938 | Used by:931 |
Symbol 940 Graphic | Used by:931 | |
Symbol 941 Graphic | Used by:931 | |
Symbol 942 Graphic | Used by:931 | |
Symbol 943 Graphic | Used by:931 | |
Symbol 944 Graphic | Used by:936 | |
Symbol 931 MovieClip | Uses:939 940 941 942 943 | Used by:930 |
Symbol 932 MovieClip | ||
Symbol 933 MovieClip | ||
Symbol 934 MovieClip | ||
Symbol 935 MovieClip | ||
Symbol 936 MovieClip | Uses:944 | Used by:930 |
Symbol 930 MovieClip | Uses:931 936 | Used by:974 |
Symbol 947 Bitmap | Used by:948 | |
Symbol 948 Graphic | Uses:947 | Used by:949 |
Symbol 949 MovieClip | Uses:948 | Used by:945 |
Symbol 951 Bitmap | Used by:952 | |
Symbol 952 Graphic | Uses:951 | Used by:953 |
Symbol 953 MovieClip | Uses:952 | Used by:945 |
Symbol 955 Bitmap | Used by:956 | |
Symbol 956 Graphic | Uses:955 | Used by:957 |
Symbol 957 MovieClip | Uses:956 | Used by:945 |
Symbol 959 Bitmap | Used by:960 | |
Symbol 960 Graphic | Uses:959 | Used by:961 |
Symbol 961 MovieClip | Uses:960 | Used by:945 |
Symbol 963 Bitmap | Used by:964 | |
Symbol 964 Graphic | Uses:963 | Used by:965 |
Symbol 965 MovieClip | Uses:964 | Used by:945 |
Symbol 945 MovieClip | Uses:949 953 957 961 965 | Used by:974 |
Symbol 967 Bitmap | Used by:968 | |
Symbol 968 Graphic | Uses:967 | Used by:974 |
Symbol 969 EditableText | Uses:657 | Used by:974 |
Symbol 970 EditableText | Uses:657 | Used by:974 |
Symbol 971 EditableText | Uses:657 | Used by:974 |
Symbol 973 Graphic | Used by:972 | |
Symbol 972 MovieClip | Uses:973 | Used by:974 |
Symbol 974 MovieClip | Uses:826 867 908 919 930 945 968 969 970 971 972 | Used by:Timeline |
Symbol 975 EditableText | Uses:657 | Used by:1048 |
Symbol 976 EditableText | Uses:657 | Used by:1048 |
Symbol 977 Graphic | Used by:1006 | |
Symbol 979 Bitmap | Used by:980 | |
Symbol 980 Graphic | Uses:979 | Used by:981 |
Symbol 981 MovieClip | Uses:980 | Used by:1006 |
Symbol 990 Bitmap | Used by:991 | |
Symbol 991 Graphic | Uses:990 | Used by:992 |
Symbol 992 MovieClip | Uses:991 | Used by:983 |
Symbol 993 Graphic | Used by:988 | |
Symbol 983 MovieClip | Uses:992 | Used by:982 |
Symbol 984 MovieClip | ||
Symbol 985 MovieClip | ||
Symbol 986 MovieClip | ||
Symbol 987 MovieClip | ||
Symbol 988 MovieClip | Uses:993 | Used by:982 |
Symbol 982 MovieClip | Uses:983 988 | Used by:1006 |
Symbol 1002 Bitmap | Used by:1003 | |
Symbol 1003 Graphic | Uses:1002 | Used by:1004 |
Symbol 1004 MovieClip | Uses:1003 | Used by:995 |
Symbol 1005 Graphic | Used by:1000 | |
Symbol 995 MovieClip | Uses:1004 | Used by:994 |
Symbol 996 MovieClip | ||
Symbol 997 MovieClip | ||
Symbol 998 MovieClip | ||
Symbol 999 MovieClip | ||
Symbol 1000 MovieClip | Uses:1005 | Used by:994 |
Symbol 994 MovieClip | Uses:995 1000 | Used by:1006 |
Symbol 1006 MovieClip | Uses:977 981 982 994 | Used by:1048 |
Symbol 1015 Bitmap | Used by:1016 | |
Symbol 1016 Graphic | Uses:1015 | Used by:1008 |
Symbol 1017 Graphic | Used by:1008 | |
Symbol 1018 Graphic | Used by:1008 | |
Symbol 1019 Graphic | Used by:1008 | |
Symbol 1020 Graphic | Used by:1008 | |
Symbol 1021 Graphic | Used by:1008 | |
Symbol 1022 Graphic | Used by:1008 | |
Symbol 1023 Graphic | Used by:1008 | |
Symbol 1024 Graphic | Used by:1008 | |
Symbol 1026 Bitmap | Used by:1027 | |
Symbol 1027 Graphic | Uses:1026 | Used by:1009 |
Symbol 1028 Graphic | Used by:1009 | |
Symbol 1029 Graphic | Used by:1009 | |
Symbol 1030 Graphic | Used by:1009 | |
Symbol 1031 Graphic | Used by:1009 | |
Symbol 1032 Graphic | Used by:1009 | |
Symbol 1033 Graphic | Used by:1009 | |
Symbol 1034 Graphic | Used by:1009 | |
Symbol 1035 Graphic | Used by:1009 | |
Symbol 1037 Bitmap | Used by:1038 | |
Symbol 1038 Graphic | Uses:1037 | Used by:1010 |
Symbol 1039 Graphic | Used by:1010 | |
Symbol 1040 Graphic | Used by:1010 | |
Symbol 1041 Graphic | Used by:1010 | |
Symbol 1042 Graphic | Used by:1010 | |
Symbol 1043 Graphic | Used by:1010 | |
Symbol 1044 Graphic | Used by:1010 | |
Symbol 1045 Graphic | Used by:1010 | |
Symbol 1046 Graphic | Used by:1010 | |
Symbol 1047 Graphic | Used by:1013 | |
Symbol 1008 MovieClip | Uses:1016 1017 1018 1019 1020 1021 1022 1023 1024 | Used by:1007 |
Symbol 1009 MovieClip | Uses:1027 1028 1029 1030 1031 1032 1033 1034 1035 | Used by:1007 |
Symbol 1010 MovieClip | Uses:1038 1039 1040 1041 1042 1043 1044 1045 1046 | Used by:1007 |
Symbol 1011 MovieClip | ||
Symbol 1012 MovieClip | ||
Symbol 1013 MovieClip | Uses:1047 | Used by:1007 |
Symbol 1007 MovieClip | Uses:1008 1009 1010 1013 | Used by:1048 |
Symbol 1048 MovieClip | Uses:975 976 1006 1007 | Used by:Timeline |
Symbol 1050 Graphic | Used by:1049 | |
Symbol 1051 Graphic | Used by:1049 | |
Symbol 1052 Graphic | Used by:1049 | |
Symbol 1053 Graphic | Used by:1049 | |
Symbol 1054 Graphic | Used by:1049 | |
Symbol 1055 Graphic | Used by:1049 | |
Symbol 1056 Graphic | Used by:1049 | |
Symbol 1057 Graphic | Used by:1049 | |
Symbol 1059 Bitmap | Used by:1060 | |
Symbol 1060 Graphic | Uses:1059 | Used by:1049 |
Symbol 1062 Bitmap | Used by:1063 | |
Symbol 1063 Graphic | Uses:1062 | Used by:1049 |
Symbol 1065 Bitmap | Used by:1066 | |
Symbol 1066 Graphic | Uses:1065 | Used by:1049 |
Symbol 1068 Bitmap | Used by:1069 | |
Symbol 1069 Graphic | Uses:1068 | Used by:1049 |
Symbol 1071 Bitmap | Used by:1072 | |
Symbol 1072 Graphic | Uses:1071 | Used by:1049 |
Symbol 1074 Bitmap | Used by:1075 | |
Symbol 1075 Graphic | Uses:1074 | Used by:1049 |
Symbol 1077 Bitmap | Used by:1078 | |
Symbol 1078 Graphic | Uses:1077 | Used by:1049 |
Symbol 1080 Bitmap | Used by:1081 | |
Symbol 1081 Graphic | Uses:1080 | Used by:1049 |
Symbol 1049 MovieClip | Uses:1050 1051 1052 1053 1054 1055 1056 1057 1060 1063 1066 1069 1072 1075 1078 1081 | Used by:1139 |
Symbol 1090 Bitmap | Used by:1091 | |
Symbol 1091 Graphic | Uses:1090 | Used by:1083 |
Symbol 1092 Graphic | Used by:1083 | |
Symbol 1093 Graphic | Used by:1083 | |
Symbol 1094 Graphic | Used by:1083 | |
Symbol 1095 Graphic | Used by:1083 | |
Symbol 1096 Graphic | Used by:1083 | |
Symbol 1097 Graphic | Used by:1083 | |
Symbol 1098 Graphic | Used by:1083 | |
Symbol 1099 Graphic | Used by:1083 | |
Symbol 1101 Bitmap | Used by:1102 | |
Symbol 1102 Graphic | Uses:1101 | Used by:1084 |
Symbol 1103 Graphic | Used by:1084 | |
Symbol 1104 Graphic | Used by:1084 | |
Symbol 1105 Graphic | Used by:1084 | |
Symbol 1106 Graphic | Used by:1084 | |
Symbol 1107 Graphic | Used by:1084 | |
Symbol 1108 Graphic | Used by:1084 | |
Symbol 1109 Graphic | Used by:1084 | |
Symbol 1110 Graphic | Used by:1084 | |
Symbol 1112 Bitmap | Used by:1113 | |
Symbol 1113 Graphic | Uses:1112 | Used by:1085 |
Symbol 1114 Graphic | Used by:1085 | |
Symbol 1115 Graphic | Used by:1085 | |
Symbol 1116 Graphic | Used by:1085 | |
Symbol 1117 Graphic | Used by:1085 | |
Symbol 1118 Graphic | Used by:1085 | |
Symbol 1119 Graphic | Used by:1085 | |
Symbol 1120 Graphic | Used by:1085 | |
Symbol 1121 Graphic | Used by:1085 | |
Symbol 1122 Graphic | Used by:1088 | |
Symbol 1083 MovieClip | Uses:1091 1092 1093 1094 1095 1096 1097 1098 1099 | Used by:1082 |
Symbol 1084 MovieClip | Uses:1102 1103 1104 1105 1106 1107 1108 1109 1110 | Used by:1082 |
Symbol 1085 MovieClip | Uses:1113 1114 1115 1116 1117 1118 1119 1120 1121 | Used by:1082 |
Symbol 1086 MovieClip | ||
Symbol 1087 MovieClip | ||
Symbol 1088 MovieClip | Uses:1122 | Used by:1082 |
Symbol 1082 MovieClip | Uses:1083 1084 1085 1088 | Used by:1139 |
Symbol 1123 Bitmap | Used by:1124 | |
Symbol 1124 Graphic | Uses:1123 | Used by:1125 |
Symbol 1125 MovieClip | Uses:1124 | Used by:1139 |
Symbol 1126 Bitmap | Used by:1127 | |
Symbol 1127 Graphic | Uses:1126 | Used by:1128 |
Symbol 1128 MovieClip | Uses:1127 | Used by:1139 |
Symbol 1129 Bitmap | Used by:1130 | |
Symbol 1130 Graphic | Uses:1129 | Used by:1131 |
Symbol 1131 MovieClip | Uses:1130 | Used by:1139 |
Symbol 1132 Bitmap | Used by:1133 | |
Symbol 1133 Graphic | Uses:1132 | Used by:1134 |
Symbol 1134 MovieClip | Uses:1133 | Used by:1139 |
Symbol 1136 Bitmap | Used by:1137 | |
Symbol 1137 Graphic | Uses:1136 | Used by:1138 |
Symbol 1138 MovieClip | Uses:1137 | Used by:1139 |
Symbol 1139 MovieClip | Uses:1049 1082 1125 1128 1131 1134 1138 | Used by:Timeline |
Symbol 1148 Bitmap | Used by:1149 | |
Symbol 1149 Graphic | Uses:1148 | Used by:1141 |
Symbol 1150 Graphic | Used by:1141 | |
Symbol 1151 Graphic | Used by:1141 | |
Symbol 1152 Graphic | Used by:1141 | |
Symbol 1153 Graphic | Used by:1141 | |
Symbol 1154 Graphic | Used by:1141 | |
Symbol 1155 Graphic | Used by:1141 | |
Symbol 1156 Graphic | Used by:1141 | |
Symbol 1157 Graphic | Used by:1141 | |
Symbol 1158 Graphic | Used by:1146 | |
Symbol 1141 MovieClip | Uses:1149 1150 1151 1152 1153 1154 1155 1156 1157 | Used by:1140 |
Symbol 1142 MovieClip | ||
Symbol 1143 MovieClip | ||
Symbol 1144 MovieClip | ||
Symbol 1145 MovieClip | ||
Symbol 1146 MovieClip | Uses:1158 | Used by:1140 |
Symbol 1140 MovieClip | Uses:1141 1146 | Used by:Timeline |
Symbol 1159 MovieClip | Used by:Timeline | |
Symbol 1160 MovieClip | Used by:Timeline |
Instance Names
"explosion41" | Frame 1 | Symbol 108 MovieClip |
"portal1" | Frame 1 | Symbol 109 MovieClip |
"rigrapthing1" | Frame 1 | Symbol 1159 MovieClip |
"click2" | Frame 1 | Symbol 1160 MovieClip |
"orig_port" | Frame 1 | Symbol 7 MovieClip |
"orig_lava" | Frame 1 | Symbol 11 MovieClip |
"orig_wall" | Frame 1 | Symbol 15 MovieClip |
"orig_move" | Frame 1 | Symbol 19 MovieClip |
"orig_en" | Frame 1 | Symbol 23 MovieClip |
"guy1" | Frame 1 | Symbol 27 MovieClip |
"end1" | Frame 1 | Symbol 31 MovieClip |
"portalin1" | Frame 1 | Symbol 32 MovieClip |
"explosion15" | Frame 1 | Symbol 59 MovieClip |
"ingamemenu1" | Frame 1 | Symbol 205 MovieClip |
"mainmenu1" | Frame 1 | Symbol 489 MovieClip |
"playmenu1" | Frame 1 | Symbol 825 MovieClip |
"challenges1" | Frame 1 | Symbol 974 MovieClip |
"credits2" | Frame 1 | Symbol 1048 MovieClip |
"trophiesmenu1" | Frame 1 | Symbol 1139 MovieClip |
"winnerbutton1" | Frame 1 | Symbol 1140 MovieClip |
"normal" | Symbol 117 MovieClip Frame 1 | Symbol 118 MovieClip |
"mouse_over" | Symbol 117 MovieClip Frame 1 | Symbol 119 MovieClip |
"button_down" | Symbol 117 MovieClip Frame 1 | Symbol 120 MovieClip |
"hot_zone" | Symbol 117 MovieClip Frame 1 | Symbol 123 MovieClip |
"normal" | Symbol 158 MovieClip Frame 1 | Symbol 159 MovieClip |
"mouse_over" | Symbol 158 MovieClip Frame 1 | Symbol 160 MovieClip |
"button_down" | Symbol 158 MovieClip Frame 1 | Symbol 161 MovieClip |
"hot_zone" | Symbol 158 MovieClip Frame 1 | Symbol 164 MovieClip |
"normal" | Symbol 187 MovieClip Frame 1 | Symbol 188 MovieClip |
"mouse_over" | Symbol 187 MovieClip Frame 1 | Symbol 188 MovieClip |
"button_down" | Symbol 187 MovieClip Frame 1 | Symbol 188 MovieClip |
"hot_zone" | Symbol 187 MovieClip Frame 1 | Symbol 193 MovieClip |
"titlebar1" | Symbol 205 MovieClip Frame 1 | Symbol 116 MovieClip |
"xingamemenu1" | Symbol 205 MovieClip Frame 1 | Symbol 117 MovieClip |
"stanley1" | Symbol 205 MovieClip Frame 1 | Symbol 157 MovieClip |
"quit1" | Symbol 205 MovieClip Frame 1 | Symbol 158 MovieClip |
"restart1" | Symbol 205 MovieClip Frame 1 | Symbol 187 MovieClip |
"normal" | Symbol 352 MovieClip Frame 1 | Symbol 353 MovieClip |
"mouse_over" | Symbol 352 MovieClip Frame 1 | Symbol 354 MovieClip |
"button_down" | Symbol 352 MovieClip Frame 1 | Symbol 355 MovieClip |
"hot_zone" | Symbol 352 MovieClip Frame 1 | Symbol 358 MovieClip |
"normal" | Symbol 381 MovieClip Frame 1 | Symbol 382 MovieClip |
"mouse_over" | Symbol 381 MovieClip Frame 1 | Symbol 382 MovieClip |
"button_down" | Symbol 381 MovieClip Frame 1 | Symbol 382 MovieClip |
"hot_zone" | Symbol 381 MovieClip Frame 1 | Symbol 387 MovieClip |
"normal" | Symbol 402 MovieClip Frame 1 | Symbol 403 MovieClip |
"mouse_over" | Symbol 402 MovieClip Frame 1 | Symbol 404 MovieClip |
"button_down" | Symbol 402 MovieClip Frame 1 | Symbol 405 MovieClip |
"hot_zone" | Symbol 402 MovieClip Frame 1 | Symbol 408 MovieClip |
"normal" | Symbol 443 MovieClip Frame 1 | Symbol 444 MovieClip |
"mouse_over" | Symbol 443 MovieClip Frame 1 | Symbol 444 MovieClip |
"button_down" | Symbol 443 MovieClip Frame 1 | Symbol 444 MovieClip |
"hot_zone" | Symbol 443 MovieClip Frame 1 | Symbol 449 MovieClip |
"menu1" | Symbol 489 MovieClip Frame 1 | Symbol 206 MovieClip |
"menu_from_other1" | Symbol 489 MovieClip Frame 1 | Symbol 279 MovieClip |
"play1" | Symbol 489 MovieClip Frame 1 | Symbol 352 MovieClip |
"gotochallenges1" | Symbol 489 MovieClip Frame 1 | Symbol 381 MovieClip |
"gototrophies1" | Symbol 489 MovieClip Frame 1 | Symbol 402 MovieClip |
"credits1" | Symbol 489 MovieClip Frame 1 | Symbol 443 MovieClip |
"no_chal1" | Symbol 489 MovieClip Frame 1 | Symbol 486 MovieClip |
"chk_tro_arrow1" | Symbol 489 MovieClip Frame 1 | Symbol 487 MovieClip |
"normal" | Symbol 553 MovieClip Frame 1 | Symbol 554 MovieClip |
"mouse_over" | Symbol 553 MovieClip Frame 1 | Symbol 554 MovieClip |
"button_down" | Symbol 553 MovieClip Frame 1 | Symbol 554 MovieClip |
"hot_zone" | Symbol 553 MovieClip Frame 1 | Symbol 559 MovieClip |
"normal" | Symbol 572 MovieClip Frame 1 | Symbol 573 MovieClip |
"mouse_over" | Symbol 572 MovieClip Frame 1 | Symbol 574 MovieClip |
"button_down" | Symbol 572 MovieClip Frame 1 | Symbol 575 MovieClip |
"hot_zone" | Symbol 572 MovieClip Frame 1 | Symbol 578 MovieClip |
"normal" | Symbol 601 MovieClip Frame 1 | Symbol 602 MovieClip |
"mouse_over" | Symbol 601 MovieClip Frame 1 | Symbol 602 MovieClip |
"button_down" | Symbol 601 MovieClip Frame 1 | Symbol 602 MovieClip |
"hot_zone" | Symbol 601 MovieClip Frame 1 | Symbol 607 MovieClip |
"normal" | Symbol 612 MovieClip Frame 1 | Symbol 613 MovieClip |
"mouse_over" | Symbol 612 MovieClip Frame 1 | Symbol 613 MovieClip |
"button_down" | Symbol 612 MovieClip Frame 1 | Symbol 613 MovieClip |
"hot_zone" | Symbol 612 MovieClip Frame 1 | Symbol 618 MovieClip |
"normal" | Symbol 623 MovieClip Frame 1 | Symbol 624 MovieClip |
"mouse_over" | Symbol 623 MovieClip Frame 1 | Symbol 625 MovieClip |
"button_down" | Symbol 623 MovieClip Frame 1 | Symbol 626 MovieClip |
"hot_zone" | Symbol 623 MovieClip Frame 1 | Symbol 629 MovieClip |
"normal" | Symbol 640 MovieClip Frame 1 | Symbol 641 MovieClip |
"mouse_over" | Symbol 640 MovieClip Frame 1 | Symbol 642 MovieClip |
"button_down" | Symbol 640 MovieClip Frame 1 | Symbol 643 MovieClip |
"hot_zone" | Symbol 640 MovieClip Frame 1 | Symbol 646 MovieClip |
"_1" | Symbol 661 MovieClip Frame 1 | Symbol 665 MovieClip |
"_2" | Symbol 661 MovieClip Frame 2 | Symbol 669 MovieClip |
"_3" | Symbol 661 MovieClip Frame 3 | Symbol 673 MovieClip |
"_4" | Symbol 661 MovieClip Frame 4 | Symbol 677 MovieClip |
"_5" | Symbol 661 MovieClip Frame 5 | Symbol 681 MovieClip |
"_6" | Symbol 661 MovieClip Frame 6 | Symbol 685 MovieClip |
"_7" | Symbol 661 MovieClip Frame 7 | Symbol 689 MovieClip |
"_8" | Symbol 661 MovieClip Frame 8 | Symbol 693 MovieClip |
"_9" | Symbol 661 MovieClip Frame 9 | Symbol 697 MovieClip |
"_10" | Symbol 661 MovieClip Frame 10 | Symbol 701 MovieClip |
"_11" | Symbol 661 MovieClip Frame 11 | Symbol 705 MovieClip |
"_12" | Symbol 661 MovieClip Frame 12 | Symbol 709 MovieClip |
"_13" | Symbol 661 MovieClip Frame 13 | Symbol 713 MovieClip |
"_14" | Symbol 661 MovieClip Frame 14 | Symbol 717 MovieClip |
"_15" | Symbol 661 MovieClip Frame 15 | Symbol 721 MovieClip |
"_16" | Symbol 661 MovieClip Frame 16 | Symbol 725 MovieClip |
"_17" | Symbol 661 MovieClip Frame 17 | Symbol 729 MovieClip |
"_18" | Symbol 661 MovieClip Frame 18 | Symbol 733 MovieClip |
"_19" | Symbol 661 MovieClip Frame 19 | Symbol 737 MovieClip |
"_20" | Symbol 661 MovieClip Frame 20 | Symbol 741 MovieClip |
"_21" | Symbol 661 MovieClip Frame 21 | Symbol 745 MovieClip |
"_22" | Symbol 661 MovieClip Frame 22 | Symbol 749 MovieClip |
"_23" | Symbol 661 MovieClip Frame 23 | Symbol 753 MovieClip |
"_24" | Symbol 661 MovieClip Frame 24 | Symbol 757 MovieClip |
"_25" | Symbol 661 MovieClip Frame 25 | Symbol 761 MovieClip |
"_26" | Symbol 661 MovieClip Frame 26 | Symbol 765 MovieClip |
"_27" | Symbol 661 MovieClip Frame 27 | Symbol 769 MovieClip |
"_28" | Symbol 661 MovieClip Frame 28 | Symbol 773 MovieClip |
"_29" | Symbol 661 MovieClip Frame 29 | Symbol 777 MovieClip |
"_30" | Symbol 661 MovieClip Frame 30 | Symbol 781 MovieClip |
"_31" | Symbol 661 MovieClip Frame 31 | Symbol 785 MovieClip |
"_32" | Symbol 661 MovieClip Frame 32 | Symbol 789 MovieClip |
"_33" | Symbol 661 MovieClip Frame 33 | Symbol 793 MovieClip |
"_34" | Symbol 661 MovieClip Frame 34 | Symbol 797 MovieClip |
"_35" | Symbol 661 MovieClip Frame 35 | Symbol 801 MovieClip |
"_36" | Symbol 661 MovieClip Frame 36 | Symbol 805 MovieClip |
"_37" | Symbol 661 MovieClip Frame 37 | Symbol 809 MovieClip |
"_38" | Symbol 661 MovieClip Frame 38 | Symbol 813 MovieClip |
"_39" | Symbol 661 MovieClip Frame 39 | Symbol 817 MovieClip |
"_40" | Symbol 661 MovieClip Frame 40 | Symbol 821 MovieClip |
"playmenutitle1" | Symbol 825 MovieClip Frame 1 | Symbol 490 MovieClip |
"gotomain1" | Symbol 825 MovieClip Frame 1 | Symbol 553 MovieClip |
"startlvl1" | Symbol 825 MovieClip Frame 1 | Symbol 572 MovieClip |
"level1" | Symbol 825 MovieClip Frame 1 | Symbol 601 MovieClip |
"level2" | Symbol 825 MovieClip Frame 1 | Symbol 612 MovieClip |
"lvl1" | Symbol 825 MovieClip Frame 1 | Symbol 623 MovieClip |
"lvlmax1" | Symbol 825 MovieClip Frame 1 | Symbol 640 MovieClip |
"leveldisp1" | Symbol 825 MovieClip Frame 1 | Symbol 658 EditableText |
"authordisp1" | Symbol 825 MovieClip Frame 1 | Symbol 659 EditableText |
"namedisp1" | Symbol 825 MovieClip Frame 1 | Symbol 660 EditableText |
"lvl_ico1" | Symbol 825 MovieClip Frame 1 | Symbol 661 MovieClip |
"normal" | Symbol 867 MovieClip Frame 1 | Symbol 868 MovieClip |
"mouse_over" | Symbol 867 MovieClip Frame 1 | Symbol 869 MovieClip |
"button_down" | Symbol 867 MovieClip Frame 1 | Symbol 870 MovieClip |
"hot_zone" | Symbol 867 MovieClip Frame 1 | Symbol 873 MovieClip |
"normal" | Symbol 908 MovieClip Frame 1 | Symbol 909 MovieClip |
"mouse_over" | Symbol 908 MovieClip Frame 1 | Symbol 909 MovieClip |
"button_down" | Symbol 908 MovieClip Frame 1 | Symbol 909 MovieClip |
"hot_zone" | Symbol 908 MovieClip Frame 1 | Symbol 914 MovieClip |
"normal" | Symbol 919 MovieClip Frame 1 | Symbol 920 MovieClip |
"mouse_over" | Symbol 919 MovieClip Frame 1 | Symbol 920 MovieClip |
"button_down" | Symbol 919 MovieClip Frame 1 | Symbol 920 MovieClip |
"hot_zone" | Symbol 919 MovieClip Frame 1 | Symbol 925 MovieClip |
"normal" | Symbol 930 MovieClip Frame 1 | Symbol 931 MovieClip |
"mouse_over" | Symbol 930 MovieClip Frame 1 | Symbol 931 MovieClip |
"button_down" | Symbol 930 MovieClip Frame 1 | Symbol 931 MovieClip |
"hot_zone" | Symbol 930 MovieClip Frame 1 | Symbol 936 MovieClip |
"hideoutico1" | Symbol 945 MovieClip Frame 1 | Symbol 949 MovieClip |
"avoidanceico1" | Symbol 945 MovieClip Frame 2 | Symbol 953 MovieClip |
"battlefieldico1" | Symbol 945 MovieClip Frame 3 | Symbol 957 MovieClip |
"outsidetheboxico1" | Symbol 945 MovieClip Frame 4 | Symbol 961 MovieClip |
"ghostgateico1" | Symbol 945 MovieClip Frame 5 | Symbol 965 MovieClip |
"challengetitle1" | Symbol 974 MovieClip Frame 1 | Symbol 826 MovieClip |
"gotomain2" | Symbol 974 MovieClip Frame 1 | Symbol 867 MovieClip |
"chal1" | Symbol 974 MovieClip Frame 1 | Symbol 908 MovieClip |
"chal2" | Symbol 974 MovieClip Frame 1 | Symbol 919 MovieClip |
"startchal1" | Symbol 974 MovieClip Frame 1 | Symbol 930 MovieClip |
"chal_icon1" | Symbol 974 MovieClip Frame 1 | Symbol 945 MovieClip |
"chaldisp_1" | Symbol 974 MovieClip Frame 1 | Symbol 969 EditableText |
"authordisp_1" | Symbol 974 MovieClip Frame 1 | Symbol 970 EditableText |
"namedisp_1" | Symbol 974 MovieClip Frame 1 | Symbol 971 EditableText |
"chk_menu_arrow1" | Symbol 974 MovieClip Frame 1 | Symbol 972 MovieClip |
"normal" | Symbol 982 MovieClip Frame 1 | Symbol 983 MovieClip |
"mouse_over" | Symbol 982 MovieClip Frame 1 | Symbol 983 MovieClip |
"button_down" | Symbol 982 MovieClip Frame 1 | Symbol 983 MovieClip |
"hot_zone" | Symbol 982 MovieClip Frame 1 | Symbol 988 MovieClip |
"normal" | Symbol 994 MovieClip Frame 1 | Symbol 995 MovieClip |
"mouse_over" | Symbol 994 MovieClip Frame 1 | Symbol 995 MovieClip |
"button_down" | Symbol 994 MovieClip Frame 1 | Symbol 995 MovieClip |
"hot_zone" | Symbol 994 MovieClip Frame 1 | Symbol 1000 MovieClip |
"slider1" | Symbol 1006 MovieClip Frame 1 | Symbol 981 MovieClip |
"upbutton1" | Symbol 1006 MovieClip Frame 1 | Symbol 982 MovieClip |
"downbutton1" | Symbol 1006 MovieClip Frame 1 | Symbol 994 MovieClip |
"normal" | Symbol 1007 MovieClip Frame 1 | Symbol 1008 MovieClip |
"mouse_over" | Symbol 1007 MovieClip Frame 1 | Symbol 1009 MovieClip |
"button_down" | Symbol 1007 MovieClip Frame 1 | Symbol 1010 MovieClip |
"hot_zone" | Symbol 1007 MovieClip Frame 1 | Symbol 1013 MovieClip |
"cred_shadow1" | Symbol 1048 MovieClip Frame 1 | Symbol 975 EditableText |
"cred_txt1" | Symbol 1048 MovieClip Frame 1 | Symbol 976 EditableText |
"scroll1" | Symbol 1048 MovieClip Frame 1 | Symbol 1006 MovieClip |
"gotomain3" | Symbol 1048 MovieClip Frame 1 | Symbol 1007 MovieClip |
"normal" | Symbol 1082 MovieClip Frame 1 | Symbol 1083 MovieClip |
"mouse_over" | Symbol 1082 MovieClip Frame 1 | Symbol 1084 MovieClip |
"button_down" | Symbol 1082 MovieClip Frame 1 | Symbol 1085 MovieClip |
"hot_zone" | Symbol 1082 MovieClip Frame 1 | Symbol 1088 MovieClip |
"trophiestitle1" | Symbol 1139 MovieClip Frame 1 | Symbol 1049 MovieClip |
"gotomain4" | Symbol 1139 MovieClip Frame 1 | Symbol 1082 MovieClip |
"veteran_trophies1" | Symbol 1139 MovieClip Frame 1 | Symbol 1125 MovieClip |
"telescope1" | Symbol 1139 MovieClip Frame 1 | Symbol 1128 MovieClip |
"ghost1" | Symbol 1139 MovieClip Frame 1 | Symbol 1131 MovieClip |
"key1" | Symbol 1139 MovieClip Frame 1 | Symbol 1134 MovieClip |
"hammer1" | Symbol 1139 MovieClip Frame 1 | Symbol 1138 MovieClip |
"normal" | Symbol 1140 MovieClip Frame 1 | Symbol 1141 MovieClip |
"mouse_over" | Symbol 1140 MovieClip Frame 1 | Symbol 1141 MovieClip |
"button_down" | Symbol 1140 MovieClip Frame 1 | Symbol 1141 MovieClip |
"hot_zone" | Symbol 1140 MovieClip Frame 1 | Symbol 1146 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "Explosion3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Whosh" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "RigRapThingLow" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "Click2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "_init_globals" |
Labels
"Scene 1" | Frame 2 |
"Scene 1" | Symbol 206 MovieClip Frame 2 |
"Scene 1" | Symbol 279 MovieClip Frame 2 |
"Scene 1" | Symbol 487 MovieClip Frame 2 |
"Scene 1" | Symbol 490 MovieClip Frame 2 |
"Scene 1" | Symbol 826 MovieClip Frame 2 |
"Scene 1" | Symbol 972 MovieClip Frame 2 |
"Scene 1" | Symbol 1049 MovieClip Frame 2 |
|