Frame 1
function bitOR(a, b) {
var _local1 = (a & 1) | (b & 1);
var _local2 = (a >>> 1) | (b >>> 1);
return((_local2 << 1) | _local1);
}
function bitXOR(a, b) {
var _local1 = (a & 1) ^ (b & 1);
var _local2 = (a >>> 1) ^ (b >>> 1);
return((_local2 << 1) | _local1);
}
function bitAND(a, b) {
var _local1 = (a & 1) & (b & 1);
var _local2 = (a >>> 1) & (b >>> 1);
return((_local2 << 1) | _local1);
}
function addme(x, y) {
var _local1 = (x & 65535) + (y & 65535);
var _local2 = ((x >> 16) + (y >> 16)) + (_local1 >> 16);
return((_local2 << 16) | (_local1 & 65535));
}
function rhex(num) {
str = "";
j = 0;
while (j <= 3) {
str = str + (hex_chr.charAt((num >> ((j * 8) + 4)) & 15) + hex_chr.charAt((num >> (j * 8)) & 15));
j++;
}
return(str);
}
function str2blks_MD5(str) {
nblk = ((str.length + 8) >> 6) + 1;
blks = new Array(nblk * 16);
i = 0;
while (i < (nblk * 16)) {
blks[i] = 0;
i++;
}
i = 0;
while (i < str.length) {
blks[i >> 2] = blks[i >> 2] | (str.charCodeAt(i) << ((((str.length * 8) + i) % 4) * 8));
i++;
}
blks[i >> 2] = blks[i >> 2] | (128 << ((((str.length * 8) + i) % 4) * 8));
var _local2 = str.length * 8;
blks[(nblk * 16) - 2] = _local2 & 255;
blks[(nblk * 16) - 2] = blks[(nblk * 16) - 2] | (((_local2 >>> 8) & 255) << 8);
blks[(nblk * 16) - 2] = blks[(nblk * 16) - 2] | (((_local2 >>> 16) & 255) << 16);
blks[(nblk * 16) - 2] = blks[(nblk * 16) - 2] | (((_local2 >>> 24) & 255) << 24);
return(blks);
}
function rol(num, cnt) {
return((num << cnt) | (num >>> (32 - cnt)));
}
function cmn(q, a, b, x, s, t) {
return(addme(rol(addme(addme(a, q), addme(x, t)), s), b));
}
function ff(a, b, c, d, x, s, t) {
return(cmn(bitOR(bitAND(b, c), bitAND(~b, d)), a, b, x, s, t));
}
function gg(a, b, c, d, x, s, t) {
return(cmn(bitOR(bitAND(b, d), bitAND(c, ~d)), a, b, x, s, t));
}
function hh(a, b, c, d, x, s, t) {
return(cmn(bitXOR(bitXOR(b, c), d), a, b, x, s, t));
}
function ii(a, b, c, d, x, s, t) {
return(cmn(bitXOR(c, bitOR(b, ~d)), a, b, x, s, t));
}
function calcMD5(str) {
x = str2blks_MD5(str);
a = 1732584193 /* 0x67452301 */;
b = -271733879;
c = -1732584194;
d = 271733878 /* 0x10325476 */;
var _local1;
i = 0;
while (i < x.length) {
olda = a;
oldb = b;
oldc = c;
oldd = d;
_local1 = 0;
a = ff(a, b, c, d, x[i + 0], 7, -680876936);
d = ff(d, a, b, c, x[i + 1], 12, -389564586);
c = ff(c, d, a, b, x[i + 2], 17, 606105819);
b = ff(b, c, d, a, x[i + 3], 22, -1044525330);
a = ff(a, b, c, d, x[i + 4], 7, -176418897);
d = ff(d, a, b, c, x[i + 5], 12, 1200080426);
c = ff(c, d, a, b, x[i + 6], 17, -1473231341);
b = ff(b, c, d, a, x[i + 7], 22, -45705983);
a = ff(a, b, c, d, x[i + 8], 7, 1770035416);
d = ff(d, a, b, c, x[i + 9], 12, -1958414417);
c = ff(c, d, a, b, x[i + 10], 17, -42063);
b = ff(b, c, d, a, x[i + 11], 22, -1990404162);
a = ff(a, b, c, d, x[i + 12], 7, 1804603682);
d = ff(d, a, b, c, x[i + 13], 12, -40341101);
c = ff(c, d, a, b, x[i + 14], 17, -1502002290);
b = ff(b, c, d, a, x[i + 15], 22, 1236535329);
a = gg(a, b, c, d, x[i + 1], 5, -165796510);
d = gg(d, a, b, c, x[i + 6], 9, -1069501632);
c = gg(c, d, a, b, x[i + 11], 14, 643717713);
b = gg(b, c, d, a, x[i + 0], 20, -373897302);
a = gg(a, b, c, d, x[i + 5], 5, -701558691);
d = gg(d, a, b, c, x[i + 10], 9, 38016083);
c = gg(c, d, a, b, x[i + 15], 14, -660478335);
b = gg(b, c, d, a, x[i + 4], 20, -405537848);
a = gg(a, b, c, d, x[i + 9], 5, 568446438);
d = gg(d, a, b, c, x[i + 14], 9, -1019803690);
c = gg(c, d, a, b, x[i + 3], 14, -187363961);
b = gg(b, c, d, a, x[i + 8], 20, 1163531501);
a = gg(a, b, c, d, x[i + 13], 5, -1444681467);
d = gg(d, a, b, c, x[i + 2], 9, -51403784);
c = gg(c, d, a, b, x[i + 7], 14, 1735328473);
b = gg(b, c, d, a, x[i + 12], 20, -1926607734);
a = hh(a, b, c, d, x[i + 5], 4, -378558);
d = hh(d, a, b, c, x[i + 8], 11, -2022574463);
c = hh(c, d, a, b, x[i + 11], 16, 1839030562);
b = hh(b, c, d, a, x[i + 14], 23, -35309556);
a = hh(a, b, c, d, x[i + 1], 4, -1530992060);
d = hh(d, a, b, c, x[i + 4], 11, 1272893353);
c = hh(c, d, a, b, x[i + 7], 16, -155497632);
b = hh(b, c, d, a, x[i + 10], 23, -1094730640);
a = hh(a, b, c, d, x[i + 13], 4, 681279174);
d = hh(d, a, b, c, x[i + 0], 11, -358537222);
c = hh(c, d, a, b, x[i + 3], 16, -722521979);
b = hh(b, c, d, a, x[i + 6], 23, 76029189);
a = hh(a, b, c, d, x[i + 9], 4, -640364487);
d = hh(d, a, b, c, x[i + 12], 11, -421815835);
c = hh(c, d, a, b, x[i + 15], 16, 530742520);
b = hh(b, c, d, a, x[i + 2], 23, -995338651);
a = ii(a, b, c, d, x[i + 0], 6, -198630844);
d = ii(d, a, b, c, x[i + 7], 10, 1126891415);
c = ii(c, d, a, b, x[i + 14], 15, -1416354905);
b = ii(b, c, d, a, x[i + 5], 21, -57434055);
a = ii(a, b, c, d, x[i + 12], 6, 1700485571);
d = ii(d, a, b, c, x[i + 3], 10, -1894986606);
c = ii(c, d, a, b, x[i + 10], 15, -1051523);
b = ii(b, c, d, a, x[i + 1], 21, -2054922799);
a = ii(a, b, c, d, x[i + 8], 6, 1873313359);
d = ii(d, a, b, c, x[i + 15], 10, -30611744);
c = ii(c, d, a, b, x[i + 6], 15, -1560198380);
b = ii(b, c, d, a, x[i + 13], 21, 1309151649);
a = ii(a, b, c, d, x[i + 4], 6, -145523070);
d = ii(d, a, b, c, x[i + 11], 10, -1120210379);
c = ii(c, d, a, b, x[i + 2], 15, 718787259);
b = ii(b, c, d, a, x[i + 9], 21, -343485551);
a = addme(a, olda);
b = addme(b, oldb);
c = addme(c, oldc);
d = addme(d, oldd);
i = i + 16;
}
return(((rhex(a) + rhex(b)) + rhex(c)) + rhex(d));
}
function strrev(str) {
var _local3 = "";
var _local1 = str.length - 1;
while (_local1 >= 0) {
_local3 = _local3 + str.charAt(_local1);
_local1--;
}
return(_local3);
}
function onConnectionFailed() {
socket.close();
attachMovie("screen_failed", "screen_failed", getNextHighestDepth());
removeMovieClip(game.screen);
}
function sendInceament(incr) {
scr_n = scr_n + incr;
var _local2 = "";
var _local1;
_local1 = 0;
while (_local1 < 7) {
if (_local1 == 3) {
_local2 = _local2 + calcMD5(String(incr));
} else {
_local2 = _local2 + String.fromCharCode(26 + random(95));
}
_local1++;
}
_local2 = rsa.Encode(_local2);
socket.send(_local2);
}
function setScreen(clip_name) {
Rs.splice(0, Rs.length);
var _local1;
var _local4;
var _local2 = scr_n;
_local1 = 0;
while (_local1 < random(4)) {
Rs.push((random(scrs_size) + 1) - _local2);
_local2 = _local2 + Rs[Rs.length - 1];
_local1++;
}
Rs.push(((-_local2) + int(clip_name)) + scr_n);
sendInceament(Rs[0]);
Rs.splice(0, 1);
}
function gotoScreen(clip_name) {
if (game.trans != undefined) {
removeMovieClip(game.trans);
}
game.attachMovie("trans_screen", "trans", 1).next_screen = clip_name;
}
stop();
var hex_chr = "0123456789abcdef";
stop();
if (gn != undefined) {
gn = substring(gn, 0, gn.length - 14);
}
var thePolicySocket = new XMLSocket();
thePolicySocket.onConnect = function (myStatus) {
if (myStatus) {
lv_out.msg = "";
var _local1;
_local1 = 0;
while (_local1 < 128) {
lv_out.msg = lv_out.msg + String.fromCharCode(26 + random(95));
_local1++;
}
lv_out.sendAndLoad("http://www.meetandfuckgames.com/files/secured_key.php", lv_in, "POST");
} else {
onConnectionFailed();
}
};
thePolicySocket.connect("meetandfuckgames.com", 843);
lv_out = new LoadVars();
lv_in = new LoadVars();
lv_in.onLoad = function (success) {
if (success && (lv_in.key != undefined)) {
socket.connect("meetandfuckgames.com", 3001);
}
};
var socket = new XMLSocket();
socket.onConnect = function (success) {
if (success) {
socket.send((strrev(rsa.Encode(gn)) + ",") + lv_in.key);
setScreen("0");
} else {
onConnectionFailed();
}
};
socket.onData = function (msg) {
if (game.screen != undefined) {
removeMovieClip(game.screen);
}
var _local1 = rsa.Decode(strrev(msg));
_local1 = _local1.substr(3, 8);
if (Rs.length == 0) {
game.attachMovie(_local1, "screen", 0);
}
if (Rs.length > 0) {
sendInceament(Rs[0]);
Rs.splice(0, 1);
} else {
game.trans.play();
}
};
socket.onClose = function () {
onConnectionFailed();
};
scrs_size = 5;
scr_n = 1;
var Rs = new Array();
Symbol 12 MovieClip [ad9c8b30] Frame 60
stop();
_root.gotoScreen("screen1");
Symbol 30 MovieClip Frame 39
gotoAndPlay (1);
Symbol 36 MovieClip [024c987e] Frame 1
MNF_btn.onPress = function () {
getURL ("http://www.meetandfuckgames.com/", "_blank");
};
play_btn.onPress = function () {
_root.gotoScreen("1");
};
Symbol 163 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 163 MovieClip Frame 70
gotoRandomHold();
Symbol 163 MovieClip Frame 120
gotoRandomHold();
Symbol 166 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(3) + 1));
}
Symbol 166 MovieClip Frame 22
gotoRandomHold();
Symbol 166 MovieClip Frame 62
gotoRandomHold();
Symbol 166 MovieClip Frame 92
gotoRandomHold();
Symbol 169 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(3) + 1));
}
Symbol 169 MovieClip Frame 30
gotoRandomHold();
Symbol 169 MovieClip Frame 70
gotoRandomHold();
Symbol 169 MovieClip Frame 100
gotoRandomHold();
Symbol 173 MovieClip Frame 1
stop();
aye.aye.aye2._visible = true;
aye.aye.aye1._visible = false;
Symbol 173 MovieClip Frame 2
aye.aye.aye2._visible = false;
aye.aye.aye1._visible = true;
Symbol 173 MovieClip Frame 3
aye.aye.aye2._visible = true;
aye.aye.aye1._visible = false;
Symbol 199 MovieClip Frame 1
stop();
Symbol 199 MovieClip Frame 15
stop();
Symbol 212 MovieClip Frame 1
head1.gotoAndStop(3);
h1.gotoAndStop(30);
h2.gotoAndStop(30);
h3.gotoAndStop(30);
h4.gotoAndStop(30);
h5.gotoAndStop(30);
h6.gotoAndStop(30);
h7.gotoAndStop(30);
h8.gotoAndStop(30);
h9.gotoAndStop(30);
h10.gotoAndStop(30);
h11.gotoAndStop(30);
h12.gotoAndStop(30);
h13.gotoAndStop(30);
h14.gotoAndStop(30);
h15.gotoAndStop(30);
h16.gotoAndStop(30);
Symbol 219 MovieClip [89513e64] Frame 1
next_btn.onPress = function () {
_root.gotoScreen("1");
};
Symbol 240 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 240 MovieClip Frame 60
gotoRandomHold();
Symbol 240 MovieClip Frame 120
gotoRandomHold();
Symbol 292 MovieClip Frame 1
_alpha = 0;
Symbol 333 MovieClip Frame 1
stop();
Symbol 333 MovieClip Frame 2
_parent.cum11.gotoAndPlay(2);
Symbol 333 MovieClip Frame 115
stop();
Symbol 344 MovieClip Frame 1
function changeValue(d_value) {
if (value >= 1) {
return(undefined);
}
i_val++;
value_buf = value_buf + d_value;
if (i_val == buf_vals) {
sendIncreament(value_buf);
value_buf = 0;
i_val = 0;
}
value = value + d_value;
if (value >= 1) {
value = 1;
if (i_val != 0) {
sendIncreament(value_buf + 0.001);
}
} else if (value < 0) {
value = 0;
}
stripe._x = (-(1 - value)) * stripe._width;
}
function sendIncreament(incr) {
if (key_sent) {
var _local2 = "";
var _local1;
_local1 = 0;
while (_local1 < 5) {
if (_local1 == 2) {
_local2 = _local2 + String(incr);
} else {
_local2 = _local2 + String.fromCharCode(26 + random(95));
}
_local1++;
}
socket.send(rsa.Encode(_local2));
}
}
var value = 0;
var value_buf = 0;
var buf_vals = 24;
var i_val = 0;
changeValue(0);
lv_out = new LoadVars();
lv_in = new LoadVars();
lv_in.onLoad = function (success) {
if (success && (lv_in.key != undefined)) {
socket.connect("meetandfuckgames.com", 3000);
}
};
lv_out.msg = "";
var i;
i = 0;
while (i < 128) {
lv_out.msg = lv_out.msg + String.fromCharCode(26 + random(95));
i++;
}
lv_out.sendAndLoad("http://www.meetandfuckgames.com/files/secured_key.php", lv_in, "POST");
var socket = new XMLSocket();
socket.onConnect = function (success) {
if (success) {
socket.send(lv_in.key);
key_sent = true;
sendIncreament(value);
} else {
_root.onConnectionFailed();
}
};
socket.onClose = function () {
_root.onConnectionFailed();
};
socket.onData = function (msg) {
if (value < 1) {
_root.onConnectionFailed();
} else {
_parent.onBarFilled();
}
};
Symbol 369 MovieClip Frame 1
function updateFrameWidth() {
if (frame_width < frame_width_goto) {
frame_width = frame_width + 2;
if (frame_width > frame_width_goto) {
frame_width = frame_width_goto;
}
} else if (frame_width > frame_width_goto) {
frame_width = frame_width - 2;
if (frame_width < frame_width_goto) {
frame_width = frame_width_goto;
}
}
frame_start = 61 - int(frame_width / 2);
}
function onBarFilled() {
btn_cum._visible = true;
}
btn_id = 0;
btn_num = 4;
i = 2;
while (i < btn_num) {
eval ("btn_" + i)._visible = false;
i++;
}
btn_cum._visible = false;
border._x = btn_0._x;
border._y = btn_0._y;
frame_width = 30;
frame_width_goto = 30;
frame_start = 46;
i = 0;
while (i < btn_num) {
eval ("btn_" + i).id = i;
eval ("btn_" + i).onPress = function () {
btn_id = this.id;
border._x = this._x;
border._y = this._y;
if (btn_id == 0) {
frame_width_goto = 30;
_parent.gravi.auto_speed = 0.01;
_parent.act.head1.gotoAndStop(1);
_parent.act.head2.gotoAndStop(1);
_parent.sound.gotoAndStop(1);
} else if (btn_id == 1) {
frame_width_goto = 60;
_parent.gravi.auto_speed = 0.05;
_parent.act.head1.gotoAndStop(2);
_parent.act.head2.gotoAndStop(2);
_parent.sound.gotoAndStop(2);
} else if (btn_id == 2) {
frame_width_goto = 90;
_parent.gravi.auto_speed = 0.1;
_parent.act.head1.gotoAndStop(3);
_parent.act.head2.gotoAndStop(3);
_parent.sound.gotoAndStop(3);
} else if (btn_id == 3) {
frame_width_goto = 120;
_parent.gravi.auto_speed = 0.2;
_parent.act.head1.gotoAndStop(4);
_parent.act.head2.gotoAndStop(4);
_parent.sound.gotoAndStop(4);
}
};
i++;
}
btn_0.onPress();
onEnterFrame = function () {
updateFrameWidth();
if (btn_cum._visible) {
return(undefined);
}
if (bar.value < (btn_id / (btn_num - 1))) {
bar.changeValue(0.001);
if (bar.value >= (btn_id / (btn_num - 1))) {
bar.value = btn_id / (btn_num - 1);
if (!eval ("btn_" + (btn_id + 1))._visible) {
eval ("btn_" + (btn_id + 1))._visible = true;
}
}
}
};
btn_cum.onPress = function () {
_visible = false;
btn_3.onPress();
_parent.gravi.control_mode = 2;
};
Symbol 371 MovieClip Frame 1
stop();
Symbol 373 MovieClip [1e0234d6] Frame 1
stop();
var gravi = new Gravitation(7);
act.gotoAndStop(61);
gravi.move_draw = 0.5;
gravi.swing_draw[0] = 0.5;
gravi.swing_fadeout[0] = 0.15;
gravi.swing_draw[1] = 0.5;
gravi.swing_fadeout[1] = 0.1;
gravi.swing_draw[2] = 0.5;
gravi.swing_fadeout[2] = 0.08;
gravi.swing_draw[3] = 0.5;
gravi.swing_fadeout[3] = 0.11;
gravi.swing_draw[4] = 0.5;
gravi.swing_fadeout[4] = 0.09;
gravi.swing_draw[5] = 0.5;
gravi.swing_fadeout[5] = 0.13;
gravi.swing_draw[6] = 0.5;
gravi.swing_fadeout[6] = 0.12;
gravi.control_mode = 1;
gravi.auto_fade_out_speed = 0.006;
blink_anim1 = 0;
CycleAnimsUpdate = function () {
blink_anim1 = blink_anim1 + 0.00833333333333333;
if (blink_anim1 >= 1) {
blink_anim1 = blink_anim1 - 1;
}
};
onEnterFrame = function () {
CycleAnimsUpdate();
gravi.Update();
act.gotoAndStop(int((gravi.move_draw * panel.frame_width) + panel.frame_start));
act.h1.gotoAndStop(int((gravi.swing_draw[0] * 60) + 1));
act.h2.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
act.h3.gotoAndStop(int((gravi.swing_draw[2] * 60) + 1));
act.h4.gotoAndStop(int((gravi.swing_draw[3] * 60) + 1));
act.h5.gotoAndStop(int((gravi.swing_draw[4] * 60) + 1));
act.h6.gotoAndStop(int((gravi.swing_draw[5] * 60) + 1));
act.h7.gotoAndStop(int((gravi.swing_draw[6] * 60) + 1));
act.h8.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
act.h9.gotoAndStop(int((gravi.swing_draw[2] * 60) + 1));
act.h10.gotoAndStop(int((gravi.swing_draw[3] * 60) + 1));
act.h11.gotoAndStop(int((gravi.swing_draw[4] * 60) + 1));
act.h12.gotoAndStop(int((gravi.swing_draw[5] * 60) + 1));
act.h13.gotoAndStop(int((gravi.swing_draw[6] * 60) + 1));
act.h14.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
act.h15.gotoAndStop(int((gravi.swing_draw[2] * 60) + 1));
act.h16.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
act.head1.h1.gotoAndStop(int((gravi.swing_draw[0] * 60) + 1));
act.head1.h2.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
act.head1.h3.gotoAndStop(int((gravi.swing_draw[2] * 60) + 1));
act.head1.h4.gotoAndStop(int((gravi.swing_draw[3] * 60) + 1));
act.head1.h5.gotoAndStop(int((gravi.swing_draw[4] * 60) + 1));
act.head1.h6.gotoAndStop(int((gravi.swing_draw[5] * 60) + 1));
act.head2.h1.gotoAndStop(int((gravi.swing_draw[0] * 60) + 1));
act.head2.h2.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
if (gravi.control_mode == 2) {
if (gravi.auto_move_fade_k <= 0) {
gravi.control_mode = 1;
panel.frame_width = 1;
panel.btn_0.onPress();
act.boob.head.gotoAndStop(2);
act.head_guy1.gotoAndStop(2);
act.head_guy2.gotoAndStop(2);
play();
} else if (gravi.auto_move_fade_k < 0.85) {
if (cummed2 == undefined) {
cummed2 = true;
act.cum2.play();
}
} else if (gravi.auto_move_fade_k < 0.9) {
if (cummed1 == undefined) {
act.boob.head.gotoAndStop(3);
act.head_guy1.gotoAndStop(3);
act.head_guy2.gotoAndStop(3);
cummed1 = true;
act.cum1.play();
}
}
}
};
Symbol 373 MovieClip [1e0234d6] Frame 2
stop();
sound.gotoAndStop(5);
_root.gotoScreen("1");
Symbol 427 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 427 MovieClip Frame 60
gotoRandomHold();
Symbol 427 MovieClip Frame 120
gotoRandomHold();
Symbol 430 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 430 MovieClip Frame 30
gotoRandomHold();
Symbol 430 MovieClip Frame 60
gotoRandomHold();
Symbol 436 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(3) + 1));
}
Symbol 436 MovieClip Frame 30
gotoRandomHold();
Symbol 436 MovieClip Frame 51
gotoRandomHold();
Symbol 436 MovieClip Frame 69
gotoRandomHold();
Symbol 441 MovieClip Frame 1
stop();
aye.aye.aye1._visible = true;
aye.aye.aye2._visible = false;
aye.aye.aye3._visible = false;
Symbol 441 MovieClip Frame 2
aye.aye.aye1._visible = false;
aye.aye.aye2._visible = true;
aye.aye.aye3._visible = false;
Symbol 441 MovieClip Frame 3
aye.aye.aye1._visible = false;
aye.aye.aye2._visible = false;
aye.aye.aye3._visible = true;
Symbol 526 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 526 MovieClip Frame 70
gotoRandomHold();
Symbol 526 MovieClip Frame 120
gotoRandomHold();
Symbol 527 MovieClip Frame 1
stop();
aye.aye.aye2._visible = true;
aye.aye.aye1._visible = false;
Symbol 527 MovieClip Frame 2
aye.aye.aye2._visible = false;
aye.aye.aye1._visible = true;
Symbol 527 MovieClip Frame 3
aye.aye.aye2._visible = true;
aye.aye.aye1._visible = false;
Symbol 559 MovieClip Frame 1
function updateFrameWidth() {
if (frame_width < frame_width_goto) {
frame_width = frame_width + 2;
if (frame_width > frame_width_goto) {
frame_width = frame_width_goto;
}
} else if (frame_width > frame_width_goto) {
frame_width = frame_width - 2;
if (frame_width < frame_width_goto) {
frame_width = frame_width_goto;
}
}
frame_start = 61 - int(frame_width / 2);
}
function onBarFilled() {
btn_cum._visible = true;
}
btn_id = 0;
btn_num = 4;
i = 2;
while (i < btn_num) {
eval ("btn_" + i)._visible = false;
i++;
}
btn_cum._visible = false;
border._x = btn_0._x;
border._y = btn_0._y;
frame_width = 30;
frame_width_goto = 30;
frame_start = 46;
i = 0;
while (i < btn_num) {
eval ("btn_" + i).id = i;
eval ("btn_" + i).onPress = function () {
btn_id = this.id;
border._x = this._x;
border._y = this._y;
if (btn_id == 0) {
frame_width_goto = 30;
_parent.gravi.auto_speed = 0.01;
_parent.act.head1.gotoAndStop(1);
_parent.act.head2.gotoAndStop(1);
_parent.sound.gotoAndStop(1);
} else if (btn_id == 1) {
frame_width_goto = 60;
_parent.gravi.auto_speed = 0.05;
_parent.act.head1.gotoAndStop(2);
_parent.act.head2.gotoAndStop(2);
_parent.sound.gotoAndStop(2);
} else if (btn_id == 2) {
frame_width_goto = 90;
_parent.gravi.auto_speed = 0.1;
_parent.act.head1.gotoAndStop(3);
_parent.act.head2.gotoAndStop(3);
_parent.sound.gotoAndStop(3);
} else if (btn_id == 3) {
frame_width_goto = 120;
_parent.gravi.auto_speed = 0.2;
_parent.act.head1.gotoAndStop(4);
_parent.act.head2.gotoAndStop(4);
_parent.sound.gotoAndStop(4);
}
};
i++;
}
btn_0.onPress();
onEnterFrame = function () {
updateFrameWidth();
if (btn_cum._visible) {
return(undefined);
}
if (bar.value < (btn_id / (btn_num - 1))) {
bar.changeValue(0.001);
if (bar.value >= (btn_id / (btn_num - 1))) {
bar.value = btn_id / (btn_num - 1);
if (!eval ("btn_" + (btn_id + 1))._visible) {
eval ("btn_" + (btn_id + 1))._visible = true;
}
}
}
};
btn_cum.onPress = function () {
_visible = false;
btn_3.onPress();
_parent.gravi.control_mode = 2;
};
Symbol 560 MovieClip [97bf2e1c] Frame 1
stop();
var gravi = new Gravitation(7);
act.gotoAndStop(61);
gravi.move_draw = 0.5;
gravi.swing_draw[0] = 0.5;
gravi.swing_fadeout[0] = 0.15;
gravi.swing_draw[1] = 0.5;
gravi.swing_fadeout[1] = 0.1;
gravi.swing_draw[2] = 0.5;
gravi.swing_fadeout[2] = 0.08;
gravi.swing_draw[3] = 0.5;
gravi.swing_fadeout[3] = 0.11;
gravi.swing_draw[4] = 0.5;
gravi.swing_fadeout[4] = 0.09;
gravi.swing_draw[5] = 0.5;
gravi.swing_fadeout[5] = 0.13;
gravi.swing_draw[6] = 0.5;
gravi.swing_fadeout[6] = 0.12;
gravi.control_mode = 1;
gravi.auto_fade_out_speed = 0.006;
blink_anim1 = 0;
CycleAnimsUpdate = function () {
blink_anim1 = blink_anim1 + 0.00833333333333333;
if (blink_anim1 >= 1) {
blink_anim1 = blink_anim1 - 1;
}
};
onEnterFrame = function () {
CycleAnimsUpdate();
gravi.Update();
act.gotoAndStop(int((gravi.move_draw * panel.frame_width) + panel.frame_start));
act.h1.gotoAndStop(int((gravi.swing_draw[0] * 60) + 1));
act.h2.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
act.h3.gotoAndStop(int((gravi.swing_draw[2] * 60) + 1));
act.h4.gotoAndStop(int((gravi.swing_draw[3] * 60) + 1));
act.h5.gotoAndStop(int((gravi.swing_draw[4] * 60) + 1));
act.h6.gotoAndStop(int((gravi.swing_draw[5] * 60) + 1));
act.h7.gotoAndStop(int((gravi.swing_draw[6] * 60) + 1));
act.h8.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
act.h9.gotoAndStop(int((gravi.swing_draw[2] * 60) + 1));
act.h10.gotoAndStop(int((gravi.swing_draw[3] * 60) + 1));
act.h11.gotoAndStop(int((gravi.swing_draw[4] * 60) + 1));
act.h12.gotoAndStop(int((gravi.swing_draw[5] * 60) + 1));
act.h13.gotoAndStop(int((gravi.swing_draw[6] * 60) + 1));
act.h14.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
act.h15.gotoAndStop(int((gravi.swing_draw[2] * 60) + 1));
act.h16.gotoAndStop(int((gravi.swing_draw[3] * 60) + 1));
act.h17.gotoAndStop(int((gravi.swing_draw[5] * 60) + 1));
act.h18.gotoAndStop(int((gravi.swing_draw[6] * 60) + 1));
act.h19.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
act.h20.gotoAndStop(int((gravi.swing_draw[2] * 60) + 1));
act.h21.gotoAndStop(int((gravi.swing_draw[3] * 60) + 1));
act.head1.h1.gotoAndStop(int((gravi.swing_draw[0] * 60) + 1));
act.head1.h2.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
act.head1.h3.gotoAndStop(int((gravi.swing_draw[2] * 60) + 1));
act.head1.h4.gotoAndStop(int((gravi.swing_draw[3] * 60) + 1));
act.head1.h5.gotoAndStop(int((gravi.swing_draw[4] * 60) + 1));
act.head1.h6.gotoAndStop(int((gravi.swing_draw[5] * 60) + 1));
act.head2.h1.gotoAndStop(int((gravi.swing_draw[0] * 60) + 1));
act.head2.h2.gotoAndStop(int((gravi.swing_draw[1] * 60) + 1));
if (gravi.control_mode == 2) {
if (gravi.auto_move_fade_k <= 0) {
gravi.control_mode = 1;
panel.frame_width = 1;
panel.btn_0.onPress();
act.boob.head.gotoAndStop(2);
act.head_guy1.gotoAndStop(2);
act.head_guy2.gotoAndStop(2);
play();
} else if (gravi.auto_move_fade_k < 0.85) {
if (cummed2 == undefined) {
cummed2 = true;
act.cum2.play();
}
} else if (gravi.auto_move_fade_k < 0.9) {
if (cummed1 == undefined) {
act.boob.head.gotoAndStop(3);
act.head_guy1.gotoAndStop(3);
act.head_guy2.gotoAndStop(3);
cummed1 = true;
act.cum1.play();
}
}
}
};
Symbol 560 MovieClip [97bf2e1c] Frame 2
stop();
sound.gotoAndStop(5);
_root.gotoScreen("1");
Symbol 614 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.083) {
_parent._parent.AddMood(0.002);
}
};
Symbol 615 MovieClip Frame 1
stop();
Symbol 625 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.083) {
_parent._parent.AddMood(0.002);
}
};
Symbol 626 MovieClip Frame 1
stop();
Symbol 679 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.581) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.664) {
_parent._parent.AddMood(0.002);
}
};
Symbol 679 MovieClip Frame 2
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 679 MovieClip Frame 7
gotoRandomHold();
Symbol 679 MovieClip Frame 13
gotoRandomHold();
Symbol 680 MovieClip Frame 1
stop();
_parent.press1._visible = true;
Symbol 680 MovieClip Frame 2
_parent.press1._visible = false;
Symbol 689 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 689 MovieClip Frame 70
gotoRandomHold();
Symbol 689 MovieClip Frame 120
gotoRandomHold();
Symbol 693 MovieClip Frame 1
stop();
aye.aye.aye2._visible = true;
aye.aye.aye1._visible = false;
Symbol 693 MovieClip Frame 2
aye.aye.aye2._visible = false;
aye.aye.aye1._visible = true;
Symbol 693 MovieClip Frame 4
gotoAndStop (1);
Symbol 718 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.747) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.83) {
_parent._parent.AddMood(0.002);
}
};
Symbol 718 MovieClip Frame 2
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 718 MovieClip Frame 7
gotoRandomHold();
Symbol 718 MovieClip Frame 13
gotoRandomHold();
Symbol 719 MovieClip Frame 1
stop();
_parent.p5.part1._visible = true;
Symbol 719 MovieClip Frame 2
_parent.p5.part1._visible = false;
Symbol 733 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.83) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.913) {
_parent._parent.AddMood(0.002);
}
};
Symbol 734 MovieClip Frame 1
stop();
_parent.p1._visible = true;
_parent.p2._visible = true;
_parent.p3._visible = true;
_parent.p4._visible = true;
_parent.p5._visible = true;
_parent.p6._visible = true;
_parent.press1._visible = true;
if (_parent.per_m == true) {
_parent.mahcin._visible = true;
}
Symbol 734 MovieClip Frame 2
_parent.p1._visible = false;
_parent.p2._visible = false;
_parent.p3._visible = false;
_parent.p4._visible = false;
_parent.p5._visible = false;
_parent.p6._visible = false;
_parent.press1._visible = false;
_parent.mahcin._visible = false;
Symbol 758 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.498) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.581) {
_parent._parent.AddMood(0.002);
}
};
Symbol 759 MovieClip Frame 1
stop();
_parent.p1._visible = true;
_parent.p2._visible = true;
_parent.p3._visible = true;
_parent.p4._visible = true;
_parent.p5._visible = true;
_parent.p6._visible = true;
_parent.press1._visible = true;
Symbol 759 MovieClip Frame 2
_parent.p1._visible = false;
_parent.p2._visible = false;
_parent.p3._visible = false;
_parent.p4._visible = false;
_parent.p5._visible = false;
_parent.p6._visible = false;
_parent.press1._visible = false;
Symbol 764 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.913) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 1) {
_parent._parent.AddMood(0.002);
}
};
Symbol 765 MovieClip Frame 1
stop();
_parent.p1._visible = true;
_parent.p2._visible = true;
_parent.p3._visible = true;
_parent.p4._visible = true;
_parent.p5._visible = true;
_parent.p6._visible = true;
_parent.press1._visible = true;
if (_parent.per_m == true) {
_parent.mahcin._visible = true;
}
Symbol 765 MovieClip Frame 2
_parent.p1._visible = false;
_parent.p2._visible = false;
_parent.p3._visible = false;
_parent.p4._visible = false;
_parent.p5._visible = false;
_parent.p6._visible = false;
_parent.press1._visible = false;
_parent.mahcin._visible = false;
Symbol 767 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.083) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.116) {
_parent._parent.AddMood(0.002);
}
};
Symbol 768 MovieClip Frame 1
stop();
Symbol 770 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.083) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.116) {
_parent._parent.AddMood(0.002);
}
};
Symbol 771 MovieClip Frame 1
stop();
Symbol 773 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.116) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.249) {
_parent._parent.AddMood(0.002);
}
};
Symbol 774 MovieClip Frame 1
stop();
Symbol 776 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.116) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.249) {
_parent._parent.AddMood(0.002);
}
};
Symbol 777 MovieClip Frame 1
stop();
Symbol 779 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.332) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.415) {
_parent._parent.AddMood(0.002);
}
};
Symbol 779 MovieClip Frame 23
gotoAndPlay (5);
Symbol 780 MovieClip Frame 1
stop();
_parent.boobs.g8._visible = true;
_parent.boobs.g9._visible = true;
_parent.boobs.g10._visible = true;
_parent.boobs.g11._visible = true;
_parent.boobs.g12._visible = true;
_parent.boobs.g13._visible = true;
_parent.boobs.g14._visible = true;
Symbol 780 MovieClip Frame 2
_parent.boobs.g8._visible = false;
_parent.boobs.g9._visible = false;
_parent.boobs.g10._visible = false;
_parent.boobs.g11._visible = false;
_parent.boobs.g12._visible = false;
_parent.boobs.g13._visible = false;
_parent.boobs.g14._visible = false;
Symbol 781 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.332) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.415) {
_parent._parent.AddMood(0.002);
}
};
Symbol 781 MovieClip Frame 23
gotoAndPlay (5);
Symbol 782 MovieClip Frame 1
stop();
_parent.boobs.g1._visible = true;
_parent.boobs.g2._visible = true;
_parent.boobs.g3._visible = true;
_parent.boobs.g4._visible = true;
_parent.boobs.g5._visible = true;
_parent.boobs.g6._visible = true;
_parent.boobs.g7._visible = true;
Symbol 782 MovieClip Frame 2
_parent.boobs.g1._visible = false;
_parent.boobs.g2._visible = false;
_parent.boobs.g3._visible = false;
_parent.boobs.g4._visible = false;
_parent.boobs.g5._visible = false;
_parent.boobs.g6._visible = false;
_parent.boobs.g7._visible = false;
Symbol 783 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.415) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.498) {
_parent._parent.AddMood(0.002);
}
};
Symbol 783 MovieClip Frame 23
gotoAndPlay (5);
Symbol 784 MovieClip Frame 1
stop();
_parent.boobs.g8._visible = true;
_parent.boobs.g9._visible = true;
_parent.boobs.g10._visible = true;
_parent.boobs.g11._visible = true;
_parent.boobs.g12._visible = true;
_parent.boobs.g13._visible = true;
_parent.boobs.g14._visible = true;
_parent.boobs.g1._visible = true;
_parent.boobs.g2._visible = true;
_parent.boobs.g3._visible = true;
_parent.boobs.g4._visible = true;
_parent.boobs.g5._visible = true;
_parent.boobs.g6._visible = true;
_parent.boobs.g7._visible = true;
Symbol 784 MovieClip Frame 2
_parent.boobs.g8._visible = false;
_parent.boobs.g9._visible = false;
_parent.boobs.g10._visible = false;
_parent.boobs.g11._visible = false;
_parent.boobs.g12._visible = false;
_parent.boobs.g13._visible = false;
_parent.boobs.g14._visible = false;
_parent.boobs.g1._visible = false;
_parent.boobs.g2._visible = false;
_parent.boobs.g3._visible = false;
_parent.boobs.g4._visible = false;
_parent.boobs.g5._visible = false;
_parent.boobs.g6._visible = false;
_parent.boobs.g7._visible = false;
Symbol 795 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.249) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.332) {
_parent._parent.AddMood(0.002);
}
};
Symbol 795 MovieClip Frame 17
gotoAndPlay (6);
Symbol 796 MovieClip Frame 1
stop();
_parent.boobs.g8._visible = true;
_parent.boobs.g9._visible = true;
_parent.boobs.g10._visible = true;
_parent.boobs.g11._visible = true;
_parent.boobs.g12._visible = true;
_parent.boobs.g13._visible = true;
_parent.boobs.g14._visible = true;
Symbol 796 MovieClip Frame 2
_parent.boobs.g8._visible = false;
_parent.boobs.g9._visible = false;
_parent.boobs.g10._visible = false;
_parent.boobs.g11._visible = false;
_parent.boobs.g12._visible = false;
_parent.boobs.g13._visible = false;
_parent.boobs.g14._visible = false;
Symbol 797 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.249) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.332) {
_parent._parent.AddMood(0.002);
}
};
Symbol 797 MovieClip Frame 17
gotoAndPlay (6);
Symbol 798 MovieClip Frame 1
stop();
_parent.boobs.g1._visible = true;
_parent.boobs.g2._visible = true;
_parent.boobs.g3._visible = true;
_parent.boobs.g4._visible = true;
_parent.boobs.g5._visible = true;
_parent.boobs.g6._visible = true;
_parent.boobs.g7._visible = true;
Symbol 798 MovieClip Frame 2
_parent.boobs.g1._visible = false;
_parent.boobs.g2._visible = false;
_parent.boobs.g3._visible = false;
_parent.boobs.g4._visible = false;
_parent.boobs.g5._visible = false;
_parent.boobs.g6._visible = false;
_parent.boobs.g7._visible = false;
Symbol 799 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.664) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.747) {
_parent._parent.AddMood(0.002);
}
};
Symbol 799 MovieClip Frame 3
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 799 MovieClip Frame 8
gotoRandomHold();
Symbol 799 MovieClip Frame 14
gotoRandomHold();
Symbol 800 MovieClip Frame 1
stop();
_parent.boobs.g8._visible = true;
_parent.boobs.g9._visible = true;
_parent.boobs.g10._visible = true;
_parent.boobs.g11._visible = true;
_parent.boobs.g12._visible = true;
_parent.boobs.g13._visible = true;
_parent.boobs.g14._visible = true;
Symbol 800 MovieClip Frame 2
_parent.boobs.g8._visible = false;
_parent.boobs.g9._visible = false;
_parent.boobs.g10._visible = false;
_parent.boobs.g11._visible = false;
_parent.boobs.g12._visible = false;
_parent.boobs.g13._visible = false;
_parent.boobs.g14._visible = false;
Symbol 801 MovieClip Frame 1
onEnterFrame = function () {
if (_parent._parent.mood.value < 0.664) {
_parent._parent.AddMood(-0.002);
} else if (_parent._parent.mood.value < 0.747) {
_parent._parent.AddMood(0.002);
}
};
Symbol 801 MovieClip Frame 3
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 801 MovieClip Frame 8
gotoRandomHold();
Symbol 801 MovieClip Frame 14
gotoRandomHold();
Symbol 802 MovieClip Frame 1
stop();
_parent.boobs.g1._visible = true;
_parent.boobs.g2._visible = true;
_parent.boobs.g3._visible = true;
_parent.boobs.g4._visible = true;
_parent.boobs.g5._visible = true;
_parent.boobs.g6._visible = true;
_parent.boobs.g7._visible = true;
Symbol 802 MovieClip Frame 2
_parent.boobs.g1._visible = false;
_parent.boobs.g2._visible = false;
_parent.boobs.g3._visible = false;
_parent.boobs.g4._visible = false;
_parent.boobs.g5._visible = false;
_parent.boobs.g6._visible = false;
_parent.boobs.g7._visible = false;
Symbol 807 MovieClip Frame 1
stop();
aye.aye.aye1._visible = true;
aye.aye.aye2._visible = false;
aye.aye.aye3._visible = false;
Symbol 807 MovieClip Frame 2
aye.aye.aye1._visible = false;
aye.aye.aye2._visible = true;
aye.aye.aye3._visible = false;
Symbol 807 MovieClip Frame 3
aye.aye.aye1._visible = false;
aye.aye.aye2._visible = false;
aye.aye.aye3._visible = true;
Symbol 807 MovieClip Frame 4
gotoAndStop (1);
Symbol 813 MovieClip Frame 1
function SetHider() {
hider._x = (value_show * volumer._width) - hider._width;
}
value = 0;
value_show = value;
SetHider();
onEnterFrame = function () {
if (value > value_show) {
_parent.head.gotoAndStop(3);
_parent.nlo.head2.gotoAndStop(3);
value_show = value;
SetHider();
if (!_parent.dialog._visible) {
_parent.dialog._visible = true;
_parent.dialog.gotoAndStop(5 + random(4));
}
} else if (value < value_show) {
_parent.head.gotoAndStop(2);
_parent.nlo.head2.gotoAndStop(2);
value = value_show;
if (!_parent.dialog._visible) {
_parent.dialog._visible = true;
_parent.dialog.gotoAndStop(1 + random(4));
}
} else {
if (_parent.part_clip == undefined) {
if (_parent.head._currentframe != 1) {
_parent.head.gotoAndStop(4);
_parent.nlo.head2.gotoAndStop(4);
}
} else {
_parent.head.gotoAndStop(3);
}
if (_parent.dialog._visible && (_parent.dialog.timer >= _parent.dialog.time)) {
_parent.dialog._visible = false;
}
}
};
Symbol 824 MovieClip Frame 1
function SetPhrase(num, time_) {
timer = 0;
time = time_;
_visible = true;
gotoAndStop(num);
}
stop();
if (time == undefined) {
time = 0;
timer = 0;
}
onEnterFrame = function () {
if (timer < time) {
timer++;
}
};
Symbol 835 MovieClip Frame 1
tuch6._visible = false;
tuch7._visible = false;
tuch8._visible = false;
tuch9._visible = false;
tuch10._visible = false;
tuch11._visible = false;
mahcin._visible = false;
per_m = false;
btn_group1.onPress = function () {
tuch1._visible = true;
tuch2._visible = true;
tuch3._visible = true;
tuch4._visible = true;
tuch5._visible = true;
tuch12._visible = true;
tuch13._visible = true;
tuch14._visible = true;
tuch17._visible = true;
tuch18._visible = true;
tuch15._visible = true;
tuch16._visible = true;
tuch6._visible = false;
tuch7._visible = false;
tuch8._visible = false;
tuch9._visible = false;
tuch10._visible = false;
tuch11._visible = false;
mahcin._visible = false;
per_m = false;
};
btn_group2.onPress = function () {
tuch1._visible = false;
tuch2._visible = false;
tuch3._visible = false;
tuch4._visible = false;
tuch5._visible = false;
tuch12._visible = false;
tuch13._visible = false;
tuch14._visible = false;
tuch17._visible = false;
tuch18._visible = false;
tuch15._visible = false;
tuch16._visible = false;
tuch6._visible = false;
tuch7._visible = false;
tuch8._visible = false;
tuch9._visible = false;
tuch10._visible = true;
tuch11._visible = true;
mahcin._visible = true;
per_m = true;
};
btn_group3.onPress = function () {
tuch1._visible = false;
tuch2._visible = false;
tuch3._visible = false;
tuch4._visible = false;
tuch5._visible = false;
tuch12._visible = false;
tuch13._visible = false;
tuch14._visible = false;
tuch17._visible = false;
tuch18._visible = false;
tuch15._visible = false;
tuch16._visible = false;
tuch6._visible = true;
tuch7._visible = true;
tuch8._visible = true;
tuch9._visible = true;
tuch10._visible = false;
tuch11._visible = false;
mahcin._visible = false;
per_m = false;
};
function AddMood(val) {
if (val < 0) {
val = -1E-8;
}
mood.value = mood.value + val;
if (mood.value > 1) {
if (!next_btn._visible) {
next_btn._visible = true;
dialog1._visible = false;
dialog2._visible = true;
glow._visible = true;
glow.play();
mood._visible = false;
quest._visible = false;
}
mood.value = 1;
}
}
function ReleasePart() {
if (!part_clip.single) {
part_clip.gotoAndStop(1);
}
part_clip = undefined;
cursor._visible = true;
}
parts = new Array("tuch1", "tuch2", "tuch3", "tuch4", "tuch5", "tuch6", "tuch7", "tuch8", "tuch9", "tuch10", "tuch11", "tuch12", "tuch13", "tuch14", "tuch15", "tuch16", "tuch17", "tuch18");
next_btn._visible = false;
i = 0;
while (i < parts.length) {
eval (parts[i]).stop();
eval (parts[i]).onPress = function () {
if ((dialog._currentframe == 1) && (dialog._visible)) {
return(undefined);
}
if (part_clip != undefined) {
return(undefined);
}
part_clip = this;
this.gotoAndStop(2);
cursor._visible = false;
};
i++;
}
onMouseUp = function () {
if (part_clip.single) {
return(undefined);
}
ReleasePart();
};
next_btn.onPress = function () {
_root.gotoScreen("1");
};
Symbol 835 MovieClip Frame 2
function gotoRandomHold() {
gotoAndPlay("hold" + (random(3) + 1));
}
Symbol 835 MovieClip Frame 60
gotoRandomHold();
Symbol 835 MovieClip Frame 120
gotoRandomHold();
Symbol 835 MovieClip Frame 170
gotoRandomHold();
Symbol 848 MovieClip Frame 1
stop();
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.gotoAndStop(3);
}
Symbol 854 MovieClip Frame 1
stop();
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.gotoAndStop(3);
}
Symbol 857 MovieClip Frame 1
Symbol 858 MovieClip Frame 1
onEnterFrame = function () {
if (_root.pp3 == true) {
anim.d1.gotoAndStop(2);
anim.d2.gotoAndStop(2);
}
};
Symbol 858 MovieClip Frame 2
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 858 MovieClip Frame 56
gotoRandomHold();
Symbol 858 MovieClip Frame 101
gotoRandomHold();
Symbol 864 MovieClip Frame 1
stop();
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.gotoAndStop(3);
}
Symbol 870 MovieClip Frame 1
stop();
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.gotoAndStop(3);
}
Symbol 874 MovieClip Frame 1
onEnterFrame = function () {
if (_root.pp3 == true) {
anim.d1.gotoAndStop(2);
anim.d2.gotoAndStop(2);
}
};
Symbol 874 MovieClip Frame 2
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 874 MovieClip Frame 61
gotoRandomHold();
Symbol 874 MovieClip Frame 126
gotoRandomHold();
Symbol 886 MovieClip Frame 1
stop();
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.gotoAndStop(3);
}
Symbol 886 MovieClip Frame 2
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.gotoAndStop(3);
}
Symbol 891 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 891 MovieClip Frame 60
gotoRandomHold();
Symbol 891 MovieClip Frame 110
gotoRandomHold();
Symbol 894 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(5) + 1));
}
Symbol 894 MovieClip Frame 20
gotoRandomHold();
Symbol 894 MovieClip Frame 65
gotoRandomHold();
Symbol 894 MovieClip Frame 89
gotoRandomHold();
Symbol 894 MovieClip Frame 113
gotoRandomHold();
Symbol 894 MovieClip Frame 153
gotoRandomHold();
Symbol 897 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 897 MovieClip Frame 60
gotoRandomHold();
Symbol 897 MovieClip Frame 120
gotoRandomHold();
Symbol 902 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 902 MovieClip Frame 100
gotoRandomHold();
Symbol 902 MovieClip Frame 200
gotoRandomHold();
Symbol 910 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 910 MovieClip Frame 50
gotoRandomHold();
Symbol 910 MovieClip Frame 105
gotoRandomHold();
Symbol 911 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 911 MovieClip Frame 60
gotoRandomHold();
Symbol 911 MovieClip Frame 136
gotoRandomHold();
Symbol 923 MovieClip Frame 1
stop();
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.gotoAndStop(3);
}
Symbol 923 MovieClip Frame 2
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.gotoAndStop(3);
}
Symbol 933 MovieClip Frame 1
stop();
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.gotoAndStop(3);
}
Symbol 933 MovieClip Frame 2
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.gotoAndStop(3);
}
Symbol 945 MovieClip Frame 1
stop();
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.gotoAndStop(3);
}
Symbol 945 MovieClip Frame 2
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.gotoAndStop(3);
}
Symbol 955 MovieClip Frame 1
stop();
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.gotoAndStop(3);
}
Symbol 955 MovieClip Frame 2
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.gotoAndStop(3);
}
Symbol 956 MovieClip Frame 1
if (_root.pp1 == true) {
d1.gotoAndStop(3);
d2.gotoAndStop(3);
d3.gotoAndStop(3);
d4.gotoAndStop(3);
d5.gotoAndStop(3);
}
Symbol 956 MovieClip Frame 60
gotoAndPlay (2);
Symbol 1007 MovieClip Frame 1
onEnterFrame = function () {
if (_root.pp3 == true) {
d1.gotoAndStop(2);
d2.gotoAndStop(2);
d3.gotoAndStop(2);
d4.gotoAndStop(2);
d5.gotoAndStop(2);
}
};
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
p1.gotoAndStop(1);
p2.gotoAndStop(1);
p3.gotoAndStop(1);
p4.gotoAndStop(1);
p5.gotoAndStop(1);
p6.gotoAndStop(1);
p7.gotoAndStop(1);
p8.gotoAndStop(1);
p9.gotoAndStop(1);
p10.gotoAndStop(1);
p11.gotoAndStop(1);
p12.gotoAndStop(1);
p13.gotoAndStop(1);
p14.gotoAndStop(1);
p15.gotoAndStop(1);
p16.gotoAndStop(1);
p17.gotoAndStop(1);
p18.gotoAndStop(1);
p19.gotoAndStop(1);
p20.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
p1.gotoAndStop(2);
p2.gotoAndStop(2);
p3.gotoAndStop(2);
p4.gotoAndStop(2);
p5.gotoAndStop(2);
p6.gotoAndStop(2);
p7.gotoAndStop(2);
p8.gotoAndStop(2);
p9.gotoAndStop(2);
p10.gotoAndStop(2);
p11.gotoAndStop(2);
p12.gotoAndStop(2);
p13.gotoAndStop(2);
p14.gotoAndStop(2);
p15.gotoAndStop(2);
p16.gotoAndStop(2);
p17.gotoAndStop(2);
p18.gotoAndStop(2);
p19.gotoAndStop(2);
p20.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
p1.gotoAndStop(3);
p2.gotoAndStop(3);
p3.gotoAndStop(3);
p4.gotoAndStop(3);
p5.gotoAndStop(3);
p6.gotoAndStop(3);
p7.gotoAndStop(3);
p8.gotoAndStop(3);
p9.gotoAndStop(3);
p10.gotoAndStop(3);
p11.gotoAndStop(3);
p12.gotoAndStop(3);
p13.gotoAndStop(3);
p14.gotoAndStop(3);
p15.gotoAndStop(3);
p16.gotoAndStop(3);
p17.gotoAndStop(3);
p18.gotoAndStop(3);
p19.gotoAndStop(3);
p20.gotoAndStop(3);
}
Symbol 1019 MovieClip Frame 1
function changeValue(d_value) {
if (value > 1) {
return(undefined);
}
i_val++;
value_buf = value_buf + d_value;
if (i_val == buf_vals) {
value_buf = 0;
i_val = 0;
}
value = value + d_value;
trace(value);
if (value >= 1) {
value = 1;
_parent.onBarFilled();
} else if (value < 0) {
value = 0;
}
stripe._x = (-(1 - value)) * stripe._width;
}
function setNull() {
value = 0;
changeValue(0);
}
var value = 0;
var value_buf = 0;
var buf_vals = 24;
var i_val = 0;
changeValue(0);
Symbol 1078 MovieClip Frame 1
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
p1.gotoAndStop(1);
p2.gotoAndStop(1);
p3.gotoAndStop(1);
p4.gotoAndStop(1);
p5.gotoAndStop(1);
p6.gotoAndStop(1);
p7.gotoAndStop(1);
p8.gotoAndStop(1);
p9.gotoAndStop(1);
p10.gotoAndStop(1);
p11.gotoAndStop(1);
p12.gotoAndStop(1);
p13.gotoAndStop(1);
p14.gotoAndStop(1);
p15.gotoAndStop(1);
p16.gotoAndStop(1);
p17.gotoAndStop(1);
p18.gotoAndStop(1);
p19.gotoAndStop(1);
p20.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
p1.gotoAndStop(2);
p2.gotoAndStop(2);
p3.gotoAndStop(2);
p4.gotoAndStop(2);
p5.gotoAndStop(2);
p6.gotoAndStop(2);
p7.gotoAndStop(2);
p8.gotoAndStop(2);
p9.gotoAndStop(2);
p10.gotoAndStop(2);
p11.gotoAndStop(2);
p12.gotoAndStop(2);
p13.gotoAndStop(2);
p14.gotoAndStop(2);
p15.gotoAndStop(2);
p16.gotoAndStop(2);
p17.gotoAndStop(2);
p18.gotoAndStop(2);
p19.gotoAndStop(2);
p20.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
p1.gotoAndStop(3);
p2.gotoAndStop(3);
p3.gotoAndStop(3);
p4.gotoAndStop(3);
p5.gotoAndStop(3);
p6.gotoAndStop(3);
p7.gotoAndStop(3);
p8.gotoAndStop(3);
p9.gotoAndStop(3);
p10.gotoAndStop(3);
p11.gotoAndStop(3);
p12.gotoAndStop(3);
p13.gotoAndStop(3);
p14.gotoAndStop(3);
p15.gotoAndStop(3);
p16.gotoAndStop(3);
p17.gotoAndStop(3);
p18.gotoAndStop(3);
p19.gotoAndStop(3);
p20.gotoAndStop(3);
}
Symbol 1078 MovieClip Frame 9
stop();
Symbol 1079 MovieClip Frame 1
if (_root.pp3 == true) {
d1.gotoAndStop(2);
d2.gotoAndStop(2);
d3.gotoAndStop(2);
d4.gotoAndStop(2);
d5.gotoAndStop(2);
}
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
p1.gotoAndStop(1);
p2.gotoAndStop(1);
p3.gotoAndStop(1);
p4.gotoAndStop(1);
p5.gotoAndStop(1);
p6.gotoAndStop(1);
p7.gotoAndStop(1);
p8.gotoAndStop(1);
p9.gotoAndStop(1);
p10.gotoAndStop(1);
p11.gotoAndStop(1);
p12.gotoAndStop(1);
p13.gotoAndStop(1);
p14.gotoAndStop(1);
p15.gotoAndStop(1);
p16.gotoAndStop(1);
p17.gotoAndStop(1);
p18.gotoAndStop(1);
p19.gotoAndStop(1);
p20.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
p1.gotoAndStop(2);
p2.gotoAndStop(2);
p3.gotoAndStop(2);
p4.gotoAndStop(2);
p5.gotoAndStop(2);
p6.gotoAndStop(2);
p7.gotoAndStop(2);
p8.gotoAndStop(2);
p9.gotoAndStop(2);
p10.gotoAndStop(2);
p11.gotoAndStop(2);
p12.gotoAndStop(2);
p13.gotoAndStop(2);
p14.gotoAndStop(2);
p15.gotoAndStop(2);
p16.gotoAndStop(2);
p17.gotoAndStop(2);
p18.gotoAndStop(2);
p19.gotoAndStop(2);
p20.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
p1.gotoAndStop(3);
p2.gotoAndStop(3);
p3.gotoAndStop(3);
p4.gotoAndStop(3);
p5.gotoAndStop(3);
p6.gotoAndStop(3);
p7.gotoAndStop(3);
p8.gotoAndStop(3);
p9.gotoAndStop(3);
p10.gotoAndStop(3);
p11.gotoAndStop(3);
p12.gotoAndStop(3);
p13.gotoAndStop(3);
p14.gotoAndStop(3);
p15.gotoAndStop(3);
p16.gotoAndStop(3);
p17.gotoAndStop(3);
p18.gotoAndStop(3);
p19.gotoAndStop(3);
p20.gotoAndStop(3);
}
Symbol 1079 MovieClip Frame 22
stop();
_parent._parent.gotoAndStop(3);
Symbol 1080 MovieClip Frame 1
function onBarFilled() {
gotoAndStop (2);
_root.pp3 = true;
}
stop();
var gravi = new Gravitation(7);
gravi.move_draw = 0.5;
gravi.swing_draw[0] = 0.5;
gravi.swing_fadeout[0] = 0.15;
gravi.swing_draw[1] = 0.5;
gravi.swing_fadeout[1] = 0.1;
gravi.swing_draw[2] = 0.5;
gravi.swing_fadeout[2] = 0.08;
gravi.swing_draw[3] = 0.5;
gravi.swing_fadeout[3] = 0.11;
gravi.swing_draw[4] = 0.5;
gravi.swing_fadeout[4] = 0.09;
gravi.swing_draw[5] = 0.5;
gravi.swing_fadeout[5] = 0.13;
gravi.swing_draw[6] = 0.5;
gravi.swing_fadeout[6] = 0.12;
gravi.control_mode = 0;
gravi.auto_fade_out_speed = 0.006;
onEnterFrame = function () {
gravi.move_goto = (_ymouse + 50) / 50;
if (gravi.move_goto < 0) {
gravi.move_goto = 0;
} else if (gravi.move_goto > 1) {
gravi.move_goto = 1;
}
gravi.Update();
animation.gotoAndStop(int(gravi.move_draw * 78) + 1);
bar.changeValue(gravi.move_speed_overal / 25);
};
Symbol 1080 MovieClip Frame 2
onEnterFrame = null;
Symbol 1101 MovieClip Frame 1
if (_root.pp3 == true) {
d1.gotoAndStop(2);
d2.gotoAndStop(2);
d3.gotoAndStop(2);
d4.gotoAndStop(2);
d5.gotoAndStop(2);
}
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
p1.gotoAndStop(1);
p2.gotoAndStop(1);
p3.gotoAndStop(1);
p4.gotoAndStop(1);
p5.gotoAndStop(1);
p6.gotoAndStop(1);
p7.gotoAndStop(1);
p8.gotoAndStop(1);
p9.gotoAndStop(1);
p10.gotoAndStop(1);
p11.gotoAndStop(1);
p12.gotoAndStop(1);
p13.gotoAndStop(1);
p14.gotoAndStop(1);
p15.gotoAndStop(1);
p16.gotoAndStop(1);
p17.gotoAndStop(1);
p18.gotoAndStop(1);
p19.gotoAndStop(1);
p20.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
p1.gotoAndStop(2);
p2.gotoAndStop(2);
p3.gotoAndStop(2);
p4.gotoAndStop(2);
p5.gotoAndStop(2);
p6.gotoAndStop(2);
p7.gotoAndStop(2);
p8.gotoAndStop(2);
p9.gotoAndStop(2);
p10.gotoAndStop(2);
p11.gotoAndStop(2);
p12.gotoAndStop(2);
p13.gotoAndStop(2);
p14.gotoAndStop(2);
p15.gotoAndStop(2);
p16.gotoAndStop(2);
p17.gotoAndStop(2);
p18.gotoAndStop(2);
p19.gotoAndStop(2);
p20.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
p1.gotoAndStop(3);
p2.gotoAndStop(3);
p3.gotoAndStop(3);
p4.gotoAndStop(3);
p5.gotoAndStop(3);
p6.gotoAndStop(3);
p7.gotoAndStop(3);
p8.gotoAndStop(3);
p9.gotoAndStop(3);
p10.gotoAndStop(3);
p11.gotoAndStop(3);
p12.gotoAndStop(3);
p13.gotoAndStop(3);
p14.gotoAndStop(3);
p15.gotoAndStop(3);
p16.gotoAndStop(3);
p17.gotoAndStop(3);
p18.gotoAndStop(3);
p19.gotoAndStop(3);
p20.gotoAndStop(3);
}
Symbol 1136 MovieClip Frame 1
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
p1.gotoAndStop(1);
p2.gotoAndStop(1);
p3.gotoAndStop(1);
p4.gotoAndStop(1);
p5.gotoAndStop(1);
p6.gotoAndStop(1);
p7.gotoAndStop(1);
p8.gotoAndStop(1);
p9.gotoAndStop(1);
p10.gotoAndStop(1);
p11.gotoAndStop(1);
p12.gotoAndStop(1);
p13.gotoAndStop(1);
p14.gotoAndStop(1);
p15.gotoAndStop(1);
p16.gotoAndStop(1);
p17.gotoAndStop(1);
p18.gotoAndStop(1);
p19.gotoAndStop(1);
p20.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
p1.gotoAndStop(2);
p2.gotoAndStop(2);
p3.gotoAndStop(2);
p4.gotoAndStop(2);
p5.gotoAndStop(2);
p6.gotoAndStop(2);
p7.gotoAndStop(2);
p8.gotoAndStop(2);
p9.gotoAndStop(2);
p10.gotoAndStop(2);
p11.gotoAndStop(2);
p12.gotoAndStop(2);
p13.gotoAndStop(2);
p14.gotoAndStop(2);
p15.gotoAndStop(2);
p16.gotoAndStop(2);
p17.gotoAndStop(2);
p18.gotoAndStop(2);
p19.gotoAndStop(2);
p20.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
p1.gotoAndStop(3);
p2.gotoAndStop(3);
p3.gotoAndStop(3);
p4.gotoAndStop(3);
p5.gotoAndStop(3);
p6.gotoAndStop(3);
p7.gotoAndStop(3);
p8.gotoAndStop(3);
p9.gotoAndStop(3);
p10.gotoAndStop(3);
p11.gotoAndStop(3);
p12.gotoAndStop(3);
p13.gotoAndStop(3);
p14.gotoAndStop(3);
p15.gotoAndStop(3);
p16.gotoAndStop(3);
p17.gotoAndStop(3);
p18.gotoAndStop(3);
p19.gotoAndStop(3);
p20.gotoAndStop(3);
}
Symbol 1136 MovieClip Frame 9
stop();
Symbol 1137 MovieClip Frame 1
if (_root.pp1 == true) {
d1.gotoAndStop(3);
d2.gotoAndStop(3);
d3.gotoAndStop(3);
d4.gotoAndStop(3);
d5.gotoAndStop(3);
}
Symbol 1137 MovieClip Frame 22
stop();
_parent._parent.gotoAndStop(1);
Symbol 1138 MovieClip Frame 1
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
animationn.p1.gotoAndStop(1);
animationn.p2.gotoAndStop(1);
animationn.p3.gotoAndStop(1);
animationn.p4.gotoAndStop(1);
animationn.p5.gotoAndStop(1);
animationn.p6.gotoAndStop(1);
animationn.p7.gotoAndStop(1);
animationn.p8.gotoAndStop(1);
animationn.p9.gotoAndStop(1);
animationn.p10.gotoAndStop(1);
animationn.p11.gotoAndStop(1);
animationn.p12.gotoAndStop(1);
animationn.p13.gotoAndStop(1);
animationn.p14.gotoAndStop(1);
animationn.p15.gotoAndStop(1);
animationn.p16.gotoAndStop(1);
animationn.p17.gotoAndStop(1);
animationn.p18.gotoAndStop(1);
animationn.p19.gotoAndStop(1);
animationn.p20.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
animationn.p1.gotoAndStop(2);
animationn.p2.gotoAndStop(2);
animationn.p3.gotoAndStop(2);
animationn.p4.gotoAndStop(2);
animationn.p5.gotoAndStop(2);
animationn.p6.gotoAndStop(2);
animationn.p7.gotoAndStop(2);
animationn.p8.gotoAndStop(2);
animationn.p9.gotoAndStop(2);
animationn.p10.gotoAndStop(2);
animationn.p11.gotoAndStop(2);
animationn.p12.gotoAndStop(2);
animationn.p13.gotoAndStop(2);
animationn.p14.gotoAndStop(2);
animationn.p15.gotoAndStop(2);
animationn.p16.gotoAndStop(2);
animationn.p17.gotoAndStop(2);
animationn.p18.gotoAndStop(2);
animationn.p19.gotoAndStop(2);
animationn.p20.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
animationn.p1.gotoAndStop(3);
animationn.p2.gotoAndStop(3);
animationn.p3.gotoAndStop(3);
animationn.p4.gotoAndStop(3);
animationn.p5.gotoAndStop(3);
animationn.p6.gotoAndStop(3);
animationn.p7.gotoAndStop(3);
animationn.p8.gotoAndStop(3);
animationn.p9.gotoAndStop(3);
animationn.p10.gotoAndStop(3);
animationn.p11.gotoAndStop(3);
animationn.p12.gotoAndStop(3);
animationn.p13.gotoAndStop(3);
animationn.p14.gotoAndStop(3);
animationn.p15.gotoAndStop(3);
animationn.p16.gotoAndStop(3);
animationn.p17.gotoAndStop(3);
animationn.p18.gotoAndStop(3);
animationn.p19.gotoAndStop(3);
animationn.p20.gotoAndStop(3);
}
function onBarFilled() {
gotoAndStop (2);
_root.pp1 = true;
}
stop();
var gravi = new Gravitation(7);
gravi.move_draw = 0.5;
gravi.swing_draw[0] = 0.5;
gravi.swing_fadeout[0] = 0.15;
gravi.swing_draw[1] = 0.5;
gravi.swing_fadeout[1] = 0.1;
gravi.swing_draw[2] = 0.5;
gravi.swing_fadeout[2] = 0.08;
gravi.swing_draw[3] = 0.5;
gravi.swing_fadeout[3] = 0.11;
gravi.swing_draw[4] = 0.5;
gravi.swing_fadeout[4] = 0.09;
gravi.swing_draw[5] = 0.5;
gravi.swing_fadeout[5] = 0.13;
gravi.swing_draw[6] = 0.5;
gravi.swing_fadeout[6] = 0.12;
gravi.control_mode = 0;
gravi.auto_fade_out_speed = 0.006;
onEnterFrame = function () {
gravi.move_goto = (_ymouse + 50) / 50;
if (gravi.move_goto < 0) {
gravi.move_goto = 0;
} else if (gravi.move_goto > 1) {
gravi.move_goto = 1;
}
gravi.Update();
animation.gotoAndStop(int(gravi.move_draw * 78) + 1);
bar.changeValue(gravi.move_speed_overal / 25);
};
Symbol 1138 MovieClip Frame 2
onEnterFrame = null;
Symbol 1141 MovieClip Frame 1
stop();
if (_root.pp2 == false) {
_parent.btn2._visible = true;
}
Symbol 1148 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 1148 MovieClip Frame 55
gotoRandomHold();
Symbol 1148 MovieClip Frame 125
gotoRandomHold();
Symbol 1158 MovieClip Frame 1
stop();
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
g1.gotoAndStop(3);
}
Symbol 1158 MovieClip Frame 2
if (((_root.per_c21 == true) and (_root.per_c22 == false)) and (_root.per_c23 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c21 == false) and (_root.per_c22 == true)) and (_root.per_c23 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c21 == false) and (_root.per_c22 == false)) and (_root.per_c23 == true)) {
g1.gotoAndStop(3);
}
Symbol 1164 MovieClip Frame 1
stop();
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
g1.gotoAndStop(3);
}
Symbol 1172 MovieClip Frame 1
stop();
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
g1.gotoAndStop(3);
}
Symbol 1178 MovieClip Frame 1
stop();
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
g1.gotoAndStop(3);
}
Symbol 1186 MovieClip Frame 1
stop();
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
g1.gotoAndStop(3);
}
Symbol 1187 MovieClip Frame 1
if (_root.pp2 == true) {
d1.gotoAndStop(3);
d2.gotoAndStop(3);
d3.gotoAndStop(3);
d4.gotoAndStop(3);
d5.gotoAndStop(3);
}
Symbol 1187 MovieClip Frame 2
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 1187 MovieClip Frame 61
gotoRandomHold();
Symbol 1187 MovieClip Frame 126
gotoRandomHold();
Symbol 1228 MovieClip Frame 1
onEnterFrame = function () {
if (_root.pp4 == true) {
d1.gotoAndStop(2);
d2.gotoAndStop(2);
d3.gotoAndStop(2);
d4.gotoAndStop(2);
d5.gotoAndStop(2);
}
};
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
p1.gotoAndStop(1);
p2.gotoAndStop(1);
p3.gotoAndStop(1);
p4.gotoAndStop(1);
p5.gotoAndStop(1);
p6.gotoAndStop(1);
p7.gotoAndStop(1);
p8.gotoAndStop(1);
p9.gotoAndStop(1);
p10.gotoAndStop(1);
p11.gotoAndStop(1);
p12.gotoAndStop(1);
p13.gotoAndStop(1);
p14.gotoAndStop(1);
p15.gotoAndStop(1);
p16.gotoAndStop(1);
p17.gotoAndStop(1);
p18.gotoAndStop(1);
p19.gotoAndStop(1);
p20.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
p1.gotoAndStop(2);
p2.gotoAndStop(2);
p3.gotoAndStop(2);
p4.gotoAndStop(2);
p5.gotoAndStop(2);
p6.gotoAndStop(2);
p7.gotoAndStop(2);
p8.gotoAndStop(2);
p9.gotoAndStop(2);
p10.gotoAndStop(2);
p11.gotoAndStop(2);
p12.gotoAndStop(2);
p13.gotoAndStop(2);
p14.gotoAndStop(2);
p15.gotoAndStop(2);
p16.gotoAndStop(2);
p17.gotoAndStop(2);
p18.gotoAndStop(2);
p19.gotoAndStop(2);
p20.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
p1.gotoAndStop(3);
p2.gotoAndStop(3);
p3.gotoAndStop(3);
p4.gotoAndStop(3);
p5.gotoAndStop(3);
p6.gotoAndStop(3);
p7.gotoAndStop(3);
p8.gotoAndStop(3);
p9.gotoAndStop(3);
p10.gotoAndStop(3);
p11.gotoAndStop(3);
p12.gotoAndStop(3);
p13.gotoAndStop(3);
p14.gotoAndStop(3);
p15.gotoAndStop(3);
p16.gotoAndStop(3);
p17.gotoAndStop(3);
p18.gotoAndStop(3);
p19.gotoAndStop(3);
p20.gotoAndStop(3);
}
Symbol 1283 MovieClip Frame 1
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
p1.gotoAndStop(1);
p2.gotoAndStop(1);
p3.gotoAndStop(1);
p4.gotoAndStop(1);
p5.gotoAndStop(1);
p6.gotoAndStop(1);
p7.gotoAndStop(1);
p8.gotoAndStop(1);
p9.gotoAndStop(1);
p10.gotoAndStop(1);
p11.gotoAndStop(1);
p12.gotoAndStop(1);
p13.gotoAndStop(1);
p14.gotoAndStop(1);
p15.gotoAndStop(1);
p16.gotoAndStop(1);
p17.gotoAndStop(1);
p18.gotoAndStop(1);
p19.gotoAndStop(1);
p20.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
p1.gotoAndStop(2);
p2.gotoAndStop(2);
p3.gotoAndStop(2);
p4.gotoAndStop(2);
p5.gotoAndStop(2);
p6.gotoAndStop(2);
p7.gotoAndStop(2);
p8.gotoAndStop(2);
p9.gotoAndStop(2);
p10.gotoAndStop(2);
p11.gotoAndStop(2);
p12.gotoAndStop(2);
p13.gotoAndStop(2);
p14.gotoAndStop(2);
p15.gotoAndStop(2);
p16.gotoAndStop(2);
p17.gotoAndStop(2);
p18.gotoAndStop(2);
p19.gotoAndStop(2);
p20.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
p1.gotoAndStop(3);
p2.gotoAndStop(3);
p3.gotoAndStop(3);
p4.gotoAndStop(3);
p5.gotoAndStop(3);
p6.gotoAndStop(3);
p7.gotoAndStop(3);
p8.gotoAndStop(3);
p9.gotoAndStop(3);
p10.gotoAndStop(3);
p11.gotoAndStop(3);
p12.gotoAndStop(3);
p13.gotoAndStop(3);
p14.gotoAndStop(3);
p15.gotoAndStop(3);
p16.gotoAndStop(3);
p17.gotoAndStop(3);
p18.gotoAndStop(3);
p19.gotoAndStop(3);
p20.gotoAndStop(3);
}
Symbol 1283 MovieClip Frame 9
stop();
Symbol 1284 MovieClip Frame 1
onEnterFrame = function () {
if (_root.pp4 == true) {
d1.gotoAndStop(2);
d2.gotoAndStop(2);
d3.gotoAndStop(2);
d4.gotoAndStop(2);
d5.gotoAndStop(2);
}
};
Symbol 1284 MovieClip Frame 29
_parent._parent.gotoAndStop(3);
Symbol 1285 MovieClip Frame 1
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
animationn.p1.gotoAndStop(1);
animationn.p2.gotoAndStop(1);
animationn.p3.gotoAndStop(1);
animationn.p4.gotoAndStop(1);
animationn.p5.gotoAndStop(1);
animationn.p6.gotoAndStop(1);
animationn.p7.gotoAndStop(1);
animationn.p8.gotoAndStop(1);
animationn.p9.gotoAndStop(1);
animationn.p10.gotoAndStop(1);
animationn.p11.gotoAndStop(1);
animationn.p12.gotoAndStop(1);
animationn.p13.gotoAndStop(1);
animationn.p14.gotoAndStop(1);
animationn.p15.gotoAndStop(1);
animationn.p16.gotoAndStop(1);
animationn.p17.gotoAndStop(1);
animationn.p18.gotoAndStop(1);
animationn.p19.gotoAndStop(1);
animationn.p20.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
animationn.p1.gotoAndStop(2);
animationn.p2.gotoAndStop(2);
animationn.p3.gotoAndStop(2);
animationn.p4.gotoAndStop(2);
animationn.p5.gotoAndStop(2);
animationn.p6.gotoAndStop(2);
animationn.p7.gotoAndStop(2);
animationn.p8.gotoAndStop(2);
animationn.p9.gotoAndStop(2);
animationn.p10.gotoAndStop(2);
animationn.p11.gotoAndStop(2);
animationn.p12.gotoAndStop(2);
animationn.p13.gotoAndStop(2);
animationn.p14.gotoAndStop(2);
animationn.p15.gotoAndStop(2);
animationn.p16.gotoAndStop(2);
animationn.p17.gotoAndStop(2);
animationn.p18.gotoAndStop(2);
animationn.p19.gotoAndStop(2);
animationn.p20.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
animationn.p1.gotoAndStop(3);
animationn.p2.gotoAndStop(3);
animationn.p3.gotoAndStop(3);
animationn.p4.gotoAndStop(3);
animationn.p5.gotoAndStop(3);
animationn.p6.gotoAndStop(3);
animationn.p7.gotoAndStop(3);
animationn.p8.gotoAndStop(3);
animationn.p9.gotoAndStop(3);
animationn.p10.gotoAndStop(3);
animationn.p11.gotoAndStop(3);
animationn.p12.gotoAndStop(3);
animationn.p13.gotoAndStop(3);
animationn.p14.gotoAndStop(3);
animationn.p15.gotoAndStop(3);
animationn.p16.gotoAndStop(3);
animationn.p17.gotoAndStop(3);
animationn.p18.gotoAndStop(3);
animationn.p19.gotoAndStop(3);
animationn.p20.gotoAndStop(3);
}
function onBarFilled() {
gotoAndStop (2);
_root.pp4 = true;
}
stop();
var gravi = new Gravitation(7);
gravi.move_draw = 0.5;
gravi.swing_draw[0] = 0.5;
gravi.swing_fadeout[0] = 0.15;
gravi.swing_draw[1] = 0.5;
gravi.swing_fadeout[1] = 0.1;
gravi.swing_draw[2] = 0.5;
gravi.swing_fadeout[2] = 0.08;
gravi.swing_draw[3] = 0.5;
gravi.swing_fadeout[3] = 0.11;
gravi.swing_draw[4] = 0.5;
gravi.swing_fadeout[4] = 0.09;
gravi.swing_draw[5] = 0.5;
gravi.swing_fadeout[5] = 0.13;
gravi.swing_draw[6] = 0.5;
gravi.swing_fadeout[6] = 0.12;
gravi.control_mode = 0;
gravi.auto_fade_out_speed = 0.006;
onEnterFrame = function () {
gravi.move_goto = (_ymouse + 50) / 50;
if (gravi.move_goto < 0) {
gravi.move_goto = 0;
} else if (gravi.move_goto > 1) {
gravi.move_goto = 1;
}
gravi.Update();
animation.gotoAndStop(int(gravi.move_draw * 78) + 1);
bar.changeValue(gravi.move_speed_overal / 25);
};
Symbol 1285 MovieClip Frame 2
onEnterFrame = null;
Symbol 1296 MovieClip Frame 1
if (_root.pp4 == true) {
d1.gotoAndStop(2);
d2.gotoAndStop(2);
d3.gotoAndStop(2);
d4.gotoAndStop(2);
d5.gotoAndStop(2);
}
if (((_root.per_c21 == true) and (_root.per_c22 == false)) and (_root.per_c23 == false)) {
p1.gotoAndStop(1);
p2.gotoAndStop(1);
p3.gotoAndStop(1);
p4.gotoAndStop(1);
p5.gotoAndStop(1);
p6.gotoAndStop(1);
p7.gotoAndStop(1);
p8.gotoAndStop(1);
p9.gotoAndStop(1);
p10.gotoAndStop(1);
p11.gotoAndStop(1);
p12.gotoAndStop(1);
p13.gotoAndStop(1);
p14.gotoAndStop(1);
p15.gotoAndStop(1);
p16.gotoAndStop(1);
p17.gotoAndStop(1);
p18.gotoAndStop(1);
p19.gotoAndStop(1);
p20.gotoAndStop(1);
}
if (((_root.per_c21 == false) and (_root.per_c22 == true)) and (_root.per_c23 == false)) {
p1.gotoAndStop(2);
p2.gotoAndStop(2);
p3.gotoAndStop(2);
p4.gotoAndStop(2);
p5.gotoAndStop(2);
p6.gotoAndStop(2);
p7.gotoAndStop(2);
p8.gotoAndStop(2);
p9.gotoAndStop(2);
p10.gotoAndStop(2);
p11.gotoAndStop(2);
p12.gotoAndStop(2);
p13.gotoAndStop(2);
p14.gotoAndStop(2);
p15.gotoAndStop(2);
p16.gotoAndStop(2);
p17.gotoAndStop(2);
p18.gotoAndStop(2);
p19.gotoAndStop(2);
p20.gotoAndStop(2);
}
if (((_root.per_c21 == false) and (_root.per_c22 == false)) and (_root.per_c23 == true)) {
p1.gotoAndStop(3);
p2.gotoAndStop(3);
p3.gotoAndStop(3);
p4.gotoAndStop(3);
p5.gotoAndStop(3);
p6.gotoAndStop(3);
p7.gotoAndStop(3);
p8.gotoAndStop(3);
p9.gotoAndStop(3);
p10.gotoAndStop(3);
p11.gotoAndStop(3);
p12.gotoAndStop(3);
p13.gotoAndStop(3);
p14.gotoAndStop(3);
p15.gotoAndStop(3);
p16.gotoAndStop(3);
p17.gotoAndStop(3);
p18.gotoAndStop(3);
p19.gotoAndStop(3);
p20.gotoAndStop(3);
}
Symbol 1329 MovieClip Frame 1
if (((_root.per_c21 == true) and (_root.per_c22 == false)) and (_root.per_c23 == false)) {
p1.gotoAndStop(1);
p2.gotoAndStop(1);
p3.gotoAndStop(1);
p4.gotoAndStop(1);
p5.gotoAndStop(1);
p6.gotoAndStop(1);
p7.gotoAndStop(1);
p8.gotoAndStop(1);
p9.gotoAndStop(1);
p10.gotoAndStop(1);
p11.gotoAndStop(1);
p12.gotoAndStop(1);
p13.gotoAndStop(1);
p14.gotoAndStop(1);
p15.gotoAndStop(1);
p16.gotoAndStop(1);
p17.gotoAndStop(1);
p18.gotoAndStop(1);
p19.gotoAndStop(1);
p20.gotoAndStop(1);
}
if (((_root.per_c21 == false) and (_root.per_c22 == true)) and (_root.per_c23 == false)) {
p1.gotoAndStop(2);
p2.gotoAndStop(2);
p3.gotoAndStop(2);
p4.gotoAndStop(2);
p5.gotoAndStop(2);
p6.gotoAndStop(2);
p7.gotoAndStop(2);
p8.gotoAndStop(2);
p9.gotoAndStop(2);
p10.gotoAndStop(2);
p11.gotoAndStop(2);
p12.gotoAndStop(2);
p13.gotoAndStop(2);
p14.gotoAndStop(2);
p15.gotoAndStop(2);
p16.gotoAndStop(2);
p17.gotoAndStop(2);
p18.gotoAndStop(2);
p19.gotoAndStop(2);
p20.gotoAndStop(2);
}
if (((_root.per_c21 == false) and (_root.per_c22 == false)) and (_root.per_c23 == true)) {
p1.gotoAndStop(3);
p2.gotoAndStop(3);
p3.gotoAndStop(3);
p4.gotoAndStop(3);
p5.gotoAndStop(3);
p6.gotoAndStop(3);
p7.gotoAndStop(3);
p8.gotoAndStop(3);
p9.gotoAndStop(3);
p10.gotoAndStop(3);
p11.gotoAndStop(3);
p12.gotoAndStop(3);
p13.gotoAndStop(3);
p14.gotoAndStop(3);
p15.gotoAndStop(3);
p16.gotoAndStop(3);
p17.gotoAndStop(3);
p18.gotoAndStop(3);
p19.gotoAndStop(3);
p20.gotoAndStop(3);
}
Symbol 1329 MovieClip Frame 9
stop();
Symbol 1330 MovieClip Frame 1
if (_root.pp2 == true) {
d1.gotoAndStop(3);
d2.gotoAndStop(3);
d3.gotoAndStop(3);
d4.gotoAndStop(3);
d5.gotoAndStop(3);
}
Symbol 1330 MovieClip Frame 26
_parent._parent.gotoAndStop(1);
Symbol 1331 MovieClip Frame 1
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
animationn.p1.gotoAndStop(1);
animationn.p2.gotoAndStop(1);
animationn.p3.gotoAndStop(1);
animationn.p4.gotoAndStop(1);
animationn.p5.gotoAndStop(1);
animationn.p6.gotoAndStop(1);
animationn.p7.gotoAndStop(1);
animationn.p8.gotoAndStop(1);
animationn.p9.gotoAndStop(1);
animationn.p10.gotoAndStop(1);
animationn.p11.gotoAndStop(1);
animationn.p12.gotoAndStop(1);
animationn.p13.gotoAndStop(1);
animationn.p14.gotoAndStop(1);
animationn.p15.gotoAndStop(1);
animationn.p16.gotoAndStop(1);
animationn.p17.gotoAndStop(1);
animationn.p18.gotoAndStop(1);
animationn.p19.gotoAndStop(1);
animationn.p20.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
animationn.p1.gotoAndStop(2);
animationn.p2.gotoAndStop(2);
animationn.p3.gotoAndStop(2);
animationn.p4.gotoAndStop(2);
animationn.p5.gotoAndStop(2);
animationn.p6.gotoAndStop(2);
animationn.p7.gotoAndStop(2);
animationn.p8.gotoAndStop(2);
animationn.p9.gotoAndStop(2);
animationn.p10.gotoAndStop(2);
animationn.p11.gotoAndStop(2);
animationn.p12.gotoAndStop(2);
animationn.p13.gotoAndStop(2);
animationn.p14.gotoAndStop(2);
animationn.p15.gotoAndStop(2);
animationn.p16.gotoAndStop(2);
animationn.p17.gotoAndStop(2);
animationn.p18.gotoAndStop(2);
animationn.p19.gotoAndStop(2);
animationn.p20.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
animationn.p1.gotoAndStop(3);
animationn.p2.gotoAndStop(3);
animationn.p3.gotoAndStop(3);
animationn.p4.gotoAndStop(3);
animationn.p5.gotoAndStop(3);
animationn.p6.gotoAndStop(3);
animationn.p7.gotoAndStop(3);
animationn.p8.gotoAndStop(3);
animationn.p9.gotoAndStop(3);
animationn.p10.gotoAndStop(3);
animationn.p11.gotoAndStop(3);
animationn.p12.gotoAndStop(3);
animationn.p13.gotoAndStop(3);
animationn.p14.gotoAndStop(3);
animationn.p15.gotoAndStop(3);
animationn.p16.gotoAndStop(3);
animationn.p17.gotoAndStop(3);
animationn.p18.gotoAndStop(3);
animationn.p19.gotoAndStop(3);
animationn.p20.gotoAndStop(3);
}
function onBarFilled() {
gotoAndStop (2);
_root.pp2 = true;
}
stop();
var gravi = new Gravitation(7);
gravi.move_draw = 0.5;
gravi.swing_draw[0] = 0.5;
gravi.swing_fadeout[0] = 0.15;
gravi.swing_draw[1] = 0.5;
gravi.swing_fadeout[1] = 0.1;
gravi.swing_draw[2] = 0.5;
gravi.swing_fadeout[2] = 0.08;
gravi.swing_draw[3] = 0.5;
gravi.swing_fadeout[3] = 0.11;
gravi.swing_draw[4] = 0.5;
gravi.swing_fadeout[4] = 0.09;
gravi.swing_draw[5] = 0.5;
gravi.swing_fadeout[5] = 0.13;
gravi.swing_draw[6] = 0.5;
gravi.swing_fadeout[6] = 0.12;
gravi.control_mode = 0;
gravi.auto_fade_out_speed = 0.006;
onEnterFrame = function () {
gravi.move_goto = (_ymouse + 50) / 50;
if (gravi.move_goto < 0) {
gravi.move_goto = 0;
} else if (gravi.move_goto > 1) {
gravi.move_goto = 1;
}
gravi.Update();
animation.gotoAndStop(int(gravi.move_draw * 78) + 1);
bar.changeValue(gravi.move_speed_overal / 25);
};
Symbol 1331 MovieClip Frame 2
onEnterFrame = null;
Symbol 1332 MovieClip Frame 1
stop();
if (_root.pp1 == false) {
_parent.btn1._visible = true;
}
Symbol 1337 MovieClip Frame 1
_root.pp1 = false;
_root.pp2 = false;
_root.pp3 = false;
_root.pp4 = false;
btn1.onPress = function () {
part1.gotoAndStop(2);
btn1._visible = false;
btn2._visible = false;
_parent.help_mc.gotoAndStop(2);
};
btn2.onPress = function () {
part2.gotoAndStop(2);
btn2._visible = false;
btn1._visible = false;
_parent.help_mc.gotoAndStop(2);
};
onEnterFrame = function () {
if ((_root.pp1 == true) and (_root.pp2 == true)) {
_parent.next_btn._visible = true;
}
};
Symbol 1345 MovieClip Frame 51
_parent.gotoAndStop(1);
Symbol 1346 MovieClip Frame 1
stop();
Symbol 1348 MovieClip [52469f1d] Frame 1
next_btn._visible = false;
next_btn.onPress = function () {
_root.gotoScreen("1");
};
Symbol 1364 MovieClip Frame 1
_root.pp1 = false;
_root.pp2 = false;
_root.pp3 = false;
_root.pp4 = false;
btn1.onPress = function () {
part1.gotoAndStop(2);
btn1._visible = false;
btn2._visible = false;
};
btn2.onPress = function () {
part2.gotoAndStop(2);
btn2._visible = false;
btn1._visible = false;
};
onEnterFrame = function () {
if ((_root.pp1 == true) and (_root.pp2 == true)) {
_parent.next_btn._visible = true;
}
};
Symbol 1364 MovieClip Frame 2
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 1364 MovieClip Frame 60
gotoRandomHold();
Symbol 1364 MovieClip Frame 118
gotoRandomHold();
Symbol 1368 MovieClip [3e508a7b] Frame 1
stop();
next_btn.onPress = function () {
play();
};
Symbol 1368 MovieClip [3e508a7b] Frame 80
stop();
_root.gotoScreen("1");
Symbol 1376 MovieClip Frame 7
stop();
Symbol 1377 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c3 == true) {
gotoAndStop (2);
}
};
stop();
Symbol 1377 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c3 == false) {
gotoAndStop (1);
}
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1383 MovieClip Frame 7
stop();
Symbol 1384 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c3 == true) {
gotoAndStop (2);
}
};
stop();
Symbol 1384 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c3 == false) {
gotoAndStop (1);
}
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1393 MovieClip Frame 7
stop();
Symbol 1394 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c5 == true) {
gotoAndStop (2);
}
};
Symbol 1394 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c5 == false) {
gotoAndStop (1);
}
if (((_root.per_c51 == true) and (_root.per_c52 == false)) and (_root.per_c53 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c51 == false) and (_root.per_c52 == true)) and (_root.per_c53 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c51 == false) and (_root.per_c52 == false)) and (_root.per_c53 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1400 MovieClip Frame 7
stop();
Symbol 1401 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c4 == true) {
gotoAndStop (2);
}
};
stop();
Symbol 1401 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c4 == false) {
gotoAndStop (1);
}
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1407 MovieClip Frame 7
stop();
Symbol 1408 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c4 == true) {
gotoAndStop (2);
}
};
Symbol 1408 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c4 == false) {
gotoAndStop (1);
}
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1414 MovieClip Frame 1
stop();
Symbol 1415 MovieClip Frame 7
stop();
Symbol 1421 MovieClip Frame 7
stop();
Symbol 1422 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c1 == true) {
gotoAndStop (2);
}
};
stop();
Symbol 1422 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c1 == false) {
gotoAndStop (1);
}
if (_root.per_c3 == true) {
gotoAndStop (3);
}
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1422 MovieClip Frame 3
onEnterFrame = function () {
if (_root.per_c3 == false) {
gotoAndStop (2);
g1.gotoAndStop(7);
}
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1431 MovieClip Frame 1
stop();
Symbol 1432 MovieClip Frame 7
stop();
Symbol 1437 MovieClip Frame 7
stop();
Symbol 1438 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c1 == true) {
gotoAndStop (2);
}
};
Symbol 1438 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c1 == false) {
gotoAndStop (1);
}
if (_root.per_c3 == true) {
gotoAndStop (3);
}
if (_root.per_c3 == true) {
g1.g1.g1._visible = false;
} else {
g1.g1.g1._visible = true;
}
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.g1.gotoAndStop(3);
}
};
_parent._parent._parent.stop_btn1._visible = false;
Symbol 1438 MovieClip Frame 3
_parent.gg1._visible = false;
_parent.gg2._visible = false;
onEnterFrame = function () {
if (_root.per_c3 == false) {
gotoAndStop (2);
g1.gotoAndStop(7);
_parent.gg1._visible = true;
_parent.gg2._visible = true;
}
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g11.g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g11.g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g11.g1.gotoAndStop(3);
}
};
_parent._parent._parent.stop_btn1._visible = true;
Symbol 1443 MovieClip Frame 1
stop();
Symbol 1444 MovieClip Frame 7
stop();
Symbol 1449 MovieClip Frame 7
stop();
Symbol 1450 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c1 == true) {
gotoAndStop (2);
}
};
stop();
Symbol 1450 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c1 == false) {
gotoAndStop (1);
}
if (_root.per_c3 == true) {
gotoAndStop (3);
}
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1450 MovieClip Frame 3
onEnterFrame = function () {
if (_root.per_c3 == false) {
gotoAndStop (2);
g1.gotoAndStop(7);
}
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1462 MovieClip Frame 1
stop();
Symbol 1463 MovieClip Frame 7
stop();
Symbol 1468 MovieClip Frame 7
stop();
Symbol 1469 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c1 == true) {
gotoAndStop (2);
}
};
Symbol 1469 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c1 == false) {
gotoAndStop (1);
}
if (_root.per_c3 == true) {
gotoAndStop (3);
}
if (_root.per_c3 == true) {
g1.g1.g1._visible = false;
} else {
g1.g1.g1._visible = true;
}
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1469 MovieClip Frame 3
onEnterFrame = function () {
if (_root.per_c3 == false) {
gotoAndStop (2);
g1.gotoAndStop(7);
}
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g11.g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g11.g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g11.g1.gotoAndStop(3);
}
};
Symbol 1474 MovieClip Frame 1
stop();
Symbol 1475 MovieClip Frame 7
stop();
Symbol 1480 MovieClip Frame 7
stop();
Symbol 1481 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c1 == true) {
gotoAndStop (2);
}
};
Symbol 1481 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c1 == false) {
gotoAndStop (1);
}
if (_root.per_c3 == true) {
gotoAndStop (3);
}
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1481 MovieClip Frame 3
onEnterFrame = function () {
if (_root.per_c3 == false) {
gotoAndStop (2);
g1.gotoAndStop(7);
}
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g11.g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g11.g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g11.g1.gotoAndStop(3);
}
};
Symbol 1486 MovieClip Frame 1
stop();
Symbol 1487 MovieClip Frame 7
stop();
Symbol 1488 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c1 == true) {
gotoAndStop (2);
}
};
Symbol 1488 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c1 == false) {
gotoAndStop (1);
}
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1492 MovieClip Frame 1
stop();
Symbol 1493 MovieClip Frame 7
stop();
Symbol 1494 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c1 == true) {
gotoAndStop (2);
}
};
Symbol 1494 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c1 == false) {
gotoAndStop (1);
}
if (((_root.per_c11 == true) and (_root.per_c12 == false)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c11 == false) and (_root.per_c12 == true)) and (_root.per_c13 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c11 == false) and (_root.per_c12 == false)) and (_root.per_c13 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1495 MovieClip Frame 58
gotoAndPlay (1);
Symbol 1502 MovieClip Frame 7
stop();
Symbol 1503 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c5 == true) {
gotoAndStop (2);
}
};
stop();
Symbol 1503 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c5 == false) {
gotoAndStop (1);
}
if (((_root.per_c51 == true) and (_root.per_c52 == false)) and (_root.per_c53 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c51 == false) and (_root.per_c52 == true)) and (_root.per_c53 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c51 == false) and (_root.per_c52 == false)) and (_root.per_c53 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1509 MovieClip Frame 7
stop();
Symbol 1510 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c4 == true) {
gotoAndStop (2);
}
};
stop();
Symbol 1510 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c4 == false) {
gotoAndStop (1);
}
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1519 MovieClip Frame 7
stop();
Symbol 1524 MovieClip Frame 7
stop();
Symbol 1525 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c2 == true) {
gotoAndStop (2);
}
};
Symbol 1525 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c2 == false) {
gotoAndStop (1);
}
if (_root.per_c4 == true) {
gotoAndStop (3);
}
if (_root.per_c4 == true) {
g1.g1.g1._visible = false;
} else {
g1.g1.g1._visible = true;
}
_parent._parent.stop_btn2._visible = false;
if (((_root.per_c21 == true) and (_root.per_c22 == false)) and (_root.per_c23 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c21 == false) and (_root.per_c22 == true)) and (_root.per_c23 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c21 == false) and (_root.per_c22 == false)) and (_root.per_c23 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1525 MovieClip Frame 3
onEnterFrame = function () {
if (_root.per_c4 == false) {
gotoAndStop (2);
g1.gotoAndStop(7);
}
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
g11.g1.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
g11.g1.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
g11.g1.gotoAndStop(3);
}
};
_parent._parent.stop_btn2._visible = true;
Symbol 1531 MovieClip Frame 7
stop();
Symbol 1532 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c4 == true) {
gotoAndStop (2);
}
};
stop();
Symbol 1532 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c4 == false) {
gotoAndStop (1);
}
if (((_root.per_c41 == true) and (_root.per_c42 == false)) and (_root.per_c43 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c41 == false) and (_root.per_c42 == true)) and (_root.per_c43 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c41 == false) and (_root.per_c42 == false)) and (_root.per_c43 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1536 MovieClip Frame 1
stop();
onEnterFrame = function () {
if ((_root.per_c4 == true) or (_root.per_c3 == true)) {
gotoAndStop (2);
}
};
stop();
Symbol 1536 MovieClip Frame 2
onEnterFrame = function () {
if ((_root.per_c4 == false) and (_root.per_c3 == false)) {
gotoAndStop (1);
}
if ((_root.per_c4 == true) and (_root.per_c3 == false)) {
gotoAndStop (2);
}
if ((_root.per_c4 == false) and (_root.per_c3 == true)) {
gotoAndStop (2);
}
};
Symbol 1542 MovieClip Frame 7
stop();
Symbol 1543 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c3 == true) {
gotoAndStop (2);
}
};
stop();
Symbol 1543 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c3 == false) {
gotoAndStop (1);
}
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1549 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 1549 MovieClip Frame 60
gotoRandomHold();
Symbol 1549 MovieClip Frame 120
gotoRandomHold();
Symbol 1552 MovieClip Frame 1
function gotoRandomHold() {
gotoAndPlay("hold" + (random(2) + 1));
}
Symbol 1552 MovieClip Frame 100
gotoRandomHold();
Symbol 1552 MovieClip Frame 200
gotoRandomHold();
Symbol 1586 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c3 == true) {
gotoAndStop (2);
}
};
Symbol 1586 MovieClip Frame 2
stop();
onEnterFrame = function () {
if (_root.per_c3 == false) {
gotoAndStop (1);
}
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.gotoAndStop(3);
}
};
Symbol 1595 MovieClip Frame 1
stop();
next_btn.onPress = function () {
play();
};
Symbol 1595 MovieClip Frame 2
stop();
next_btn.onPress = function () {
play();
};
Symbol 1595 MovieClip Frame 3
stop();
next_btn.onPress = function () {
_root.gotoScreen("1");
};
Symbol 1599 MovieClip Frame 14
stop();
Symbol 1610 MovieClip Frame 7
stop();
Symbol 1611 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.per_c3 == true) {
gotoAndStop (2);
}
};
stop();
Symbol 1611 MovieClip Frame 2
onEnterFrame = function () {
if (_root.per_c3 == false) {
gotoAndStop (1);
}
if (((_root.per_c31 == true) and (_root.per_c32 == false)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(1);
}
if (((_root.per_c31 == false) and (_root.per_c32 == true)) and (_root.per_c33 == false)) {
g1.g1.gotoAndStop(2);
}
if (((_root.per_c31 == false) and (_root.per_c32 == false)) and (_root.per_c33 == true)) {
g1.g1.gotoAndStop(3);
}
};
Symbol 1634 MovieClip Frame 1
stop();
Symbol 1644 MovieClip Frame 1
stop();
Symbol 1654 MovieClip Frame 1
stop();
Symbol 1664 MovieClip Frame 1
stop();
Symbol 1667 MovieClip Frame 1
stop();
_parent.cancel1._visible = false;
Symbol 1669 MovieClip Frame 1
stop();
_parent.cancel2._visible = false;
Symbol 1671 MovieClip Frame 1
stop();
_parent.cancel3._visible = false;
Symbol 1673 MovieClip Frame 1
stop();
_parent.cancel4._visible = false;
Symbol 1675 MovieClip Frame 1
stop();
_parent.cancel5._visible = false;
Symbol 1683 MovieClip Frame 30
gotoAndPlay (10);
Symbol 1694 MovieClip [9eb3c6f0] Frame 1
per_next1 = false;
per_next2 = false;
per_next3 = false;
per_next4 = false;
per_next5 = false;
onEnterFrame = function () {
if (((((per_next1 == true) and (per_next2 == true)) and (per_next3 == true)) and (per_next4 == true)) and (per_next5 == true)) {
next_btn._visible = true;
} else {
next_btn._visible = false;
}
};
stop_btn1._visible = false;
stop_btn2._visible = false;
stop_btn3._visible = true;
stop_btn4._visible = true;
clothes1.gotoAndStop(1);
clothes2.gotoAndStop(1);
clothes3.gotoAndStop(1);
clothes4.gotoAndStop(1);
clothes5.gotoAndStop(1);
clothes11._visible = false;
clothes22._visible = false;
clothes33._visible = false;
clothes44._visible = false;
clothes55._visible = false;
cancel1._visible = false;
cancel2._visible = false;
cancel3._visible = false;
cancel4._visible = false;
cancel5._visible = false;
_root.per_c11 = false;
_root.per_c12 = false;
_root.per_c13 = false;
_root.per_c1 = false;
_root.per_c21 = false;
_root.per_c22 = false;
_root.per_c23 = false;
_root.per_c2 = false;
_root.per_c31 = false;
_root.per_c32 = false;
_root.per_c33 = false;
_root.per_c3 = false;
_root.per_c41 = false;
_root.per_c42 = false;
_root.per_c43 = false;
_root.per_c4 = false;
_root.per_c51 = false;
_root.per_c52 = false;
_root.per_c53 = false;
_root.per_c5 = false;
clothes1.onPress = function () {
clothes1._visible = false;
clothes11._visible = true;
};
clothes11.btn11.onPress = function () {
clothes1.gotoAndStop(2);
clothes11._visible = false;
clothes1._visible = true;
cancel1._visible = true;
_root.per_c11 = true;
_root.per_c12 = false;
_root.per_c13 = false;
_root.per_c1 = true;
stop_btn3._visible = false;
per_next1 = true;
};
clothes11.btn12.onPress = function () {
clothes1.gotoAndStop(3);
clothes11._visible = false;
clothes1._visible = true;
cancel1._visible = true;
_root.per_c11 = false;
_root.per_c12 = true;
_root.per_c13 = false;
_root.per_c1 = true;
stop_btn3._visible = false;
per_next1 = true;
};
clothes11.btn13.onPress = function () {
clothes1.gotoAndStop(4);
clothes11._visible = false;
clothes1._visible = true;
cancel1._visible = true;
_root.per_c11 = false;
_root.per_c12 = false;
_root.per_c13 = true;
_root.per_c1 = true;
stop_btn3._visible = false;
per_next1 = true;
};
cancel1.onPress = function () {
clothes1.gotoAndStop(1);
clothes1._visible = true;
clothes11._visible = false;
_root.per_c1 = false;
_root.per1 = true;
stop_btn3._visible = true;
per_next1 = false;
};
clothes2.onPress = function () {
clothes2._visible = false;
clothes22._visible = true;
};
clothes22.btn21.onPress = function () {
clothes2.gotoAndStop(2);
clothes22._visible = false;
clothes2._visible = true;
cancel2._visible = true;
_root.per_c21 = true;
_root.per_c22 = false;
_root.per_c23 = false;
_root.per_c2 = true;
stop_btn4._visible = false;
per_next2 = true;
};
clothes22.btn22.onPress = function () {
clothes2.gotoAndStop(3);
clothes22._visible = false;
clothes2._visible = true;
cancel2._visible = true;
_root.per_c21 = false;
_root.per_c22 = true;
_root.per_c23 = false;
_root.per_c2 = true;
stop_btn4._visible = false;
per_next2 = true;
};
clothes22.btn23.onPress = function () {
clothes2.gotoAndStop(4);
clothes22._visible = false;
clothes2._visible = true;
cancel2._visible = true;
_root.per_c21 = false;
_root.per_c22 = false;
_root.per_c23 = true;
_root.per_c2 = true;
stop_btn4._visible = false;
per_next2 = true;
};
cancel2.onPress = function () {
clothes2.gotoAndStop(1);
clothes2._visible = true;
clothes22._visible = false;
_root.per_c2 = false;
per2 = false;
stop_btn4._visible = true;
per_next2 = false;
};
clothes3.onPress = function () {
clothes3._visible = false;
clothes33._visible = true;
};
clothes33.btn31.onPress = function () {
clothes3.gotoAndStop(2);
clothes33._visible = false;
clothes3._visible = true;
cancel3._visible = true;
_root.per_c31 = true;
_root.per_c32 = false;
_root.per_c33 = false;
_root.per_c3 = true;
per_next3 = true;
};
clothes33.btn32.onPress = function () {
clothes3.gotoAndStop(3);
clothes33._visible = false;
clothes3._visible = true;
cancel3._visible = true;
_root.per_c31 = false;
_root.per_c32 = true;
_root.per_c33 = false;
_root.per_c3 = true;
per_next3 = true;
};
clothes33.btn33.onPress = function () {
clothes3.gotoAndStop(4);
clothes33._visible = false;
clothes3._visible = true;
cancel3._visible = true;
_root.per_c31 = false;
_root.per_c32 = false;
_root.per_c33 = true;
_root.per_c3 = true;
per_next3 = true;
};
cancel3.onPress = function () {
clothes3.gotoAndStop(1);
clothes3._visible = true;
clothes33._visible = false;
_root.per_c3 = false;
per_next3 = false;
};
clothes4.onPress = function () {
clothes4._visible = false;
clothes44._visible = true;
};
clothes44.btn41.onPress = function () {
clothes4.gotoAndStop(2);
clothes44._visible = false;
clothes4._visible = true;
cancel4._visible = true;
_root.per_c41 = true;
_root.per_c42 = false;
_root.per_c43 = false;
_root.per_c4 = true;
per_next4 = true;
};
clothes44.btn42.onPress = function () {
clothes4.gotoAndStop(3);
clothes44._visible = false;
clothes4._visible = true;
cancel4._visible = true;
_root.per_c41 = false;
_root.per_c42 = true;
_root.per_c43 = false;
_root.per_c4 = true;
per_next4 = true;
};
clothes44.btn43.onPress = function () {
clothes4.gotoAndStop(4);
clothes44._visible = false;
clothes4._visible = true;
cancel4._visible = true;
_root.per_c41 = false;
_root.per_c42 = false;
_root.per_c43 = true;
_root.per_c4 = true;
per_next4 = true;
};
cancel4.onPress = function () {
clothes4.gotoAndStop(1);
clothes4._visible = true;
clothes44._visible = false;
_root.per_c4 = false;
per_next4 = false;
};
clothes5.onPress = function () {
clothes5._visible = false;
clothes55._visible = true;
};
clothes55.btn51.onPress = function () {
clothes5.gotoAndStop(2);
clothes55._visible = false;
clothes5._visible = true;
cancel5._visible = true;
_root.per_c51 = true;
_root.per_c52 = false;
_root.per_c53 = false;
_root.per_c5 = true;
per_next5 = true;
};
clothes55.btn52.onPress = function () {
clothes5.gotoAndStop(3);
clothes55._visible = false;
clothes5._visible = true;
cancel5._visible = true;
_root.per_c51 = false;
_root.per_c52 = true;
_root.per_c53 = false;
_root.per_c5 = true;
per_next5 = true;
};
clothes55.btn53.onPress = function () {
clothes5.gotoAndStop(4);
clothes55._visible = false;
clothes5._visible = true;
cancel5._visible = true;
_root.per_c51 = false;
_root.per_c52 = false;
_root.per_c53 = true;
_root.per_c5 = true;
per_next5 = true;
};
cancel5.onPress = function () {
clothes5.gotoAndStop(1);
clothes5._visible = true;
clothes55._visible = false;
_root.per_c5 = false;
per_next5 = false;
};
next_btn.onPress = function () {
_root.gotoScreen("1");
};
Symbol 1707 MovieClip Frame 10
stop();
next_btn.onPress = function () {
play();
};
Symbol 1707 MovieClip Frame 16
stop();
_root.gotoScreen("1");
Symbol 1708 MovieClip Frame 1
stop();
Symbol 1709 MovieClip [61e82a4f] Frame 1
phone._visible = false;
btn_phone.onPress = function () {
phone._visible = true;
btn_phone._visible = false;
phone.gotoAndStop(2);
};
Symbol 1711 MovieClip [trans_screen] Frame 1
var next_screen;
Symbol 1711 MovieClip [trans_screen] Frame 10
stop();
_root.setScreen(next_screen);
Symbol 1711 MovieClip [trans_screen] Frame 20
removeMovieClip(this);
Symbol 1734 MovieClip [159f0b37] Frame 89
stop();
_root.gotoScreen("-10");
Symbol 1738 MovieClip [__Packages.Gravitation] Frame 0
class Gravitation
{
var move_delay, move_speed_overal, auto_anim_angle, control_mode, auto_fade_out_speed, face_frame, auto_speed, auto_move_fade_k, move_goto, actual_delay, move_speed, move_draw, swing_goto;
function Gravitation (swings_num) {
var _local2;
_local2 = 0;
while (_local2 < 24) {
move_speeds.push(0);
_local2++;
}
_local2 = 0;
while (_local2 < swings_num) {
swing_draw.push(0.5);
swing_speed.push(0);
swing_fadeout.push(0.1);
_local2++;
}
move_delay = 3;
move_speed_overal = 0;
auto_anim_angle = 0;
control_mode = 0;
auto_fade_out_speed = 0.005;
face_frame = 1;
auto_speed = 0.2;
}
function Update() {
var _local3;
var _local2;
if (control_mode > 0) {
if (control_mode == 1) {
auto_move_fade_k = 1;
} else if (control_mode == 2) {
auto_move_fade_k = auto_move_fade_k - auto_fade_out_speed;
if (auto_move_fade_k < 0) {
auto_move_fade_k = 0;
}
}
auto_anim_angle = auto_anim_angle + ((auto_move_fade_k * Math.PI) * auto_speed);
if (auto_anim_angle > (Math.PI*2)) {
auto_anim_angle = auto_anim_angle - (Math.PI*2);
}
move_goto = ((auto_move_fade_k * Math.sin(auto_anim_angle)) + 1) / 2;
}
actual_delay = move_delay - (move_speed_overal * 10);
if (actual_delay < 1.5) {
actual_delay = 1.5;
}
move_speed = (move_goto - move_draw) / actual_delay;
_local3 = 1 / actual_delay;
move_draw = move_draw + move_speed;
if (move_draw > 1) {
move_draw = 1;
} else if (move_draw < 0) {
move_draw = 0;
}
move_speeds.push(Math.abs(move_speed));
move_speeds.splice(0, 1);
move_speed_overal = 0;
_local2 = 0;
while (_local2 < move_speeds.length) {
move_speed_overal = move_speed_overal + move_speeds[_local2];
_local2++;
}
move_speed_overal = move_speed_overal / move_speeds.length;
swing_goto = (move_speed + _local3) / (2 * _local3);
_local2 = 0;
while (_local2 < swing_draw.length) {
if ((Math.abs(swing_goto - swing_draw[_local2]) > 0.00166666666666667) || (Math.abs(swing_speed[_local2]) > 0.00166666666666667)) {
swing_speed[_local2] = swing_speed[_local2] + (((swing_goto - swing_draw[_local2]) / 10) + ((1.5 * move_speed_overal) * (swing_goto - swing_draw[_local2])));
swing_draw[_local2] = swing_draw[_local2] + swing_speed[_local2];
swing_draw[_local2] = swing_draw[_local2] + ((swing_goto - swing_draw[_local2]) * swing_fadeout[_local2]);
if (swing_draw[_local2] < 0) {
swing_draw[_local2] = 0;
} else if (swing_draw[_local2] > 1) {
swing_draw[_local2] = 1;
}
} else {
swing_draw[_local2] = 0.5;
}
_local2++;
}
if ((move_speed_overal > 0.14) && (face_frame < 3)) {
face_frame = 3;
}
if ((move_speed_overal > 0.07) && (face_frame < 2)) {
face_frame = 2;
}
if ((move_speed_overal < 0.05) && (face_frame > 1)) {
face_frame = 1;
}
if ((move_speed_overal < 0.1) && (face_frame > 2)) {
face_frame = 2;
}
}
var move_speeds = new Array();
var swing_draw = new Array();
var swing_speed = new Array();
var swing_fadeout = new Array();
}
Symbol 1739 MovieClip [__Packages.rsa] Frame 0
class rsa extends Object
{
static var _CharsReverseLookup;
var _rsaStr, _rsaCount;
function rsa () {
super();
}
static function Encode(str) {
var _local1 = new rsa();
return(_local1.encodersa(str));
}
static function Decode(str) {
var _local1 = new rsa();
return(_local1.decodersa(str));
}
static function StringReplaceAll(source, find, replacement) {
return(source.split(find).join(replacement));
}
static function InitReverseChars() {
_CharsReverseLookup = new Array();
var _local1 = 0;
while (_local1 < _Chars.length) {
_CharsReverseLookup[_Chars[_local1]] = _local1;
_local1++;
}
return(true);
}
static function UrlDecode(str) {
str = StringReplaceAll(str, "\\", " ");
str = unescape(str);
return(str);
}
static function UrlEncode(str) {
str = escape(str);
str = StringReplaceAll(str, "\\", "%2B");
str = StringReplaceAll(str, "%20", "+");
return(str);
}
function setrsaStr(str) {
_rsaStr = str;
_rsaCount = 0;
}
function readrsa() {
if (!_rsaStr) {
return(_EndOfInput);
}
if (_rsaCount >= _rsaStr.length) {
return(_EndOfInput);
}
var _local2 = _rsaStr.charCodeAt(_rsaCount) & 255;
_rsaCount++;
return(_local2);
}
function encodersa(str) {
setrsaStr(str);
var _local3 = "";
var _local2 = new Array(3);
var _local5 = 0;
var _local4 = false;
while ((!_local4) && (((_local2[0] = readrsa())) != _EndOfInput)) {
_local2[1] = readrsa();
_local2[2] = readrsa();
_local3 = _local3 + _Chars[_local2[0] >> 2];
if (_local2[1] != _EndOfInput) {
_local3 = _local3 + _Chars[((_local2[0] << 4) & 48) | (_local2[1] >> 4)];
if (_local2[2] != _EndOfInput) {
_local3 = _local3 + _Chars[((_local2[1] << 2) & 60) | (_local2[2] >> 6)];
_local3 = _local3 + _Chars[_local2[2] & 63];
} else {
_local3 = _local3 + _Chars[(_local2[1] << 2) & 60];
_local3 = _local3 + "=";
_local4 = true;
}
} else {
_local3 = _local3 + _Chars[(_local2[0] << 4) & 48];
_local3 = _local3 + "=";
_local3 = _local3 + "=";
_local4 = true;
}
_local5 = _local5 + 4;
if (_local5 >= 76) {
_local3 = _local3 + newline;
_local5 = 0;
}
}
return(_local3);
}
function readReversersa() {
if (!_rsaStr) {
return(_EndOfInput);
}
while (true) {
if (_rsaCount >= _rsaStr.length) {
return(_EndOfInput);
}
var _local2 = _rsaStr.charAt(_rsaCount);
_rsaCount++;
if (_CharsReverseLookup[_local2]) {
return(_CharsReverseLookup[_local2]);
}
if (_local2 == "A") {
return(0);
}
}
}
function ntos(n) {
var _local1 = n.toString(16);
if (_local1.length == 1) {
_local1 = "0" + _local1;
}
_local1 = "%" + _local1;
return(unescape(_local1));
}
function decodersa(str) {
setrsaStr(str);
var _local3 = "";
var _local2 = new Array(4);
var _local4 = false;
while (((!_local4) && (((_local2[0] = readReversersa())) != _EndOfInput)) && (((_local2[1] = readReversersa())) != _EndOfInput)) {
_local2[2] = readReversersa();
_local2[3] = readReversersa();
_local3 = _local3 + ntos(((_local2[0] << 2) & 255) | (_local2[1] >> 4));
if (_local2[2] != _EndOfInput) {
_local3 = _local3 + ntos(((_local2[1] << 4) & 255) | (_local2[2] >> 2));
if (_local2[3] != _EndOfInput) {
_local3 = _local3 + ntos(((_local2[2] << 6) & 255) | _local2[3]);
} else {
_local4 = true;
}
} else {
_local4 = true;
}
}
return(_local3);
}
function toHex(n) {
var _local4 = "";
var _local3 = true;
var _local1 = 32;
while (_local1 > 0) {
_local1 = _local1 - 4;
var _local2 = (n >> _local1) & 15;
if ((!_local3) || (_local2 != 0)) {
_local3 = false;
_local4 = _local4 + _Digits[_local2];
}
}
return(((_local4 == "") ? "0" : (_local4)));
}
function pad(str, len, pad) {
var _local2 = str;
var _local1 = str.length;
while (_local1 < len) {
_local2 = pad + _local2;
_local1++;
}
return(_local2);
}
function encodeHex(str) {
var _local4 = "";
var _local2 = 0;
while (_local2 < str.length) {
_local4 = _local4 + pad(toHex(str.charCodeAt(_local2) & 255), 2, "0");
_local2++;
}
return(_local4);
}
function decodeHex(str) {
var _local5 = "";
var _local3 = "";
var _local2 = 0;
while (_local2 < str.length) {
_local3 = _local3 + str.charAt(_local2);
if (_local3.length == 2) {
_local5 = _local5 + ntos(parseInt("0x" + _local3));
_local3 = "";
}
_local2++;
}
return(_local5);
}
static var _EndOfInput = -1;
static var _Chars = new Array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "+", "/");
static var _CharsReverseLookupInited = InitReverseChars();
static var _Digits = new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f");
}