Section 1
//AuxFunctions (caurina.transitions.AuxFunctions)
package caurina.transitions {
public class AuxFunctions {
public static function getObjectLength(_arg1:Object):uint{
var _local3:String;
var _local2:uint;
for (_local3 in _arg1) {
_local2++;
};
return (_local2);
}
public static function numberToG(_arg1:Number):Number{
return (((_arg1 & 0xFF00) >> 8));
}
public static function numberToB(_arg1:Number):Number{
return ((_arg1 & 0xFF));
}
public static function numberToR(_arg1:Number):Number{
return (((_arg1 & 0xFF0000) >> 16));
}
public static function concatObjects(... _args):Object{
var _local3:Object;
var _local5:String;
var _local2:Object = {};
var _local4:int;
while (_local4 < _args.length) {
_local3 = _args[_local4];
for (_local5 in _local3) {
if (_local3[_local5] == null){
delete _local2[_local5];
} else {
_local2[_local5] = _local3[_local5];
};
};
_local4++;
};
return (_local2);
}
}
}//package caurina.transitions
Section 2
//Equations (caurina.transitions.Equations)
package caurina.transitions {
public class Equations {
public function Equations(){
trace("Equations is a static class and should not be instantiated.");
}
public static function easeOutBounce(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / _arg4);
if (_arg1 < (1 / 2.75)){
return (((_arg3 * ((7.5625 * _arg1) * _arg1)) + _arg2));
};
if (_arg1 < (2 / 2.75)){
_arg1 = (_arg1 - (1.5 / 2.75));
return (((_arg3 * (((7.5625 * _arg1) * _arg1) + 0.75)) + _arg2));
};
if (_arg1 < (2.5 / 2.75)){
_arg1 = (_arg1 - (2.25 / 2.75));
return (((_arg3 * (((7.5625 * _arg1) * _arg1) + 0.9375)) + _arg2));
};
_arg1 = (_arg1 - (2.625 / 2.75));
return (((_arg3 * (((7.5625 * _arg1) * _arg1) + 0.984375)) + _arg2));
}
public static function easeInOutElastic(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
var _local7:Number;
if (_arg1 == 0){
return (_arg2);
};
_arg1 = (_arg1 / (_arg4 / 2));
if (_arg1 == 2){
return ((_arg2 + _arg3));
};
var _local6:Number = (((!(Boolean(_arg5))) || (isNaN(_arg5.period)))) ? (_arg4 * (0.3 * 1.5)) : _arg5.period;
var _local8:Number = (((!(Boolean(_arg5))) || (isNaN(_arg5.amplitude)))) ? 0 : _arg5.amplitude;
if (((!(Boolean(_local8))) || ((_local8 < Math.abs(_arg3))))){
_local8 = _arg3;
_local7 = (_local6 / 4);
} else {
_local7 = ((_local6 / (2 * Math.PI)) * Math.asin((_arg3 / _local8)));
};
if (_arg1 < 1){
--_arg1;
return (((-0.5 * ((_local8 * Math.pow(2, (10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * (2 * Math.PI)) / _local6)))) + _arg2));
};
--_arg1;
return ((((((_local8 * Math.pow(2, (-10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * (2 * Math.PI)) / _local6))) * 0.5) + _arg3) + _arg2));
}
public static function easeInOutQuad(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / (_arg4 / 2));
if (_arg1 < 1){
return (((((_arg3 / 2) * _arg1) * _arg1) + _arg2));
};
--_arg1;
return ((((-(_arg3) / 2) * ((_arg1 * (_arg1 - 2)) - 1)) + _arg2));
}
public static function easeInOutBounce(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (((easeInBounce((_arg1 * 2), 0, _arg3, _arg4) * 0.5) + _arg2));
};
return ((((easeOutBounce(((_arg1 * 2) - _arg4), 0, _arg3, _arg4) * 0.5) + (_arg3 * 0.5)) + _arg2));
}
public static function easeInOutBack(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
var _local6:Number = (((!(Boolean(_arg5))) || (isNaN(_arg5.overshoot)))) ? 1.70158 : _arg5.overshoot;
_arg1 = (_arg1 / (_arg4 / 2));
if (_arg1 < 1){
_local6 = (_local6 * 1.525);
return ((((_arg3 / 2) * ((_arg1 * _arg1) * (((_local6 + 1) * _arg1) - _local6))) + _arg2));
};
_arg1 = (_arg1 - 2);
_local6 = (_local6 * 1.525);
return ((((_arg3 / 2) * (((_arg1 * _arg1) * (((_local6 + 1) * _arg1) + _local6)) + 2)) + _arg2));
}
public static function easeOutInCubic(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (easeOutCubic((_arg1 * 2), _arg2, (_arg3 / 2), _arg4, _arg5));
};
return (easeInCubic(((_arg1 * 2) - _arg4), (_arg2 + (_arg3 / 2)), (_arg3 / 2), _arg4, _arg5));
}
public static function easeNone(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
return ((((_arg3 * _arg1) / _arg4) + _arg2));
}
public static function easeOutBack(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
var _local6:Number = (((!(Boolean(_arg5))) || (isNaN(_arg5.overshoot)))) ? 1.70158 : _arg5.overshoot;
_arg1 = ((_arg1 / _arg4) - 1);
return (((_arg3 * (((_arg1 * _arg1) * (((_local6 + 1) * _arg1) + _local6)) + 1)) + _arg2));
}
public static function easeInOutSine(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
return ((((-(_arg3) / 2) * (Math.cos(((Math.PI * _arg1) / _arg4)) - 1)) + _arg2));
}
public static function easeInBack(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
var _local6:Number = (((!(Boolean(_arg5))) || (isNaN(_arg5.overshoot)))) ? 1.70158 : _arg5.overshoot;
_arg1 = (_arg1 / _arg4);
return (((((_arg3 * _arg1) * _arg1) * (((_local6 + 1) * _arg1) - _local6)) + _arg2));
}
public static function easeInQuart(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / _arg4);
return ((((((_arg3 * _arg1) * _arg1) * _arg1) * _arg1) + _arg2));
}
public static function easeOutInQuint(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (easeOutQuint((_arg1 * 2), _arg2, (_arg3 / 2), _arg4, _arg5));
};
return (easeInQuint(((_arg1 * 2) - _arg4), (_arg2 + (_arg3 / 2)), (_arg3 / 2), _arg4, _arg5));
}
public static function easeOutInBounce(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (easeOutBounce((_arg1 * 2), _arg2, (_arg3 / 2), _arg4, _arg5));
};
return (easeInBounce(((_arg1 * 2) - _arg4), (_arg2 + (_arg3 / 2)), (_arg3 / 2), _arg4, _arg5));
}
public static function init():void{
Tweener.registerTransition("easenone", easeNone);
Tweener.registerTransition("linear", easeNone);
Tweener.registerTransition("easeinquad", easeInQuad);
Tweener.registerTransition("easeoutquad", easeOutQuad);
Tweener.registerTransition("easeinoutquad", easeInOutQuad);
Tweener.registerTransition("easeoutinquad", easeOutInQuad);
Tweener.registerTransition("easeincubic", easeInCubic);
Tweener.registerTransition("easeoutcubic", easeOutCubic);
Tweener.registerTransition("easeinoutcubic", easeInOutCubic);
Tweener.registerTransition("easeoutincubic", easeOutInCubic);
Tweener.registerTransition("easeinquart", easeInQuart);
Tweener.registerTransition("easeoutquart", easeOutQuart);
Tweener.registerTransition("easeinoutquart", easeInOutQuart);
Tweener.registerTransition("easeoutinquart", easeOutInQuart);
Tweener.registerTransition("easeinquint", easeInQuint);
Tweener.registerTransition("easeoutquint", easeOutQuint);
Tweener.registerTransition("easeinoutquint", easeInOutQuint);
Tweener.registerTransition("easeoutinquint", easeOutInQuint);
Tweener.registerTransition("easeinsine", easeInSine);
Tweener.registerTransition("easeoutsine", easeOutSine);
Tweener.registerTransition("easeinoutsine", easeInOutSine);
Tweener.registerTransition("easeoutinsine", easeOutInSine);
Tweener.registerTransition("easeincirc", easeInCirc);
Tweener.registerTransition("easeoutcirc", easeOutCirc);
Tweener.registerTransition("easeinoutcirc", easeInOutCirc);
Tweener.registerTransition("easeoutincirc", easeOutInCirc);
Tweener.registerTransition("easeinexpo", easeInExpo);
Tweener.registerTransition("easeoutexpo", easeOutExpo);
Tweener.registerTransition("easeinoutexpo", easeInOutExpo);
Tweener.registerTransition("easeoutinexpo", easeOutInExpo);
Tweener.registerTransition("easeinelastic", easeInElastic);
Tweener.registerTransition("easeoutelastic", easeOutElastic);
Tweener.registerTransition("easeinoutelastic", easeInOutElastic);
Tweener.registerTransition("easeoutinelastic", easeOutInElastic);
Tweener.registerTransition("easeinback", easeInBack);
Tweener.registerTransition("easeoutback", easeOutBack);
Tweener.registerTransition("easeinoutback", easeInOutBack);
Tweener.registerTransition("easeoutinback", easeOutInBack);
Tweener.registerTransition("easeinbounce", easeInBounce);
Tweener.registerTransition("easeoutbounce", easeOutBounce);
Tweener.registerTransition("easeinoutbounce", easeInOutBounce);
Tweener.registerTransition("easeoutinbounce", easeOutInBounce);
}
public static function easeOutExpo(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
return (((_arg1)==_arg4) ? (_arg2 + _arg3) : (((_arg3 * 1.001) * (-(Math.pow(2, ((-10 * _arg1) / _arg4))) + 1)) + _arg2));
}
public static function easeOutInBack(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (easeOutBack((_arg1 * 2), _arg2, (_arg3 / 2), _arg4, _arg5));
};
return (easeInBack(((_arg1 * 2) - _arg4), (_arg2 + (_arg3 / 2)), (_arg3 / 2), _arg4, _arg5));
}
public static function easeInExpo(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
return (((_arg1)==0) ? _arg2 : (((_arg3 * Math.pow(2, (10 * ((_arg1 / _arg4) - 1)))) + _arg2) - (_arg3 * 0.001)));
}
public static function easeInCubic(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / _arg4);
return (((((_arg3 * _arg1) * _arg1) * _arg1) + _arg2));
}
public static function easeInQuint(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / _arg4);
return (((((((_arg3 * _arg1) * _arg1) * _arg1) * _arg1) * _arg1) + _arg2));
}
public static function easeInOutCirc(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / (_arg4 / 2));
if (_arg1 < 1){
return ((((-(_arg3) / 2) * (Math.sqrt((1 - (_arg1 * _arg1))) - 1)) + _arg2));
};
_arg1 = (_arg1 - 2);
return ((((_arg3 / 2) * (Math.sqrt((1 - (_arg1 * _arg1))) + 1)) + _arg2));
}
public static function easeInQuad(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / _arg4);
return ((((_arg3 * _arg1) * _arg1) + _arg2));
}
public static function easeInBounce(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
return (((_arg3 - easeOutBounce((_arg4 - _arg1), 0, _arg3, _arg4)) + _arg2));
}
public static function easeOutInExpo(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (easeOutExpo((_arg1 * 2), _arg2, (_arg3 / 2), _arg4, _arg5));
};
return (easeInExpo(((_arg1 * 2) - _arg4), (_arg2 + (_arg3 / 2)), (_arg3 / 2), _arg4, _arg5));
}
public static function easeOutQuart(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = ((_arg1 / _arg4) - 1);
return (((-(_arg3) * ((((_arg1 * _arg1) * _arg1) * _arg1) - 1)) + _arg2));
}
public static function easeInSine(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
return ((((-(_arg3) * Math.cos(((_arg1 / _arg4) * (Math.PI / 2)))) + _arg3) + _arg2));
}
public static function easeInOutQuart(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / (_arg4 / 2));
if (_arg1 < 1){
return (((((((_arg3 / 2) * _arg1) * _arg1) * _arg1) * _arg1) + _arg2));
};
_arg1 = (_arg1 - 2);
return ((((-(_arg3) / 2) * ((((_arg1 * _arg1) * _arg1) * _arg1) - 2)) + _arg2));
}
public static function easeOutQuad(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / _arg4);
return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2));
}
public static function easeOutInElastic(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (easeOutElastic((_arg1 * 2), _arg2, (_arg3 / 2), _arg4, _arg5));
};
return (easeInElastic(((_arg1 * 2) - _arg4), (_arg2 + (_arg3 / 2)), (_arg3 / 2), _arg4, _arg5));
}
public static function easeInElastic(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
var _local7:Number;
if (_arg1 == 0){
return (_arg2);
};
_arg1 = (_arg1 / _arg4);
if (_arg1 == 1){
return ((_arg2 + _arg3));
};
var _local6:Number = (((!(Boolean(_arg5))) || (isNaN(_arg5.period)))) ? (_arg4 * 0.3) : _arg5.period;
var _local8:Number = (((!(Boolean(_arg5))) || (isNaN(_arg5.amplitude)))) ? 0 : _arg5.amplitude;
if (((!(Boolean(_local8))) || ((_local8 < Math.abs(_arg3))))){
_local8 = _arg3;
_local7 = (_local6 / 4);
} else {
_local7 = ((_local6 / (2 * Math.PI)) * Math.asin((_arg3 / _local8)));
};
--_arg1;
return ((-(((_local8 * Math.pow(2, (10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * (2 * Math.PI)) / _local6)))) + _arg2));
}
public static function easeOutCubic(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = ((_arg1 / _arg4) - 1);
return (((_arg3 * (((_arg1 * _arg1) * _arg1) + 1)) + _arg2));
}
public static function easeOutQuint(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = ((_arg1 / _arg4) - 1);
return (((_arg3 * (((((_arg1 * _arg1) * _arg1) * _arg1) * _arg1) + 1)) + _arg2));
}
public static function easeOutInQuad(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (easeOutQuad((_arg1 * 2), _arg2, (_arg3 / 2), _arg4, _arg5));
};
return (easeInQuad(((_arg1 * 2) - _arg4), (_arg2 + (_arg3 / 2)), (_arg3 / 2), _arg4, _arg5));
}
public static function easeOutSine(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
return (((_arg3 * Math.sin(((_arg1 / _arg4) * (Math.PI / 2)))) + _arg2));
}
public static function easeInOutCubic(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / (_arg4 / 2));
if (_arg1 < 1){
return ((((((_arg3 / 2) * _arg1) * _arg1) * _arg1) + _arg2));
};
_arg1 = (_arg1 - 2);
return ((((_arg3 / 2) * (((_arg1 * _arg1) * _arg1) + 2)) + _arg2));
}
public static function easeInOutQuint(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / (_arg4 / 2));
if (_arg1 < 1){
return ((((((((_arg3 / 2) * _arg1) * _arg1) * _arg1) * _arg1) * _arg1) + _arg2));
};
_arg1 = (_arg1 - 2);
return ((((_arg3 / 2) * (((((_arg1 * _arg1) * _arg1) * _arg1) * _arg1) + 2)) + _arg2));
}
public static function easeInCirc(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = (_arg1 / _arg4);
return (((-(_arg3) * (Math.sqrt((1 - (_arg1 * _arg1))) - 1)) + _arg2));
}
public static function easeOutInSine(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (easeOutSine((_arg1 * 2), _arg2, (_arg3 / 2), _arg4, _arg5));
};
return (easeInSine(((_arg1 * 2) - _arg4), (_arg2 + (_arg3 / 2)), (_arg3 / 2), _arg4, _arg5));
}
public static function easeInOutExpo(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 == 0){
return (_arg2);
};
if (_arg1 == _arg4){
return ((_arg2 + _arg3));
};
_arg1 = (_arg1 / (_arg4 / 2));
if (_arg1 < 1){
return (((((_arg3 / 2) * Math.pow(2, (10 * (_arg1 - 1)))) + _arg2) - (_arg3 * 0.0005)));
};
--_arg1;
return (((((_arg3 / 2) * 1.0005) * (-(Math.pow(2, (-10 * _arg1))) + 2)) + _arg2));
}
public static function easeOutElastic(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
var _local7:Number;
if (_arg1 == 0){
return (_arg2);
};
_arg1 = (_arg1 / _arg4);
if (_arg1 == 1){
return ((_arg2 + _arg3));
};
var _local6:Number = (((!(Boolean(_arg5))) || (isNaN(_arg5.period)))) ? (_arg4 * 0.3) : _arg5.period;
var _local8:Number = (((!(Boolean(_arg5))) || (isNaN(_arg5.amplitude)))) ? 0 : _arg5.amplitude;
if (((!(Boolean(_local8))) || ((_local8 < Math.abs(_arg3))))){
_local8 = _arg3;
_local7 = (_local6 / 4);
} else {
_local7 = ((_local6 / (2 * Math.PI)) * Math.asin((_arg3 / _local8)));
};
return (((((_local8 * Math.pow(2, (-10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * (2 * Math.PI)) / _local6))) + _arg3) + _arg2));
}
public static function easeOutCirc(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
_arg1 = ((_arg1 / _arg4) - 1);
return (((_arg3 * Math.sqrt((1 - (_arg1 * _arg1)))) + _arg2));
}
public static function easeOutInQuart(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (easeOutQuart((_arg1 * 2), _arg2, (_arg3 / 2), _arg4, _arg5));
};
return (easeInQuart(((_arg1 * 2) - _arg4), (_arg2 + (_arg3 / 2)), (_arg3 / 2), _arg4, _arg5));
}
public static function easeOutInCirc(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null):Number{
if (_arg1 < (_arg4 / 2)){
return (easeOutCirc((_arg1 * 2), _arg2, (_arg3 / 2), _arg4, _arg5));
};
return (easeInCirc(((_arg1 * 2) - _arg4), (_arg2 + (_arg3 / 2)), (_arg3 / 2), _arg4, _arg5));
}
}
}//package caurina.transitions
Section 3
//PropertyInfoObj (caurina.transitions.PropertyInfoObj)
package caurina.transitions {
public class PropertyInfoObj {
public var modifierParameters:Array;
public var isSpecialProperty:Boolean;
public var valueComplete:Number;
public var modifierFunction:Function;
public var extra:Object;
public var valueStart:Number;
public var hasModifier:Boolean;
public var arrayIndex:Number;
public var originalValueComplete:Object;
public function PropertyInfoObj(_arg1:Number, _arg2:Number, _arg3:Object, _arg4:Number, _arg5:Object, _arg6:Boolean, _arg7:Function, _arg8:Array){
valueStart = _arg1;
valueComplete = _arg2;
originalValueComplete = _arg3;
arrayIndex = _arg4;
extra = _arg5;
isSpecialProperty = _arg6;
hasModifier = Boolean(_arg7);
modifierFunction = _arg7;
modifierParameters = _arg8;
}
public function toString():String{
var _local1 = "\n[PropertyInfoObj ";
_local1 = (_local1 + ("valueStart:" + String(valueStart)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("valueComplete:" + String(valueComplete)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("originalValueComplete:" + String(originalValueComplete)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("arrayIndex:" + String(arrayIndex)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("extra:" + String(extra)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("isSpecialProperty:" + String(isSpecialProperty)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("hasModifier:" + String(hasModifier)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("modifierFunction:" + String(modifierFunction)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("modifierParameters:" + String(modifierParameters)));
_local1 = (_local1 + "]\n");
return (_local1);
}
public function clone():PropertyInfoObj{
var _local1:PropertyInfoObj = new PropertyInfoObj(valueStart, valueComplete, originalValueComplete, arrayIndex, extra, isSpecialProperty, modifierFunction, modifierParameters);
return (_local1);
}
}
}//package caurina.transitions
Section 4
//SpecialProperty (caurina.transitions.SpecialProperty)
package caurina.transitions {
public class SpecialProperty {
public var parameters:Array;
public var getValue:Function;
public var preProcess:Function;
public var setValue:Function;
public function SpecialProperty(_arg1:Function, _arg2:Function, _arg3:Array=null, _arg4:Function=null){
getValue = _arg1;
setValue = _arg2;
parameters = _arg3;
preProcess = _arg4;
}
public function toString():String{
var _local1 = "";
_local1 = (_local1 + "[SpecialProperty ");
_local1 = (_local1 + ("getValue:" + String(getValue)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("setValue:" + String(setValue)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("parameters:" + String(parameters)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("preProcess:" + String(preProcess)));
_local1 = (_local1 + "]");
return (_local1);
}
}
}//package caurina.transitions
Section 5
//SpecialPropertyModifier (caurina.transitions.SpecialPropertyModifier)
package caurina.transitions {
public class SpecialPropertyModifier {
public var getValue:Function;
public var modifyValues:Function;
public function SpecialPropertyModifier(_arg1:Function, _arg2:Function){
modifyValues = _arg1;
getValue = _arg2;
}
public function toString():String{
var _local1 = "";
_local1 = (_local1 + "[SpecialPropertyModifier ");
_local1 = (_local1 + ("modifyValues:" + String(modifyValues)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("getValue:" + String(getValue)));
_local1 = (_local1 + "]");
return (_local1);
}
}
}//package caurina.transitions
Section 6
//SpecialPropertySplitter (caurina.transitions.SpecialPropertySplitter)
package caurina.transitions {
public class SpecialPropertySplitter {
public var parameters:Array;
public var splitValues:Function;
public function SpecialPropertySplitter(_arg1:Function, _arg2:Array){
splitValues = _arg1;
parameters = _arg2;
}
public function toString():String{
var _local1 = "";
_local1 = (_local1 + "[SpecialPropertySplitter ");
_local1 = (_local1 + ("splitValues:" + String(splitValues)));
_local1 = (_local1 + ", ");
_local1 = (_local1 + ("parameters:" + String(parameters)));
_local1 = (_local1 + "]");
return (_local1);
}
}
}//package caurina.transitions
Section 7
//Tweener (caurina.transitions.Tweener)
package caurina.transitions {
import flash.events.*;
import flash.display.*;
import flash.utils.*;
public class Tweener {
private static var _timeScale:Number = 1;
private static var _currentTimeFrame:Number;
private static var _specialPropertySplitterList:Object;
private static var _engineExists:Boolean = false;
private static var _specialPropertyModifierList:Object;
private static var _currentTime:Number;
private static var _tweenList:Array;
private static var _specialPropertyList:Object;
private static var _transitionList:Object;
private static var _inited:Boolean = false;
private static var __tweener_controller__:MovieClip;
public function Tweener(){
trace("Tweener is a static class and should not be instantiated.");
}
public static function registerSpecialPropertyModifier(_arg1:String, _arg2:Function, _arg3:Function):void{
if (!_inited){
init();
};
var _local4:SpecialPropertyModifier = new SpecialPropertyModifier(_arg2, _arg3);
_specialPropertyModifierList[_arg1] = _local4;
}
public static function registerSpecialProperty(_arg1:String, _arg2:Function, _arg3:Function, _arg4:Array=null, _arg5:Function=null):void{
if (!_inited){
init();
};
var _local6:SpecialProperty = new SpecialProperty(_arg2, _arg3, _arg4, _arg5);
_specialPropertyList[_arg1] = _local6;
}
public static function init(... _args):void{
_inited = true;
_transitionList = new Object();
Equations.init();
_specialPropertyList = new Object();
_specialPropertyModifierList = new Object();
_specialPropertySplitterList = new Object();
}
private static function updateTweens():Boolean{
var _local1:int;
if (_tweenList.length == 0){
return (false);
};
_local1 = 0;
while (_local1 < _tweenList.length) {
if ((((_tweenList[_local1] == undefined)) || (!(_tweenList[_local1].isPaused)))){
if (!updateTweenByIndex(_local1)){
removeTweenByIndex(_local1);
};
if (_tweenList[_local1] == null){
removeTweenByIndex(_local1, true);
_local1--;
};
};
_local1++;
};
return (true);
}
public static function addCaller(_arg1:Object=null, _arg2:Object=null):Boolean{
var _local3:Number;
var _local4:Array;
var _local8:Function;
var _local9:TweenListObj;
var _local10:Number;
var _local11:String;
if (!Boolean(_arg1)){
return (false);
};
if ((_arg1 is Array)){
_local4 = _arg1.concat();
} else {
_local4 = [_arg1];
};
var _local5:Object = _arg2;
if (!_inited){
init();
};
if (((!(_engineExists)) || (!(Boolean(__tweener_controller__))))){
startEngine();
};
var _local6:Number = (isNaN(_local5.time)) ? 0 : _local5.time;
var _local7:Number = (isNaN(_local5.delay)) ? 0 : _local5.delay;
if (typeof(_local5.transition) == "string"){
_local11 = _local5.transition.toLowerCase();
_local8 = _transitionList[_local11];
} else {
_local8 = _local5.transition;
};
if (!Boolean(_local8)){
_local8 = _transitionList["easeoutexpo"];
};
_local3 = 0;
while (_local3 < _local4.length) {
if (_local5.useFrames == true){
_local9 = new TweenListObj(_local4[_local3], (_currentTimeFrame + (_local7 / _timeScale)), (_currentTimeFrame + ((_local7 + _local6) / _timeScale)), true, _local8, _local5.transitionParams);
} else {
_local9 = new TweenListObj(_local4[_local3], (_currentTime + ((_local7 * 1000) / _timeScale)), (_currentTime + (((_local7 * 1000) + (_local6 * 1000)) / _timeScale)), false, _local8, _local5.transitionParams);
};
_local9.properties = null;
_local9.onStart = _local5.onStart;
_local9.onUpdate = _local5.onUpdate;
_local9.onComplete = _local5.onComplete;
_local9.onOverwrite = _local5.onOverwrite;
_local9.onStartParams = _local5.onStartParams;
_local9.onUpdateParams = _local5.onUpdateParams;
_local9.onCompleteParams = _local5.onCompleteParams;
_local9.onOverwriteParams = _local5.onOverwriteParams;
_local9.onStartScope = _local5.onStartScope;
_local9.onUpdateScope = _local5.onUpdateScope;
_local9.onCompleteScope = _local5.onCompleteScope;
_local9.onOverwriteScope = _local5.onOverwriteScope;
_local9.onErrorScope = _local5.onErrorScope;
_local9.isCaller = true;
_local9.count = _local5.count;
_local9.waitFrames = _local5.waitFrames;
_tweenList.push(_local9);
if ((((_local6 == 0)) && ((_local7 == 0)))){
_local10 = (_tweenList.length - 1);
updateTweenByIndex(_local10);
removeTweenByIndex(_local10);
};
_local3++;
};
return (true);
}
public static function pauseAllTweens():Boolean{
var _local2:uint;
if (!Boolean(_tweenList)){
return (false);
};
var _local1:Boolean;
_local2 = 0;
while (_local2 < _tweenList.length) {
pauseTweenByIndex(_local2);
_local1 = true;
_local2++;
};
return (_local1);
}
public static function removeTweens(_arg1:Object, ... _args):Boolean{
var _local4:uint;
var _local5:SpecialPropertySplitter;
var _local6:Array;
var _local7:uint;
var _local3:Array = new Array();
_local4 = 0;
while (_local4 < _args.length) {
if ((((typeof(_args[_local4]) == "string")) && ((_local3.indexOf(_args[_local4]) == -1)))){
if (_specialPropertySplitterList[_args[_local4]]){
_local5 = _specialPropertySplitterList[_args[_local4]];
_local6 = _local5.splitValues(_arg1, null);
_local7 = 0;
while (_local7 < _local6.length) {
_local3.push(_local6[_local7].name);
_local7++;
};
} else {
_local3.push(_args[_local4]);
};
};
_local4++;
};
return (affectTweens(removeTweenByIndex, _arg1, _local3));
}
public static function splitTweens(_arg1:Number, _arg2:Array):uint{
var _local5:uint;
var _local6:String;
var _local7:Boolean;
var _local3:TweenListObj = _tweenList[_arg1];
var _local4:TweenListObj = _local3.clone(false);
_local5 = 0;
while (_local5 < _arg2.length) {
_local6 = _arg2[_local5];
if (Boolean(_local3.properties[_local6])){
_local3.properties[_local6] = undefined;
delete _local3.properties[_local6];
};
_local5++;
};
for (_local6 in _local4.properties) {
_local7 = false;
_local5 = 0;
while (_local5 < _arg2.length) {
if (_arg2[_local5] == _local6){
_local7 = true;
break;
};
_local5++;
};
if (!_local7){
_local4.properties[_local6] = undefined;
delete _local4.properties[_local6];
};
};
_tweenList.push(_local4);
return ((_tweenList.length - 1));
}
public static function updateFrame():void{
_currentTimeFrame++;
}
public static function resumeTweenByIndex(_arg1:Number):Boolean{
var _local2:TweenListObj = _tweenList[_arg1];
if ((((_local2 == null)) || (!(_local2.isPaused)))){
return (false);
};
var _local3:Number = getCurrentTweeningTime(_local2);
_local2.timeStart = (_local2.timeStart + (_local3 - _local2.timePaused));
_local2.timeComplete = (_local2.timeComplete + (_local3 - _local2.timePaused));
_local2.timePaused = undefined;
_local2.isPaused = false;
return (true);
}
public static function getVersion():String{
return ("AS3 1.31.74");
}
public static function onEnterFrame(_arg1:Event):void{
updateTime();
updateFrame();
var _local2:Boolean;
_local2 = updateTweens();
if (!_local2){
stopEngine();
};
}
public static function updateTime():void{
_currentTime = getTimer();
}
private static function updateTweenByIndex(_arg1:Number):Boolean{
var tTweening:TweenListObj;
var mustUpdate:Boolean;
var nv:Number;
var t:Number;
var b:Number;
var c:Number;
var d:Number;
var pName:String;
var eventScope:Object;
var tScope:Object;
var tProperty:Object;
var pv:Number;
var i = _arg1;
tTweening = _tweenList[i];
if ((((tTweening == null)) || (!(Boolean(tTweening.scope))))){
return (false);
};
var isOver:Boolean;
var cTime:Number = getCurrentTweeningTime(tTweening);
if (cTime >= tTweening.timeStart){
tScope = tTweening.scope;
if (tTweening.isCaller){
do {
t = (((tTweening.timeComplete - tTweening.timeStart) / tTweening.count) * (tTweening.timesCalled + 1));
b = tTweening.timeStart;
c = (tTweening.timeComplete - tTweening.timeStart);
d = (tTweening.timeComplete - tTweening.timeStart);
nv = tTweening.transition(t, b, c, d);
} while (!(cTime >= nv));
} else {
mustUpdate = (((((tTweening.skipUpdates < 1)) || (!(tTweening.skipUpdates)))) || ((tTweening.updatesSkipped >= tTweening.skipUpdates)));
if (cTime >= tTweening.timeComplete){
isOver = true;
mustUpdate = true;
};
if (!tTweening.hasStarted){
if (Boolean(tTweening.onStart)){
eventScope = (Boolean(tTweening.onStartScope)) ? tTweening.onStartScope : tScope;
try {
tTweening.onStart.apply(eventScope, tTweening.onStartParams);
} catch(e2:Error) {
handleError(tTweening, e2, "onStart");
};
};
for (pName in tTweening.properties) {
if (tTweening.properties[pName].isSpecialProperty){
if (Boolean(_specialPropertyList[pName].preProcess)){
tTweening.properties[pName].valueComplete = _specialPropertyList[pName].preProcess(tScope, _specialPropertyList[pName].parameters, tTweening.properties[pName].originalValueComplete, tTweening.properties[pName].extra);
};
pv = _specialPropertyList[pName].getValue(tScope, _specialPropertyList[pName].parameters, tTweening.properties[pName].extra);
} else {
pv = tScope[pName];
};
tTweening.properties[pName].valueStart = (isNaN(pv)) ? tTweening.properties[pName].valueComplete : pv;
};
mustUpdate = true;
tTweening.hasStarted = true;
};
if (mustUpdate){
for (pName in tTweening.properties) {
tProperty = tTweening.properties[pName];
if (isOver){
nv = tProperty.valueComplete;
} else {
if (tProperty.hasModifier){
t = (cTime - tTweening.timeStart);
d = (tTweening.timeComplete - tTweening.timeStart);
nv = tTweening.transition(t, 0, 1, d, tTweening.transitionParams);
nv = tProperty.modifierFunction(tProperty.valueStart, tProperty.valueComplete, nv, tProperty.modifierParameters);
} else {
t = (cTime - tTweening.timeStart);
b = tProperty.valueStart;
c = (tProperty.valueComplete - tProperty.valueStart);
d = (tTweening.timeComplete - tTweening.timeStart);
nv = tTweening.transition(t, b, c, d, tTweening.transitionParams);
};
};
if (tTweening.rounded){
nv = Math.round(nv);
};
if (tProperty.isSpecialProperty){
_specialPropertyList[pName].setValue(tScope, nv, _specialPropertyList[pName].parameters, tTweening.properties[pName].extra);
} else {
tScope[pName] = nv;
};
};
tTweening.updatesSkipped = 0;
if (Boolean(tTweening.onUpdate)){
eventScope = (Boolean(tTweening.onUpdateScope)) ? tTweening.onUpdateScope : tScope;
try {
tTweening.onUpdate.apply(eventScope, tTweening.onUpdateParams);
} catch(e3:Error) {
handleError(tTweening, e3, "onUpdate");
};
};
} else {
tTweening.updatesSkipped++;
};
};
if (((isOver) && (Boolean(tTweening.onComplete)))){
eventScope = (Boolean(tTweening.onCompleteScope)) ? tTweening.onCompleteScope : tScope;
try {
tTweening.onComplete.apply(eventScope, tTweening.onCompleteParams);
} catch(e4:Error) {
handleError(tTweening, e4, "onComplete");
};
};
return (!(isOver));
};
return (true);
}
public static function setTimeScale(_arg1:Number):void{
var _local2:Number;
var _local3:Number;
if (isNaN(_arg1)){
_arg1 = 1;
};
if (_arg1 < 1E-5){
_arg1 = 1E-5;
};
if (_arg1 != _timeScale){
if (_tweenList != null){
_local2 = 0;
while (_local2 < _tweenList.length) {
_local3 = getCurrentTweeningTime(_tweenList[_local2]);
_tweenList[_local2].timeStart = (_local3 - (((_local3 - _tweenList[_local2].timeStart) * _timeScale) / _arg1));
_tweenList[_local2].timeComplete = (_local3 - (((_local3 - _tweenList[_local2].timeComplete) * _timeScale) / _arg1));
if (_tweenList[_local2].timePaused != undefined){
_tweenList[_local2].timePaused = (_local3 - (((_local3 - _tweenList[_local2].timePaused) * _timeScale) / _arg1));
};
_local2++;
};
};
_timeScale = _arg1;
};
}
public static function resumeAllTweens():Boolean{
var _local2:uint;
if (!Boolean(_tweenList)){
return (false);
};
var _local1:Boolean;
_local2 = 0;
while (_local2 < _tweenList.length) {
resumeTweenByIndex(_local2);
_local1 = true;
_local2++;
};
return (_local1);
}
private static function handleError(_arg1:TweenListObj, _arg2:Error, _arg3:String):void{
var eventScope:Object;
var pTweening = _arg1;
var pError = _arg2;
var pCallBackName = _arg3;
if (((Boolean(pTweening.onError)) && ((pTweening.onError is Function)))){
eventScope = (Boolean(pTweening.onErrorScope)) ? pTweening.onErrorScope : pTweening.scope;
try {
pTweening.onError.apply(eventScope, [pTweening.scope, pError]);
} catch(metaError:Error) {
printError(((((String(pTweening.scope) + " raised an error while executing the 'onError' handler. Original error:\n ") + pError.getStackTrace()) + "\nonError error: ") + metaError.getStackTrace()));
};
} else {
if (!Boolean(pTweening.onError)){
printError(((((String(pTweening.scope) + " raised an error while executing the '") + pCallBackName) + "'handler. \n") + pError.getStackTrace()));
};
};
}
private static function startEngine():void{
_engineExists = true;
_tweenList = new Array();
__tweener_controller__ = new MovieClip();
__tweener_controller__.addEventListener(Event.ENTER_FRAME, Tweener.onEnterFrame);
_currentTimeFrame = 0;
updateTime();
}
public static function removeAllTweens():Boolean{
var _local2:uint;
if (!Boolean(_tweenList)){
return (false);
};
var _local1:Boolean;
_local2 = 0;
while (_local2 < _tweenList.length) {
removeTweenByIndex(_local2);
_local1 = true;
_local2++;
};
return (_local1);
}
public static function addTween(_arg1:Object=null, _arg2:Object=null):Boolean{
var _local3:Number;
var _local4:Number;
var _local5:String;
var _local6:Array;
var _local13:Function;
var _local14:Object;
var _local15:TweenListObj;
var _local16:Number;
var _local17:Array;
var _local18:Array;
var _local19:Array;
var _local20:String;
if (!Boolean(_arg1)){
return (false);
};
if ((_arg1 is Array)){
_local6 = _arg1.concat();
} else {
_local6 = [_arg1];
};
var _local7:Object = TweenListObj.makePropertiesChain(_arg2);
if (!_inited){
init();
};
if (((!(_engineExists)) || (!(Boolean(__tweener_controller__))))){
startEngine();
};
var _local8:Number = (isNaN(_local7.time)) ? 0 : _local7.time;
var _local9:Number = (isNaN(_local7.delay)) ? 0 : _local7.delay;
var _local10:Array = new Array();
var _local11:Object = {time:true, delay:true, useFrames:true, skipUpdates:true, transition:true, transitionParams:true, onStart:true, onUpdate:true, onComplete:true, onOverwrite:true, onError:true, rounded:true, onStartParams:true, onUpdateParams:true, onCompleteParams:true, onOverwriteParams:true, onStartScope:true, onUpdateScope:true, onCompleteScope:true, onOverwriteScope:true, onErrorScope:true};
var _local12:Object = new Object();
for (_local5 in _local7) {
if (!_local11[_local5]){
if (_specialPropertySplitterList[_local5]){
_local17 = _specialPropertySplitterList[_local5].splitValues(_local7[_local5], _specialPropertySplitterList[_local5].parameters);
_local3 = 0;
while (_local3 < _local17.length) {
if (_specialPropertySplitterList[_local17[_local3].name]){
_local18 = _specialPropertySplitterList[_local17[_local3].name].splitValues(_local17[_local3].value, _specialPropertySplitterList[_local17[_local3].name].parameters);
_local4 = 0;
while (_local4 < _local18.length) {
_local10[_local18[_local4].name] = {valueStart:undefined, valueComplete:_local18[_local4].value, arrayIndex:_local18[_local4].arrayIndex, isSpecialProperty:false};
_local4++;
};
} else {
_local10[_local17[_local3].name] = {valueStart:undefined, valueComplete:_local17[_local3].value, arrayIndex:_local17[_local3].arrayIndex, isSpecialProperty:false};
};
_local3++;
};
} else {
if (_specialPropertyModifierList[_local5] != undefined){
_local19 = _specialPropertyModifierList[_local5].modifyValues(_local7[_local5]);
_local3 = 0;
while (_local3 < _local19.length) {
_local12[_local19[_local3].name] = {modifierParameters:_local19[_local3].parameters, modifierFunction:_specialPropertyModifierList[_local5].getValue};
_local3++;
};
} else {
_local10[_local5] = {valueStart:undefined, valueComplete:_local7[_local5]};
};
};
};
};
for (_local5 in _local10) {
if (_specialPropertyList[_local5] != undefined){
_local10[_local5].isSpecialProperty = true;
} else {
if (_local6[0][_local5] == undefined){
printError((((("The property '" + _local5) + "' doesn't seem to be a normal object property of ") + String(_local6[0])) + " or a registered special property."));
};
};
};
for (_local5 in _local12) {
if (_local10[_local5] != undefined){
_local10[_local5].modifierParameters = _local12[_local5].modifierParameters;
_local10[_local5].modifierFunction = _local12[_local5].modifierFunction;
};
};
if (typeof(_local7.transition) == "string"){
_local20 = _local7.transition.toLowerCase();
_local13 = _transitionList[_local20];
} else {
_local13 = _local7.transition;
};
if (!Boolean(_local13)){
_local13 = _transitionList["easeoutexpo"];
};
_local3 = 0;
while (_local3 < _local6.length) {
_local14 = new Object();
for (_local5 in _local10) {
_local14[_local5] = new PropertyInfoObj(_local10[_local5].valueStart, _local10[_local5].valueComplete, _local10[_local5].valueComplete, _local10[_local5].arrayIndex, {}, _local10[_local5].isSpecialProperty, _local10[_local5].modifierFunction, _local10[_local5].modifierParameters);
};
if (_local7.useFrames == true){
_local15 = new TweenListObj(_local6[_local3], (_currentTimeFrame + (_local9 / _timeScale)), (_currentTimeFrame + ((_local9 + _local8) / _timeScale)), true, _local13, _local7.transitionParams);
} else {
_local15 = new TweenListObj(_local6[_local3], (_currentTime + ((_local9 * 1000) / _timeScale)), (_currentTime + (((_local9 * 1000) + (_local8 * 1000)) / _timeScale)), false, _local13, _local7.transitionParams);
};
_local15.properties = _local14;
_local15.onStart = _local7.onStart;
_local15.onUpdate = _local7.onUpdate;
_local15.onComplete = _local7.onComplete;
_local15.onOverwrite = _local7.onOverwrite;
_local15.onError = _local7.onError;
_local15.onStartParams = _local7.onStartParams;
_local15.onUpdateParams = _local7.onUpdateParams;
_local15.onCompleteParams = _local7.onCompleteParams;
_local15.onOverwriteParams = _local7.onOverwriteParams;
_local15.onStartScope = _local7.onStartScope;
_local15.onUpdateScope = _local7.onUpdateScope;
_local15.onCompleteScope = _local7.onCompleteScope;
_local15.onOverwriteScope = _local7.onOverwriteScope;
_local15.onErrorScope = _local7.onErrorScope;
_local15.rounded = _local7.rounded;
_local15.skipUpdates = _local7.skipUpdates;
removeTweensByTime(_local15.scope, _local15.properties, _local15.timeStart, _local15.timeComplete);
_tweenList.push(_local15);
if ((((_local8 == 0)) && ((_local9 == 0)))){
_local16 = (_tweenList.length - 1);
updateTweenByIndex(_local16);
removeTweenByIndex(_local16);
};
_local3++;
};
return (true);
}
public static function registerTransition(_arg1:String, _arg2:Function):void{
if (!_inited){
init();
};
_transitionList[_arg1] = _arg2;
}
public static function printError(_arg1:String):void{
trace(("## [Tweener] Error: " + _arg1));
}
private static function affectTweens(_arg1:Function, _arg2:Object, _arg3:Array):Boolean{
var _local5:uint;
var _local6:Array;
var _local7:uint;
var _local8:uint;
var _local9:uint;
var _local4:Boolean;
if (!Boolean(_tweenList)){
return (false);
};
_local5 = 0;
while (_local5 < _tweenList.length) {
if (((_tweenList[_local5]) && ((_tweenList[_local5].scope == _arg2)))){
if (_arg3.length == 0){
_arg1(_local5);
_local4 = true;
} else {
_local6 = new Array();
_local7 = 0;
while (_local7 < _arg3.length) {
if (Boolean(_tweenList[_local5].properties[_arg3[_local7]])){
_local6.push(_arg3[_local7]);
};
_local7++;
};
if (_local6.length > 0){
_local8 = AuxFunctions.getObjectLength(_tweenList[_local5].properties);
if (_local8 == _local6.length){
_arg1(_local5);
_local4 = true;
} else {
_local9 = splitTweens(_local5, _local6);
_arg1(_local9);
_local4 = true;
};
};
};
};
_local5++;
};
return (_local4);
}
public static function getTweens(_arg1:Object):Array{
var _local2:uint;
var _local3:String;
if (!Boolean(_tweenList)){
return ([]);
};
var _local4:Array = new Array();
_local2 = 0;
while (_local2 < _tweenList.length) {
if (((Boolean(_tweenList[_local2])) && ((_tweenList[_local2].scope == _arg1)))){
for (_local3 in _tweenList[_local2].properties) {
_local4.push(_local3);
};
};
_local2++;
};
return (_local4);
}
public static function isTweening(_arg1:Object):Boolean{
var _local2:uint;
if (!Boolean(_tweenList)){
return (false);
};
_local2 = 0;
while (_local2 < _tweenList.length) {
if (((Boolean(_tweenList[_local2])) && ((_tweenList[_local2].scope == _arg1)))){
return (true);
};
_local2++;
};
return (false);
}
public static function pauseTweenByIndex(_arg1:Number):Boolean{
var _local2:TweenListObj = _tweenList[_arg1];
if ((((_local2 == null)) || (_local2.isPaused))){
return (false);
};
_local2.timePaused = getCurrentTweeningTime(_local2);
_local2.isPaused = true;
return (true);
}
public static function getCurrentTweeningTime(_arg1:Object):Number{
return ((_arg1.useFrames) ? _currentTimeFrame : _currentTime);
}
public static function getTweenCount(_arg1:Object):Number{
var _local2:uint;
if (!Boolean(_tweenList)){
return (0);
};
var _local3:Number = 0;
_local2 = 0;
while (_local2 < _tweenList.length) {
if (((Boolean(_tweenList[_local2])) && ((_tweenList[_local2].scope == _arg1)))){
_local3 = (_local3 + AuxFunctions.getObjectLength(_tweenList[_local2].properties));
};
_local2++;
};
return (_local3);
}
private static function stopEngine():void{
_engineExists = false;
_tweenList = null;
_currentTime = 0;
_currentTimeFrame = 0;
__tweener_controller__.removeEventListener(Event.ENTER_FRAME, Tweener.onEnterFrame);
__tweener_controller__ = null;
}
public static function removeTweensByTime(_arg1:Object, _arg2:Object, _arg3:Number, _arg4:Number):Boolean{
var removedLocally:Boolean;
var i:uint;
var pName:String;
var eventScope:Object;
var p_scope = _arg1;
var p_properties = _arg2;
var p_timeStart = _arg3;
var p_timeComplete = _arg4;
var removed:Boolean;
var tl:uint = _tweenList.length;
i = 0;
while (i < tl) {
if (((Boolean(_tweenList[i])) && ((p_scope == _tweenList[i].scope)))){
if ((((p_timeComplete > _tweenList[i].timeStart)) && ((p_timeStart < _tweenList[i].timeComplete)))){
removedLocally = false;
for (pName in _tweenList[i].properties) {
if (Boolean(p_properties[pName])){
if (Boolean(_tweenList[i].onOverwrite)){
eventScope = (Boolean(_tweenList[i].onOverwriteScope)) ? _tweenList[i].onOverwriteScope : _tweenList[i].scope;
try {
_tweenList[i].onOverwrite.apply(eventScope, _tweenList[i].onOverwriteParams);
} catch(e:Error) {
handleError(_tweenList[i], e, "onOverwrite");
};
};
_tweenList[i].properties[pName] = undefined;
delete _tweenList[i].properties[pName];
removedLocally = true;
removed = true;
};
};
if (removedLocally){
if (AuxFunctions.getObjectLength(_tweenList[i].properties) == 0){
removeTweenByIndex(i);
};
};
};
};
i = (i + 1);
};
return (removed);
}
public static function registerSpecialPropertySplitter(_arg1:String, _arg2:Function, _arg3:Array=null):void{
if (!_inited){
init();
};
var _local4:SpecialPropertySplitter = new SpecialPropertySplitter(_arg2, _arg3);
_specialPropertySplitterList[_arg1] = _local4;
}
public static function removeTweenByIndex(_arg1:Number, _arg2:Boolean=false):Boolean{
_tweenList[_arg1] = null;
if (_arg2){
_tweenList.splice(_arg1, 1);
};
return (true);
}
public static function resumeTweens(_arg1:Object, ... _args):Boolean{
var _local4:uint;
var _local3:Array = new Array();
_local4 = 0;
while (_local4 < _args.length) {
if ((((typeof(_args[_local4]) == "string")) && ((_local3.indexOf(_args[_local4]) == -1)))){
_local3.push(_args[_local4]);
};
_local4++;
};
return (affectTweens(resumeTweenByIndex, _arg1, _local3));
}
public static function pauseTweens(_arg1:Object, ... _args):Boolean{
var _local4:uint;
var _local3:Array = new Array();
_local4 = 0;
while (_local4 < _args.length) {
if ((((typeof(_args[_local4]) == "string")) && ((_local3.indexOf(_args[_local4]) == -1)))){
_local3.push(_args[_local4]);
};
_local4++;
};
return (affectTweens(pauseTweenByIndex, _arg1, _local3));
}
}
}//package caurina.transitions
Section 8
//TweenListObj (caurina.transitions.TweenListObj)
package caurina.transitions {
public class TweenListObj {
public var hasStarted:Boolean;
public var onUpdate:Function;
public var useFrames:Boolean;
public var count:Number;
public var onOverwriteParams:Array;
public var timeStart:Number;
public var timeComplete:Number;
public var onStartParams:Array;
public var onUpdateScope:Object;
public var rounded:Boolean;
public var onUpdateParams:Array;
public var properties:Object;
public var onComplete:Function;
public var transitionParams:Object;
public var updatesSkipped:Number;
public var onStart:Function;
public var onOverwriteScope:Object;
public var skipUpdates:Number;
public var onStartScope:Object;
public var scope:Object;
public var isCaller:Boolean;
public var timePaused:Number;
public var transition:Function;
public var onCompleteParams:Array;
public var onError:Function;
public var timesCalled:Number;
public var onErrorScope:Object;
public var onOverwrite:Function;
public var isPaused:Boolean;
public var waitFrames:Boolean;
public var onCompleteScope:Object;
public function TweenListObj(_arg1:Object, _arg2:Number, _arg3:Number, _arg4:Boolean, _arg5:Function, _arg6:Object){
scope = _arg1;
timeStart = _arg2;
timeComplete = _arg3;
useFrames = _arg4;
transition = _arg5;
transitionParams = _arg6;
properties = new Object();
isPaused = false;
timePaused = undefined;
isCaller = false;
updatesSkipped = 0;
timesCalled = 0;
skipUpdates = 0;
hasStarted = false;
}
public function clone(_arg1:Boolean):TweenListObj{
var _local3:String;
var _local2:TweenListObj = new TweenListObj(scope, timeStart, timeComplete, useFrames, transition, transitionParams);
_local2.properties = new Array();
for (_local3 in properties) {
_local2.properties[_local3] = properties[_local3].clone();
};
_local2.skipUpdates = skipUpdates;
_local2.updatesSkipped = updatesSkipped;
if (!_arg1){
_local2.onStart = onStart;
_local2.onUpdate = onUpdate;
_local2.onComplete = onComplete;
_local2.onOverwrite = onOverwrite;
_local2.onError = onError;
_local2.onStartParams = onStartParams;
_local2.onUpdateParams = onUpdateParams;
_local2.onCompleteParams = onCompleteParams;
_local2.onOverwriteParams = onOverwriteParams;
_local2.onStartScope = onStartScope;
_local2.onUpdateScope = onUpdateScope;
_local2.onCompleteScope = onCompleteScope;
_local2.onOverwriteScope = onOverwriteScope;
_local2.onErrorScope = onErrorScope;
};
_local2.rounded = rounded;
_local2.isPaused = isPaused;
_local2.timePaused = timePaused;
_local2.isCaller = isCaller;
_local2.count = count;
_local2.timesCalled = timesCalled;
_local2.waitFrames = waitFrames;
_local2.hasStarted = hasStarted;
return (_local2);
}
public function toString():String{
var _local3:String;
var _local1 = "\n[TweenListObj ";
_local1 = (_local1 + ("scope:" + String(scope)));
_local1 = (_local1 + ", properties:");
var _local2:Boolean;
for (_local3 in properties) {
if (!_local2){
_local1 = (_local1 + ",");
};
_local1 = (_local1 + ("[name:" + properties[_local3].name));
_local1 = (_local1 + (",valueStart:" + properties[_local3].valueStart));
_local1 = (_local1 + (",valueComplete:" + properties[_local3].valueComplete));
_local1 = (_local1 + "]");
_local2 = false;
};
_local1 = (_local1 + (", timeStart:" + String(timeStart)));
_local1 = (_local1 + (", timeComplete:" + String(timeComplete)));
_local1 = (_local1 + (", useFrames:" + String(useFrames)));
_local1 = (_local1 + (", transition:" + String(transition)));
_local1 = (_local1 + (", transitionParams:" + String(transitionParams)));
if (skipUpdates){
_local1 = (_local1 + (", skipUpdates:" + String(skipUpdates)));
};
if (updatesSkipped){
_local1 = (_local1 + (", updatesSkipped:" + String(updatesSkipped)));
};
if (Boolean(onStart)){
_local1 = (_local1 + (", onStart:" + String(onStart)));
};
if (Boolean(onUpdate)){
_local1 = (_local1 + (", onUpdate:" + String(onUpdate)));
};
if (Boolean(onComplete)){
_local1 = (_local1 + (", onComplete:" + String(onComplete)));
};
if (Boolean(onOverwrite)){
_local1 = (_local1 + (", onOverwrite:" + String(onOverwrite)));
};
if (Boolean(onError)){
_local1 = (_local1 + (", onError:" + String(onError)));
};
if (onStartParams){
_local1 = (_local1 + (", onStartParams:" + String(onStartParams)));
};
if (onUpdateParams){
_local1 = (_local1 + (", onUpdateParams:" + String(onUpdateParams)));
};
if (onCompleteParams){
_local1 = (_local1 + (", onCompleteParams:" + String(onCompleteParams)));
};
if (onOverwriteParams){
_local1 = (_local1 + (", onOverwriteParams:" + String(onOverwriteParams)));
};
if (onStartScope){
_local1 = (_local1 + (", onStartScope:" + String(onStartScope)));
};
if (onUpdateScope){
_local1 = (_local1 + (", onUpdateScope:" + String(onUpdateScope)));
};
if (onCompleteScope){
_local1 = (_local1 + (", onCompleteScope:" + String(onCompleteScope)));
};
if (onOverwriteScope){
_local1 = (_local1 + (", onOverwriteScope:" + String(onOverwriteScope)));
};
if (onErrorScope){
_local1 = (_local1 + (", onErrorScope:" + String(onErrorScope)));
};
if (rounded){
_local1 = (_local1 + (", rounded:" + String(rounded)));
};
if (isPaused){
_local1 = (_local1 + (", isPaused:" + String(isPaused)));
};
if (timePaused){
_local1 = (_local1 + (", timePaused:" + String(timePaused)));
};
if (isCaller){
_local1 = (_local1 + (", isCaller:" + String(isCaller)));
};
if (count){
_local1 = (_local1 + (", count:" + String(count)));
};
if (timesCalled){
_local1 = (_local1 + (", timesCalled:" + String(timesCalled)));
};
if (waitFrames){
_local1 = (_local1 + (", waitFrames:" + String(waitFrames)));
};
if (hasStarted){
_local1 = (_local1 + (", hasStarted:" + String(hasStarted)));
};
_local1 = (_local1 + "]\n");
return (_local1);
}
public static function makePropertiesChain(_arg1:Object):Object{
var _local3:Object;
var _local4:Object;
var _local5:Object;
var _local6:Number;
var _local7:Number;
var _local8:Number;
var _local2:Object = _arg1.base;
if (_local2){
_local3 = {};
if ((_local2 is Array)){
_local4 = [];
_local8 = 0;
while (_local8 < _local2.length) {
_local4.push(_local2[_local8]);
_local8++;
};
} else {
_local4 = [_local2];
};
_local4.push(_arg1);
_local6 = _local4.length;
_local7 = 0;
while (_local7 < _local6) {
if (_local4[_local7]["base"]){
_local5 = AuxFunctions.concatObjects(makePropertiesChain(_local4[_local7]["base"]), _local4[_local7]);
} else {
_local5 = _local4[_local7];
};
_local3 = AuxFunctions.concatObjects(_local3, _local5);
_local7++;
};
if (_local3["base"]){
delete _local3["base"];
};
return (_local3);
//unresolved jump
};
return (_arg1);
}
}
}//package caurina.transitions
Section 9
//_al1402 (classes._al1402)
package classes {
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.ui.*;
public class _al1402 {
private var _lu1361:Object;
private var _ft1443:Object;
public var _ya952:Number;// = 0
private var _kh833:BitmapData;
public function _al1402(){
_ft1443 = new Object();
_lu1361 = new Object();
super();
}
public function _un1229(_arg1:String, _arg2:Number=1):Number{
var _local3:int = _arg1.length;
var _local4:Number = 0;
var _local5:int;
while (_local5 < _local3) {
_local4 = (_local4 + ((_ft1443[_arg1.charCodeAt(_local5)].width * _arg2) + (_ya952 * _arg2)));
_local5++;
};
return ((_local4 - (_ya952 * _arg2)));
}
public function _cl1397(_arg1:BitmapData, _arg2:String, _arg3:Number, _arg4:Number, _arg5:Boolean=true, _arg6:Boolean=true):void{
var _local7:int = _arg2.length;
var _local8:Number = 0;
var _local9:Point = new Point();
if (_arg5 == true){
_arg3 = (_arg3 - (_un1229(_arg2, 1) / 2));
};
_local9.y = _arg4;
var _local10:int;
while (_local10 < _local7) {
_local8 = _arg2.charCodeAt(_local10);
_local9.x = _arg3;
_arg1.copyPixels(_kh833, _ft1443[_local8], _local9, null, null, _arg6);
_arg3 = (_arg3 + (_ft1443[_local8].width + _ya952));
_local10++;
};
}
public function _kl494(_arg1:BitmapData, _arg2:String, _arg3:Number, _arg4:Number, _arg5:Number=1, _arg6:Number=1, _arg7:Number=1, _arg8:Number=1, _arg9:Number=1, _arg10:Boolean=true, _arg11:Number=1):void{
var _local12:int = _arg2.length;
var _local13:Number = 0;
if (_arg10 == true){
_arg3 = (_arg3 - (_un1229(_arg2, _arg5) / 2));
};
var _local14:int;
while (_local14 < _local12) {
_local13 = _arg2.charCodeAt(_local14);
_rw574._xf494(_lu1361[_local13], _arg3, _arg4, _arg1, _arg11, _arg5, _arg6, _arg7, _arg8, _arg9);
_arg3 = ((_arg3 + (_ft1443[_local13].width * _arg5)) + (_ya952 * _arg5));
_local14++;
};
}
public function _mf1181(_arg1:BitmapData, _arg2:Number=1):void{
_kh833 = _arg1;
_ya952 = _arg2;
}
public function _ac553(_arg1:BitmapData, _arg2:String, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number=1, _arg8:Number=1, _arg9:Number=1, _arg10:Number=1, _arg11:Number=1, _arg12:Boolean=true, _arg13:Number=1):void{
var _local16:int;
var _local17:Number;
var _local14:int = _arg2.length;
var _local15:Number = 0;
if (_arg12 == true){
_arg3 = (_arg3 - (_un1229(_arg2, _arg7) / 2));
};
_local17 = _arg3;
_local16 = 0;
while (_local16 < _local14) {
_local15 = _arg2.charCodeAt(_local16);
_rw574._xf494(_lu1361[_local15], (_arg3 + _arg5), (_arg4 + _arg6), _arg1, _arg13, _arg7, _arg8, 0.1, 0.1, 0.1);
_arg3 = ((_arg3 + (_ft1443[_local15].width * _arg7)) + (_ya952 * _arg7));
_local16++;
};
_arg3 = _local17;
_local16 = 0;
while (_local16 < _local14) {
_local15 = _arg2.charCodeAt(_local16);
_rw574._xf494(_lu1361[_local15], _arg3, _arg4, _arg1, _arg13, _arg7, _arg8, _arg9, _arg10, _arg11);
_arg3 = ((_arg3 + (_ft1443[_local15].width * _arg7)) + _ya952);
_local16++;
};
}
public function _uy403(_arg1:int, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number):void{
_ft1443[_arg1] = new Rectangle(_arg2, _arg3, _arg4, _arg5);
_lu1361[_arg1] = new BitmapData(_ft1443[_arg1].width, _ft1443[_arg1].height, true, 0);
_rw574._jy699(_kh833, 0, 0, _ft1443[_arg1].x, _ft1443[_arg1].y, _ft1443[_arg1].width, _ft1443[_arg1].height, _lu1361[_arg1]);
}
}
}//package classes
Section 10
//_aw957 (classes._aw957)
package classes {
import flash.display.*;
public class _aw957 {
public var _vs1005:Number;// = 0
public var _wv811:BitmapData;
public var _ke909:Number;// = 0
public var _cy1198:Number;// = 0
public var _jh603:Array;
public var _jk1691:Number;// = 0
public var _nd598:Number;// = 0
public function _aw957(){
_jh603 = [];
super();
}
public function _ig1054(_arg1:Number=0, _arg2:Number=0):void{
var _local3:Object;
_arg1 = (_arg1 * 0.5);
_arg2 = (_arg2 * 0.5);
for each (_local3 in _jh603) {
_local3.x = (_local3.x + (_arg1 * _local3._xx1283));
_local3.y = (_local3.y + (_arg2 * _local3._ke128));
if (_local3.x > _jk1691){
_local3.x = _cy1198;
} else {
if (_local3.x < _cy1198){
_local3.x = _jk1691;
};
};
if (_local3.y > _vs1005){
_local3.y = _ke909;
} else {
if (_local3.y < _ke909){
_local3.y = _vs1005;
};
};
_wv811.setPixel(_local3.x, _local3.y, _local3.color);
};
}
public function Init(_arg1:Number, _arg2:BitmapData, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):void{
var _local7:int;
var _local8:_sh1388;
var _local11:_sh1388;
var _local12:int;
var _local9:int = (_jh603.length - 1);
_wv811 = _arg2;
_cy1198 = _arg3;
_jk1691 = _arg5;
_ke909 = _arg4;
_vs1005 = _arg6;
_nd598 = _arg1;
_local7 = _local9;
while (_local7 >= 0) {
_local8 = _jh603[_local7];
_jh603.splice(_local7, 1);
_local8 = null;
_local7--;
};
var _local10:int;
while (_local10 < _nd598) {
_local11 = new _sh1388();
_local11.x = _rw574._up1471._tp230(_cy1198, _jk1691);
_local11.y = _rw574._up1471._tp230(_ke909, _vs1005);
_local12 = _rw574._up1471._ma459(1, 10);
if (_local12 == 1){
_local11.color = 0x6D6D6D;
_local11._xx1283 = 1;
_local11._ke128 = _local11._xx1283;
};
if (_local12 == 2){
_local11.color = 0x7D7D7D;
_local11._xx1283 = 1.2;
_local11._ke128 = _local11._xx1283;
};
if (_local12 == 3){
_local11.color = 0x848484;
_local11._xx1283 = 1.4;
_local11._ke128 = _local11._xx1283;
};
if (_local12 == 4){
_local11.color = 0x9C9C9C;
_local11._xx1283 = 1.6;
_local11._ke128 = _local11._xx1283;
};
if (_local12 == 5){
_local11.color = 0xA3A3A3;
_local11._xx1283 = 1.8;
_local11._ke128 = _local11._xx1283;
};
if (_local12 == 6){
_local11.color = 0xBBBBBB;
_local11._xx1283 = 2;
_local11._ke128 = _local11._xx1283;
};
if (_local12 == 7){
_local11.color = 0xD3D3D3;
_local11._xx1283 = 2.2;
_local11._ke128 = _local11._xx1283;
};
if (_local12 == 8){
_local11.color = 0xE8E8E8;
_local11._xx1283 = 2.4;
_local11._ke128 = _local11._xx1283;
};
if (_local12 == 9){
_local11.color = 0xF3F3F3;
_local11._xx1283 = 2.6;
_local11._ke128 = _local11._xx1283;
};
if (_local12 == 10){
_local11.color = 0xFFFFFF;
_local11._xx1283 = 2.8;
_local11._ke128 = _local11._xx1283;
};
_jh603.push(_local11);
_local10++;
};
}
}
}//package classes
Section 11
//_bx367 (classes._bx367)
package classes {
import flash.events.*;
import flash.utils.*;
public class _bx367 {
private static const _jh330:int = 20;
private static var _jt470:Number = 0;
public static var _vn609:Number = 0;
private static var _ip970:int;
private static var _nn336:Number = 0;
private static var _aw387:Array = [30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30];
public static var _bc975:Number = 20;
public static function _oa876():Number{
var _local1:uint = getTimer();
var _local2:uint = (_local1 - _jt470);
_jt470 = getTimer();
_ip970++;
if (_ip970 == _jh330){
_ip970 = 0;
};
_aw387[_ip970] = _local2;
_nn336 = 0;
var _local3:int;
while (_local3 < _jh330) {
_nn336 = (_nn336 + _aw387[_local3]);
_local3++;
};
_vn609 = (_nn336 / _jh330);
if (_vn609 > _bc975){
_vn609 = _bc975;
};
return (_vn609);
}
public static function _hd755():void{
_jt470 = getTimer();
_aw387 = [30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30];
_nn336 = 30;
_ip970 = -1;
}
public static function _tn743(_arg1:Number=40):void{
_bc975 = _arg1;
}
}
}//package classes
Section 12
//_ej75 (classes._ej75)
package classes {
import flash.display.*;
import flash.net.*;
public class _ej75 {
public static var _xt1058:Array = [];
public static function _gr376(_arg1:int):int{
var _local2:_nw124 = _xt1058[_arg1];
return (_local2.State);
}
public static function _nj1019(_arg1:int, _arg2:String):void{
var _local3:_nw124 = _xt1058[_arg1];
_local3._be414 = _arg2;
}
public static function _dg183(_arg1:SharedObject, _arg2:Function=null):void{
var _local4:_nw124;
var _local3:Array = [];
for each (_local4 in _xt1058) {
_local3[_local3.length] = _local4.State;
};
_arg1.data.achievements = _local3;
if (_arg2 != null){
_arg2();
};
_arg1.flush();
}
public static function _my325(_arg1:int):String{
var _local2:_nw124 = _xt1058[_arg1];
return (_local2._ng1326);
}
public static function _tk399(_arg1:String):_nw124{
var _local2:_nw124;
var _local3:_nw124;
for each (_local2 in _xt1058) {
if (_local2._ng1326 == _arg1){
_local3 = _local2;
break;
};
};
return (_local3);
}
public static function _qy522(_arg1:int, _arg2:String):void{
var _local3:_nw124 = _xt1058[_arg1];
_local3._ng1326 = _arg2;
}
public static function _dt22(_arg1:int, _arg2:BitmapData):void{
var _local3:_nw124 = _xt1058[_arg1];
_local3._im1646 = _arg2;
}
public static function _dk1076(_arg1:int):BitmapData{
var _local2:_nw124 = _xt1058[_arg1];
return (_local2._im1646);
}
public static function _lk434(_arg1:String, _arg2:String, _arg3:BitmapData=null, _arg4:Boolean=true):void{
var _local5:_nw124 = new _nw124();
if (_arg4 == true){
_local5._ng1326 = _arg1.toUpperCase();
_local5._be414 = _arg2.toUpperCase();
} else {
_local5._ng1326 = _arg1;
_local5._be414 = _arg2;
};
_local5.State = 0;
_local5._im1646 = _arg3;
_xt1058[_xt1058.length] = _local5;
}
public static function _id214(_arg1:SharedObject):void{
var _local2:Array;
var _local3:_nw124;
var _local4:int;
_local2 = _arg1.data.achievements;
if (_local2 != null){
for each (_local3 in _xt1058) {
_local3.State = _local2[_local4];
_local4++;
};
};
}
public static function _le26():void{
var _local1:_nw124;
for each (_local1 in _xt1058) {
_local1.State = 0;
};
}
public static function _oo518(_arg1:int):String{
var _local2:_nw124 = _xt1058[_arg1];
return (_local2._be414);
}
public static function _nb496(_arg1:int, _arg2:int):void{
var _local3:_nw124 = _xt1058[_arg1];
_local3.State = _arg2;
}
public static function _oo817(_arg1:int):_nw124{
var _local2:_nw124 = _xt1058[_arg1];
return (_local2);
}
}
}//package classes
Section 13
//_gj916 (classes._gj916)
package classes {
import flash.media.*;
import flash.utils.*;
public class _gj916 {
private static var _lr204:Dictionary;
private static var _mo83:Boolean;
public static function _ax548(_arg1:String, _arg2:Sound, _arg3:Number=0, _arg4:int=100000):void{
var _local5:_kv1353 = new _kv1353();
_local5._ax548(_arg2, _arg3, _arg4);
_lr204[_arg1] = _local5;
}
public static function _dq321(_arg1:String):Number{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGEMusic> Get Pan: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
return (_local2._dq321());
}
public static function _xj1525(_arg1:String):Number{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGEMusic> Get Position: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
return (_local2._xj1525());
}
public static function _sb1050(_arg1:String):Number{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGEMusic> Get Length: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
return (_local2._sb1050());
}
public static function _nv982(_arg1:String):Number{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGEMusic> Get Volume: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
return (_local2._nv982());
}
public static function _cw945():void{
var _local1:_kv1353;
for each (_local1 in _lr204) {
_local1._tv1244();
};
}
public static function Init():void{
_lr204 = new Dictionary();
_mo83 = true;
}
public static function _np788():Boolean{
return (_mo83);
}
public static function _ao1224(_arg1:String, _arg2:Number):void{
var _local3:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGEMusic> Set Pan: " + _arg1) + " was not found!")));
};
_local3 = _lr204[_arg1];
_local3._ao1224(_arg2);
}
public static function _tv1244(_arg1:String):void{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGEMusic> Stop Sound: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
_local2._tv1244();
}
public static function _xt1199(_arg1:Boolean):void{
_mo83 = _arg1;
}
public static function _vn54(_arg1:String):_kv1353{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGEMusic> Get Sound: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
return (_local2);
}
public static function _xm563(_arg1:String):void{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGEMusic> Play Sound: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
if (_mo83 == true){
_local2._xm563();
};
}
public static function _nh474(_arg1:String, _arg2:Number):void{
var _local3:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGEMusic> Set Volume: " + _arg1) + " was not found!")));
};
_local3 = _lr204[_arg1];
_local3._nh474(_arg2);
}
}
}//package classes
Section 14
//_is771 (classes._is771)
package classes {
import flash.display.*;
import flash.geom.*;
public class _is771 {
private var _vd485:Number;
private var _rh947:Object;
private var i:int;
private var _xj806:Bitmap;
private var _ox1507:Class;
private var _io343:Number;
public static const CENTER:int = 2;
public static const LEFT:int = 0;
public static const RIGHT:int = 1;
public function _is771():void{
_ox1507 = _is771__ox1507;
_xj806 = new _ox1507();
_io343 = "?".charCodeAt(0);
_vd485 = "\n".charCodeAt(0);
_rh947 = new Object();
super();
i = 32;
while (i < 161) {
_rh947[i] = new Rectangle((((i - 32) % 16) * 16), (int(((i - 32) / 16)) * 16), 9, 16);
i++;
};
}
public function draw(_arg1:BitmapData, _arg2:String, _arg3:int=0, _arg4:int=0, _arg5:int=0):void{
var _local7:String;
var _local6:Array = _arg2.split("\n");
for each (_local7 in _local6) {
if (_arg5 == LEFT){
_kp965(_arg1, _local7, _arg3, _arg4);
} else {
if (_arg5 == RIGHT){
_kp965(_arg1, _local7, (_arg3 - (_local7.length * 8)), _arg4);
} else {
_kp965(_arg1, _local7, (_arg3 - ((_local7.length * 8) / 2)), _arg4);
};
};
_arg4 = (_arg4 + 13);
};
}
private function _kp965(_arg1:BitmapData, _arg2:String, _arg3:int, _arg4:int):void{
var _local8:Number;
var _local5:Point = new Point(_arg3, _arg4);
var _local6:int = _arg2.length;
var _local7:int;
while (_local7 < _local6) {
_local8 = _arg2.charCodeAt(_local7);
if ((((_local8 > 160)) || ((_local8 < 32)))){
_local8 = _io343;
};
_arg1.copyPixels(_xj806.bitmapData, _rh947[_local8], _local5);
_local5.x = (_local5.x + 8);
_local7++;
};
}
}
}//package classes
Section 15
//_is771__ox1507 (classes._is771__ox1507)
package classes {
import mx.core.*;
public class _is771__ox1507 extends BitmapAsset {
}
}//package classes
Section 16
//_kv1353 (classes._kv1353)
package classes {
import flash.media.*;
public class _kv1353 {
public var _qr1017:SoundChannel;
public var _gk222:Sound;
public var _yg1432:Number;// = 0
public var _mf1063:int;
public var _ww1000:SoundTransform;
public var _og1686:Boolean;
public function _kv1353(){
_qr1017 = new SoundChannel();
_ww1000 = new SoundTransform(1, 0);
}
public function _xm563():void{
_qr1017 = _gk222.play(_yg1432, _mf1063, _ww1000);
}
public function _ct375():void{
_tv1244();
_gk222 = null;
_qr1017 = null;
_ww1000 = null;
}
public function _tv1244():void{
_qr1017.stop();
}
public function _ax548(_arg1:Sound, _arg2:Number, _arg3:int):void{
_gk222 = _arg1;
_yg1432 = _arg2;
_mf1063 = _arg3;
}
public function _dq321():Number{
return (_ww1000.pan);
}
public function _nv982():Number{
return (_ww1000.volume);
}
public function _ao1224(_arg1:Number):void{
_ww1000.pan = _arg1;
}
public function _sb1050():Number{
return (_gk222.length);
}
public function _nh474(_arg1:Number):void{
if (_arg1 < 0){
_arg1 = 0;
};
_ww1000.volume = _arg1;
}
public function _xj1525():Number{
return (_qr1017.position);
}
}
}//package classes
Section 17
//_nw124 (classes._nw124)
package classes {
import flash.display.*;
public class _nw124 {
public var _be414:String;
public var State:int;
public var _im1646:BitmapData;
public var _ng1326:String;
}
}//package classes
Section 18
//_nx31 (classes._nx31)
package classes {
import flash.display.*;
public class _nx31 {
public var _xb551:int;// = 0
public var _rh308:Array;
public var _qy1335:Number;// = 0
public var _ed1209:int;// = 0
public var _av1287:Number;// = 0
public function _nx31(){
_rh308 = [];
super();
}
public function _fx1659(_arg1:int=0):_uf368{
var _local2:int;
var _local3:_uf368;
var _local4:_uf368;
var _local5:int = (_rh308.length - 1);
_local2 = _local5;
while (_local2 >= 0) {
_local3 = _rh308[_local2];
if (_local3.id == _arg1){
_local4 = _local3;
break;
};
_local2--;
};
return (_local4);
}
public function _tp1107(_arg1:Object, _arg2:Number=1):void{
var _local4:_uf368;
var _local3:int = (_rh308.length - 1);
var _local5:int = _local3;
while (_local5 >= 0) {
_local4 = _rh308[_local5];
_local4._ig1054(_arg2);
_arg1(_local4);
if (_local4._tc794 == true){
if (_local4._vo333 != null){
_local4._vo333(_local4);
};
_local4._ct375();
_rh308.splice(_local5, 1);
_local4 = null;
} else {
_local4._ij1556();
};
_local5--;
};
}
public function _rs1448(_arg1:int=0):_uf368{
var _local2:int;
var _local3:_uf368;
var _local4:_uf368;
var _local5:int = (_rh308.length - 1);
_local2 = _local5;
while (_local2 >= 0) {
_local3 = _rh308[_local2];
if (_local3._gu403 == _arg1){
_local4 = _local3;
break;
};
_local2--;
};
return (_local4);
}
public function _ei187(_arg1:Number=1):void{
var _local3:_uf368;
var _local2:int = (_rh308.length - 1);
var _local4:int = _local2;
while (_local4 >= 0) {
_local3 = _rh308[_local4];
_local3._ig1054(_arg1);
if (_local3._tc794 == true){
if (_local3._vo333 != null){
_local3._vo333(_local3);
};
_local3._ct375();
_rh308.splice(_local4, 1);
_local3 = null;
};
_local4--;
};
}
public function _cd171(_arg1:Number=1):void{
var _local3:_uf368;
var _local2:int = (_rh308.length - 1);
var _local4:int = _local2;
while (_local4 >= 0) {
_local3 = _rh308[_local4];
_local3._ig1054(_arg1);
if (_local3._tc794 == true){
if (_local3._vo333 != null){
_local3._vo333(_local3);
};
_local3._ct375();
_rh308.splice(_local4, 1);
_local3 = null;
} else {
_local3._ij1556();
};
_local4--;
};
}
public function _vc316(_arg1:int=0):void{
var _local2:int;
var _local3:Object;
var _local4:int = (_rh308.length - 1);
_local2 = _local4;
while (_local2 >= 0) {
_local3 = _rh308[_local2];
if (_arg1 > 0){
if (_local3._gu403 == _arg1){
_rh308.splice(_local2, 1);
_local3._ct375();
_local3 = null;
};
} else {
_rh308.splice(_local2, 1);
_local3._ct375();
_local3 = null;
};
_local2--;
};
}
public function _qu447(_arg1:int):Boolean{
var _local2:_uf368;
var _local3:Boolean;
for each (_local2 in _rh308) {
if (_local2._gu403 == _arg1){
_local3 = true;
};
};
return (_local3);
}
public function _tp82():void{
var _local1:_uf368;
for each (_local1 in _rh308) {
_local1._ij1556();
};
}
public function _kn515(_arg1:BitmapData, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:BitmapData, _arg7:Number, _arg8:Number, _arg9:int, _arg10:Number=0, _arg11:Boolean=true, _arg12:Boolean=true):_uf368{
var _local13:_uf368;
_local13 = new _uf368();
_local13._wr444(_arg1, _arg2, _arg3, _arg4, _arg5, _arg6, _arg9, _arg10, _arg11);
_local13._ss1421(_arg7, _arg8);
_local13._td1389 = _arg12;
_rh308[_rh308.length] = _local13;
return (_local13);
}
public function _bt880(_arg1:_uf368):void{
_rh308[_rh308.length] = _arg1;
}
public function _fa505(_arg1:Object, _arg2:Number=1):void{
var _local4:_uf368;
var _local3:int = (_rh308.length - 1);
var _local5:int = _local3;
while (_local5 >= 0) {
_local4 = _rh308[_local5];
_local4._ig1054(_arg2);
if (_local4._tc794 == true){
if (_local4._vo333 != null){
_local4._vo333(_local4);
};
_local4._ct375();
_rh308.splice(_local5, 1);
_local4 = null;
} else {
_local4._ij1556();
_arg1(_local4);
};
_local5--;
};
}
public function _cu677():void{
var _local1:_uf368;
for each (_local1 in _rh308) {
_local1._tc794 = true;
_local1._os1213 = false;
};
}
public function _eb418():int{
return (_rh308.length);
}
public function _tw1613(_arg1:Object, _arg2:Number=1):void{
var _local5:_uf368;
var _local3:int = (_rh308.length - 1);
var _local4:int = _local3;
while (_local4 >= 0) {
_local5 = _rh308[_local4];
_arg1(_local5);
_local5._ig1054(_arg2);
if (_local5._tc794 == true){
if (_local5._vo333 != null){
_local5._vo333(_local5);
};
_local5._ct375();
_rh308.splice(_local4, 1);
_local5 = null;
} else {
_local5._ij1556();
};
_local4--;
};
}
public function _ya944(_arg1:int):void{
var _local2:_uf368;
for each (_local2 in _rh308) {
if (_local2._mg1057 == _arg1){
_local2._tc794 = true;
_local2._os1213 = false;
};
};
}
public function _vx369(_arg1:String):_uf368{
var _local2:int;
var _local3:_uf368;
var _local4:_uf368;
var _local5:int = (_rh308.length - 1);
_local2 = _local5;
while (_local2 >= 0) {
_local3 = _rh308[_local2];
if (_local3.name == _arg1){
_local4 = _local3;
break;
};
_local2--;
};
return (_local4);
}
public function _bt548(_arg1:Number=1):void{
var _local3:_uf368;
var _local2:int = (_rh308.length - 1);
var _local4:int = _local2;
while (_local4 >= 0) {
_local3 = _rh308[_local4];
_local3._ig1054(_arg1);
if (_local3._tc794 == true){
if (_local3._vo333 != null){
_local3._vo333(_local3);
};
_local3._ct375();
_rh308.splice(_local4, 1);
_local3 = null;
} else {
_local3._ij1556();
};
_local4--;
};
}
public function _tx90(_arg1:Object, _arg2:Number=1):void{
var _local4:_uf368;
var _local3:int = (_rh308.length - 1);
var _local5:int = _local3;
while (_local5 >= 0) {
_local4 = _rh308[_local5];
_local4._ig1054(_arg2);
if (_local4._tc794 == true){
if (_local4._vo333 != null){
_local4._vo333(_local4);
};
_local4._ct375();
_rh308.splice(_local5, 1);
_local4 = null;
} else {
_arg1(_local4);
_local4._ij1556();
};
_local5--;
};
}
}
}//package classes
Section 19
//_of949 (classes._of949)
package classes {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.ui.*;
public class _of949 extends Sprite {
public static var _nb1479:Boolean;
public static var _cg1119:int;
private static var _uc548:Array = [];
public static var _ny1521:Boolean;
public static var _wx298:Array = [];
private static var _lv1301:Array = [];
private static var _kc1571:Array = [];
public static var _st846:int;
private static function _mf1156(_arg1:KeyboardEvent):void{
_wx298[_arg1.keyCode] = true;
_uc548[_arg1.keyCode] = true;
_lv1301[_arg1.keyCode] = false;
trace(("Key Down: " + _arg1.keyCode));
}
private static function _nq1583(_arg1:KeyboardEvent):void{
_wx298[_arg1.keyCode] = false;
_uc548[_arg1.keyCode] = false;
_lv1301[_arg1.keyCode] = true;
_cg1119 = _arg1.keyCode;
trace(("Key Up: " + _arg1.keyCode));
}
public static function Init(_arg1:Stage):void{
_arg1.addEventListener(MouseEvent.MOUSE_DOWN, _lj578);
_arg1.addEventListener(MouseEvent.MOUSE_UP, _nu639);
_arg1.addEventListener(KeyboardEvent.KEY_DOWN, _mf1156);
_arg1.addEventListener(KeyboardEvent.KEY_UP, _nq1583);
}
private static function _lj578(_arg1:MouseEvent):void{
_nb1479 = true;
_ny1521 = true;
trace("Mouse Down");
}
public static function _mu960():void{
var _local1:int;
_local1 = 0;
while (_local1 < 0x0100) {
_wx298[_local1] = false;
_lv1301[_local1] = false;
_uc548[_local1] = false;
_kc1571[_local1] = false;
_local1++;
};
_cg1119 = 0;
}
public static function _aj742(_arg1:int):void{
_wx298[_arg1] = false;
_uc548[_arg1] = false;
_lv1301[_arg1] = false;
_cg1119 = 0;
}
private static function _nu639(_arg1:MouseEvent):void{
_nb1479 = false;
_ny1521 = false;
trace("Mouse Up");
}
}
}//package classes
Section 20
//_ot570 (classes._ot570)
package classes {
import flash.display.*;
import flash.geom.*;
import caurina.transitions.*;
import flash.filters.*;
public class _ot570 {
public var _rh308:_ri330;
public var _tq1172:Bitmap;
public var _pj1375:Number;// = 0
public var _po1058:uint;
public var height:int;
private var _qr783:Sprite;
public var _pc1464:Number;// = 0
public var width:int;
public var _rl373:Sprite;
public var _dn642:BitmapData;
public var _ec490:BlurFilter;
public var _ce551:Number;// = 0
public var _vs858:Array;
public function _tb486(_arg1:Number, _arg2:Number):void{
brightness = _arg1;
Tweener.addTween(this, {brightness:1, time:_arg2, transition:"linear"});
}
public function _mx1114(_arg1:Number=1, _arg2:Number=0, _arg3:Boolean=true):void{
_rl373.visible = _arg3;
_rl373.mouseEnabled = true;
_rl373.mouseChildren = true;
Tweener.addTween(this, {brightness:1, time:0.5, transition:"linear"});
Tweener.addTween(this, {_ps864:0, time:0.5, transition:"linear"});
}
public function get _ps864():Number{
return (_pj1375);
}
public function _eg504(_arg1:Boolean):void{
_rl373.mouseEnabled = _arg1;
_rl373.mouseChildren = _arg1;
}
public function set scale(_arg1:Number):void{
_pc1464 = _arg1;
_rl373.scaleX = _pc1464;
_rl373.scaleY = _pc1464;
}
public function _ss1421(_arg1:Number, _arg2:Number):void{
_rl373.x = _arg1;
_rl373.y = _arg2;
}
public function set brightness(_arg1:Number):void{
_ce551 = _arg1;
_rw574._sf524(_rl373, _ce551, _ce551, _ce551);
}
public function get _wh239():Number{
return (_ec490.blurX);
}
public function _vc1162(_arg1:Boolean):void{
_rl373.visible = _arg1;
}
public function Init(_arg1:Sprite, _arg2:int, _arg3:int, _arg4:Boolean=true, _arg5:uint=4278190080, _arg6:Boolean=true):void{
_qr783 = _arg1;
_po1058 = _arg5;
_dn642 = new BitmapData(_arg2, _arg3, _arg4, _arg5);
_tq1172 = new Bitmap(_dn642);
_tq1172.smoothing = _arg6;
_rl373 = new Sprite();
_qr783.addChild(_rl373);
_tq1172.x = (-(_tq1172.width) / 2);
_tq1172.y = (-(_tq1172.height) / 2);
_rl373.addChild(_tq1172);
_rl373.x = (_dn642.width / 2);
_rl373.y = (_dn642.height / 2);
width = _arg2;
height = _arg3;
_ce551 = 1;
_pc1464 = 1;
_ec490 = new BlurFilter(0, 0, 1);
_vs858 = new Array();
_vs858.push(_ec490);
_rl373.filters = _vs858;
_pj1375 = 0;
_ec490.blurX = 0;
_ec490.blurY = 0;
_ec490.quality = 0;
_rl373.filters = _vs858;
_rh308 = new _ri330();
}
public function set _ps864(_arg1:Number):void{
_pj1375 = _arg1;
_ec490.blurX = _arg1;
_ec490.blurY = _arg1;
if (_arg1 == 0){
_ec490.quality = 0;
_rl373.filters = null;
} else {
_ec490.quality = 2;
};
_rl373.filters = _vs858;
}
public function _iv943():void{
_dn642.fillRect(new Rectangle(0, 0, width, height), _po1058);
}
public function _ct375():void{
_rh308._vc316();
_qr783.removeChild(_rl373);
_rl373.removeChild(_tq1172);
if (_dn642 != null){
_dn642 = null;
};
if (_tq1172 != null){
_tq1172 = null;
};
_rl373 = null;
_ec490 = null;
_vs858 = null;
}
public function get scale():Number{
return (_pc1464);
}
public function _na739(_arg1:BitmapData):void{
_dn642.copyPixels(_arg1, new Rectangle(0, 0, width, height), new Point(0, 0));
}
public function set _lk1677(_arg1:Number):void{
_ec490.blurY = _arg1;
if (_arg1 == 0){
_rl373.filters = null;
} else {
_ec490.quality = BitmapFilterQuality.LOW;
};
_rl373.filters = _vs858;
}
public function set _wh239(_arg1:Number):void{
_ec490.blurX = _arg1;
if (_arg1 == 0){
_rl373.filters = null;
} else {
_ec490.quality = BitmapFilterQuality.LOW;
};
_rl373.filters = _vs858;
}
public function get brightness():Number{
return (_ce551);
}
public function _vm1651():void{
_dn642.unlock();
}
public function _cx1237(_arg1:Number=1, _arg2:Function=null):void{
_rl373.mouseEnabled = false;
_rl373.mouseChildren = false;
if (_arg2 != null){
Tweener.addTween(_rl373, {alpha:0, time:_arg1, transition:"linear", onComplete:_arg2});
} else {
Tweener.addTween(_rl373, {alpha:0, time:_arg1, transition:"linear"});
};
}
public function _qg39(_arg1:Number=1, _arg2:Function=null):void{
_rl373.alpha = 0;
_rl373.visible = true;
_rl373.mouseEnabled = true;
_rl373.mouseChildren = true;
if (_arg2 != null){
Tweener.addTween(_rl373, {alpha:1, time:_arg1, transition:"linear", onComplete:_arg2});
} else {
Tweener.addTween(_rl373, {alpha:1, time:_arg1, transition:"linear"});
};
}
public function get _lk1677():Number{
return (_ec490.blurY);
}
public function _vt140():void{
_dn642.lock();
}
public function _to402(_arg1:Boolean):void{
_tq1172.cacheAsBitmap = _arg1;
}
public function _nc1027(_arg1:Sprite, _arg2:Boolean=true):void{
_qr783 = _arg1;
_rl373 = new Sprite();
_qr783.addChild(_rl373);
_rl373.x = 0;
_rl373.y = 0;
width = 1;
height = 1;
_ce551 = 1;
_pc1464 = 1;
_ec490 = new BlurFilter(0, 0, 1);
_vs858 = new Array();
_vs858.push(_ec490);
_rl373.filters = _vs858;
_pj1375 = 0;
_ec490.blurX = 0;
_ec490.blurY = 0;
_ec490.quality = 0;
_rl373.filters = _vs858;
_rh308 = new _ri330();
}
public function _mf1555(_arg1:Number=0.5, _arg2:Number=0, _arg3:Boolean=true):void{
_rl373.visible = _arg3;
_rl373.mouseEnabled = false;
_rl373.mouseChildren = false;
Tweener.addTween(this, {brightness:_arg1, time:0.5, transition:"linear"});
Tweener.addTween(this, {_ps864:_arg2, time:0.5, transition:"linear"});
}
}
}//package classes
Section 21
//_rd716 (classes._rd716)
package classes {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.filters.*;
public class _rd716 extends Sprite {
public var _lv294:Number;// = 0
public var _jl1268:int;
public var _tk1212:Number;// = 0
public var _by730:Object;
public var _xw828:Number;// = 0
public var _tr1537:int;
public var _cm571:Number;// = 0
public var _ip440:Number;// = 0
public var _ui1250:Number;// = 0
public var _pa850:Boolean;
public var _ay1608:Number;// = 0
public var callback:Object;
public var _ph927:Bitmap;
public var _vf62:Number;// = 0
public var _ff1128:Number;// = 0
public var _hj1502:Boolean;
public var _xq67:Number;// = 0
public var _sv719:Number;// = 0
public var _os205:int;
public var _ln917:int;
public var _mq1422:String;
public var _le23:Number;// = 0
public var _aj1662:int;
public var _nq470:Number;// = 0
public var _nc882:Number;// = 0
public var id3:int;
public var _pd225:Number;// = 0
public var _eo381:Number;// = 0
public var _vy1587:Number;// = 0
public var _go304:int;
public var _gu403:int;
public var _oo301:_rd716;
public var state:int;
public var _lc262:Number;// = 0
public var _ys1528:Number;// = 0
public var _fe1112:Number;// = 0
public var _hp320:Number;// = 0
public var _yh1330:Number;// = 0
public var _jp966:Number;// = 0
public var _st568:Function;
public var _nj506:Boolean;
public var _fp847:Number;// = 0
public var _vg235:Number;// = 0
public var _qv1217:int;
public var _mb1382:Number;// = 0
public var _ux410:Number;// = 0
public var _by428:Number;// = 0
public var _pb34:Number;// = 0
public var _xv42:Number;// = 0
public var _sa180:Number;// = 0
public var _re618:int;
public var _dj88:Number;// = 0
public var _ce551:Number;// = 0
public var _xx1283:Number;// = 0
public var _ly281:Number;// = 0
public var _iv494:Object;
public var _ir696:Number;// = 0
public var _os1213:Boolean;
public var _yu1164:Number;// = 0
public var id:int;
public var _le126:Number;// = 0
public var _be1077:Number;// = 0
public var _se1147:Number;// = 0
public var _mv263:Number;// = 0
public var _ab1247:Number;// = 0
public var _gr625:int;
public var _qc429:Number;// = 0
public var _in548:Number;// = 0
public var _lm776:Number;// = 0
public var _gm610:int;// = 0
public var _pg314:Number;// = 0
public var _km740:Number;// = 0
public var _rj1331:Function;
public var _kj237:Object;
public var _vp1496:BitmapData;
public var _nf510:Number;// = 0
public var _rv1694:Number;// = 0
public var _uw1389:int;
public var frame:Number;// = 0
public var _mx1348:Number;// = 0
public var _by923:Number;// = 0
public var _cy605:int;
public var _uf286:Number;// = 0
public var _wb763:Number;// = 0
public var _xd622:Number;// = 0
public var _nw185:Number;// = 0
public var target:_rd716;
public var _fx1145:Number;// = 0
public var _jm1029:Number;// = 0
public var _jh1103:Number;// = 0
public var _eg945:Number;// = 0
public var _gh1580:Number;// = 0
public var _nk1079:int;
public var _ke128:Number;// = 0
public var _wl1461:Number;// = 0
public var _cp245:Number;// = 0
public var _hq1452:Number;// = 0
public var _hg1610:Number;// = 0
public var _bl1197:Number;// = 0
public var _xi1222:Number;// = 0
public var _pc1464:Number;// = 0
public var _gn1503:Number;// = 0
public var delta:Number;// = 0
public var _tc794:Boolean;
public var _md1262:Number;// = 0
public var _qd1101:int;
public var _ju238:Object;
public var _ec490:BlurFilter;
public var _gq915:Number;// = 0
public var _jt709:Number;// = 0
public var _lk1165:Function;
public var _vs858:Array;
public function _ti798(_arg1:Number, _arg2:Number, _arg3:Number=0, _arg4:Number=0, _arg5:Number=0):void{
_xx1283 = _arg1;
_ke128 = _arg2;
_fp847 = _arg3;
_vf62 = _arg4;
_nf510 = _arg5;
_gm610 = 1;
}
public function _sh1626(_arg1:Number):void{
_le126 = _arg1;
}
private function _ku1705():void{
var _local1:Number;
var _local2:Number;
var _local3:Number;
var _local4:Number;
if (_gm610 == 1){
if (_xq67 > 0){
_xq67 = (_xq67 - delta);
if (_xq67 < 1){
_xq67 = _mv263;
_xx1283 = (_xx1283 * _qc429);
_ke128 = (_ke128 * _qc429);
if (Math.abs(_xx1283) < 0.001){
_xx1283 = 0;
};
if (Math.abs(_ke128) < 0.001){
_ke128 = 0;
};
if ((((_xx1283 == 0)) && ((_ke128 == 0)))){
_xq67 = 0;
};
};
};
this.x = (this.x + (_xx1283 * delta));
this.y = (this.y + (_ke128 * delta));
_xx1283 = (_xx1283 + (_fp847 * delta));
_ke128 = (_ke128 + (_vf62 * delta));
if ((((this.x < _ip440)) || ((this.x > _ux410)))){
_tc794 = true;
};
if ((((this.y < _eg945)) || ((this.y > _jm1029)))){
_tc794 = true;
};
if (_nf510 > 0){
_nf510 = (_nf510 - delta);
if (_nf510 < 1){
_gm610 = 0;
};
};
} else {
if (_gm610 == 2){
_local1 = this.x;
_local2 = this.y;
_local3 = target.x;
_local4 = target.y;
if (_local1 < _local3){
_ly281 = (_ly281 + (_le23 * delta));
if (_ly281 > _by428){
_ly281 = _by428;
};
} else {
if (_local1 > _local3){
_ly281 = (_ly281 - (_le23 * delta));
if (_ly281 < -(_by428)){
_ly281 = -(_by428);
};
};
};
this.x = (this.x + (_ly281 * delta));
if (_local2 < _local4){
_yu1164 = (_yu1164 + (_rv1694 * delta));
if (_yu1164 > _jt709){
_yu1164 = _jt709;
};
} else {
if (_local2 > _local4){
_yu1164 = (_yu1164 - (_rv1694 * delta));
if (_yu1164 < -(_jt709)){
_yu1164 = -(_jt709);
};
};
};
this.y = (this.y + (_yu1164 * delta));
} else {
if (_gm610 == 3){
_tk1212 = (_tk1212 + (_in548 * delta));
_gh1580 = (_gh1580 + (_wl1461 * delta));
this.x = (this.x + ((Math.cos(_tk1212) * _lm776) * delta));
this.y = (this.y + ((Math.sin(_gh1580) * _pg314) * delta));
this.x = (this.x + (_xx1283 * delta));
this.y = (this.y + (_ke128 * delta));
_xx1283 = (_xx1283 + (_fp847 * delta));
_ke128 = (_ke128 + (_vf62 * delta));
if ((((this.x < _ip440)) || ((this.x > _ux410)))){
_tc794 = true;
};
if ((((this.y < _eg945)) || ((this.y > _jm1029)))){
_tc794 = true;
};
};
};
};
if (_nf510 > 0){
_nf510 = (_nf510 - delta);
if (_nf510 < 1){
_gm610 = 0;
};
} else {
if (_gm610 == 4){
} else {
if (_gm610 == 5){
if (target != null){
_tk1212 = (_tk1212 + (_in548 * delta));
this.x = (target.x + (Math.cos(_tk1212) * _lm776));
this.y = (target.y + (Math.sin(_tk1212) * _lm776));
} else {
_tc794 = true;
};
} else {
if (_gm610 == 6){
if (target != null){
if (_pd225 > 0){
_pd225 = (_pd225 - delta);
if (_pd225 < 1){
_pd225 = _uf286;
_vg235 = _rw574._vq657(this.x, this.y, target.x, target.y);
_xx1283 = _rw574._be1379(_vg235, _ly281);
_ke128 = _rw574._dm1262(_vg235, _ly281);
this.x = (this.x + (_xx1283 * delta));
this.y = (this.y + (_ke128 * delta));
_ly281 = (_ly281 + (_le23 * delta));
};
} else {
_vg235 = _rw574._vq657(this.x, this.y, target.x, target.y);
_xx1283 = _rw574._be1379(_vg235, _ly281);
_ke128 = _rw574._dm1262(_vg235, _ly281);
this.x = (this.x + (_xx1283 * delta));
this.y = (this.y + (_ke128 * delta));
_ly281 = (_ly281 + (_le23 * delta));
};
} else {
_tc794 = true;
};
} else {
if (_gm610 == 7){
_vg235 = _rw574._vq657(this.x, this.y, _ly281, _le23);
_xx1283 = _rw574._be1379(_vg235, _by428);
_ke128 = _rw574._dm1262(_vg235, _by428);
this.x = (this.x + (_xx1283 * delta));
this.y = (this.y + (_ke128 * delta));
_by428 = (_by428 + (_yu1164 * delta));
if (_xx1283 > 0){
if (this.x > _ly281){
this.x = _ly281;
};
} else {
if (_xx1283 < 0){
if (this.x < _ly281){
this.x = _ly281;
};
};
};
if (_ke128 > 0){
if (this.y > _le23){
this.y = _le23;
};
} else {
if (_ke128 < 0){
if (this.y < _le23){
this.y = _le23;
};
};
};
if ((((this.x == _ly281)) && ((this.y == _le23)))){
_gm610 = 0;
};
} else {
if (_gm610 == 8){
_tk1212 = (_tk1212 + (_in548 * delta));
_gh1580 = (_gh1580 + (_wl1461 * delta));
this.x = (this.x + ((Math.cos(_tk1212) * _lm776) * delta));
this.y = (this.y + ((Math.sin(_gh1580) * _pg314) * delta));
_lm776 = (_lm776 + (_nq470 * delta));
_pg314 = (_pg314 + (_nq470 * delta));
if ((((this.x < _ip440)) || ((this.x > _ux410)))){
_tc794 = true;
};
if ((((this.y < _eg945)) || ((this.y > _jm1029)))){
_tc794 = true;
};
} else {
if (_gm610 == 9){
_vg235 = _rw574._vq657(this.x, this.y, _ly281, _le23);
_xx1283 = _rw574._be1379(_vg235, _by428);
_ke128 = _rw574._dm1262(_vg235, _by428);
this.x = (this.x + (_xx1283 * delta));
this.y = (this.y + (_ke128 * delta));
_by428 = (_by428 + (_yu1164 * delta));
if (_xx1283 > 0){
if (this.x > _ly281){
this.x = _ly281;
};
} else {
if (_xx1283 < 0){
if (this.x < _ly281){
this.x = _ly281;
};
};
};
if (_ke128 > 0){
if (this.y > _le23){
this.y = _le23;
};
} else {
if (_ke128 < 0){
if (this.y < _le23){
this.y = _le23;
};
};
};
if ((((this.x == _ly281)) && ((this.y == _le23)))){
_gm610 = 0;
_tc794 = true;
};
};
};
};
};
};
};
};
}
public function _ig1054(_arg1:Number=1):void{
delta = _arg1;
_ku1705();
_eh789();
_ew283();
_ps1667();
_ur828();
if (callback != null){
callback(this);
};
}
public function _qx174(_arg1:_rd716, _arg2:Number):void{
var _local3:Number = this.rotation;
var _local4:Number = _rw574._vq657(this.x, this.y, _arg1.x, _arg1.y);
var _local5:Number = 0;
if (_local3 < _local4){
_local5 = 1;
if ((_local4 - _local3) > 179){
_local5 = -1;
};
} else {
if (_local3 > _local4){
_local5 = -1;
if ((_local3 - _local4) > 179){
_local5 = 1;
};
};
};
_local3 = (_local3 + ((_arg2 * _local5) * delta));
if (_local3 < 0){
_local3 = (_local3 + 360);
};
if (_local3 > 359){
_local3 = (_local3 - 360);
};
this.rotation = _local3;
}
public function get brightness():Number{
return (_ce551);
}
public function _ba481(_arg1:Number, _arg2:Number):void{
_km740 = _arg1;
_ay1608 = _arg2;
}
public function set scale(_arg1:Number):void{
_pc1464 = _arg1;
this.scaleX = _pc1464;
this.scaleY = _pc1464;
}
public function set brightness(_arg1:Number):void{
_ce551 = _arg1;
_rw574._sf524(this, _ce551, _ce551, _ce551);
}
public function get _wh239():Number{
return (_ec490.blurX);
}
private function _ev478():void{
if (_nj506 == true){
_xd622 = (_xd622 - (_by923 * delta));
_cp245 = (_cp245 - (_sv719 * delta));
_vy1587 = (_vy1587 - (_ab1247 * delta));
if (_xd622 < _fx1145){
_xd622 = _fx1145;
};
if (_cp245 < _hq1452){
_cp245 = _hq1452;
};
if (_vy1587 < _lv294){
_vy1587 = _fx1145;
};
_eo381 = _xd622;
_dj88 = _cp245;
_mx1348 = _vy1587;
if (_xd622 == _fx1145){
if (_cp245 == _hq1452){
if (_vy1587 == _lv294){
_nj506 = false;
};
};
};
};
}
public function _id1340(_arg1:Number, _arg2:Number):Boolean{
return (_et1372(_arg1, _arg2, (this.x - ((_km740 * this.scaleX) / 2)), (this.y - ((_ay1608 * this.scaleY) / 2)), (_km740 * this.scaleX), (_ay1608 * this.scaleY)));
}
public function _qk22(_arg1:Number, _arg2:Number):void{
_gr625 = 6;
_jh1103 = _arg2;
_ys1528 = _arg1;
}
public function _ff94():void{
_vp1496.unlock();
}
public function get _lk1677():Number{
return (_ec490.blurY);
}
private function _et1372(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):Boolean{
if ((((((((_arg1 < (_arg3 + _arg5))) && ((_arg2 < (_arg4 + _arg6))))) && ((_arg1 > _arg3)))) && ((_arg2 > _arg4)))){
return (true);
};
return (false);
}
public function _xy276(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):void{
_ip440 = _arg1;
_ux410 = _arg3;
_eg945 = _arg2;
_jm1029 = _arg4;
}
private function _eh789():void{
if (_gr625){
switch (_gr625){
case 1:
this.rotation = (this.rotation + (_jh1103 * delta));
if (this.rotation >= _cm571){
this.rotation = _cm571;
_jh1103 = -(_jh1103);
} else {
if (this.rotation <= _ys1528){
this.rotation = _ys1528;
_jh1103 = -(_jh1103);
};
};
break;
case 2:
this.rotation = (this.rotation + (_jh1103 * delta));
if (this.rotation >= _cm571){
this.rotation = _ys1528;
} else {
if (this.rotation <= _ys1528){
this.rotation = _cm571;
};
};
break;
case 3:
this.rotation = (this.rotation + (_jh1103 * delta));
if (this.rotation >= _cm571){
this.rotation = _cm571;
_gr625 = 0;
} else {
if (this.rotation <= _ys1528){
this.rotation = _ys1528;
_gr625 = 0;
};
};
break;
case 4:
this.rotation = (this.rotation + (_jh1103 * delta));
if (this.rotation >= _cm571){
this.rotation = _cm571;
_gr625 = 0;
_tc794 = true;
} else {
if (this.rotation <= _ys1528){
this.rotation = _ys1528;
_gr625 = 0;
_tc794 = true;
};
};
break;
case 5:
_qx174(_oo301, _jh1103);
break;
case 6:
_ec662(_ys1528, _jh1103);
break;
};
};
}
public function _me814(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:int=1, _arg5:Number=1):void{
_re618 = _arg4;
_pb34 = _arg1;
_hg1610 = _arg2;
_ui1250 = _arg3;
this.scaleX = _arg5;
}
public function _rm1503(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:int=1, _arg5:Number=0):void{
_gr625 = _arg4;
_jh1103 = _arg1;
_ys1528 = _arg2;
_cm571 = _arg3;
this.rotation = _arg5;
}
public function _ec662(_arg1:Number, _arg2:Number):void{
var _local3:Number = this.rotation;
var _local4:Number = _arg1;
var _local5:Number = 0;
if (_local3 < _local4){
_local5 = 1;
if ((_local4 - _local3) > 179){
_local5 = -1;
};
} else {
if (_local3 > _local4){
_local5 = -1;
if ((_local3 - _local4) > 179){
_local5 = 1;
};
};
};
_local3 = (_local3 + ((_arg2 * _local5) * delta));
if (_local3 < 0){
_local3 = (_local3 + 360);
};
if (_local3 > 359){
_local3 = (_local3 - 360);
};
this.rotation = _local3;
}
public function _gy1216(_arg1:Object):void{
callback = _arg1;
}
public function _ss1421(_arg1:Number, _arg2:Number):void{
this.x = _arg1;
this.y = _arg2;
}
public function Init(_arg1:Object, _arg2:int, _arg3:int, _arg4:int, _arg5:Boolean=true, _arg6:uint=0, _arg7:Boolean=false):void{
_iv494 = _arg1;
_aj1662 = _arg2;
_vp1496 = new BitmapData(_arg3, _arg4, _arg5, _arg6);
_ph927 = new Bitmap(_vp1496);
_ph927.smoothing = _arg7;
_iv494.addChild(this);
_ph927.x = (-(_ph927.width) / 2);
_ph927.y = (-(_ph927.height) / 2);
this.addChild(_ph927);
this.x = (_vp1496.width / 2);
this.y = (_vp1496.height / 2);
width = _arg3;
height = _arg4;
_ec490 = new BlurFilter(0, 0, 1);
_vs858 = new Array();
_vs858.push(_ec490);
this.filters = _vs858;
_ec490.blurX = 0;
_ec490.blurY = 0;
_ec490.quality = 0;
this.filters = _vs858;
_le126 = (width / 2);
_km740 = width;
_ay1608 = height;
_os1213 = true;
_ip440 = -10000;
_ux410 = 10000;
_eg945 = -10000;
_jm1029 = 10000;
this.alpha = 1;
this.scaleX = 1;
this.scaleY = 1;
this.mouseEnabled = false;
_eo381 = 1;
_dj88 = 1;
_mx1348 = 1;
_ce551 = 1;
_pc1464 = 1;
}
public function _ct375():void{
callback = null;
_by730 = null;
_kj237 = null;
_oo301 = null;
target = null;
if (_pa850 == true){
this.removeEventListener(MouseEvent.CLICK, _st568);
this.removeEventListener(MouseEvent.MOUSE_OVER, _lk1165);
this.removeEventListener(MouseEvent.MOUSE_OUT, _rj1331);
};
_st568 = null;
_lk1165 = null;
_rj1331 = null;
_iv494.removeChild(this);
this.removeChild(_ph927);
_vp1496 = null;
_ph927 = null;
_ec490 = null;
_vs858 = null;
}
private function _ps1667():void{
if (_ln917){
this.scaleY = (this.scaleY + (_ff1128 * delta));
switch (_ln917){
case 1:
if (this.scaleY >= _nw185){
this.scaleY = _nw185;
_ff1128 = -(_ff1128);
} else {
if (this.scaleY <= _nc882){
this.scaleY = _nc882;
_ff1128 = -(_ff1128);
};
};
break;
case 2:
if (this.scaleY >= _nw185){
this.scaleY = _nc882;
} else {
if (this.scaleY <= _nc882){
this.scaleY = _nw185;
};
};
break;
case 3:
if (this.scaleY >= _nw185){
this.scaleY = _nw185;
_ln917 = 0;
} else {
if (this.scaleY <= _nc882){
this.scaleY = _nc882;
_ln917 = 0;
};
};
break;
case 4:
if (this.scaleY >= _nw185){
this.scaleY = _nw185;
_ln917 = 0;
_tc794 = true;
} else {
if (this.scaleY <= _nc882){
this.scaleY = _nc882;
_ln917 = 0;
_tc794 = true;
};
};
break;
};
};
}
public function get scale():Number{
return (_pc1464);
}
public function _na739(_arg1:BitmapData, _arg2:int=0, _arg3:int=0):void{
_vp1496.copyPixels(_arg1, new Rectangle(_arg2, _arg3, width, height), new Point(0, 0));
}
public function set _wh239(_arg1:Number):void{
_ec490.blurX = _arg1;
if (_arg1 == 0){
this.filters = null;
} else {
_ec490.quality = BitmapFilterQuality.LOW;
};
this.filters = _vs858;
}
public function _oj1325(_arg1:Number, _arg2:Number):void{
_jl1268 = 2;
_ir696 = _arg1;
_tr1537 = 0;
_cy605 = 1;
this.alpha = 0;
_sa180 = 0;
_fe1112 = _arg2;
}
public function _vi803(_arg1:Sprite, _arg2:BitmapData, _arg3:Number, _arg4:Number, _arg5:int, _arg6:Function, _arg7:Function, _arg8:Function, _arg9:uint=0):void{
this.Init(_arg1, _arg5, _arg2.width, _arg2.height, true, _arg9, true);
this._ss1421(_arg3, _arg4);
this._na739(_arg2);
this.mouseEnabled = true;
this.buttonMode = true;
this.addEventListener(MouseEvent.CLICK, _arg6);
this.addEventListener(MouseEvent.MOUSE_OVER, _arg7);
this.addEventListener(MouseEvent.MOUSE_OUT, _arg8);
this._pa850 = true;
this._st568 = _arg6;
this._lk1165 = _arg7;
this._rj1331 = _arg8;
}
public function _ht993(_arg1:_rd716, _arg2:Number):void{
_gr625 = 5;
_jh1103 = _arg2;
_oo301 = _arg1;
}
public function _rn387(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:int=1, _arg5:Number=1):void{
_ln917 = _arg4;
_ff1128 = _arg1;
_nc882 = _arg2;
_nw185 = _arg3;
this.scaleY = _arg5;
}
public function _ch630(_arg1:Number, _arg2:Number=1):void{
_jl1268 = 1;
_ir696 = _arg1;
_tr1537 = 0;
_cy605 = 1;
this.alpha = _arg2;
}
private function _ur828():void{
if (_jl1268){
switch (_jl1268){
case 1:
this.alpha = (this.alpha + (_ir696 * delta));
if (this.alpha >= _cy605){
this.alpha = _cy605;
_jl1268 = 0;
} else {
if ((((this.alpha < _tr1537)) || ((this.alpha == _tr1537)))){
this.alpha = _tr1537;
_jl1268 = 0;
_tc794 = true;
};
};
break;
case 2:
if (_sa180 > 0){
_sa180 = (_sa180 - (1 * delta));
if (_sa180 < 1){
_sa180 = 0;
_ch630(-(_ir696));
};
} else {
this.alpha = (this.alpha + (_ir696 * delta));
if (this.alpha >= _cy605){
this.alpha = _cy605;
_sa180 = _fe1112;
};
};
break;
};
};
}
private function _ew283():void{
if (_re618){
this.scaleX = (this.scaleX + (_pb34 * delta));
switch (_re618){
case 1:
if (this.scaleX >= _ui1250){
this.scaleX = _ui1250;
_pb34 = -(_pb34);
} else {
if (this.scaleX <= _hg1610){
this.scaleX = _hg1610;
_pb34 = -(_pb34);
};
};
break;
case 2:
if (this.scaleX >= _ui1250){
this.scaleX = _hg1610;
} else {
if (this.scaleX <= _hg1610){
this.scaleX = _ui1250;
};
};
break;
case 3:
if (this.scaleX >= _ui1250){
this.scaleX = _ui1250;
_re618 = 0;
} else {
if (this.scaleX <= _hg1610){
this.scaleX = _hg1610;
_re618 = 0;
};
};
break;
case 4:
if (this.scaleX >= _ui1250){
this.scaleX = _ui1250;
_re618 = 0;
_tc794 = true;
} else {
if (this.scaleX <= _hg1610){
this.scaleX = _hg1610;
_re618 = 0;
_tc794 = true;
};
};
break;
};
};
}
public function set _lk1677(_arg1:Number):void{
_ec490.blurY = _arg1;
if (_arg1 == 0){
this.filters = null;
} else {
_ec490.quality = BitmapFilterQuality.LOW;
};
this.filters = _vs858;
}
public function _fl1704(_arg1:Object):void{
_kj237 = _arg1;
}
public function _to402(_arg1:Boolean):void{
_ph927.cacheAsBitmap = _arg1;
}
public function _ha701(_arg1:Object):void{
_by730 = _arg1;
}
public function _vt140():void{
_vp1496.lock();
}
}
}//package classes
Section 22
//_ri330 (classes._ri330)
package classes {
import flash.display.*;
public class _ri330 {
public var _rh308:Array;
public var _qy1335:Number;// = 0
public var _ed1209:int;// = 0
public var _av1287:Number;// = 0
public function _ri330(){
_rh308 = [];
super();
}
public function _rs1448(_arg1:int=0):_rd716{
var _local2:int;
var _local3:_rd716;
var _local4:_rd716;
var _local5:int = (_rh308.length - 1);
_local2 = _local5;
while (_local2 >= 0) {
_local3 = _rh308[_local2];
if (_local3._gu403 == _arg1){
_local4 = _local3;
break;
};
_local2--;
};
return (_local4);
}
public function _cc1534(_arg1:Sprite, _arg2:BitmapData, _arg3:Number, _arg4:Number, _arg5:int, _arg6:Function, _arg7:Function, _arg8:Function, _arg9:uint=0):_rd716{
var _local10:_rd716;
_local10 = new _rd716();
_local10._vi803(_arg1, _arg2, _arg3, _arg4, _arg5, _arg6, _arg7, _arg8, _arg9);
_rh308[_rh308.length] = _local10;
return (_local10);
}
public function _gg885(_arg1:Number=0.001):void{
var _local2:_rd716;
for each (_local2 in _rh308) {
_local2._ch630(-(_arg1), 1);
};
}
public function _cu677():void{
var _local1:_rd716;
for each (_local1 in _rh308) {
_local1._tc794 = true;
};
}
public function _hk1657(_arg1:Object, _arg2:Number):void{
var _local5:_rd716;
var _local3:int = (_rh308.length - 1);
var _local4:int = _local3;
while (_local4 >= 0) {
_local5 = _rh308[_local4];
_local5._ig1054(_arg2);
_arg1(_local5);
if (_local5._tc794 == true){
_local5._ct375();
_rh308.splice(_local4, 1);
_local5 = null;
};
_local4--;
};
}
public function _ei187(_arg1:Number):void{
var _local4:_rd716;
var _local2:int = (_rh308.length - 1);
var _local3:int = _local2;
while (_local3 >= 0) {
_local4 = _rh308[_local3];
_local4._ig1054(_arg1);
if (_local4._tc794 == true){
_local4._ct375();
_rh308.splice(_local3, 1);
_local4 = null;
};
_local3--;
};
}
public function _bt880(_arg1:_rd716):void{
_rh308[_rh308.length] = _arg1;
}
public function _kn515(_arg1:Sprite, _arg2:BitmapData, _arg3:Number, _arg4:Number, _arg5:int, _arg6:Boolean=true, _arg7:Boolean=true, _arg8:uint=0):_rd716{
var _local9:_rd716;
_local9 = new _rd716();
_local9.Init(_arg1, _arg5, _arg2.width, _arg2.height, _arg6, _arg8, _arg7);
_local9._ss1421(_arg3, _arg4);
_local9._na739(_arg2);
_rh308[_rh308.length] = _local9;
return (_local9);
}
public function _vc316(_arg1:int=0):void{
var _local2:int;
var _local3:Object;
var _local4:int = (_rh308.length - 1);
_local2 = _local4;
while (_local2 >= 0) {
_local3 = _rh308[_local2];
if (_arg1 > 0){
if (_local3._gu403 == _arg1){
_rh308.splice(_local2, 1);
_local3._ct375();
_local3 = null;
};
} else {
_rh308.splice(_local2, 1);
_local3._ct375();
_local3 = null;
};
_local2--;
};
}
public function _fx1659(_arg1:int=0):_rd716{
var _local2:int;
var _local3:_rd716;
var _local4:_rd716;
var _local5:int = (_rh308.length - 1);
_local2 = _local5;
while (_local2 >= 0) {
_local3 = _rh308[_local2];
if (_local3.id == _arg1){
_local4 = _local3;
break;
};
_local2--;
};
return (_local4);
}
public function _qu447(_arg1:int):Boolean{
var _local2:_rd716;
var _local3:Boolean;
for each (_local2 in _rh308) {
if (_local2._gu403 == _arg1){
_local3 = true;
};
};
return (_local3);
}
public function _tn853(_arg1:Sprite, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:int, _arg7:Boolean=true, _arg8:Boolean=true, _arg9:uint=0):_rd716{
var _local10:_rd716;
_local10 = new _rd716();
_local10.Init(_arg1, _arg6, _arg2, _arg3, _arg7, _arg9, _arg8);
_local10._ss1421(_arg4, _arg5);
_rh308[_rh308.length] = _local10;
return (_local10);
}
public function _eb418():int{
return (_rh308.length);
}
}
}//package classes
Section 23
//_rm966 (classes._rm966)
package classes {
import flash.media.*;
import flash.utils.*;
public class _rm966 {
private static var _lr204:Dictionary;
private static var _mo83:Boolean;
public static function _ax548(_arg1:String, _arg2:Sound, _arg3:Number=0, _arg4:int=0):void{
var _local5:_kv1353 = new _kv1353();
_local5._ax548(_arg2, _arg3, _arg4);
_lr204[_arg1] = _local5;
}
public static function _dq321(_arg1:String):Number{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGESounds> Get Pan: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
return (_local2._dq321());
}
public static function _cw945():void{
var _local1:_kv1353;
for each (_local1 in _lr204) {
_local1._tv1244();
};
}
public static function _uu418():void{
var _local1:_kv1353;
for each (_local1 in _lr204) {
_local1._og1686 = false;
};
}
public static function _nv982(_arg1:String):Number{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGESounds> Get Volume: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
return (_local2._nv982());
}
public static function _bw292(_arg1:String):void{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGESounds> Cue: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
_local2._og1686 = true;
}
public static function Init():void{
_lr204 = new Dictionary();
_mo83 = true;
}
public static function _aw1694():void{
var _local1:_kv1353;
for each (_local1 in _lr204) {
if (_local1._og1686 == true){
_local1._og1686 = false;
if (_mo83 == true){
_local1._xm563();
};
};
};
}
public static function _np788():Boolean{
return (_mo83);
}
public static function _ao1224(_arg1:String, _arg2:Number):void{
var _local3:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGESounds> Set Pan: " + _arg1) + " was not found!")));
};
_local3 = _lr204[_arg1];
_local3._ao1224(_arg2);
}
public static function _tv1244(_arg1:String):void{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGESounds> Stop Sound: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
_local2._tv1244();
}
public static function _xt1199(_arg1:Boolean):void{
_mo83 = _arg1;
}
public static function _vn54(_arg1:String):_kv1353{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGESounds> Get Sound: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
return (_local2);
}
public static function _xm563(_arg1:String):void{
var _local2:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGESounds> Play Sound: " + _arg1) + " was not found!")));
};
_local2 = _lr204[_arg1];
if (_mo83 == true){
_local2._xm563();
};
}
public static function _nh474(_arg1:String, _arg2:Number):void{
var _local3:_kv1353;
if (_lr204[_arg1] == null){
throw (new Error((("<MGESounds> Set Volume: " + _arg1) + " was not found!")));
};
_local3 = _lr204[_arg1];
_local3._nh474(_arg2);
}
}
}//package classes
Section 24
//_rw574 (classes._rw574)
package classes {
import flash.display.*;
import flash.geom.*;
import flash.net.*;
public class _rw574 {
private static var _bs265:Number = 57.2957795130823;
private static var _ky1271:Number = 6.28318530717959;
private static var _wd806:Point;
private static var rect:Rectangle;
public static var _up1471:_ty561 = new _ty561();
private static var _ma1418:Number = 0.0174532925199433;
public static function _mb224(_arg1:Object, _arg2:int, _arg3:BitmapData, _arg4:Number=1, _arg5:Number=1, _arg6:Number=1, _arg7:Number=0, _arg8:Boolean=true, _arg9:Number=20, _arg10:Number=0, _arg11:Number=0, _arg12:Number=0, _arg13:Boolean=false, _arg14:Number=1):void{
var _local16:BitmapData;
var _local17:BitmapData;
var _local15:Number = 0;
var _local18:BitmapData = _arg3;
var _local19:Number = 1;
var _local20:Number = 1;
var _local21:Number = 1;
var _local22:int;
var _local23:Boolean;
if (_arg8 == false){
_local20 = 0;
_local21 = 0;
};
_arg1[_arg2] = new BitmapData((_local18.width * _arg9), _local18.height, true, 0);
_local19 = 1;
var _local24:int;
while (_local24 < _arg9) {
if (_arg8 == false){
_local20 = (_local20 + ((1 / _arg9) * _arg14));
_local21 = (_local21 + ((1 / _arg9) * _arg14));
};
_local16 = new BitmapData(_local18.width, _local18.height, true, 0);
_local17 = new BitmapData(_local18.width, _local18.height, true, 0);
if (_arg13 == true){
if (_local23 == false){
_local23 = true;
} else {
_local23 = false;
};
} else {
_local23 = true;
};
if (_local23 == true){
_jy699(_local18, 0, 0, 0, 0, _local18.width, _local18.height, _local16);
_jk1133(_local16, ((_local18.width / 2) - 0.5), ((_local18.height / 2) - 0.5), _local17, _local19, _local20, _local21, _local15, 0, 0, _arg4, _arg5, _arg6);
};
_jy699(_local17, (_local24 * _local18.width), 0, 0, 0, _local18.width, _local18.height, _arg1[_arg2]);
_arg4 = (_arg4 + _arg10);
_arg5 = (_arg5 + _arg11);
_arg6 = (_arg6 + _arg12);
if (_arg4 < 0){
_arg4 = 0;
};
if (_arg5 < 0){
_arg5 = 0;
};
if (_arg6 < 0){
_arg6 = 0;
};
if (_arg8 == true){
_local20 = (_local20 - ((1 / _arg9) * _arg14));
_local21 = (_local21 - ((1 / _arg9) * _arg14));
};
_local15 = (_local15 + _arg7);
if (_local15 > 360){
_local15 = (_local15 - 360);
} else {
if (_local15 < 0){
_local15 = (_local15 + 360);
};
};
_local24++;
};
_local16 = null;
_local17 = null;
_local18 = null;
}
public static function _qh982(_arg1:Object, _arg2:int, _arg3:BitmapData, _arg4:Number=1, _arg5:Number=1, _arg6:Number=1, _arg7:Number=20, _arg8:Number=1):void{
var _local10:BitmapData;
var _local11:BitmapData;
var _local9:Number = 0;
var _local12:BitmapData = _arg3;
var _local13:Number = 0;
var _local14:Number = _arg8;
var _local15:Number = _arg8;
var _local16:int;
var _local17:Number = (360 / _arg7);
var _local18:Number = (_local12.width * _arg8);
var _local19:Number = (_local12.height * _arg8);
_arg1[_arg2] = new BitmapData((_local18 * _arg7), _local19, true, 0);
_local13 = 1;
var _local20:int;
while (_local20 < _arg7) {
_local10 = new BitmapData(_local12.width, _local12.height, true, 0);
_local11 = new BitmapData(_local18, _local19, true, 0);
_jy699(_local12, 0, 0, 0, 0, _local12.width, _local12.height, _local10);
_jk1133(_local10, ((_local18 / 2) - 0.5), ((_local19 / 2) - 0.5), _local11, _local13, _local14, _local15, _local9, 0, 0, _arg4, _arg5, _arg6);
_jy699(_local11, (_local20 * _local18), 0, 0, 0, _local18, _local19, _arg1[_arg2]);
_local9 = (_local9 + _local17);
_local20++;
};
_local10 = null;
_local11 = null;
_local12 = null;
}
public static function _dm1262(_arg1:Number, _arg2:Number):Number{
return ((_arg2 * Math.sin((_arg1 * _ma1418))));
}
public static function _bm52(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number, _arg8:Number):Boolean{
if ((((_arg1 > (_arg5 + _arg7))) || (((_arg1 + _arg3) < _arg5)))){
return (false);
};
if ((((_arg2 > (_arg6 + _arg8))) || (((_arg2 + _arg4) < _arg6)))){
return (false);
};
return (true);
}
public static function _cl595(_arg1:Number, _arg2:Number):Number{
var _local3:Number = (Math.atan2(_arg2, _arg1) * _bs265);
if (_local3 < 0){
_local3 = (_local3 + 360);
};
return (_local3);
}
public static function _jx992(_arg1:String, _arg2:int):String{
while (_arg1.length < _arg2) {
_arg1 = ("0" + _arg1);
};
return (_arg1);
}
public static function _ei121(_arg1:Number, _arg2:Number):Number{
return (_up1471._tp230(_arg1, _arg2));
}
public static function _sf524(_arg1:Object, _arg2:Number, _arg3:Number, _arg4:Number):void{
var _local5:ColorTransform = new ColorTransform();
_local5.redMultiplier = _arg2;
_local5.greenMultiplier = _arg3;
_local5.blueMultiplier = _arg4;
_arg1.transform.colorTransform = _local5;
}
public static function _yl641(_arg1:Object, _arg2:int, _arg3:BitmapData, _arg4:Number=2, _arg5:Number=20):void{
var _local6:BitmapData;
var _local7:BitmapData;
var _local8:BitmapData = _arg3;
var _local9:int;
var _local10:Number = _arg4;
var _local11:Number = ((_local10 - 1) / _arg5);
_arg1[_arg2] = new BitmapData((_local8.width * _arg5), _local8.height, true, 0);
var _local12:int;
while (_local12 < _arg5) {
_local6 = new BitmapData(_local8.width, _local8.height, true, 0);
_local7 = new BitmapData(_local8.width, _local8.height, true, 0);
_jy699(_local8, 0, 0, 0, 0, _local8.width, _local8.height, _local6);
_xf494(_local6, 0, 0, _local7, 1, 1, 1, _local10, _local10, _local10, null, false);
_jy699(_local7, (_local12 * _local8.width), 0, 0, 0, _local8.width, _local8.height, _arg1[_arg2]);
_local10 = (_local10 - _local11);
if (_local10 < 1){
_local10 = 1;
};
_local12++;
};
_local6 = null;
_local7 = null;
_local8 = null;
}
public static function _ci1517(_arg1:BitmapData, _arg2:Number, _arg3:Number, _arg4:int, _arg5:int, _arg6:int, _arg7:int, _arg8:BitmapData, _arg9:Boolean=true):void{
_wd806 = new Point((_arg2 - (_arg6 / 2)), (_arg3 - (_arg7 / 2)));
rect = new Rectangle(_arg4, _arg5, _arg6, _arg7);
_arg8.copyPixels(_arg1, rect, _wd806, null, null, _arg9);
}
public static function _cm485():Number{
if (_hg629() == true){
return (1);
};
return (-1);
}
public static function _lb492():Number{
return (_up1471._tp230(0, 359));
}
public static function _wy1430(_arg1:Object, _arg2:int, _arg3:BitmapData, _arg4:Number, _arg5:Number, _arg6:Number=20, _arg7:Boolean=true, _arg8:Number=0, _arg9:Number=1):void{
var _local10:BitmapData;
var _local11:BitmapData;
var _local12:BitmapData = _arg3;
var _local13:Number = _arg9;
var _local14:Number = _arg9;
var _local15:int;
var _local16:Number = (_local12.width * _arg9);
var _local17:Number = (_local12.height * _arg9);
_arg1[_arg2] = new BitmapData((_local16 * _arg6), _local17, true, 0);
var _local18:int;
while (_local18 < _arg6) {
_local10 = new BitmapData(_local12.width, _local12.height, true, 0);
_local11 = new BitmapData(_local16, _local17, true, 0);
_jy699(_local12, 0, 0, 0, 0, _local12.width, _local12.height, _local10);
_jk1133(_local10, ((_local16 / 2) - 0.5), ((_local17 / 2) - 0.5), _local11, 1, _local13, _local14, _arg8, 0, 0, 1, 1, 1, null, _arg7);
_jy699(_local11, (_local18 * _local16), 0, 0, 0, _local16, _local17, _arg1[_arg2]);
_local13 = (_local13 + _arg4);
_local14 = (_local14 + _arg5);
_local18++;
};
_local10 = null;
_local11 = null;
_local12 = null;
}
public static function _ul133(_arg1:Object, _arg2:int, _arg3:BitmapData, _arg4:BitmapData, _arg5:Number=20):void{
var _local6:BitmapData;
var _local7:BitmapData;
var _local8:BitmapData = _arg3;
var _local9:int;
var _local10:Number = 0;
_local10 = 1;
_arg1[_arg2] = new BitmapData((_local8.width * _arg5), _local8.height, true, 0);
var _local11:int;
while (_local11 < _arg5) {
_local6 = new BitmapData(_local8.width, _local8.height, true, 0);
_local7 = new BitmapData(_local8.width, _local8.height, true, 0);
_jy699(_local8, 0, 0, 0, 0, _local8.width, _local8.height, _local6);
_jy699(_local6, 0, 0, 0, 0, _local6.width, _local6.height, _local7);
_xf494(_arg4, 0, 0, _local7, _local10, 1, 1, 1, 1, 1, null, false);
_jy699(_local7, (_local11 * _local8.width), 0, 0, 0, _local8.width, _local8.height, _arg1[_arg2]);
_local10 = (_local10 - (1 / _arg5));
if (_local10 < 0){
_local10 = 0;
};
_local11++;
};
_local6 = null;
_local7 = null;
_local8 = null;
}
public static function _gb246(_arg1:BitmapData, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number, _arg8:BitmapData, _arg9:Number=1, _arg10:Number=1, _arg11:Number=1, _arg12:Number=1, _arg13:String=null):void{
var _local14:BitmapData = new BitmapData(_arg4, _arg5, true, 0);
var _local15:BitmapData = new BitmapData(_arg4, _arg5, true, 0);
_jy699(_arg1, 0, 0, _arg2, _arg3, _arg4, _arg5, _local14);
var _local16:Matrix = new Matrix();
var _local17:ColorTransform = new ColorTransform(_arg10, _arg11, _arg12, _arg9, 0, 0, 0, 0);
_local16.scale(1, 1);
_local16.translate(0, 0);
_local15.draw(_local14, _local16, _local17, _arg13, null, true);
_jy699(_local15, _arg6, _arg7, 0, 0, _arg4, _arg5, _arg8);
_local14 = null;
_local15 = null;
}
public static function _un1468(_arg1:_uf368, _arg2:_uf368):Boolean{
var _local3:Number = _arg1.x;
var _local4:Number = _arg1.y;
var _local5:Number = ((_arg1._km740 - 1) * Math.abs(_arg1._yl1629));
var _local6:Number = ((_arg1._ay1608 - 1) * Math.abs(_arg1._xf81));
if (_arg1._xu1401 == true){
_local3 = (_local3 - (_local5 / 2));
_local4 = (_local4 - (_local6 / 2));
};
return (_bk1717(_local3, _local4, _local5, _local6, _arg2.x, _arg2.y, (_arg2._le126 * Math.abs(_arg2._yl1629))));
}
public static function _up1240(_arg1:_uf368, _arg2:_uf368):Boolean{
var _local3:Number = _arg1.x;
var _local4:Number = _arg1.y;
var _local5:Number = ((_arg1._km740 - 1) * Math.abs(_arg1._yl1629));
var _local6:Number = ((_arg1._ay1608 - 1) * Math.abs(_arg1._xf81));
var _local7:Number = _arg2.x;
var _local8:Number = _arg2.y;
var _local9:Number = ((_arg2._km740 - 1) * Math.abs(_arg2._yl1629));
var _local10:Number = ((_arg2._ay1608 - 1) * Math.abs(_arg2._xf81));
if (_arg1._xu1401 == true){
_local3 = (_local3 - (_local5 / 2));
_local4 = (_local4 - (_local6 / 2));
};
if (_arg2._xu1401 == true){
_local7 = (_local7 - (_local9 / 2));
_local8 = (_local8 - (_local10 / 2));
};
if ((((_arg1._os1213 == true)) && ((_arg2._os1213 == true)))){
return (_bm52(_local3, _local4, _local5, _local6, _local7, _local8, _local9, _local10));
};
return (false);
}
public static function _hg629(_arg1:int=50):Boolean{
if (_arg1 > _up1471._ma459(0, 100)){
return (true);
};
return (false);
}
public static function _jk1133(_arg1:BitmapData, _arg2:Number, _arg3:Number, _arg4:BitmapData, _arg5:Number=1, _arg6:Number=1, _arg7:Number=1, _arg8:Number=0, _arg9:Number=0, _arg10:Number=0, _arg11:Number=1, _arg12:Number=1, _arg13:Number=1, _arg14:String=null, _arg15:Boolean=true):void{
var _local16:Number = 0;
if (_arg8 != 0){
if (_arg8 > 180){
_local16 = (-360 + _arg8);
} else {
_local16 = _arg8;
};
_local16 = ((_ky1271 * _local16) / 360);
};
var _local17:Number = _arg1.width;
var _local18:Number = _arg1.height;
var _local19:ColorTransform = new ColorTransform(_arg11, _arg12, _arg13, _arg5, 0, 0, 0, 0);
var _local20:Matrix = new Matrix();
var _local21:Number = (_local17 + ((_arg10 * _local17) / 2));
var _local22:Number = -((_local18 / 2));
_local22 = (_local22 - ((_arg9 * _local18) / 1));
_local20.translate((-(_local21) / 2), _local22);
_local20.b = _arg9;
_local20.c = _arg10;
_local20.scale(_arg6, _arg7);
_local20.rotate(_local16);
_local20.translate(_arg2, _arg3);
_arg4.draw(_arg1, _local20, _local19, _arg14, null, _arg15);
}
public static function _by1162(_arg1:Number, _arg2:Number):Number{
_arg1 = (_arg1 + _arg2);
if (_arg1 > 360){
_arg1 = (_arg1 - 360);
};
if (_arg1 < 0){
_arg1 = (_arg1 + 360);
};
return (_arg1);
}
public static function _pn1711(_arg1:String):void{
var _local2:URLRequest = new URLRequest(_arg1);
navigateToURL(_local2, "_blank");
}
public static function _be1379(_arg1:Number, _arg2:Number):Number{
return ((_arg2 * Math.cos((_arg1 * _ma1418))));
}
public static function _if1500(_arg1:_uf368, _arg2:_uf368):Boolean{
if ((((_arg1._os1213 == true)) && ((_arg2._os1213 == true)))){
if (Math.sqrt((((_arg2.x - _arg1.x) * (_arg2.x - _arg1.x)) + ((_arg2.y - _arg1.y) * (_arg2.y - _arg1.y)))) <= ((_arg1._le126 * _arg1._yl1629) + (_arg2._le126 * _arg2._yl1629))){
return (true);
};
return (false);
//unresolved jump
};
return (false);
}
public static function _jy699(_arg1:BitmapData, _arg2:Number, _arg3:Number, _arg4:int, _arg5:int, _arg6:int, _arg7:int, _arg8:BitmapData, _arg9:Boolean=true):void{
_wd806 = new Point(_arg2, _arg3);
rect = new Rectangle(_arg4, _arg5, _arg6, _arg7);
_arg8.copyPixels(_arg1, rect, _wd806, null, null, _arg9);
}
public static function _xf494(_arg1:BitmapData, _arg2:Number, _arg3:Number, _arg4:BitmapData, _arg5:Number=1, _arg6:Number=1, _arg7:Number=1, _arg8:Number=1, _arg9:Number=1, _arg10:Number=1, _arg11:String=null, _arg12:Boolean=true):void{
var _local13:Matrix = new Matrix();
var _local14:ColorTransform = new ColorTransform(_arg8, _arg9, _arg10, _arg5, 0, 0, 0, 0);
_local13.scale(_arg6, _arg7);
_local13.translate(_arg2, _arg3);
_arg4.draw(_arg1, _local13, _local14, _arg11, null, _arg12);
}
public static function _jq1708(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):Boolean{
if (Math.sqrt((((_arg4 - _arg1) * (_arg4 - _arg1)) + ((_arg5 - _arg2) * (_arg5 - _arg2)))) <= (_arg3 + _arg6)){
return (true);
};
return (false);
}
public static function _ww1008(_arg1:Number, _arg2:Number, _arg3:Number=100):Number{
return ((_arg1 / (_arg2 / _arg3)));
}
public static function _ta884(_arg1:_uf368, _arg2:_uf368):Boolean{
var _local3:Boolean;
if ((((_arg1._os1213 == true)) && ((_arg2._os1213 == true)))){
if (_arg1._uo318 == 0){
if (_arg2._uo318 == 0){
_local3 = _up1240(_arg1, _arg2);
} else {
_local3 = _un1468(_arg1, _arg2);
};
} else {
if (_arg2._uo318 == 1){
_local3 = _if1500(_arg1, _arg2);
} else {
_local3 = _un1468(_arg2, _arg1);
};
};
};
return (_local3);
}
public static function _ct1463(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
return (Math.sqrt((((_arg3 - _arg1) * (_arg3 - _arg1)) + ((_arg4 - _arg2) * (_arg4 - _arg2)))));
}
public static function _ys308(_arg1:int, _arg2:int):int{
return (_up1471._ma459(_arg1, _arg2));
}
public static function _is1649(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):Boolean{
if ((((((((_arg1 < (_arg3 + _arg5))) && ((_arg2 < (_arg4 + _arg6))))) && ((_arg1 > _arg3)))) && ((_arg2 > _arg4)))){
return (true);
};
return (false);
}
public static function _if657(_arg1:Object, _arg2:int, _arg3:BitmapData, _arg4:Number=1, _arg5:Number=1, _arg6:Number=1, _arg7:Number=20, _arg8:Number=1, _arg9:Boolean=true, _arg10:Number=0):void{
var _local11:BitmapData;
var _local12:BitmapData;
var _local13:BitmapData = _arg3;
var _local14:Number = 0;
var _local15:Number = 1;
var _local16:Number = 1;
var _local17:int;
_arg1[_arg2] = new BitmapData((_local13.width * _arg7), _local13.height, true, 0);
_local14 = 1;
if (_arg9 == false){
_local14 = 0;
};
var _local18:int;
while (_local18 < _arg7) {
_local11 = new BitmapData(_local13.width, _local13.height, true, 0);
_local12 = new BitmapData(_local13.width, _local13.height, true, 0);
_jy699(_local13, 0, 0, 0, 0, _local13.width, _local13.height, _local11);
_jk1133(_local11, ((_local13.width / 2) - 0.5), ((_local13.height / 2) - 0.5), _local12, _local14, _local15, _local16, _arg10, 0, 0, _arg4, _arg5, _arg6, null, true);
_jy699(_local12, (_local18 * _local13.width), 0, 0, 0, _local13.width, _local13.height, _arg1[_arg2]);
if (_arg9 == true){
_local14 = (_local14 - ((1 / _arg7) * _arg8));
} else {
_local14 = (_local14 + ((1 / _arg7) * _arg8));
};
_local18++;
};
_local11 = null;
_local12 = null;
_local13 = null;
}
public static function _la428(_arg1:Object, _arg2:BitmapData, _arg3:Number=1, _arg4:Number=1, _arg5:Number=1, _arg6:Number=20):void{
var _local8:BitmapData;
var _local9:BitmapData;
var _local7:Number = 0;
var _local10:BitmapData = _arg2;
var _local11:Number = 0;
var _local12:Number = 1;
var _local13:Number = 1;
var _local14:int;
var _local15:Number = (360 / _arg6);
_local11 = 1;
var _local16:int;
while (_local16 < _arg6) {
_arg1[_local16] = new BitmapData(_local10.width, _local10.height, true, 0);
_local8 = new BitmapData(_local10.width, _local10.height, true, 0);
_local9 = new BitmapData(_local10.width, _local10.height, true, 0);
_jy699(_local10, 0, 0, 0, 0, _local10.width, _local10.height, _local8);
_jk1133(_local8, ((_local10.width / 2) - 0.5), ((_local10.height / 2) - 0.5), _local9, _local11, _local12, _local13, _local7, 0, 0, _arg3, _arg4, _arg5);
_jy699(_local9, 0, 0, 0, 0, _local10.width, _local10.height, _arg1[_local16]);
_local7 = (_local7 + _local15);
_local16++;
};
_local8 = null;
_local9 = null;
_local10 = null;
}
public static function _th1227(_arg1:Object, _arg2:int, _arg3:BitmapData, _arg4:Number=1, _arg5:Number=1, _arg6:Number=1, _arg7:Number=0, _arg8:Boolean=true, _arg9:Number=20, _arg10:Number=0, _arg11:Number=0, _arg12:Number=0, _arg13:Boolean=false, _arg14:Number=1, _arg15:Number=0):void{
var _local17:BitmapData;
var _local18:BitmapData;
var _local16:Number = _arg15;
var _local19:BitmapData = _arg3;
var _local20:Number = 0;
var _local21:Number = 1;
var _local22:Number = 1;
var _local23:int;
var _local24:Boolean;
if (_arg8 == false){
_local21 = 0;
_local22 = 0;
};
_arg1[_arg2] = new BitmapData((_local19.width * _arg9), _local19.height, true, 0);
_local20 = 1;
var _local25:int;
while (_local25 < _arg9) {
if (_arg8 == false){
_local21 = (_local21 + ((1 / _arg9) * _arg14));
_local22 = (_local22 + ((1 / _arg9) * _arg14));
};
_local17 = new BitmapData(_local19.width, _local19.height, true, 0);
_local18 = new BitmapData(_local19.width, _local19.height, true, 0);
if (_arg13 == true){
if (_local24 == false){
_local24 = true;
} else {
_local24 = false;
};
} else {
_local24 = true;
};
if (_local24 == true){
_jy699(_local19, 0, 0, 0, 0, _local19.width, _local19.height, _local17);
_jk1133(_local17, ((_local19.width / 2) - 0.5), ((_local19.height / 2) - 0.5), _local18, _local20, _local21, _local22, _local16, 0, 0, _arg4, _arg5, _arg6);
};
_jy699(_local18, (_local25 * _local19.width), 0, 0, 0, _local19.width, _local19.height, _arg1[_arg2]);
_local20 = (_local20 - (1 / _arg9));
_arg4 = (_arg4 + _arg10);
_arg5 = (_arg5 + _arg11);
_arg6 = (_arg6 + _arg12);
if (_arg4 < 0){
_arg4 = 0;
};
if (_arg5 < 0){
_arg5 = 0;
};
if (_arg6 < 0){
_arg6 = 0;
};
if (_arg8 == true){
_local21 = (_local21 - ((1 / _arg9) * _arg14));
_local22 = (_local22 - ((1 / _arg9) * _arg14));
};
_local16 = (_local16 + _arg7);
if (_local16 > 360){
_local16 = (_local16 - 360);
} else {
if (_local16 < 0){
_local16 = (_local16 + 360);
};
};
_local25++;
};
_local17 = null;
_local18 = null;
_local19 = null;
}
public static function _bk1717(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number):Boolean{
var _local8:Number = _arg5;
var _local9:Number = _arg6;
if (_local8 < _arg1){
_local8 = _arg1;
};
if (_local8 > (_arg1 + _arg3)){
_local8 = (_arg1 + _arg3);
};
if (_local9 < _arg2){
_local9 = _arg2;
};
if (_local9 > (_arg2 + _arg4)){
_local9 = (_arg2 + _arg4);
};
return (((((_arg5 - _local8) * (_arg5 - _local8)) + ((_arg6 - _local9) * (_arg6 - _local9))) < (_arg7 * _arg7)));
}
public static function _jo438(_arg1:_uf368, _arg2:_uf368):Boolean{
if (Math.sqrt((((_arg2.x - _arg1.x) * (_arg2.x - _arg1.x)) + ((_arg2.y - _arg1.y) * (_arg2.y - _arg1.y)))) <= ((_arg1._le126 * _arg1._yl1629) + (_arg2._le126 * _arg2._yl1629))){
return (true);
};
return (false);
}
public static function _vq657(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
var _local5:Number = (Math.atan2((_arg4 - _arg2), (_arg3 - _arg1)) * _bs265);
if (_local5 < 0){
_local5 = (_local5 + 360);
};
return (_local5);
}
public static function _ps112(_arg1:BitmapData, _arg2:Number, _arg3:Number, _arg4:BitmapData, _arg5:Number=1, _arg6:Number=1, _arg7:Number=1, _arg8:String=null):void{
var _local9:Matrix = new Matrix();
var _local10:ColorTransform = new ColorTransform(1, 1, 1, _arg5, 0, 0, 0, 0);
_local9.translate((-(_arg1.width) / 2), (-(_arg1.height) / 2));
_local9.scale(_arg6, _arg7);
_local9.translate(_arg2, _arg3);
_arg4.draw(_arg1, _local9, _local10, _arg8, null, true);
}
}
}//package classes
Section 25
//_sh1388 (classes._sh1388)
package classes {
public class _sh1388 {
public var color:uint;// = 0
public var x:Number;// = 0
public var y:Number;// = 0
public var _xx1283:Number;// = 0
public var _ke128:Number;// = 0
}
}//package classes
Section 26
//_th471 (classes._th471)
package classes {
public class _th471 {
public var _pp885:Number;// = 0
public var _mm613:Number;// = 0
public var _rl906:Function;
public var _lh945:Boolean;
}
}//package classes
Section 27
//_ty561 (classes._ty561)
package classes {
public class _ty561 {
public var _we1662:uint;
public function _ty561(){
_we1662 = 1;
}
public function _th1609():uint{
return (_lu1238());
}
public function _aw217():Number{
return ((_lu1238() / 2147483647));
}
public function _tp230(_arg1:Number, _arg2:Number):Number{
return ((_arg1 + ((_arg2 - _arg1) * _aw217())));
}
public function _ma459(_arg1:Number, _arg2:Number):uint{
_arg1 = (_arg1 - 0.4999);
_arg2 = (_arg2 + 0.4999);
return (Math.round((_arg1 + ((_arg2 - _arg1) * _aw217()))));
}
private function _lu1238():uint{
return ((_we1662 = ((_we1662 * 16807) % 2147483647)));
}
}
}//package classes
Section 28
//_uf368 (classes._uf368)
package classes {
import flash.display.*;
import flash.geom.*;
import flash.media.*;
public class _uf368 {
public var _lv294:Number;// = 0
public var _wh1260:int;
public var _wj607:int;
public var _tk1212:Number;// = 0
public var _by730:Function;
public var _xw828:Number;// = 0
public var _tr1537:Number;// = 0
public var _cm571:Number;// = 0
public var _td1389:Boolean;
public var _uc1419:Rectangle;
public var _ee69:int;// = 0
public var _jd969:Number;// = 0
public var _ay1608:Number;// = 0
public var callback:Function;
private var _ky1271:Number;// = 0
public var _jn511:Number;// = 0
public var _xq67:Number;// = 0
public var _os205:int;
public var _bc406:Number;// = 0
public var _mq1422:String;
public var _oq271:Object;
public var _ly112:Number;// = 0
public var _nq470:Number;// = 0
public var _ud376:BitmapData;
public var x:Number;// = 0
public var y:Number;// = 0
public var _bb209:Boolean;
public var _eo381:Number;// = 0
public var _ty1644:Number;// = 0
public var _gu403:int;
public var state:int;
public var _vn85:Number;// = 0
public var _ei723:int;// = 0
public var _lc262:Number;// = 0
public var _tq1658:String;
public var _rd633:int;
public var _yh1330:Number;// = 0
public var _fq1117:int;// = 0
public var _jp966:Number;// = 0
public var _eh889:int;
public var _pb34:Number;// = 0
public var _nj506:Boolean;
public var _vg235:Number;// = 0
public var _gx1506:Boolean;
public var _qv1217:int;
public var _mb1382:Number;// = 0
public var _re618:int;
public var _by428:Number;// = 0
public var _ns1008:Number;// = 0
public var _sa180:Number;// = 0
public var _xx1283:Number;// = 0
public var _ly281:Number;// = 0
public var _xu1401:Boolean;
public var _yw459:Number;// = 0
public var _gq1334:int;
public var _os1213:Boolean;
public var _ry684:Number;// = 0
public var _vu1150:Number;// = 0
public var id:int;
public var _le126:Number;// = 0
public var _be1077:Number;// = 0
public var _ab1247:Number;// = 0
public var height:int;
public var _vy1714:Number;// = 0
public var _cp202:Number;// = 0
public var _qc429:Number;// = 0
public var _in548:Number;// = 0
public var _fj662:Number;// = 0
public var _gm610:int;// = 0
public var _pu145:Number;// = 0
public var _sj1087:Point;
public var alpha:Number;// = 0
public var _rv1694:Number;// = 0
public var frame:Number;// = 0
public var _mx1348:Number;// = 0
public var _uf286:Number;// = 0
public var _wb763:Number;// = 0
public var _xd622:Number;// = 0
public var _jm1029:Number;// = 0
public var _go943:Number;// = 0
public var _fx1145:Number;// = 0
public var target:_uf368;
public var _wl1461:Number;// = 0
public var _gh1580:Number;// = 0
public var _nk1079:int;
public var _ke128:Number;// = 0
public var _cp245:Number;// = 0
public var _hq1452:Number;// = 0
public var _hg1610:Number;// = 0
public var _jq651:Number;// = 0
public var _gn1503:Number;// = 0
public var _bl1197:Number;// = 0
public var width:int;
public var _uf56:Boolean;
public var _qd1101:int;
public var _je1294:ColorTransform;
public var _ps1590:int;
public var _yl1629:Number;// = 0
public var _ig729:Number;// = 0
public var _ff1215:Number;// = 0
public var _gq915:Number;// = 0
public var _jt709:Number;// = 0
public var _jl1268:int;
public var _mn1318:Number;// = 0
public var _nw420:Number;// = 0
private var _di1609:Number;// = 0
public var _jf698:Number;
public var _ni25:int;
public var _ip440:Number;// = 0
public var _mu213:Number;// = 0
public var _ui1250:Number;// = 0
public var _ec832:Number;// = 0
public var _ff1128:Number;// = 0
public var _vf62:Number;// = 0
public var _yd1301:Number;// = 0
private var _op975:Number;// = 0
public var _le23:Number;// = 0
public var _sv719:Number;// = 0
public var _ln917:int;
public var _xo329:Number;// = 0
public var _nc882:Number;// = 0
public var _pb1487:_uf368;
public var id3:int;
public var _mn840:Number;// = 0
public var _vf1703:Number;// = 0
public var _pd225:Number;// = 0
public var _vy1587:Number;// = 0
public var name:String;
public var _go304:int;
public var _oo301:_uf368;
private var _wr1582:Number;// = 0
public var _fe1112:Number;// = 0
public var _ys1528:Number;// = 0
public var _sw1068:Number;// = 0
public var _hp320:Number;// = 0
public var _gm1309:String;
public var _fp847:Number;// = 0
public var _mg1057:int;
public var _xn269:Number;// = 0
public var _qy180:Number;
public var _gl18:int;// = 0
public var _fd1329:Number;// = 0
public var _nv19:Function;
public var _ux410:Number;// = 0
public var _xv42:Number;// = 0
public var _xp452:Number;// = 0
public var _kq191:BitmapData;
public var _dj88:Number;// = 0
public var _ik924:int;// = 0
public var _hq1080:Boolean;
public var _vn1627:int;// = 0
public var _fm1141:int;// = 0
public var _rs1104:Array;
public var _ir696:Number;// = 0
public var _gl198:Array;
public var _se1147:Number;// = 0
public var _yu1164:Number;// = 0
public var _bf1432:Number;// = 0
public var _mv263:Number;// = 0
public var _py44:int;// = 0
public var _yd1132:int;
public var _ck313:Boolean;
public var _gr625:int;
public var _ra969:Number;// = 0
public var _lm776:Number;// = 0
public var type:int;
public var _pg314:Number;// = 0
public var _xf81:Number;// = 0
public var _lw441:Number;// = 0
public var _vg831:Number;// = 0
public var _oh1280:Number;// = 0
public var _km740:Number;// = 0
public var _nf510:Number;// = 0
public var _di1465:Number;// = 0
public var _kj237:Function;
public var _uw1389:int;
public var _im914:Boolean;
public var _vo333:Function;
public var rotation:Number;// = 0
public var _jh1103:Number;// = 0
public var _by923:Number;// = 0
public var _cy605:Number;// = 0
public var _nw185:Number;// = 0
public var _eg945:Number;// = 0
public var _lw598:Number;// = 0
public var _xi1222:Number;// = 0
public var _pr104:Boolean;
public var delta:Number;// = 0
public var _uo318:int;
public var _tc794:Boolean;
private var _mb1656:Number;// = 0
public var _md1262:Number;// = 0
public var _bb754:Number;// = 0
public var _tl133:Number;// = 0
public var _va92:Boolean;
private var _ie1307:Number;// = 0
public var _ww1447:Boolean;
public var _ju238:Object;
public var _rl660:int;
public var _aa81:int;// = 0
private static var _vt997:Class = _uf368__vt997;
private static var _tx1563:BitmapData = new _vt997().bitmapData;
public function _uf368(){
_ip440 = -10000;
_ux410 = 10000;
_eg945 = -10000;
_jm1029 = 10000;
alpha = 1;
_yl1629 = 1;
_xf81 = 1;
_je1294 = new ColorTransform();
_eo381 = 1;
_dj88 = 1;
_mx1348 = 1;
_ky1271 = (Math.PI * 2);
_uc1419 = new Rectangle(0, 0, 0, 0);
_sj1087 = new Point(0, 0);
_os1213 = true;
name = "";
_qy180 = 0;
}
public function _wf250(_arg1:_uf368, _arg2:Number, _arg3:Number):void{
_vg235 = _rw574._vq657(x, y, _arg1.x, _arg1.y);
x = (x + (_rw574._be1379(_vg235, _arg2) * _arg3));
y = (y + (_rw574._dm1262(_vg235, _arg2) * _arg3));
}
public function _al763(_arg1:Number):void{
alpha = _arg1;
}
public function _sh1626(_arg1:Number):void{
_le126 = _arg1;
_uo318 = 0;
}
public function _la93(_arg1:Number):void{
_jf698 = _arg1;
}
public function _ku1705():void{
if (_gm610 == 1){
if (_xq67 > 0){
_xq67 = (_xq67 - delta);
if (_xq67 < 1){
_xq67 = _mv263;
_xx1283 = (_xx1283 * _qc429);
_ke128 = (_ke128 * _qc429);
if (Math.abs(_xx1283) < 0.001){
_xx1283 = 0;
};
if (Math.abs(_ke128) < 0.001){
_ke128 = 0;
};
if ((((_xx1283 == 0)) && ((_ke128 == 0)))){
_xq67 = 0;
_gm610 = 0;
};
};
};
x = (x + (_xx1283 * delta));
y = (y + (_ke128 * delta));
_xx1283 = (_xx1283 + (_fp847 * delta));
_ke128 = (_ke128 + (_vf62 * delta));
if ((((x < _ip440)) || ((x > _ux410)))){
_tc794 = true;
};
if ((((y < _eg945)) || ((y > _jm1029)))){
_tc794 = true;
};
if (_nf510 > 0){
trace("yes1");
_nf510 = (_nf510 - delta);
if (_nf510 < 1){
_gm610 = 0;
};
};
} else {
if (_gm610 == 2){
_di1609 = x;
_wr1582 = y;
_ie1307 = 0;
_op975 = 0;
if (target == null){
} else {
_ie1307 = target.x;
_op975 = target.y;
if (_di1609 < _ie1307){
_ly281 = (_ly281 + (_le23 * delta));
if (_ly281 > _by428){
_ly281 = _by428;
};
} else {
if (_di1609 > _ie1307){
_ly281 = (_ly281 - (_le23 * delta));
if (_ly281 < -(_by428)){
_ly281 = -(_by428);
};
};
};
x = (x + (_ly281 * delta));
if (_wr1582 < _op975){
_yu1164 = (_yu1164 + (_rv1694 * delta));
if (_yu1164 > _jt709){
_yu1164 = _jt709;
};
} else {
if (_wr1582 > _op975){
_yu1164 = (_yu1164 - (_rv1694 * delta));
if (_yu1164 < -(_jt709)){
_yu1164 = -(_jt709);
};
};
};
y = (y + (_yu1164 * delta));
};
} else {
if (_gm610 == 3){
_tk1212 = (_tk1212 + (_in548 * delta));
_gh1580 = (_gh1580 + (_wl1461 * delta));
x = (x + ((Math.cos(_tk1212) * _lm776) * delta));
y = (y + ((Math.sin(_gh1580) * _pg314) * delta));
x = (x + (_xx1283 * delta));
y = (y + (_ke128 * delta));
_xx1283 = (_xx1283 + (_fp847 * delta));
_ke128 = (_ke128 + (_vf62 * delta));
if (_va92 == true){
if ((((x < _ip440)) || ((x > _ux410)))){
_tc794 = true;
};
if ((((y < _eg945)) || ((y > _jm1029)))){
_tc794 = true;
};
};
} else {
if (_gm610 == 4){
} else {
if (_gm610 == 5){
if (target != null){
_tk1212 = (_tk1212 + (_in548 * delta));
x = (target.x + (Math.cos(_tk1212) * _lm776));
y = (target.y + (Math.sin(_tk1212) * _lm776));
} else {
_tc794 = true;
};
} else {
if (_gm610 == 6){
if (target != null){
if (_pd225 > 0){
_pd225 = (_pd225 - delta);
if (_pd225 < 1){
_pd225 = _uf286;
_vg235 = _rw574._vq657(x, y, target.x, target.y);
_xx1283 = _rw574._be1379(_vg235, _ly281);
_ke128 = _rw574._dm1262(_vg235, _ly281);
x = (x + (_xx1283 * delta));
y = (y + (_ke128 * delta));
_ly281 = (_ly281 + (_le23 * delta));
};
} else {
_vg235 = _rw574._vq657(x, y, target.x, target.y);
_xx1283 = _rw574._be1379(_vg235, _ly281);
_ke128 = _rw574._dm1262(_vg235, _ly281);
x = (x + (_xx1283 * delta));
y = (y + (_ke128 * delta));
_ly281 = (_ly281 + (_le23 * delta));
};
if (_by428 > 0){
_by428 = (_by428 - delta);
if (_by428 < 1){
_by428 = 0;
_gm610 = 0;
};
};
} else {
_tc794 = true;
};
} else {
if (_gm610 == 7){
_vg235 = _rw574._vq657(x, y, _ly281, _le23);
_xx1283 = _rw574._be1379(_vg235, _by428);
_ke128 = _rw574._dm1262(_vg235, _by428);
x = (x + (_xx1283 * delta));
y = (y + (_ke128 * delta));
_by428 = (_by428 + (_yu1164 * delta));
if (_xx1283 > 0){
if (x > _ly281){
x = _ly281;
};
} else {
if (_xx1283 < 0){
if (x < _ly281){
x = _ly281;
};
};
};
if (_ke128 > 0){
if (y > _le23){
y = _le23;
};
} else {
if (_ke128 < 0){
if (y < _le23){
y = _le23;
};
};
};
if ((((x == _ly281)) && ((y == _le23)))){
if (_gx1506 == false){
_gm610 = 0;
if (_nv19 != null){
_nv19(this);
_nv19 = null;
};
};
};
} else {
if (_gm610 == 8){
_tk1212 = (_tk1212 + (_in548 * delta));
_gh1580 = (_gh1580 + (_wl1461 * delta));
x = (x + ((Math.cos(_tk1212) * _lm776) * delta));
y = (y + ((Math.sin(_gh1580) * _pg314) * delta));
_lm776 = (_lm776 + (_nq470 * delta));
_pg314 = (_pg314 + (_nq470 * delta));
if ((((x < _ip440)) || ((x > _ux410)))){
_tc794 = true;
};
if ((((y < _eg945)) || ((y > _jm1029)))){
_tc794 = true;
};
} else {
if (_gm610 == 9){
_vg235 = _rw574._vq657(x, y, _ly281, _le23);
_xx1283 = _rw574._be1379(_vg235, _by428);
_ke128 = _rw574._dm1262(_vg235, _by428);
x = (x + (_xx1283 * delta));
y = (y + (_ke128 * delta));
_by428 = (_by428 + (_yu1164 * delta));
if (_xx1283 > 0){
if (x > _ly281){
x = _ly281;
};
} else {
if (_xx1283 < 0){
if (x < _ly281){
x = _ly281;
};
};
};
if (_ke128 > 0){
if (y > _le23){
y = _le23;
};
} else {
if (_ke128 < 0){
if (y < _le23){
y = _le23;
};
};
};
if ((((x == _ly281)) && ((y == _le23)))){
_gm610 = 0;
_tc794 = true;
};
} else {
if (_gm610 == 10){
if (_xq67 > 0){
_xq67 = (_xq67 - delta);
if (_xq67 < 1){
_xq67 = _mv263;
_xx1283 = (_xx1283 * _qc429);
_ke128 = (_ke128 * _qc429);
if (Math.abs(_xx1283) < 0.001){
_xx1283 = 0;
};
if (Math.abs(_ke128) < 0.001){
_ke128 = 0;
};
if ((((_xx1283 == 0)) && ((_ke128 == 0)))){
_xq67 = 0;
_gm610 = 0;
};
};
};
x = (x + (_xx1283 * delta));
y = (y + (_ke128 * delta));
_xx1283 = (_xx1283 + (_fp847 * delta));
_ke128 = (_ke128 + (_vf62 * delta));
if (_nf510 > 0){
_nf510 = (_nf510 - delta);
if (_nf510 < 1){
_gm610 = 0;
};
};
} else {
if (_gm610 == 11){
x = (x + (_xx1283 * delta));
y = (y + (_ke128 * delta));
if (x < _ip440){
x = _ip440;
_xx1283 = -(_xx1283);
} else {
if (x > _ux410){
x = _ux410;
_xx1283 = -(_xx1283);
};
};
if (y < _eg945){
y = _eg945;
_ke128 = -(_ke128);
} else {
if (y > _jm1029){
y = _jm1029;
_ke128 = -(_ke128);
};
};
} else {
if (_gm610 == 12){
x = (x + (_xx1283 * delta));
y = (y + (_ke128 * delta));
if (x < _ip440){
x = _ux410;
} else {
if (x > _ux410){
x = _ip440;
};
};
if (y < _eg945){
y = _jm1029;
} else {
if (y > _jm1029){
y = _eg945;
};
};
} else {
if (_gm610 == 13){
x = (x + (_xx1283 * delta));
y = (y + (_ke128 * delta));
_xq67 = (_xq67 - delta);
if (_xq67 < 1){
_xq67 = _mv263;
_xx1283 = (_xx1283 * _qc429);
_ke128 = (_ke128 * _qc429);
_qc429 = (_qc429 + _ig729);
if (_ly281 == 0){
if (_qc429 > _jd969){
_qc429 = _jd969;
_ig729 = -(_ig729);
_ly281 = 1;
};
} else {
if (_qc429 < _yd1301){
_qc429 = _yd1301;
};
if (Math.abs(_xx1283) < 0.001){
_xx1283 = 0;
};
if (Math.abs(_ke128) < 0.001){
_ke128 = 0;
};
if ((((_xx1283 == 0)) && ((_ke128 == 0)))){
_gm610 = 0;
};
};
};
} else {
if (_gm610 == 14){
_di1609 = x;
_wr1582 = y;
_ie1307 = _xp452;
_op975 = _xo329;
if (_di1609 < _ie1307){
_ly281 = (_ly281 + (_le23 * delta));
if (_ly281 > _by428){
_ly281 = _by428;
};
} else {
if (_di1609 > _ie1307){
_ly281 = (_ly281 - (_le23 * delta));
if (_ly281 < -(_by428)){
_ly281 = -(_by428);
};
};
};
x = (x + (_ly281 * delta));
if (_wr1582 < _op975){
_yu1164 = (_yu1164 + (_rv1694 * delta));
if (_yu1164 > _jt709){
_yu1164 = _jt709;
};
} else {
if (_wr1582 > _op975){
_yu1164 = (_yu1164 - (_rv1694 * delta));
if (_yu1164 < -(_jt709)){
_yu1164 = -(_jt709);
};
};
};
y = (y + (_yu1164 * delta));
};
};
};
};
};
};
};
};
};
};
};
};
};
};
}
public function _ig1054(_arg1:Number=1):void{
delta = _arg1;
if (_mn1318 != 0){
_mn1318 = (_mn1318 - delta);
if (_mn1318 < 1){
_mn1318 = 0;
_os1213 = _ww1447;
};
} else {
_ku1705();
_eh789();
_ew283();
_ps1667();
_ur828();
_ra929();
_ev478();
if (callback != null){
callback(this);
};
if (_jf698){
_jf698 = (_jf698 - _arg1);
if (_jf698 < 1){
_jf698 = 0;
_tc794 = true;
};
};
};
}
public function _om1010(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):void{
_xx1283 = _rw574._be1379(_arg1, _arg2);
_ke128 = _rw574._dm1262(_arg1, _arg2);
_ip440 = _arg3;
_ux410 = _arg5;
_eg945 = _arg4;
_jm1029 = _arg6;
_gm610 = 12;
}
public function _nt1022(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):void{
_hp320 = _arg1;
_jp966 = _arg3;
_bl1197 = _arg2;
_wb763 = _arg4;
}
public function _ba481(_arg1:Number, _arg2:Number):void{
_km740 = _arg1;
_ay1608 = _arg2;
_uo318 = 1;
}
public function _wh1061(_arg1:_uf368, _arg2:Number, _arg3:Number=0, _arg4:Number=0, _arg5:Number=0):void{
target = _arg1;
_ly281 = _arg2;
_uf286 = _arg3;
_pd225 = _uf286;
_gm610 = 6;
_le23 = _arg4;
_by428 = _arg5;
}
public function _id1340(_arg1:Number, _arg2:Number):Boolean{
if (_xu1401 == true){
return (_et1372(_arg1, _arg2, (x - ((_km740 * _yl1629) / 2)), (y - ((_ay1608 * _xf81) / 2)), (_km740 * _yl1629), (_ay1608 * _xf81)));
};
return (_et1372(_arg1, _arg2, x, y, (_km740 * _yl1629), (_ay1608 * _xf81)));
}
public function _vk951(_arg1:BitmapData, _arg2:int, _arg3:int, _arg4:int, _arg5:int):void{
_ud376 = _arg1;
_ps1590 = _arg2;
_eh889 = _arg3;
width = _arg4;
height = _arg5;
_uc1419.width = width;
_uc1419.height = height;
_le126 = (width / 2);
_km740 = width;
_ay1608 = height;
_os1213 = true;
}
public function _ai1537(_arg1:Number, _arg2:Number=0.95):void{
_xq67 = _arg1;
_mv263 = _arg1;
_qc429 = _arg2;
}
public function _ru190(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number=0, _arg8:Number=0, _arg9:Number=0, _arg10:Number=0, _arg11:Boolean=true):void{
_xx1283 = _arg7;
_ke128 = _arg8;
_fp847 = _arg9;
_vf62 = _arg10;
_tk1212 = _arg1;
_in548 = _arg2;
_lm776 = _arg3;
_gh1580 = _arg4;
_wl1461 = _arg5;
_pg314 = _arg6;
_va92 = _arg11;
_gm610 = 3;
}
public function _ac776(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:int=1, _arg5:Number=0):void{
_rd633 = _arg4;
_pu145 = _arg1;
_ry684 = _arg2;
_vg831 = _arg3;
_go943 = _arg5;
}
public function _eh789():void{
if (_gr625){
switch (_gr625){
case 1:
rotation = (rotation + (_jh1103 * delta));
if (rotation >= _cm571){
rotation = _cm571;
_jh1103 = -(_jh1103);
} else {
if (rotation <= _ys1528){
rotation = _ys1528;
_jh1103 = -(_jh1103);
};
};
break;
case 2:
rotation = (rotation + (_jh1103 * delta));
if (rotation >= _cm571){
rotation = _ys1528;
} else {
if (rotation <= _ys1528){
rotation = _cm571;
};
};
break;
case 3:
rotation = (rotation + (_jh1103 * delta));
if (rotation >= _cm571){
rotation = _cm571;
_gr625 = 0;
} else {
if (rotation <= _ys1528){
rotation = _ys1528;
_gr625 = 0;
};
};
break;
case 4:
rotation = (rotation + (_jh1103 * delta));
if (rotation >= _cm571){
rotation = _cm571;
_gr625 = 0;
_tc794 = true;
} else {
if (rotation <= _ys1528){
rotation = _ys1528;
_gr625 = 0;
_tc794 = true;
};
};
break;
case 5:
_qx174(_oo301, _jh1103);
break;
case 6:
_ec662(_ys1528, _jh1103);
break;
};
};
}
public function _rm1503(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:int=1, _arg5:Number=0):void{
_gr625 = _arg4;
_jh1103 = _arg1;
_ys1528 = _arg2;
_cm571 = _arg3;
rotation = _arg5;
}
public function _qy522(_arg1:String):void{
name = _arg1;
}
public function _gy1216(_arg1:Function):void{
callback = _arg1;
}
public function _kf1221(_arg1:_uf368, _arg2:Number, _arg3:Number, _arg4:Number):void{
target = _arg1;
_tk1212 = _arg2;
_in548 = _arg3;
_lm776 = _arg4;
_gm610 = 5;
}
public function _cy375(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number):void{
_tk1212 = _arg1;
_in548 = _arg2;
_lm776 = _arg3;
_gh1580 = _arg4;
_wl1461 = _arg5;
_pg314 = _arg6;
_nq470 = _arg7;
_gm610 = 8;
}
public function _ob612(_arg1:Number, _arg2:Number):void{
_yl1629 = _arg1;
_xf81 = _arg2;
}
public function _wt1308():void{
if (_wj607){
_ff1215 = (_ff1215 + (_bc406 * delta));
switch (_wj607){
case 1:
if (_ff1215 >= _vf1703){
_ff1215 = _vf1703;
_bc406 = -(_bc406);
} else {
if (_ff1215 <= _cp202){
_ff1215 = _cp202;
_bc406 = -(_bc406);
};
};
break;
case 2:
if (_ff1215 >= _vf1703){
_ff1215 = _cp202;
} else {
if (_ff1215 <= _cp202){
_ff1215 = _vf1703;
};
};
break;
case 3:
if (_ff1215 >= _vf1703){
_ff1215 = _vf1703;
_wj607 = 0;
} else {
if (_ff1215 <= _cp202){
_ff1215 = _cp202;
_wj607 = 0;
};
};
break;
case 4:
if (_ff1215 >= _vf1703){
_ff1215 = _vf1703;
_wj607 = 0;
_tc794 = true;
} else {
if (_ff1215 <= _cp202){
_ff1215 = _cp202;
_wj607 = 0;
_tc794 = true;
};
};
break;
};
};
}
public function _mk1096(_arg1:int):Boolean{
_qd1101 = (_qd1101 - _arg1);
if (_qd1101 < 1){
_qd1101 = 0;
return (true);
};
return (false);
}
public function _kf789(_arg1:Number, _arg2:Number):void{
_go943 = _arg1;
_ff1215 = _arg2;
}
public function _oy1623(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number):void{
_ti798(_rw574._be1379(_arg1, 0.01), _rw574._dm1262(_arg1, 0.01), 0, 0, 0, false);
_mv263 = _arg2;
_xq67 = _mv263;
_qc429 = 1;
_ig729 = _arg3;
_jd969 = _arg4;
_yd1301 = _arg5;
_ly281 = 0;
_gm610 = 13;
}
public function _ps1667():void{
if (_ln917){
_xf81 = (_xf81 + (_ff1128 * delta));
switch (_ln917){
case 1:
if (_xf81 >= _nw185){
_xf81 = _nw185;
_ff1128 = -(_ff1128);
} else {
if (_xf81 <= _nc882){
_xf81 = _nc882;
_ff1128 = -(_ff1128);
};
};
break;
case 2:
if (_xf81 >= _nw185){
_xf81 = _nc882;
} else {
if (_xf81 <= _nc882){
_xf81 = _nw185;
};
};
break;
case 3:
if (_xf81 >= _nw185){
_xf81 = _nw185;
_ln917 = 0;
} else {
if (_xf81 <= _nc882){
_xf81 = _nc882;
_ln917 = 0;
};
};
break;
case 4:
if (_xf81 >= _nw185){
_xf81 = _nw185;
_ln917 = 0;
_tc794 = true;
} else {
if (_xf81 <= _nc882){
_xf81 = _nc882;
_ln917 = 0;
_tc794 = true;
};
};
break;
case 5:
if (_xf81 >= _nw185){
_xf81 = _nw185;
_ff1128 = -(_ff1128);
_ln917 = 3;
};
break;
};
};
}
public function _ql132(_arg1:Number, _arg2:Number):void{
_vu1150 = _arg1;
_vn85 = _arg2;
}
public function _ij1556():void{
var _local1:Number;
var _local2:Matrix;
var _local3:Number;
var _local4:Number;
if (_mn1318 == 0){
if (type == 1){
_local1 = 0;
if (rotation != 0){
if (rotation > 180){
_local1 = (-360 + rotation);
} else {
_local1 = rotation;
};
_local1 = ((_ky1271 * _local1) / 360);
};
_je1294.redMultiplier = _eo381;
_je1294.greenMultiplier = _dj88;
_je1294.blueMultiplier = _mx1348;
_je1294.alphaMultiplier = alpha;
_local2 = new Matrix();
_local3 = width;
_local4 = height;
if (_xu1401 == true){
_local2.translate((-(_local3) / 2), (-(_local4) / 2));
};
_local2.scale(_yl1629, _xf81);
_local2.rotate(_local1);
_local2.translate(Math.round(x), Math.round(y));
_kq191.draw(_ud376, _local2, _je1294, _mq1422, null, _td1389);
} else {
if (_xu1401 == true){
_sj1087.x = Math.round((x - (width / 2)));
_sj1087.y = Math.round((y - (height / 2)));
} else {
_sj1087.x = Math.round(x);
_sj1087.y = Math.round(y);
};
_uc1419.x = _ps1590;
_uc1419.y = _eh889;
_kq191.copyPixels(_ud376, _uc1419, _sj1087, null, null, false);
};
if (_jq651 > 1){
_jq651 = (_jq651 - delta);
if (_jq651 < 1){
_jq651 = 0;
};
if (_qd1101 > 1){
_mb1656 = (_qd1101 * 1);
_rw574._ci1517(_tx1563, x, ((y - (height / 2)) - 5), 0, 0, _mb1656, 3, _kq191, false);
};
};
};
}
public function _kx198(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):void{
_xd622 = _arg1;
_cp245 = _arg2;
_vy1587 = _arg3;
_by923 = _arg4;
_sv719 = _arg5;
_ab1247 = _arg6;
_fx1145 = 1;
_hq1452 = 1;
_lv294 = 1;
_nj506 = true;
}
public function _br1109(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:int=1, _arg5:Number=1):void{
_ln917 = _arg4;
_ff1128 = _arg1;
_nc882 = _arg2;
_nw185 = _arg3;
_xf81 = _arg5;
_re618 = _arg4;
_pb34 = _arg1;
_hg1610 = _arg2;
_ui1250 = _arg3;
_yl1629 = _arg5;
}
public function _gm766(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):void{
_xx1283 = _arg1;
_ke128 = _arg2;
_ip440 = _arg3;
_ux410 = _arg5;
_eg945 = _arg4;
_jm1029 = _arg6;
_gm610 = 11;
}
public function _ch630(_arg1:Number, _arg2:Number=1, _arg3:Number=0, _arg4:Number=1):void{
_jl1268 = 1;
_ir696 = _arg1;
_tr1537 = _arg3;
_cy605 = _arg4;
alpha = _arg2;
}
public function _rn387(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:int=1, _arg5:Number=1):void{
_ln917 = _arg4;
_ff1128 = _arg1;
_nc882 = _arg2;
_nw185 = _arg3;
_xf81 = _arg5;
}
public function _is822(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:int=1, _arg5:Number=0):void{
_wj607 = _arg4;
_bc406 = _arg1;
_cp202 = _arg2;
_vf1703 = _arg3;
_ff1215 = _arg5;
}
public function _ti798(_arg1:Number, _arg2:Number, _arg3:Number=0, _arg4:Number=0, _arg5:Number=0, _arg6:Boolean=true):void{
_xx1283 = _arg1;
_ke128 = _arg2;
_fp847 = _arg3;
_vf62 = _arg4;
_nf510 = _arg5;
_gm610 = 1;
if (_arg6 == false){
_gm610 = 10;
};
}
public function _vr1480(_arg1:Function):void{
_vo333 = _arg1;
}
public function _qx174(_arg1:_uf368, _arg2:Number, _arg3:Number=1):void{
var _local4:Number = rotation;
var _local5:Number = _rw574._vq657(x, y, _arg1.x, _arg1.y);
var _local6:Number = 0;
if (_local4 < _local5){
_local6 = 1;
if ((_local5 - _local4) > 179){
_local6 = -1;
};
} else {
if (_local4 > _local5){
_local6 = -1;
if ((_local4 - _local5) > 179){
_local6 = 1;
};
};
};
_local4 = (_local4 + ((_arg2 * _local6) * _arg3));
if (_local4 < 0){
_local4 = (_local4 + 360);
};
if (_local4 > 359){
_local4 = (_local4 - 360);
};
rotation = _local4;
}
public function _xk1556(_arg1:BitmapData, _arg2:Number, _arg3:Number):void{
}
public function _be390(_arg1:Number, _arg2:Number):void{
_jl1268 = 2;
_ir696 = _arg1;
_tr1537 = 0;
_cy605 = 1;
alpha = 0;
_sa180 = 0;
_fe1112 = _arg2;
}
public function _io238(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number=0, _arg5:Number=0, _arg6:Boolean=true):void{
var _local7:Number = (_arg1 + _rw574._up1471._tp230((-(_arg2) / 2), (_arg2 / 2)));
if (_local7 < 0){
_local7 = (_local7 + 360);
} else {
if (_local7 > 360){
_local7 = (_local7 - 360);
};
};
_ti798(_rw574._be1379(_local7, _arg3), _rw574._dm1262(_local7, _arg3), 0, _arg5, _arg4, _arg6);
}
public function _ts367(_arg1:Object, _arg2:Number, _arg3:int, _arg4:Number):void{
_ju238 = _arg1;
_ud376 = _ju238[0];
_ps1590 = 0;
_eh889 = 0;
_uw1389 = 0;
_os205 = (_arg3 - 1);
_xi1222 = _arg2;
_be1077 = 0;
frame = 0;
_yd1132 = 3;
_nk1079 = 5;
_bb754 = _arg4;
}
public function _up1587(_arg1:Object, _arg2:Number, _arg3:int, _arg4:int):void{
_ju238 = _arg1;
_ud376 = _ju238[0];
_ps1590 = 0;
_eh889 = 0;
_uw1389 = 0;
_os205 = (_arg3 - 1);
_xi1222 = _arg2;
_be1077 = 0;
frame = 0;
_yd1132 = 3;
_nk1079 = _arg4;
}
public function _mm1672(_arg1:BitmapData, _arg2:Number, _arg3:int, _arg4:int, _arg5:int=0):void{
_ud376 = _arg1;
_ps1590 = 0;
_eh889 = 0;
_uw1389 = 0;
_os205 = (_arg3 - 1);
_xi1222 = _arg2;
_be1077 = 0;
frame = 0;
_qv1217 = _arg5;
_yd1132 = 1;
_nk1079 = _arg4;
}
public function _ah877(_arg1:Function):void{
_by730 = _arg1;
}
public function _ra929():void{
if (_nk1079){
_be1077 = (_be1077 + (_xi1222 * delta));
switch (_nk1079){
case 1:
if (_be1077 > _os205){
_be1077 = _os205;
_xi1222 = -(_xi1222);
} else {
if (_be1077 < _uw1389){
_be1077 = _uw1389;
_xi1222 = -(_xi1222);
};
};
break;
case 2:
if (_be1077 > _os205){
_be1077 = _uw1389;
} else {
if (_be1077 < _uw1389){
_be1077 = _os205;
};
};
break;
case 3:
if (_be1077 >= _os205){
_be1077 = _os205;
_nk1079 = 0;
} else {
if (_be1077 <= _uw1389){
_be1077 = _uw1389;
_nk1079 = 0;
};
};
break;
case 4:
if (_be1077 >= _os205){
_be1077 = _os205;
_nk1079 = 0;
_tc794 = true;
} else {
if (_be1077 <= _uw1389){
_be1077 = _uw1389;
_nk1079 = 0;
_tc794 = true;
};
};
break;
case 5:
if (_be1077 > _os205){
_be1077 = _uw1389;
} else {
if (_be1077 < _uw1389){
_be1077 = _os205;
};
};
_bb754 = (_bb754 - delta);
if (_bb754 < 1){
_bb754 = 0;
_be1077 = _uw1389;
_nk1079 = 0;
};
break;
};
if (Math.round(_be1077) != frame){
frame = Math.round(_be1077);
if (_yd1132 == 1){
_ps1590 = (frame * (width + _qv1217));
} else {
if (_yd1132 == 2){
_ps1590 = _gl198[(frame * 2)];
_eh889 = _gl198[((frame * 2) + 1)];
} else {
_ud376 = _ju238[frame];
};
};
};
};
}
public function _me814(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:int=1, _arg5:Number=1):void{
_re618 = _arg4;
_pb34 = _arg1;
_hg1610 = _arg2;
_ui1250 = _arg3;
_yl1629 = _arg5;
}
public function _ev478():void{
if (_nj506 == true){
_xd622 = (_xd622 - (_by923 * delta));
_cp245 = (_cp245 - (_sv719 * delta));
_vy1587 = (_vy1587 - (_ab1247 * delta));
if (_xd622 < _fx1145){
_xd622 = _fx1145;
};
if (_cp245 < _hq1452){
_cp245 = _hq1452;
};
if (_vy1587 < _lv294){
_vy1587 = _fx1145;
};
_eo381 = _xd622;
_dj88 = _cp245;
_mx1348 = _vy1587;
if (_xd622 == _fx1145){
if (_cp245 == _hq1452){
if (_vy1587 == _lv294){
_nj506 = false;
};
};
};
};
}
private function _et1372(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):Boolean{
if ((((((((_arg1 < (_arg3 + _arg5))) && ((_arg2 < (_arg4 + _arg6))))) && ((_arg1 > _arg3)))) && ((_arg2 > _arg4)))){
return (true);
};
return (false);
}
public function _tg1151(_arg1:Number, _arg2:Number, _arg3:Array):void{
_mu213 = _arg1;
_fd1329 = _arg1;
_sw1068 = _arg2;
_rs1104 = _arg3;
}
public function _fl490(_arg1:Number, _arg2:Number, _arg3:Number):void{
_eo381 = _arg1;
_dj88 = _arg2;
_mx1348 = _arg3;
}
public function _up929(_arg1:_uf368, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number):void{
target = _arg1;
_ly281 = 0;
_le23 = _arg2;
_by428 = _arg3;
_yu1164 = 0;
_rv1694 = _arg4;
_jt709 = _arg5;
_gm610 = 2;
}
public function _qk22(_arg1:Number, _arg2:Number):void{
_gr625 = 6;
_jh1103 = _arg2;
_ys1528 = _arg1;
}
public function _xy276(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):void{
_ip440 = _arg1;
_ux410 = _arg3;
_eg945 = _arg2;
_jm1029 = _arg4;
}
public function _ci125(_arg1:String):void{
_mq1422 = _arg1;
}
public function _ec662(_arg1:Number, _arg2:Number, _arg3:Number=1):void{
var _local4:Number = rotation;
var _local5:Number = _arg1;
var _local6:Number = 0;
if (_local4 < _local5){
_local6 = 1;
if ((_local5 - _local4) > 179){
_local6 = -1;
};
} else {
if (_local4 > _local5){
_local6 = -1;
if ((_local4 - _local5) > 179){
_local6 = 1;
};
};
};
_local4 = (_local4 + ((_arg2 * _local6) * _arg3));
if (_local4 < 0){
_local4 = (_local4 + 360);
};
if (_local4 > 359){
_local4 = (_local4 - 360);
};
rotation = _local4;
}
public function _ss1421(_arg1:Number, _arg2:Number):void{
x = _arg1;
y = _arg2;
}
public function _jq1473():void{
if (_rd633){
_go943 = (_go943 + (_pu145 * delta));
switch (_rd633){
case 1:
if (_go943 >= _vg831){
_go943 = _vg831;
_pu145 = -(_pu145);
} else {
if (_go943 <= _ry684){
_go943 = _ry684;
_pu145 = -(_pu145);
};
};
break;
case 2:
if (_go943 >= _vg831){
_go943 = _ry684;
} else {
if (_go943 <= _ry684){
_go943 = _vg831;
};
};
break;
case 3:
if (_go943 >= _vg831){
_go943 = _vg831;
_rd633 = 0;
} else {
if (_go943 <= _ry684){
_go943 = _ry684;
_rd633 = 0;
};
};
break;
case 4:
if (_go943 >= _vg831){
_go943 = _vg831;
_rd633 = 0;
_tc794 = true;
} else {
if (_go943 <= _ry684){
_go943 = _ry684;
_rd633 = 0;
_tc794 = true;
};
};
break;
};
};
}
public function _ct375():void{
_gl198 = null;
callback = null;
_by730 = null;
_kj237 = null;
_vo333 = null;
_nv19 = null;
_uc1419 = null;
_sj1087 = null;
_oq271 = null;
_oo301 = null;
target = null;
_pb1487 = null;
}
public function _nu1684(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):void{
_ly281 = 0;
_le23 = _arg3;
_by428 = _arg4;
_yu1164 = 0;
_rv1694 = _arg5;
_jt709 = _arg6;
_xp452 = _arg1;
_xo329 = _arg2;
_gm610 = 14;
}
public function _ug1030(_arg1:Function):void{
_kj237 = _arg1;
}
public function _jt100(_arg1:BitmapData, _arg2:Number, _arg3:int, _arg4:int, _arg5:Array):void{
_ud376 = _arg1;
_ps1590 = 0;
_uw1389 = 0;
_os205 = (_arg3 - 1);
_xi1222 = _arg2;
_be1077 = 0;
frame = 0;
_qv1217 = 0;
_yd1132 = 2;
_nk1079 = _arg4;
_gl198 = _arg5;
}
public function _ht993(_arg1:_uf368, _arg2:Number):void{
_gr625 = 5;
_jh1103 = _arg2;
_oo301 = _arg1;
}
public function _hu1200(_arg1:Boolean):void{
_os1213 = _arg1;
_ww1447 = _os1213;
}
public function _ew283():void{
if (_re618){
_yl1629 = (_yl1629 + (_pb34 * delta));
switch (_re618){
case 1:
if (_yl1629 >= _ui1250){
_yl1629 = _ui1250;
_pb34 = -(_pb34);
} else {
if (_yl1629 <= _hg1610){
_yl1629 = _hg1610;
_pb34 = -(_pb34);
};
};
break;
case 2:
if (_yl1629 >= _ui1250){
_yl1629 = _hg1610;
} else {
if (_yl1629 <= _hg1610){
_yl1629 = _ui1250;
};
};
break;
case 3:
if (_yl1629 >= _ui1250){
_yl1629 = _ui1250;
_re618 = 0;
} else {
if (_yl1629 <= _hg1610){
_yl1629 = _hg1610;
_re618 = 0;
};
};
break;
case 4:
if (_yl1629 >= _ui1250){
_yl1629 = _ui1250;
_re618 = 0;
_tc794 = true;
} else {
if (_yl1629 <= _hg1610){
_yl1629 = _hg1610;
_re618 = 0;
_tc794 = true;
};
};
break;
case 5:
if (_yl1629 >= _ui1250){
_yl1629 = _ui1250;
_pb34 = -(_pb34);
_re618 = 3;
};
break;
};
};
}
public function _bx978():void{
var _local1:_uf368;
if (_mu213 > 1){
_mu213 = (_mu213 - delta);
if (_mu213 < 1){
_mu213 = _fd1329;
_local1 = new _uf368();
_local1._wr444(_ud376, 0, 0, width, height, _kq191);
_local1.frame = frame;
_local1._ss1421(x, y);
_local1._ob612(_yl1629, _xf81);
_local1._ch630(-(_sw1068), alpha);
_local1._fl490(_eo381, _dj88, _mx1348);
_local1.rotation = rotation;
_rs1104.push(_local1);
};
};
}
public function _dn315(_arg1:Boolean):void{
_td1389 = _arg1;
}
public function _ur828():void{
if (_jl1268){
switch (_jl1268){
case 1:
alpha = (alpha + (_ir696 * delta));
if (alpha > _cy605){
alpha = _cy605;
_jl1268 = 0;
} else {
if (alpha < _tr1537){
alpha = _tr1537;
_jl1268 = 0;
_tc794 = true;
};
};
break;
case 2:
if (_sa180 > 0){
_sa180 = (_sa180 - (1 * delta));
if (_sa180 < 1){
_sa180 = 0;
_ch630(-(_ir696));
};
} else {
alpha = (alpha + (_ir696 * delta));
if (alpha >= _cy605){
alpha = _cy605;
_sa180 = _fe1112;
};
};
break;
};
_al763(alpha);
};
}
public function _wy1046(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Function):void{
_ly281 = _arg1;
_le23 = _arg2;
_by428 = _arg3;
_yu1164 = _arg4;
_gm610 = 7;
_nv19 = _arg5;
}
public function _ot621(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number=0, _arg5:Boolean=false, _arg6:Boolean=false):void{
_ly281 = _arg1;
_le23 = _arg2;
_by428 = _arg3;
_yu1164 = _arg4;
_gm610 = 7;
if (_arg5 == true){
_gm610 = 9;
};
_gx1506 = _arg6;
}
public function _wr444(_arg1:BitmapData, _arg2:int, _arg3:int, _arg4:int, _arg5:int, _arg6:BitmapData, _arg7:int=1, _arg8:Number=0, _arg9:Boolean=true, _arg10:Boolean=true):void{
_mn1318 = _arg8;
type = _arg7;
_ud376 = _arg1;
_kq191 = _arg6;
_ps1590 = _arg2;
_eh889 = _arg3;
width = _arg4;
height = _arg5;
_uc1419.width = width;
_uc1419.height = height;
_xu1401 = _arg9;
_le126 = (width / 2);
_km740 = width;
_ay1608 = height;
_os1213 = true;
_uo318 = 1;
_td1389 = _arg10;
_uf56 = false;
if (_mn1318 > 0){
_ww1447 = _os1213;
_os1213 = false;
};
_al763(1);
}
}
}//package classes
Section 29
//_uf368__vt997 (classes._uf368__vt997)
package classes {
import mx.core.*;
public class _uf368__vt997 extends BitmapAsset {
}
}//package classes
Section 30
//_xb191 (classes._xb191)
package classes {
import flash.utils.*;
public class _xb191 {
private static var _pi1726:int;
private static var _gy1057:int;
private static var _py928:int;
public static function _nl1695():int{
_py928++;
if ((getTimer() - _gy1057) > 1000){
_gy1057 = getTimer();
_pi1726 = _py928;
_py928 = 0;
};
return (_pi1726);
}
public static function _ve93():void{
_gy1057 = getTimer();
_py928 = 0;
_pi1726 = 0;
}
}
}//package classes
Section 31
//_yi26 (classes._yi26)
package classes {
import flash.display.*;
import flash.geom.*;
public class _yi26 {
private var _xs510:int;
private var _cr1028:Number;// = 0
private var _mg518:int;
private var _xh184:int;
private var rect:Rectangle;
private var _wd806:Point;
private var _ns208:int;
private var _ps1590:int;
private var _ks490:BitmapData;
public var _no395:Number;// = 0
private var _bc990:int;
private var _jq1313:BitmapData;
private var _hy1312:int;
private var _oj61:int;
private var _eh889:int;
private var _fw1714:int;
private var _ff1063:Number;// = 0
public var _wn401:Number;// = 0
public function _ig1054(_arg1:Number=0, _arg2:Number=0, _arg3:Number=1):void{
_no395 = (_no395 + (_arg1 * _arg3));
_wn401 = (_wn401 + (_arg2 * _arg3));
if (_no395 < (_cr1028 - _bc990)){
_no395 = _cr1028;
} else {
if (_no395 > _cr1028){
_no395 = (_cr1028 - _bc990);
};
};
if (_wn401 < (_ff1063 - _xs510)){
_wn401 = _ff1063;
} else {
if (_wn401 > _ff1063){
_wn401 = (_ff1063 - _xs510);
};
};
}
public function _ij1556():void{
var _local12:int;
var _local1:int = ((_ns208 / _xs510) + 2);
var _local2:int = ((_xh184 / _bc990) + 2);
var _local3:Number = 0;
var _local4:Number = 0;
var _local5:Number = 0;
var _local6:Number = 0;
var _local7:Number = 0;
var _local8:Number = 0;
var _local9:Number = 0;
var _local10:Number = 0;
var _local11:int;
while (_local11 < _local1) {
_local12 = 0;
while (_local12 < _local2) {
_local3 = _ps1590;
_local4 = _eh889;
_local5 = (_ps1590 + _bc990);
_local6 = (_eh889 + _xs510);
_local7 = (int(_no395) + (_local12 * _bc990));
_local8 = (int(_wn401) + (_local11 * _xs510));
_local9 = (_local7 + _bc990);
_local10 = (_local8 + _xs510);
if (_local7 < _oj61){
_local3 = (_local3 + (_oj61 - _local7));
_local7 = _oj61;
};
if (_local9 > _fw1714){
_local5 = (_local5 + (_fw1714 - _local9));
_local9 = _fw1714;
};
if (_local8 < _mg518){
_local4 = (_local4 + (_mg518 - _local8));
_local8 = _mg518;
};
if (_local10 > _hy1312){
_local6 = (_local6 + (_hy1312 - _local10));
_local10 = _hy1312;
};
if ((_local5 - _local3) > 0){
if ((_local6 - _local4) > 0){
_jy699(_ks490, _local7, _local8, _local3, _local4, (_local5 - _local3), (_local6 - _local4), _jq1313);
};
};
_local12++;
};
_local11++;
};
}
public function _kx1074():void{
var _local12:int;
var _local1:int = ((_ns208 / _xs510) + 2);
var _local2:int = ((_xh184 / _bc990) + 2);
var _local3:Number = 0;
var _local4:Number = 0;
var _local5:Number = 0;
var _local6:Number = 0;
var _local7:Number = 0;
var _local8:Number = 0;
var _local9:Number = 0;
var _local10:Number = 0;
var _local11:int;
while (_local11 < _local1) {
_local12 = 0;
while (_local12 < _local2) {
_local3 = _ps1590;
_local4 = _eh889;
_local5 = (_ps1590 + _bc990);
_local6 = (_eh889 + _xs510);
_local7 = (int(_no395) + (_local12 * _bc990));
_local8 = (int(_wn401) + (_local11 * _xs510));
_local9 = (_local7 + _bc990);
_local10 = (_local8 + _xs510);
if (_local7 < _oj61){
_local3 = (_local3 + (_oj61 - _local7));
_local7 = _oj61;
};
if (_local9 > _fw1714){
_local5 = (_local5 + (_fw1714 - _local9));
_local9 = _fw1714;
};
if (_local8 < _mg518){
_local4 = (_local4 + (_mg518 - _local8));
_local8 = _mg518;
};
if (_local10 > _hy1312){
_local6 = (_local6 + (_hy1312 - _local10));
_local10 = _hy1312;
};
if ((_local5 - _local3) > 0){
if ((_local6 - _local4) > 0){
_jy699(_ks490, _local7, _local8, _local3, _local4, (_local5 - _local3), (_local6 - _local4), _jq1313);
};
};
_local12++;
};
_local11++;
};
}
public function _xf1558(_arg1:Number=0, _arg2:Number=0, _arg3:Number=1):void{
_no395 = (_no395 + (_arg1 * _arg3));
_wn401 = (_wn401 + (_arg2 * _arg3));
if (_no395 < (_cr1028 - _bc990)){
_no395 = _cr1028;
} else {
if (_no395 > _cr1028){
_no395 = (_cr1028 - _bc990);
};
};
if (_wn401 < (_ff1063 - _xs510)){
_wn401 = _ff1063;
} else {
if (_wn401 > _ff1063){
_wn401 = (_ff1063 - _xs510);
};
};
_kx1074();
}
private function _au354(_arg1:BitmapData, _arg2:Number, _arg3:Number, _arg4:int, _arg5:int, _arg6:int, _arg7:int, _arg8:BitmapData):void{
_wd806 = new Point(_arg2, _arg3);
rect = new Rectangle(_arg4, _arg5, _arg6, _arg7);
_arg8.copyPixels(_arg1, rect, _wd806, null, null, false);
}
public function _ks192(_arg1:Number=0, _arg2:Number=0, _arg3:Number=1):void{
_no395 = (_no395 + (_arg1 * _arg3));
_wn401 = (_wn401 + (_arg2 * _arg3));
if (_no395 < (_cr1028 - _bc990)){
_no395 = _cr1028;
} else {
if (_no395 > _cr1028){
_no395 = (_cr1028 - _bc990);
};
};
if (_wn401 < (_ff1063 - _xs510)){
_wn401 = _ff1063;
} else {
if (_wn401 > _ff1063){
_wn401 = (_ff1063 - _xs510);
};
};
_ij1556();
}
private function _jy699(_arg1:BitmapData, _arg2:Number, _arg3:Number, _arg4:int, _arg5:int, _arg6:int, _arg7:int, _arg8:BitmapData):void{
_wd806 = new Point(_arg2, _arg3);
rect = new Rectangle(_arg4, _arg5, _arg6, _arg7);
_arg8.copyPixels(_arg1, rect, _wd806, null, null, true);
}
public function Init(_arg1:BitmapData, _arg2:BitmapData, _arg3:int, _arg4:int, _arg5:int, _arg6:int, _arg7:int, _arg8:int, _arg9:int, _arg10:int):void{
_ps1590 = _arg3;
_eh889 = _arg4;
_bc990 = _arg5;
_xs510 = _arg6;
_no395 = _arg7;
_wn401 = _arg8;
_xh184 = _arg9;
_ns208 = _arg10;
_cr1028 = _no395;
_ff1063 = _wn401;
_oj61 = _no395;
_mg518 = _wn401;
_fw1714 = (_no395 + _xh184);
_hy1312 = (_wn401 + _ns208);
_ks490 = _arg1;
_jq1313 = _arg2;
}
}
}//package classes
Section 32
//_yq299 (classes._yq299)
package classes {
public class _yq299 {
public var _cr1141:Array;
public function _yq299(){
_cr1141 = [];
super();
}
public function _lk434(_arg1:Function, _arg2:Number, _arg3:Boolean=false):void{
var _local4:_th471;
_local4 = new _th471();
_local4._rl906 = _arg1;
_local4._mm613 = _arg2;
_local4._pp885 = _arg2;
_local4._lh945 = _arg3;
_cr1141[_cr1141.length] = _local4;
}
public function _ig1054(_arg1:Number):void{
var _local4:_th471;
var _local2:int = (_cr1141.length - 1);
var _local3:int = _local2;
while (_local3 >= 0) {
_local4 = _cr1141[_local3];
_cr1141[_local3]._mm613 = (_local4._mm613 - _arg1);
if (_local4._mm613 < 1){
_local4._rl906();
if (_local4._lh945 == false){
_local4._rl906 = null;
_cr1141.splice(_local3, 1);
_local4 = null;
} else {
_local4._mm613 = _local4._pp885;
};
};
_local3--;
};
}
public function _mi1586():void{
var _local3:_th471;
var _local1:int = (_cr1141.length - 1);
var _local2:int = _local1;
while (_local2 >= 0) {
_local3 = _cr1141[_local2];
_local3._rl906 = null;
_cr1141.splice(_local2, 1);
_local3 = null;
_local2--;
};
}
}
}//package classes
Section 33
//InitializedSprite (com.urbansquall.display.InitializedSprite)
package com.urbansquall.display {
import flash.events.*;
import flash.display.*;
public class InitializedSprite extends Sprite {
public function InitializedSprite(){
if (this.stage != null){
Init();
} else {
addEventListener(Event.ADDED_TO_STAGE, doInit);
};
}
protected function Init():void{
throw (new Error("InitializedSprite. Override the subclasses' init. That's the whole point of InitializedSprite."));
}
private function doInit(_arg1:Event):void{
removeEventListener(Event.ADDED_TO_STAGE, doInit);
Init();
}
}
}//package com.urbansquall.display
Section 34
//Preloader (com.urbansquall.preloader.Preloader)
package com.urbansquall.preloader {
import flash.events.*;
import flash.display.*;
import flash.utils.*;
public class Preloader extends MovieClip {
public var oktoexit:Boolean;// = false
private var m_firstFrame:Boolean;// = true
public function Preloader(){
addEventListener(Event.ENTER_FRAME, checkFrame);
}
protected function endLoading():void{
}
protected function updateLoading(_arg1:Number):void{
}
protected function get mainClassName():String{
return ("_he1472");
}
protected function beginLoading():void{
}
private function checkFrame(_arg1:Event):void{
if ((((currentFrame == totalFrames)) && ((oktoexit == true)))){
removeEventListener(Event.ENTER_FRAME, checkFrame);
startup();
return;
};
if (m_firstFrame){
beginLoading();
m_firstFrame = false;
return;
};
var _local2:Number = (root.loaderInfo.bytesLoaded / root.loaderInfo.bytesTotal);
updateLoading(_local2);
}
private function startup():void{
stop();
if (!m_firstFrame){
endLoading();
};
var _local1:Class = (getDefinitionByName(mainClassName) as Class);
if (_local1 == null){
throw (new Error((("Preloader:startup. There was no class matching [" + mainClassName) + "]. You may need to override Preloader::mainClassName")));
};
var _local2:DisplayObject = (new (_local1) as DisplayObject);
if (_local2 == null){
throw (new Error((("Preloader::startup. [" + mainClassName) + "] needs to inherit from Sprite or MovieClip.")));
};
addChildAt(_local2, 0);
}
}
}//package com.urbansquall.preloader
Section 35
//MochiAd (mochi.MochiAd)
package mochi {
import flash.events.*;
import flash.display.*;
import flash.utils.*;
import flash.net.*;
import flash.system.*;
public class MochiAd {
public static function getVersion():String{
return ("3.0 as3");
}
public static function showClickAwayAd(_arg1:Object):void{
var clip:Object;
var mc:MovieClip;
var chk:MovieClip;
var options = _arg1;
var DEFAULTS:Object = {ad_timeout:2000, regpt:"o", method:"showClickAwayAd", res:"300x250", no_bg:true, ad_started:function ():void{
}, ad_finished:function ():void{
}, ad_loaded:function (_arg1:Number, _arg2:Number):void{
}, ad_failed:function ():void{
trace("[MochiAd] Couldn't load an ad, make sure your game's local security sandbox is configured for Access Network Only and that you are not using ad blocking software");
}, ad_skipped:function ():void{
}};
options = MochiAd._parseOptions(options, DEFAULTS);
clip = options.clip;
var ad_timeout:Number = options.ad_timeout;
delete options.ad_timeout;
if (!MochiAd.load(options)){
options.ad_failed();
options.ad_finished();
return;
};
options.ad_started();
mc = clip._mochiad;
mc["onUnload"] = function ():void{
MochiAd._cleanup(mc);
options.ad_finished();
};
var wh:Array = MochiAd._getRes(options, clip);
var w:Number = wh[0];
var h:Number = wh[1];
mc.x = (w * 0.5);
mc.y = (h * 0.5);
chk = createEmptyMovieClip(mc, "_mochiad_wait", 3);
chk.ad_timeout = ad_timeout;
chk.started = getTimer();
chk.showing = false;
mc.unloadAd = function ():void{
MochiAd.unload(clip);
};
mc.adLoaded = options.ad_loaded;
mc.adSkipped = options.ad_skipped;
mc.rpc = function (_arg1:Number, _arg2:Object):void{
MochiAd.rpc(clip, _arg1, _arg2);
};
var sendHostProgress:Boolean;
mc.regContLC = function (_arg1:String):void{
mc._containerLCName = _arg1;
};
chk["onEnterFrame"] = function ():void{
var _local4:Number;
if (!this.parent){
delete this.onEnterFrame;
return;
};
var _local1:Object = this.parent._mochiad_ctr;
var _local2:Number = (getTimer() - this.started);
var _local3:Boolean;
if (!chk.showing){
_local4 = this.parent._mochiad_ctr.contentLoaderInfo.bytesTotal;
if (_local4 > 0){
chk.showing = true;
_local3 = true;
chk.started = getTimer();
} else {
if (_local2 > chk.ad_timeout){
options.ad_failed();
_local3 = true;
};
};
};
if (this.root == null){
_local3 = true;
};
if (_local3){
delete this.onEnterFrame;
};
};
doOnEnterFrame(chk);
}
public static function _isNetworkAvailable():Boolean{
return (!((Security.sandboxType == "localWithFile")));
}
public static function _allowDomains(_arg1:String):String{
var _local2:String = _arg1.split("/")[2].split(":")[0];
if (Security.sandboxType == "application"){
return (_local2);
};
Security.allowDomain("*");
Security.allowDomain(_local2);
Security.allowInsecureDomain("*");
Security.allowInsecureDomain(_local2);
return (_local2);
}
public static function unload(_arg1:Object):Boolean{
if (((_arg1.clip) && (_arg1.clip._mochiad))){
_arg1 = _arg1.clip;
};
if (_arg1.origFrameRate != undefined){
_arg1.stage.frameRate = _arg1.origFrameRate;
};
if (!_arg1._mochiad){
return (false);
};
if (_arg1._mochiad._containerLCName != undefined){
_arg1._mochiad.lc.send(_arg1._mochiad._containerLCName, "notify", {id:"unload"});
};
if (_arg1._mochiad.onUnload){
_arg1._mochiad.onUnload();
};
delete _arg1._mochiad_loaded;
delete _arg1._mochiad;
return (true);
}
public static function showInterLevelAd(_arg1:Object):void{
var clip:Object;
var mc:MovieClip;
var chk:MovieClip;
var options = _arg1;
var DEFAULTS:Object = {ad_timeout:2000, fadeout_time:250, regpt:"o", method:"showTimedAd", ad_started:function ():void{
if ((this.clip is MovieClip)){
this.clip.stop();
} else {
throw (new Error("MochiAd.showInterLevelAd requires a clip that is a MovieClip or is an instance of a class that extends MovieClip. If your clip is a Sprite, then you must provide custom ad_started and ad_finished handlers."));
};
}, ad_finished:function ():void{
if ((this.clip is MovieClip)){
this.clip.play();
} else {
throw (new Error("MochiAd.showInterLevelAd requires a clip that is a MovieClip or is an instance of a class that extends MovieClip. If your clip is a Sprite, then you must provide custom ad_started and ad_finished handlers."));
};
}, ad_loaded:function (_arg1:Number, _arg2:Number):void{
}, ad_failed:function ():void{
trace("[MochiAd] Couldn't load an ad, make sure your game's local security sandbox is configured for Access Network Only and that you are not using ad blocking software");
}, ad_skipped:function ():void{
}};
options = MochiAd._parseOptions(options, DEFAULTS);
clip = options.clip;
var ad_msec:Number = 11000;
var ad_timeout:Number = options.ad_timeout;
delete options.ad_timeout;
var fadeout_time:Number = options.fadeout_time;
delete options.fadeout_time;
if (!MochiAd.load(options)){
options.ad_failed();
options.ad_finished();
return;
};
options.ad_started();
mc = clip._mochiad;
mc["onUnload"] = function ():void{
MochiAd._cleanup(mc);
options.ad_finished();
};
var wh:Array = MochiAd._getRes(options, clip);
var w:Number = wh[0];
var h:Number = wh[1];
mc.x = (w * 0.5);
mc.y = (h * 0.5);
chk = createEmptyMovieClip(mc, "_mochiad_wait", 3);
chk.ad_msec = ad_msec;
chk.ad_timeout = ad_timeout;
chk.started = getTimer();
chk.showing = false;
chk.fadeout_time = fadeout_time;
chk.fadeFunction = function ():void{
if (!this.parent){
delete this.onEnterFrame;
delete this.fadeFunction;
return;
};
var _local1:Number = (100 * (1 - ((getTimer() - this.fadeout_start) / this.fadeout_time)));
if (_local1 > 0){
this.parent.alpha = (_local1 * 0.01);
} else {
MochiAd.unload(clip);
delete this["onEnterFrame"];
};
};
mc.unloadAd = function ():void{
MochiAd.unload(clip);
};
mc.adLoaded = options.ad_loaded;
mc.adSkipped = options.ad_skipped;
mc.adjustProgress = function (_arg1:Number):void{
var _local2:Object = mc._mochiad_wait;
_local2.server_control = true;
_local2.showing = true;
_local2.started = getTimer();
_local2.ad_msec = (_arg1 - 250);
};
mc.rpc = function (_arg1:Number, _arg2:Object):void{
MochiAd.rpc(clip, _arg1, _arg2);
};
chk["onEnterFrame"] = function ():void{
var _local4:Number;
if (!this.parent){
delete this.onEnterFrame;
delete this.fadeFunction;
return;
};
var _local1:Object = this.parent._mochiad_ctr;
var _local2:Number = (getTimer() - this.started);
var _local3:Boolean;
if (!chk.showing){
_local4 = this.parent._mochiad_ctr.contentLoaderInfo.bytesTotal;
if (_local4 > 0){
chk.showing = true;
chk.started = getTimer();
MochiAd.adShowing(clip);
} else {
if (_local2 > chk.ad_timeout){
options.ad_failed();
_local3 = true;
};
};
};
if (_local2 > chk.ad_msec){
_local3 = true;
};
if (_local3){
if (this.server_control){
delete this.onEnterFrame;
} else {
this.fadeout_start = getTimer();
this.onEnterFrame = this.fadeFunction;
};
};
};
doOnEnterFrame(chk);
}
public static function _parseOptions(_arg1:Object, _arg2:Object):Object{
var _local4:String;
var _local5:Array;
var _local6:Number;
var _local7:Array;
var _local3:Object = {};
for (_local4 in _arg2) {
_local3[_local4] = _arg2[_local4];
};
if (_arg1){
for (_local4 in _arg1) {
_local3[_local4] = _arg1[_local4];
};
};
if (_local3.clip == undefined){
throw (new Error("MochiAd is missing the 'clip' parameter. This should be a MovieClip, Sprite or an instance of a class that extends MovieClip or Sprite."));
};
_arg1 = _local3.clip.loaderInfo.parameters.mochiad_options;
if (_arg1){
_local5 = _arg1.split("&");
_local6 = 0;
while (_local6 < _local5.length) {
_local7 = _local5[_local6].split("=");
_local3[unescape(_local7[0])] = unescape(_local7[1]);
_local6++;
};
};
if (_local3.id == "test"){
trace("[MochiAd] WARNING: Using the MochiAds test identifier, make sure to use the code from your dashboard, not this example!");
};
return (_local3);
}
public static function _cleanup(_arg1:Object):void{
var k:String;
var lc:LocalConnection;
var f:Function;
var mc = _arg1;
if (("lc" in mc)){
lc = mc.lc;
f = function ():void{
try {
lc.client = null;
lc.close();
} catch(e:Error) {
};
};
setTimeout(f, 0);
};
var idx:Number = DisplayObjectContainer(mc).numChildren;
while (idx > 0) {
idx = (idx - 1);
DisplayObjectContainer(mc).removeChildAt(idx);
};
for (k in mc) {
delete mc[k];
};
}
public static function load(_arg1:Object):MovieClip{
var clip:Object;
var k:String;
var server:String;
var hostname:String;
var lc:LocalConnection;
var name:String;
var loader:Loader;
var g:Function;
var req:URLRequest;
var v:Object;
var options = _arg1;
var DEFAULTS:Object = {server:"http://x.mochiads.com/srv/1/", method:"load", depth:10333, id:"_UNKNOWN_"};
options = MochiAd._parseOptions(options, DEFAULTS);
options.swfv = 9;
options.mav = MochiAd.getVersion();
clip = options.clip;
if (!MochiAd._isNetworkAvailable()){
return (null);
};
try {
if (clip._mochiad_loaded){
return (null);
};
} catch(e:Error) {
throw (new Error("MochiAd requires a clip that is an instance of a dynamic class. If your class extends Sprite or MovieClip, you must make it dynamic."));
};
var depth:Number = options.depth;
delete options.depth;
var mc:MovieClip = createEmptyMovieClip(clip, "_mochiad", depth);
var wh:Array = MochiAd._getRes(options, clip);
options.res = ((wh[0] + "x") + wh[1]);
options.server = (options.server + options.id);
delete options.id;
clip._mochiad_loaded = true;
if (clip.loaderInfo.loaderURL.indexOf("http") == 0){
options.as3_swf = clip.loaderInfo.loaderURL;
} else {
trace("[MochiAd] NOTE: Security Sandbox Violation errors below are normal");
};
var lv:URLVariables = new URLVariables();
for (k in options) {
v = options[k];
if (!(v is Function)){
lv[k] = v;
};
};
server = lv.server;
delete lv.server;
hostname = _allowDomains(server);
lc = new LocalConnection();
lc.client = mc;
name = ["", Math.floor(new Date().getTime()), Math.floor((Math.random() * 999999))].join("_");
lc.allowDomain("*", "localhost");
lc.allowInsecureDomain("*", "localhost");
lc.connect(name);
mc.lc = lc;
mc.lcName = name;
lv.lc = name;
lv.st = getTimer();
loader = new Loader();
g = function (_arg1:Object):void{
_arg1.target.removeEventListener(_arg1.type, arguments.callee);
MochiAd.unload(clip);
};
loader.contentLoaderInfo.addEventListener(Event.UNLOAD, g);
req = new URLRequest(((server + ".swf?cacheBust=") + new Date().getTime()));
req.contentType = "application/x-www-form-urlencoded";
req.method = URLRequestMethod.POST;
req.data = lv;
loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, function (_arg1:IOErrorEvent):void{
trace("[MochiAds] Blocked URL");
});
loader.load(req);
mc.addChild(loader);
mc._mochiad_ctr = loader;
return (mc);
}
public static function runMethod(_arg1:Object, _arg2:String, _arg3:Array):Object{
var _local4:Array = _arg2.split(".");
var _local5:Number = 0;
while (_local5 < (_local4.length - 1)) {
if ((((_arg1[_local4[_local5]] == undefined)) || ((_arg1[_local4[_local5]] == null)))){
return (undefined);
};
_arg1 = _arg1[_local4[_local5]];
_local5++;
};
if (typeof(_arg1[_local4[_local5]]) == "function"){
return (_arg1[_local4[_local5]].apply(_arg1, _arg3));
};
return (undefined);
}
public static function createEmptyMovieClip(_arg1:Object, _arg2:String, _arg3:Number):MovieClip{
var _local4:MovieClip = new MovieClip();
if (((false) && (_arg3))){
_arg1.addChildAt(_local4, _arg3);
} else {
_arg1.addChild(_local4);
};
_arg1[_arg2] = _local4;
_local4["_name"] = _arg2;
return (_local4);
}
public static function _getRes(_arg1:Object, _arg2:Object):Array{
var _local6:Array;
var _local3:Object = _arg2.getBounds(_arg2.root);
var _local4:Number = 0;
var _local5:Number = 0;
if (typeof(_arg1.res) != "undefined"){
_local6 = _arg1.res.split("x");
_local4 = parseFloat(_local6[0]);
_local5 = parseFloat(_local6[1]);
} else {
_local4 = (_local3.xMax - _local3.xMin);
_local5 = (_local3.yMax - _local3.yMin);
};
if ((((_local4 == 0)) || ((_local5 == 0)))){
_local4 = _arg2.stage.stageWidth;
_local5 = _arg2.stage.stageHeight;
};
return ([_local4, _local5]);
}
public static function adShowing(_arg1:Object):void{
_arg1.origFrameRate = _arg1.stage.frameRate;
_arg1.stage.frameRate = 30;
}
public static function getValue(_arg1:Object, _arg2:String):Object{
var _local3:Array = _arg2.split(".");
var _local4:Number = 0;
while (_local4 < (_local3.length - 1)) {
if ((((_arg1[_local3[_local4]] == undefined)) || ((_arg1[_local3[_local4]] == null)))){
return (undefined);
};
_arg1 = _arg1[_local3[_local4]];
_local4++;
};
return (_arg1[_local3[_local4]]);
}
public static function rpc(_arg1:Object, _arg2:Number, _arg3:Object):void{
var _local4:Object;
var _local5:Object;
switch (_arg3.id){
case "setValue":
MochiAd.setValue(_arg1, _arg3.objectName, _arg3.value);
break;
case "getValue":
_local4 = MochiAd.getValue(_arg1, _arg3.objectName);
_arg1._mochiad.lc.send(_arg1._mochiad._containerLCName, "rpcResult", _arg2, _local4);
break;
case "runMethod":
_local5 = MochiAd.runMethod(_arg1, _arg3.method, _arg3.args);
_arg1._mochiad.lc.send(_arg1._mochiad._containerLCName, "rpcResult", _arg2, _local5);
break;
default:
trace(("[mochiads rpc] unknown rpc id: " + _arg3.id));
};
}
public static function setValue(_arg1:Object, _arg2:String, _arg3:Object):void{
var _local4:Array = _arg2.split(".");
var _local5:Number = 0;
while (_local5 < (_local4.length - 1)) {
if ((((_arg1[_local4[_local5]] == undefined)) || ((_arg1[_local4[_local5]] == null)))){
return;
};
_arg1 = _arg1[_local4[_local5]];
_local5++;
};
_arg1[_local4[_local5]] = _arg3;
}
public static function showPreGameAd(_arg1:Object):void{
var clip:Object;
var mc:MovieClip;
var chk:MovieClip;
var complete:Boolean;
var unloaded:Boolean;
var sendHostProgress:Boolean;
var fn:Function;
var r:MovieClip;
var options = _arg1;
var DEFAULTS:Object = {ad_timeout:3000, fadeout_time:250, regpt:"o", method:"showPreloaderAd", color:0xFF8A00, background:16777161, outline:13994812, no_progress_bar:false, ad_started:function ():void{
if ((this.clip is MovieClip)){
this.clip.stop();
} else {
throw (new Error("MochiAd.showPreGameAd requires a clip that is a MovieClip or is an instance of a class that extends MovieClip. If your clip is a Sprite, then you must provide custom ad_started and ad_finished handlers."));
};
}, ad_finished:function ():void{
if ((this.clip is MovieClip)){
this.clip.play();
} else {
throw (new Error("MochiAd.showPreGameAd requires a clip that is a MovieClip or is an instance of a class that extends MovieClip. If your clip is a Sprite, then you must provide custom ad_started and ad_finished handlers."));
};
}, ad_loaded:function (_arg1:Number, _arg2:Number):void{
}, ad_failed:function ():void{
trace("[MochiAd] Couldn't load an ad, make sure your game's local security sandbox is configured for Access Network Only and that you are not using ad blocking software");
}, ad_skipped:function ():void{
}, ad_progress:function (_arg1:Number):void{
}};
options = MochiAd._parseOptions(options, DEFAULTS);
if ("c862232051e0a94e1c3609b3916ddb17".substr(0) == "dfeada81ac97cde83665f81c12da7def"){
options.ad_started();
fn = function ():void{
options.ad_finished();
};
setTimeout(fn, 100);
return;
};
clip = options.clip;
var ad_msec:Number = 11000;
var ad_timeout:Number = options.ad_timeout;
delete options.ad_timeout;
var fadeout_time:Number = options.fadeout_time;
delete options.fadeout_time;
if (!MochiAd.load(options)){
options.ad_failed();
options.ad_finished();
return;
};
options.ad_started();
mc = clip._mochiad;
mc["onUnload"] = function ():void{
MochiAd._cleanup(mc);
var fn:Function = function ():void{
options.ad_finished();
};
setTimeout(fn, 100);
};
var wh:Array = MochiAd._getRes(options, clip);
var w:Number = wh[0];
var h:Number = wh[1];
mc.x = (w * 0.5);
mc.y = (h * 0.5);
chk = createEmptyMovieClip(mc, "_mochiad_wait", 3);
chk.x = (w * -0.5);
chk.y = (h * -0.5);
var bar:MovieClip = createEmptyMovieClip(chk, "_mochiad_bar", 4);
if (options.no_progress_bar){
bar.visible = false;
delete options.no_progress_bar;
} else {
bar.x = 10;
bar.y = (h - 20);
};
var bar_color:Number = options.color;
delete options.color;
var bar_background:Number = options.background;
delete options.background;
var bar_outline:Number = options.outline;
delete options.outline;
var backing_mc:MovieClip = createEmptyMovieClip(bar, "_outline", 1);
var backing:Object = backing_mc.graphics;
backing.beginFill(bar_background);
backing.moveTo(0, 0);
backing.lineTo((w - 20), 0);
backing.lineTo((w - 20), 10);
backing.lineTo(0, 10);
backing.lineTo(0, 0);
backing.endFill();
var inside_mc:MovieClip = createEmptyMovieClip(bar, "_inside", 2);
var inside:Object = inside_mc.graphics;
inside.beginFill(bar_color);
inside.moveTo(0, 0);
inside.lineTo((w - 20), 0);
inside.lineTo((w - 20), 10);
inside.lineTo(0, 10);
inside.lineTo(0, 0);
inside.endFill();
inside_mc.scaleX = 0;
var outline_mc:MovieClip = createEmptyMovieClip(bar, "_outline", 3);
var outline:Object = outline_mc.graphics;
outline.lineStyle(0, bar_outline, 100);
outline.moveTo(0, 0);
outline.lineTo((w - 20), 0);
outline.lineTo((w - 20), 10);
outline.lineTo(0, 10);
outline.lineTo(0, 0);
chk.ad_msec = ad_msec;
chk.ad_timeout = ad_timeout;
chk.started = getTimer();
chk.showing = false;
chk.last_pcnt = 0;
chk.fadeout_time = fadeout_time;
chk.fadeFunction = function ():void{
var _local1:Number = (100 * (1 - ((getTimer() - this.fadeout_start) / this.fadeout_time)));
if (_local1 > 0){
this.parent.alpha = (_local1 * 0.01);
} else {
MochiAd.unload(clip);
delete this["onEnterFrame"];
};
};
complete = false;
unloaded = false;
var f:Function = function (_arg1:Event):void{
_arg1.target.removeEventListener(_arg1.type, arguments.callee);
complete = true;
if (unloaded){
MochiAd.unload(clip);
};
};
clip.loaderInfo.addEventListener(Event.COMPLETE, f);
if ((clip.root is MovieClip)){
r = (clip.root as MovieClip);
if (r.framesLoaded >= r.totalFrames){
complete = true;
};
};
mc.unloadAd = function ():void{
unloaded = true;
if (complete){
MochiAd.unload(clip);
};
};
mc.adLoaded = options.ad_loaded;
mc.adSkipped = options.ad_skipped;
mc.adjustProgress = function (_arg1:Number):void{
var _local2:Object = mc._mochiad_wait;
_local2.server_control = true;
_local2.showing = true;
_local2.started = getTimer();
_local2.ad_msec = _arg1;
};
mc.rpc = function (_arg1:Number, _arg2:Object):void{
MochiAd.rpc(clip, _arg1, _arg2);
};
mc.rpcTestFn = function (_arg1:String):Object{
trace(("[MOCHIAD rpcTestFn] " + _arg1));
return (_arg1);
};
mc.regContLC = function (_arg1:String):void{
mc._containerLCName = _arg1;
};
sendHostProgress = false;
mc.sendHostLoadProgress = function (_arg1:String):void{
sendHostProgress = true;
};
chk["onEnterFrame"] = function ():void{
var _local11:Number;
if (((!(this.parent)) || (!(this.parent.parent)))){
delete this["onEnterFrame"];
return;
};
var _local1:Object = this.parent.parent.root;
var _local2:Object = this.parent._mochiad_ctr;
var _local3:Number = (getTimer() - this.started);
var _local4:Boolean;
var _local5:Number = _local1.loaderInfo.bytesTotal;
var _local6:Number = _local1.loaderInfo.bytesLoaded;
if (complete){
_local6 = Math.max(1, _local6);
_local5 = _local6;
};
var _local7:Number = ((100 * _local6) / _local5);
var _local8:Number = ((100 * _local3) / chk.ad_msec);
var _local9:Object = this._mochiad_bar._inside;
var _local10:Number = Math.min(100, Math.min(((_local7) || (0)), _local8));
_local10 = Math.max(this.last_pcnt, _local10);
this.last_pcnt = _local10;
_local9.scaleX = (_local10 * 0.01);
options.ad_progress(_local10);
if (sendHostProgress){
clip._mochiad.lc.send(clip._mochiad._containerLCName, "notify", {id:"hostLoadPcnt", pcnt:_local7});
if (_local7 == 100){
sendHostProgress = false;
};
};
if (!chk.showing){
_local11 = this.parent._mochiad_ctr.contentLoaderInfo.bytesTotal;
if (_local11 > 0){
chk.showing = true;
chk.started = getTimer();
MochiAd.adShowing(clip);
} else {
if ((((_local3 > chk.ad_timeout)) && ((_local7 == 100)))){
options.ad_failed();
_local4 = true;
};
};
};
if (_local3 > chk.ad_msec){
_local4 = true;
};
if (((complete) && (_local4))){
if (this.server_control){
delete this.onEnterFrame;
} else {
this.fadeout_start = getTimer();
this.onEnterFrame = chk.fadeFunction;
};
};
};
doOnEnterFrame(chk);
}
public static function showPreloaderAd(_arg1:Object):void{
trace("[MochiAd] DEPRECATED: showPreloaderAd was renamed to showPreGameAd in 2.0");
MochiAd.showPreGameAd(_arg1);
}
public static function showTimedAd(_arg1:Object):void{
trace("[MochiAd] DEPRECATED: showTimedAd was renamed to showInterLevelAd in 2.0");
MochiAd.showInterLevelAd(_arg1);
}
public static function doOnEnterFrame(_arg1:MovieClip):void{
var mc = _arg1;
var f:Function = function (_arg1:Object):void{
if (((("onEnterFrame" in mc)) && (mc.onEnterFrame))){
mc.onEnterFrame();
} else {
_arg1.target.removeEventListener(_arg1.type, arguments.callee);
};
};
mc.addEventListener(Event.ENTER_FRAME, f);
}
}
}//package mochi
Section 36
//MochiDigits (mochi.MochiDigits)
package mochi {
public final class MochiDigits {
private var Sibling:MochiDigits;
private var Fragment:Number;
private var Encoder:Number;
public function MochiDigits(_arg1:Number=0, _arg2:uint=0):void{
Encoder = 0;
setValue(_arg1, _arg2);
}
public function reencode():void{
var _local1:uint = int((2147483647 * Math.random()));
Fragment = (Fragment ^ (_local1 ^ Encoder));
Encoder = _local1;
}
public function set value(_arg1:Number):void{
setValue(_arg1);
}
public function toString():String{
var _local1:String = String.fromCharCode((Fragment ^ Encoder));
if (Sibling != null){
_local1 = (_local1 + Sibling.toString());
};
return (_local1);
}
public function setValue(_arg1:Number=0, _arg2:uint=0):void{
var _local3:String = _arg1.toString();
var _temp1 = _arg2;
_arg2 = (_arg2 + 1);
Fragment = (_local3.charCodeAt(_temp1) ^ Encoder);
if (_arg2 < _local3.length){
Sibling = new MochiDigits(_arg1, _arg2);
} else {
Sibling = null;
};
reencode();
}
public function get value():Number{
return (Number(this.toString()));
}
public function addValue(_arg1:Number):void{
value = (value + _arg1);
}
}
}//package mochi
Section 37
//BitmapAsset (mx.core.BitmapAsset)
package mx.core {
import flash.display.*;
public class BitmapAsset extends FlexBitmap implements IFlexAsset, IFlexDisplayObject {
mx_internal static const VERSION:String = "3.2.0.3958";
public function BitmapAsset(_arg1:BitmapData=null, _arg2:String="auto", _arg3:Boolean=false){
super(_arg1, _arg2, _arg3);
}
public function get measuredWidth():Number{
if (bitmapData){
return (bitmapData.width);
};
return (0);
}
public function get measuredHeight():Number{
if (bitmapData){
return (bitmapData.height);
};
return (0);
}
public function setActualSize(_arg1:Number, _arg2:Number):void{
width = _arg1;
height = _arg2;
}
public function move(_arg1:Number, _arg2:Number):void{
this.x = _arg1;
this.y = _arg2;
}
}
}//package mx.core
Section 38
//FlexBitmap (mx.core.FlexBitmap)
package mx.core {
import flash.display.*;
import mx.utils.*;
public class FlexBitmap extends Bitmap {
mx_internal static const VERSION:String = "3.2.0.3958";
public function FlexBitmap(_arg1:BitmapData=null, _arg2:String="auto", _arg3:Boolean=false){
var bitmapData = _arg1;
var pixelSnapping = _arg2;
var smoothing = _arg3;
super(bitmapData, pixelSnapping, smoothing);
try {
name = NameUtil.createUniqueName(this);
} catch(e:Error) {
};
}
override public function toString():String{
return (NameUtil.displayObjectToString(this));
}
}
}//package mx.core
Section 39
//IFlexAsset (mx.core.IFlexAsset)
package mx.core {
public interface IFlexAsset {
}
}//package mx.core
Section 40
//IFlexDisplayObject (mx.core.IFlexDisplayObject)
package mx.core {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.accessibility.*;
public interface IFlexDisplayObject extends IBitmapDrawable, IEventDispatcher {
function get visible():Boolean;
function get rotation():Number;
function localToGlobal(_arg1:Point):Point;
function get name():String;
function set width(_arg1:Number):void;
function get measuredHeight():Number;
function get blendMode():String;
function get scale9Grid():Rectangle;
function set name(_arg1:String):void;
function set scaleX(_arg1:Number):void;
function set scaleY(_arg1:Number):void;
function get measuredWidth():Number;
function get accessibilityProperties():AccessibilityProperties;
function set scrollRect(_arg1:Rectangle):void;
function get cacheAsBitmap():Boolean;
function globalToLocal(_arg1:Point):Point;
function get height():Number;
function set blendMode(_arg1:String):void;
function get parent():DisplayObjectContainer;
function getBounds(_arg1:DisplayObject):Rectangle;
function get opaqueBackground():Object;
function set scale9Grid(_arg1:Rectangle):void;
function setActualSize(_arg1:Number, _arg2:Number):void;
function set alpha(_arg1:Number):void;
function set accessibilityProperties(_arg1:AccessibilityProperties):void;
function get width():Number;
function hitTestPoint(_arg1:Number, _arg2:Number, _arg3:Boolean=false):Boolean;
function set cacheAsBitmap(_arg1:Boolean):void;
function get scaleX():Number;
function get scaleY():Number;
function get scrollRect():Rectangle;
function get mouseX():Number;
function get mouseY():Number;
function set height(_arg1:Number):void;
function set mask(_arg1:DisplayObject):void;
function getRect(_arg1:DisplayObject):Rectangle;
function get alpha():Number;
function set transform(_arg1:Transform):void;
function move(_arg1:Number, _arg2:Number):void;
function get loaderInfo():LoaderInfo;
function get root():DisplayObject;
function hitTestObject(_arg1:DisplayObject):Boolean;
function set opaqueBackground(_arg1:Object):void;
function set visible(_arg1:Boolean):void;
function get mask():DisplayObject;
function set x(_arg1:Number):void;
function set y(_arg1:Number):void;
function get transform():Transform;
function set filters(_arg1:Array):void;
function get x():Number;
function get y():Number;
function get filters():Array;
function set rotation(_arg1:Number):void;
function get stage():Stage;
}
}//package mx.core
Section 41
//IRepeaterClient (mx.core.IRepeaterClient)
package mx.core {
public interface IRepeaterClient {
function get instanceIndices():Array;
function set instanceIndices(_arg1:Array):void;
function get isDocument():Boolean;
function set repeaters(_arg1:Array):void;
function initializeRepeaterArrays(_arg1:IRepeaterClient):void;
function get repeaters():Array;
function set repeaterIndices(_arg1:Array):void;
function get repeaterIndices():Array;
}
}//package mx.core
Section 42
//mx_internal (mx.core.mx_internal)
package mx.core {
public namespace mx_internal = "http://www.adobe.com/2006/flex/mx/internal";
}//package mx.core
Section 43
//SoundAsset (mx.core.SoundAsset)
package mx.core {
import flash.media.*;
public class SoundAsset extends Sound implements IFlexAsset {
mx_internal static const VERSION:String = "3.2.0.3958";
}
}//package mx.core
Section 44
//NameUtil (mx.utils.NameUtil)
package mx.utils {
import flash.display.*;
import mx.core.*;
import flash.utils.*;
public class NameUtil {
mx_internal static const VERSION:String = "3.2.0.3958";
private static var counter:int = 0;
public static function displayObjectToString(_arg1:DisplayObject):String{
var result:String;
var o:DisplayObject;
var s:String;
var indices:Array;
var displayObject = _arg1;
try {
o = displayObject;
while (o != null) {
if (((((o.parent) && (o.stage))) && ((o.parent == o.stage)))){
break;
};
s = o.name;
if ((o is IRepeaterClient)){
indices = IRepeaterClient(o).instanceIndices;
if (indices){
s = (s + (("[" + indices.join("][")) + "]"));
};
};
result = ((result == null)) ? s : ((s + ".") + result);
o = o.parent;
};
} catch(e:SecurityError) {
};
return (result);
}
public static function createUniqueName(_arg1:Object):String{
if (!_arg1){
return (null);
};
var _local2:String = getQualifiedClassName(_arg1);
var _local3:int = _local2.indexOf("::");
if (_local3 != -1){
_local2 = _local2.substr((_local3 + 2));
};
var _local4:int = _local2.charCodeAt((_local2.length - 1));
if ((((_local4 >= 48)) && ((_local4 <= 57)))){
_local2 = (_local2 + "_");
};
return ((_local2 + counter++));
}
}
}//package mx.utils
Section 45
//_af1146 (_af1146)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _af1146 {
public static const _na245:int = 75;
public static const _pj1669:int = 95;
public static const _px610:int = 950;
public static const _st627:int = 35;
public static var _vu1546:int;
public static var _ul506:int = 0;
public static var _dn94:Boolean = false;
public static var _he119:Object = new Object();
public static var _cm842:int = 0;
public static var _dm803:Number = 0;
public static var _bf338:Object = new Object();
public static var _jd791:int = 0;
public static var _nh198:int = 0;
public static var _ba447:int;
public static var _px1609:_uf368;
public static var _ji1595:Number = 0;
public static var _en1283:Object = new Object();
public static var _qn1014:Number = 0;
public static var _hr398:Number = 0;
public static var _dp813:Object = new Object();
public static var _kc1161:Number = 0;
public static var _kj112:Number = 0.007;
public static var _pr1196:Array = [_rk277._up882, _rk277._vq926];
public static var _fh1650:int;
public static var _bh1571:Number = 0;
public static var _yd1551:int;
public static var _mu995:BitmapData;
public static var _lq116:int;
public static var _sw930:Boolean;
public static var _hx1512:Object = new Object();
public static var _vl1266:Object = new Object();
public static var _kp743:Array = [_rk277._ur353, _rk277._tu922, _rk277._qi1078, _rk277._qi1078];
public static var _ja994:int;
public static var _aw829:Object = new Object();
public static var _pw187:int;
public static var _wy323:Number = 0;
public static var _qp353:int;
public static var _ut1241:Object = new Object();
public static var _yg1086:Number = 0;
public static var _dg84:_uf368;
public static var _uy1441:_uf368;
public static var _br345:Number = 0;
public static var _ss195:Array = [_bf338, _dp813, _he119, _ut1241, _fp623, _ni1521];
public static var _fa1080:Object = new Object();
public static var _mj1492:int = 0;
public static var _rm610:Array = [_yd590, _tv367, _yp441, _iu932, _nc931, _pc962];
public static var _ni1521:Object = new Object();
public static var _sn1438:Object = new Object();
public static var _ey187:Array = [_rk277._rw1198, _rk277._tg250];
public static var _na418:int = 0;
public static var _bf431:Number = 0;
public static var _jy1201:int;
public static var _wv596:Object = new Object();
public static var _pr1270:_nx31;
public static var _cn30:Number = 0;
public static var _fp623:Object = new Object();
public static function _ne1665():void{
_he822._sk1086._mi1586();
_nw1700();
_vu1546 = 3;
_dg84._nk1079 = 0;
_dg84._vk951(_rk277._rw1198, 0, 0, _rk277._rw1198.width, _rk277._rw1198.height);
_he822._gu735 = (_he822._gu735 - 1);
_he822._lg339();
_he822._uv872 = 1;
_he822._gt186 = true;
_ia1236(_rk277._ae699, (750 / 2), (500 / 2));
_pr1270._cu677();
_ju794();
_rm966._xm563("playerhit");
_he822._eq894 = 5000;
_ib16._bs472 = _ib16._xy891;
_dg84._ss1421(350, -100);
}
private static function _sa512(_arg1:_uf368):void{
_arg1.x = (_arg1.x - _wy323);
_arg1.y = (_arg1.y - _hr398);
}
public static function _nw1700():void{
_bh1571 = 0;
_he822._yh998.brightness = 1;
}
public static function _bk987():void{
if (_nh198 < 5){
_nh198++;
_yy1343();
_ui165();
};
}
public static function _cn45():void{
var _local2:BitmapData;
var _local1:int = _rw574._up1471._ma459(1, _jd791);
var _local3:Number = 0;
var _local4:Number = 0;
var _local5:Number = 0;
var _local6:Number = 0;
if (_local1 == 1){
_local2 = _rk277._ra960;
} else {
if (_local1 == 2){
_local2 = _rk277._fh1659;
} else {
if (_local1 == 3){
_local2 = _rk277._gm140;
} else {
if (_local1 == 4){
_local2 = _rk277._gh659;
} else {
if (_local1 == 5){
_local2 = _rk277._rg1138;
} else {
if (_local1 == 6){
_local2 = _rk277._sv222;
} else {
if (_local1 == 7){
_local2 = _rk277._ro518;
} else {
if (_local1 == 8){
_local2 = _rk277._ks727;
};
};
};
};
};
};
};
};
_px1609 = _lv349._gm1204._kn515(_local2, 0, 0, _local2.width, _local2.height, _he822._yh998._dn642, 0, 0, 0);
_local3 = _he1472._nx1028(_px1609, 32);
if (_local3 == 1){
_local6 = _rw574._by1162(0, _rw574._up1471._tp230(-45, 45));
};
if (_local3 == 2){
_local6 = _rw574._by1162(180, _rw574._up1471._tp230(-45, 45));
};
if (_local3 == 3){
_local6 = _rw574._by1162(90, _rw574._up1471._tp230(-45, 45));
};
if (_local3 == 4){
_local6 = _rw574._by1162(270, _rw574._up1471._tp230(-45, 45));
};
_local4 = _rw574._be1379(_local6, _rw574._up1471._tp230(0.025, 0.05));
_local5 = _rw574._dm1262(_local6, _rw574._up1471._tp230(0.025, 0.05));
_px1609._xy276(-300, -300, (_he1472._dj78 + 300), (_he1472._rc1179 + 300));
_px1609._ru190(_rw574._lb492(), 0.005, _rw574._up1471._tp230(0.02, 0.06), _rw574._lb492(), 0.005, _rw574._up1471._tp230(0.02, 0.06), _local4, _local5);
_px1609._go304 = (_local1 + 1);
_px1609._sh1626(17);
_px1609._gy1216(_ma1520);
}
public static function _qf533():void{
_um1575._lo351();
_um1575._fj856();
_um1575._bd1294();
_um1575._nd870();
}
private static function _yd590():void{
if (_mj1492 == 1){
_ch1637(_rw574._by1162(_dg84.rotation, 0), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 2){
_ch1637(_rw574._by1162(_dg84.rotation, -15), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 15), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 3){
_ch1637(_rw574._by1162(_dg84.rotation, -20), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 0), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 20), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 4){
_ch1637(_rw574._by1162(_dg84.rotation, -25), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, -10), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 10), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 25), _ji1595, _yg1086, _qn1014);
};
};
};
};
}
public static function _qw990():void{
_mj1492++;
if (_mj1492 > 4){
_mj1492 = 4;
};
_mi882();
}
public static function _mi882():void{
_ba447 = 0;
_br345 = 0;
if (_mj1492 == 1){
_bf431 = (1000 / 5);
};
if (_mj1492 == 2){
_bf431 = (1000 / 8);
};
if (_mj1492 == 3){
_bf431 = (1000 / 11);
};
if (_mj1492 == 4){
_bf431 = (1000 / 15);
};
_ji1595 = (0.2 + (_mj1492 * 0.025));
}
public static function Init(_arg1:BitmapData):void{
_mu995 = _arg1;
_dg84 = null;
_dg84 = new _uf368();
_dg84._wr444(_rk277._rw1198, 0, 0, _rk277._rw1198.width, _rk277._rw1198.height, _arg1, 1);
_dg84._ss1421((_he1472._dj78 / 2), (_he1472._rc1179 / 2));
_dg84._sh1626(20);
if (_pr1270 == null){
_pr1270 = new _nx31();
} else {
_pr1270._vc316();
};
_uy1441 = null;
_uy1441 = new _uf368();
_uy1441._wr444(_rk277._ec715, 0, 0, _rk277._ec715.width, _rk277._ec715.height, _he822._yh998._dn642, 1);
_uy1441._me814(0.006, 2, 4, 1, 2);
_uy1441._rn387(0.006, 2, 4, 1, 2);
_uy1441._mq1422 = BlendMode.ADD;
_uy1441._td1389 = false;
_sw930 = false;
_of949._nb1479 = false;
_of949._ny1521 = false;
_dm803 = 0;
_eo543();
_nj1371();
_yy1343();
_vu1546 = 3;
_br345 = 1250;
}
public static function _sg106(_arg1:_uf368):void{
if (_arg1._go304 == 1){
_lv349._wm802(_arg1.x, _arg1.y, _he822._yh998._dn642, 16, 0.8, 3);
_he822._xa1271(_arg1._qy180);
} else {
_lv349._wm802(_arg1.x, _arg1.y, _he822._yh998._dn642, 16, 0.8, 2);
};
if (_arg1._go304 == 1){
_rm966._bw292("crystalpickup");
_in1309();
} else {
if (_arg1._go304 == 2){
_tc75();
_rm966._bw292("pickupsound");
} else {
if (_arg1._go304 == 3){
_jt1062();
_rm966._bw292("pickupsound");
} else {
if (_arg1._go304 == 4){
_wm534(_arg1, _rw574._up1471._ma459(10, 20));
_rm966._bw292("pickupsound");
} else {
if (_arg1._go304 == 5){
_xc543();
_rm966._bw292("flame");
} else {
if (_arg1._go304 == 6){
_is302();
_rm966._bw292("pickupsound");
} else {
if (_arg1._go304 == 7){
_cp302();
} else {
if (_arg1._go304 == 8){
_ai1250();
_rm966._bw292("pickupsound");
} else {
if (_arg1._go304 == 9){
_ia1236(_rk277._vg302, _arg1.x, _arg1.y);
_he822._xa1271(5000);
_rm966._bw292("pickupsound");
} else {
if (_arg1._go304 == 10){
_um1575._ck1065();
_lv349._wm802(_arg1.x, _arg1.y, _he822._yh998._dn642, 16, 0.8, 3);
_he822._xa1271(50000);
_rm966._bw292("quack");
} else {
if (_arg1._go304 == 11){
_um1575._xl1274();
_lv349._wm802(_arg1.x, _arg1.y, _he822._yh998._dn642, 16, 0.8, 3);
_he822._xa1271(100000);
_rm966._bw292("nicebeaver");
} else {
if (_arg1._go304 == 12){
_um1575._dm851();
_lv349._wm802(_arg1.x, _arg1.y, _he822._yh998._dn642, 16, 0.8, 3);
_he822._xa1271(200000);
_rm966._bw292("superman");
};
};
};
};
};
};
};
};
};
};
};
};
}
public static function _yc823(_arg1:_uf368):void{
_arg1.x = (_arg1.x - _wy323);
_arg1.y = (_arg1.y - _hr398);
}
private static function _hp768(_arg1:_uf368):void{
_arg1._lc262 = (_arg1._lc262 + _arg1._mb1382);
if (_arg1._lc262 > 360){
_arg1._lc262 = (_arg1._lc262 - 360);
} else {
if (_arg1._lc262 < 0){
_arg1._lc262 = (360 + _arg1._lc262);
};
};
_px1609 = _pr1270._kn515(_rk277._yg1475, 0, 0, _rk277._yg1475.width, _rk277._yg1475.height, _he822._yh998._dn642, _dg84.x, _dg84.y, 0);
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._io238(_arg1._lc262, 0, _rw574._up1471._tp230(0.2, 0.2), 0, 0, true);
_px1609._sh1626(6.5);
_px1609 = _pr1270._kn515(_rk277._yg1475, 0, 0, _rk277._yg1475.width, _rk277._yg1475.height, _he822._yh998._dn642, _dg84.x, _dg84.y, 0);
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._io238(_rw574._by1162(_arg1._lc262, 180), 0, _rw574._up1471._tp230(0.2, 0.2), 0, 0, true);
_px1609._sh1626(6.5);
}
public static function _ig1054():void{
var _local1:int;
_yg1086 = ((_he1472._gj1555 - _dg84.x) * 0.0006);
_qn1014 = ((_he1472._lh1716 - _dg84.y) * 0.0006);
_wy323 = (_yg1086 * _he1472._mv493);
_hr398 = (_qn1014 * _he1472._mv493);
_dg84.x = (_dg84.x + _wy323);
_dg84.y = (_dg84.y + _hr398);
_dg84.rotation = _rw574._vq657(_dg84.x, _dg84.y, _he1472._gj1555, _he1472._lh1716);
_local1 = (_dg84.rotation / 5.6);
if (_local1 > 63){
_local1 = 63;
};
_kc1161 = (_kc1161 - _he1472._mv493);
if (_kc1161 < 1){
_kc1161 = (1000 / 20);
_cx41(_local1);
};
if (_he822._sl35 == false){
_br345 = (_br345 - _he1472._mv493);
if (_br345 < 1){
_br345 = _bf431;
var _local2 = _rm610;
_local2[(_ul506 - 1)]();
_rm966._bw292("laser");
};
if (_of949._nb1479 == true){
_dm803 = (_dm803 + _he1472._mv493);
if (_dn94 == false){
if (_dm803 > 250){
if (_qp353 > 0){
_qp353 = (_qp353 - 1);
_he822._qi885();
_cp302();
} else {
_rm966._bw292("sputter");
};
_dm803 = 0;
_dn94 = true;
};
};
} else {
if ((((_dm803 > 5)) && ((_dn94 == false)))){
_ny1576();
};
_dm803 = 0;
_dn94 = false;
};
};
_pr1270._cd171(_he1472._mv493);
if (_bh1571 > 0){
_uy1441._ss1421(_dg84.x, _dg84.y);
_uy1441._ig1054(_he1472._mv493);
_uy1441._ij1556();
_he822._yh998.brightness = (_he822._yh998.brightness + (_kj112 * _he1472._mv493));
if ((((_he822._yh998.brightness < 1.5)) || ((_he822._yh998.brightness > 3.5)))){
_kj112 = -(_kj112);
_he822._yh998.brightness = (_he822._yh998.brightness + (_kj112 * _he1472._mv493));
};
_bh1571 = (_bh1571 - _he1472._mv493);
if (_bh1571 < 1){
_nw1700();
};
};
_dg84._ig1054(_he1472._mv493);
_dg84._ij1556();
}
private static function _td1025(_arg1:_uf368):void{
_lv349._wm802(_arg1.x, _arg1.y, _he822._yh998._dn642, 10, 0.8, 2);
}
public static function _is302():void{
if (_he822._gt186 == false){
_bh1571 = 10000;
_he822._yh998.brightness = 1.5;
_px1609 = _lv349._va1163._kn515(_rk277._hu23, 0, 0, _rk277._hu23.width, _rk277._hu23.height, _he822._yh998._dn642, (750 / 2), (500 / 2), 1);
_px1609._be390(0.0008, 50);
_px1609._me814(0.0017, 0, 100, 4, 0);
_px1609._rn387(0.0018, 0, 100, 4, 0);
_px1609._mq1422 = BlendMode.ADD;
_px1609._td1389 = false;
_cn30 = 0;
};
}
private static function _ch1637(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):void{
var _local5:Object = _ss195[(_ul506 - 1)];
var _local6:int = (_arg1 / 5.6);
if (_local6 > 63){
_local6 = 63;
};
_px1609 = _pr1270._kn515(_local5[_local6], 0, 0, 32, 32, _mu995, 0, 0, 0);
_px1609._ss1421(_dg84.x, _dg84.y);
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._io238(_arg1, 0, _arg2);
_px1609._sh1626((32 * 0.3));
}
public static function _ma1520(_arg1:_uf368):void{
if (_rw574._if1500(_arg1, _af1146._dg84) == true){
_arg1._tc794 = true;
_arg1._os1213 = false;
_sg106(_arg1);
} else {
if (_arg1.x < _arg1._ip440){
_arg1._tc794 = true;
} else {
if (_arg1.x > _arg1._ux410){
_arg1._tc794 = true;
};
};
if (_arg1.y < _arg1._eg945){
_arg1._tc794 = true;
} else {
if (_arg1.y > _arg1._jm1029){
_arg1._tc794 = true;
};
};
};
}
public static function _jl210(_arg1:BitmapData, _arg2:Number, _arg3:Number):void{
_px1609 = _lv349._va1163._kn515(_arg1, 0, 0, _arg1.width, _arg1.height, _he822._yh998._dn642, _arg2, _arg3, 1);
_px1609._be390(0.001, 250);
_px1609._me814(0.0015, 0, 1000, 3, 0.1);
_px1609._rn387(0.0015, 0, 1000, 3, 0.1);
_px1609._td1389 = false;
_px1609._gy1216(_yc823);
}
public static function _nx538():void{
if (_mj1492 < 4){
_jl210(_rk277._mf240, _dg84.x, _dg84.y);
_mj1492++;
_mi882();
};
}
private static function _yp441():void{
if (_mj1492 == 1){
_ba447++;
if (_ba447 > 2){
_ba447 = 1;
};
_ch1637(_rw574._by1162(_dg84.rotation, (90 + ((_ba447 - 1) * 180))), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 2){
_ch1637(_rw574._by1162(_dg84.rotation, (0 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (180 + 90)), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 3){
_ba447++;
if (_ba447 == 1){
_ch1637(_rw574._by1162(_dg84.rotation, (0 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, ((180 - 20) + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, ((180 + 20) + 90)), _ji1595, _yg1086, _qn1014);
} else {
_ch1637(_rw574._by1162(_dg84.rotation, (-20 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (20 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (180 + 90)), _ji1595, _yg1086, _qn1014);
_ba447 = 0;
};
} else {
if (_mj1492 == 4){
_ba447++;
if (_ba447 == 1){
_ch1637(_rw574._by1162(_dg84.rotation, (0 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (180 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, ((180 - 20) + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, ((180 + 20) + 90)), _ji1595, _yg1086, _qn1014);
} else {
_ch1637(_rw574._by1162(_dg84.rotation, (0 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (-20 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (20 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (180 + 90)), _ji1595, _yg1086, _qn1014);
_ba447 = 0;
};
};
};
};
};
}
public static function _nj1371():void{
_yd1551 = 0;
_ja994 = 0;
_lq116 = 0;
_pw187 = 0;
_fh1650 = 0;
_jy1201 = 0;
}
public static function _sl1002():void{
if (_he822._gf734 > 35){
_jd791 = 8;
} else {
if (_he822._gf734 > 30){
_jd791 = 7;
} else {
if (_he822._gf734 > 25){
_jd791 = 6;
} else {
if (_he822._gf734 > 20){
_jd791 = 5;
} else {
if (_he822._gf734 > 15){
_jd791 = 4;
} else {
if (_he822._gf734 > 10){
_jd791 = 3;
} else {
if (_he822._gf734 > 5){
_jd791 = 2;
} else {
if (_he822._gf734 > 0){
_jd791 = 1;
};
};
};
};
};
};
};
};
if (_cm842 != _jd791){
_cm842 = _jd791;
};
}
public static function _yy1343():void{
var _local1:int;
var _local2:Number = 0;
_rw574._jy699(_rk277._ol1520, 0, 0, 0, 0, 700, 24, _he822._yl891, false);
if (_nh198 < 5){
_local2 = 106;
_local1 = 0;
while (_local1 < (5 - _nh198)) {
_rw574._jy699(_rk277._le1272, _local2, 2, 0, 0, 24, 20, _he822._yl891, true);
_local2 = (_local2 - 26);
_local1++;
};
};
_rw574._jy699(_rk277._hp1631, ((_ul506 - 1) * 26), 0, 0, 0, 28, 24, _he822._yl891, true);
_he822._qi885();
_he822._lg339();
_he822._lc1288(0);
_he822._wl1672();
}
public static function _xh499():void{
var _local2:int;
var _local1:Number = 0;
_local2 = 0;
while (_local2 < 64) {
_rw574._if657(_fa1080, _local2, _rk277._og1507, 2, 0, 2, 20, 1, true, _local1);
_rw574._if657(_sn1438, _local2, _rk277._og1507, 2, 2, 2, 20, 1, true, _local1);
_local1 = (_local1 + (360 / 64));
_local2++;
};
_rw574._la428(_bf338, _rk277._uq1179, 1, 1, 1, 64);
_rw574._la428(_dp813, _rk277._la182, 1, 1, 1, 64);
_rw574._la428(_he119, _rk277._ow876, 1, 1, 1, 64);
_rw574._la428(_ut1241, _rk277._gs993, 1, 1, 1, 64);
_rw574._la428(_fp623, _rk277._tx340, 1, 1, 1, 64);
_rw574._la428(_ni1521, _rk277._xu1206, 1, 1, 1, 64);
_rw574._if657(_en1283, 1, _rk277._tv949);
_rw574._wy1430(_wv596, 1, _rk277._tv949, 0, -0.02, 20);
_rw574._qh982(_aw829, 1, _rk277._mc443, 1, 1, 1, 64);
_rw574._la428(_hx1512, _rk277._pt114, 1, 1, 1, 64);
}
public static function _hp1199():void{
if (_he822._gu735 < 3){
_he822._gu735++;
_he822._lg339();
_ia1236(_rk277._bf1337, _dg84.x, _dg84.y);
_um1575._js660();
};
}
private static function _ju794():void{
var _local4:int;
var _local5:_uf368;
var _local6:Number;
var _local7:Number;
var _local1:int = (_dg84.rotation / 5.6);
if (_local1 > 63){
_local1 = 63;
};
var _local2:BitmapData = _hx1512[_local1];
var _local3:int;
while (_local3 < 27) {
_local4 = 0;
while (_local4 < 31) {
_local5 = new _uf368();
_local5 = _lv349._gm1204._kn515(_local2, (_local4 * 2), (_local3 * 2), 2, 2, _he822._yh998._dn642, -1, -1, 0);
_local5._ss1421(((_dg84.x - 27) + (_local4 * 2)), ((_dg84.y - 31) + (_local3 * 2)));
_local6 = _rw574._ct1463(_local5.x, _local5.y, _dg84.x, _dg84.y);
_local7 = _rw574._vq657(_dg84.x, _dg84.y, _local5.x, _local5.y);
_local5._io238(_local7, 0, (_local6 * 0.0025), 0, 0, true);
_local5._xy276(-4, -4, (750 + 4), (500 + 4));
_local4++;
};
_local3++;
};
}
private static function _tc75():void{
_px1609 = _lv349._va1163._kn515(_rk277._po1551, 0, 0, 2, 2, _he822._yh998._dn642, -1000, -1000, 0);
_px1609._gy1216(_pc1108);
_px1609._md1262 = 5000;
_px1609._se1147 = 0;
_px1609._lc262 = _rw574._up1471._ma459(0, 360);
_px1609._mb1382 = (360 / 17);
if (_rw574._hg629() == true){
_px1609._mb1382 = -(_px1609._mb1382);
};
}
private static function _ny1576():void{
_ul506++;
if (_ul506 > _nh198){
_ul506 = 1;
};
_yy1343();
_mi882();
_rm966._xm563("reload");
}
public static function _in1309():void{
_yd1551++;
_ja994++;
_fh1650++;
_jy1201++;
if (_yd1551 == _pj1669){
_yd1551 = 0;
_nx538();
};
if (_ja994 == _st627){
_ja994 = 0;
_cn45();
};
if (_fh1650 == _na245){
_fh1650 = 0;
_ti941();
};
if (_jy1201 == _px610){
_jy1201 = 0;
_hp1199();
};
}
public static function _vt466():void{
_qf533();
_he822._uv872 = 2;
_he822._kw1293(_rk277._sg324, _lv349._uq1203);
_he822._eq894 = 3500;
_he822._gp1225();
_rw574._jy699(_he822._yh998._dn642, 0, 0, 0, 0, 700, 500, _he822._ad262, false);
_rw574._ci1517(_rk277._fi365, (700 / 2), 90, 0, 0, _rk277._fi365.width, _rk277._fi365.height, _he822._ad262, false);
_he1472._eu1004._kl494(_he822._ad262, _he822._nt428, (700 / 2), 140, 2, 2, 2);
}
public static function _ia1236(_arg1:BitmapData, _arg2:Number, _arg3:Number):void{
_px1609 = _lv349._va1163._kn515(_arg1, 0, 0, _arg1.width, _arg1.height, _he822._yh998._dn642, _arg2, _arg3, 1);
_px1609._be390(0.001, 250);
_px1609._me814(0.0015, 0, 1000, 3, 0.1);
_px1609._rn387(0.0015, 0, 1000, 3, 0.1);
_px1609._io238(270, 0, 0.2, 0, 0.00025);
_px1609._td1389 = false;
_px1609._gy1216(_yc823);
}
private static function _nc931():void{
if (_mj1492 == 1){
_ba447++;
if (_ba447 > 4){
_ba447 = 1;
};
_ch1637(_rw574._by1162(_dg84.rotation, ((_ba447 - 1) * 90)), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 2){
_ba447++;
if (_ba447 > 2){
_ba447 = 1;
};
_ch1637(_rw574._by1162(_dg84.rotation, ((_ba447 - 1) * 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (((_ba447 - 1) * 90) + 180)), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 3){
_ba447++;
if (_ba447 > 4){
_ba447 = 1;
};
if (_ba447 == 1){
_ch1637(_rw574._by1162(_dg84.rotation, 0), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 90), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, -90), _ji1595, _yg1086, _qn1014);
} else {
if (_ba447 == 2){
_ch1637(_rw574._by1162(_dg84.rotation, (0 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (90 + 90)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (-90 + 90)), _ji1595, _yg1086, _qn1014);
} else {
if (_ba447 == 3){
_ch1637(_rw574._by1162(_dg84.rotation, (0 + 180)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (90 + 180)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (-90 + 180)), _ji1595, _yg1086, _qn1014);
} else {
if (_ba447 == 4){
_ch1637(_rw574._by1162(_dg84.rotation, (0 + 270)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (90 + 270)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (-90 + 270)), _ji1595, _yg1086, _qn1014);
};
};
};
};
} else {
if (_mj1492 == 4){
_ch1637(_rw574._by1162(_dg84.rotation, 0), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 90), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 180), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 270), _ji1595, _yg1086, _qn1014);
};
};
};
};
}
private static function _tv1324(_arg1:_uf368):void{
_arg1.x = _dg84.x;
_arg1.y = _dg84.y;
}
public static function _dx559():void{
if (_he822._gf734 > 32){
_nh198 = 5;
} else {
if (_he822._gf734 > 24){
_nh198 = 4;
} else {
if (_he822._gf734 > 16){
_nh198 = 3;
} else {
if (_he822._gf734 > 8){
_nh198 = 2;
} else {
if (_he822._gf734 > 0){
_nh198 = 1;
};
};
};
};
};
if (_na418 != _nh198){
_na418 = _nh198;
_ui165();
_yy1343();
};
}
public static function _eo543():void{
_dn94 = false;
_jd791 = _he1472._lf1297;
_cm842 = _jd791;
_ul506 = 1;
_nh198 = _he1472._de1347;
_na418 = _nh198;
_mj1492 = _he1472._un557;
if ((_he822._gf734 + 1) > 14){
_mj1492 = 2;
};
if (_he822._yn1133 == true){
_mj1492 = 4;
};
_mi882();
_qp353 = 5;
if (_he822._vq26 == true){
_qp353 = 99;
_jd791 = 8;
_nh198 = 5;
_mj1492 = 2;
_mi882();
};
}
public static function _gs988():void{
if (_jd791 < 8){
_jd791++;
};
}
public static function _qr920():void{
_um1575._wj1248();
_um1575._vw400();
_um1575._dt1276();
}
private static function _tr690(_arg1:_uf368):void{
var _local2:int = (_dg84.rotation / 5.6);
if (_local2 > 63){
_local2 = 63;
};
_arg1._ps1590 = (_local2 * 24);
_arg1._se1147 = (_arg1._se1147 - _he1472._mv493);
if (_arg1._se1147 < 1){
_arg1._se1147 = 250;
_px1609 = _pr1270._kn515(_rk277._xu977, 0, 0, 10, 10, _he822._yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._xy276(-16, -16, (750 + 16), (500 + 16));
_px1609._io238(_dg84.rotation, 0, 0.2, 0, 0, true);
_px1609._sh1626(5);
};
}
private static function _tv367():void{
if (_mj1492 == 1){
_ba447++;
if (_ba447 > 2){
_ba447 = 1;
};
_ch1637(_rw574._by1162(_dg84.rotation, ((_ba447 - 1) * 180)), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 2){
_ch1637(_rw574._by1162(_dg84.rotation, 0), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, -180), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 3){
_ba447++;
if (_ba447 == 1){
_ch1637(_rw574._by1162(_dg84.rotation, 0), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (180 - 20)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (180 + 20)), _ji1595, _yg1086, _qn1014);
} else {
_ch1637(_rw574._by1162(_dg84.rotation, -20), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 20), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 180), _ji1595, _yg1086, _qn1014);
_ba447 = 0;
};
} else {
if (_mj1492 == 4){
_ba447++;
if (_ba447 == 1){
_ch1637(_rw574._by1162(_dg84.rotation, 0), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 180), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (180 - 20)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (180 + 20)), _ji1595, _yg1086, _qn1014);
} else {
_ch1637(_rw574._by1162(_dg84.rotation, 0), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, -20), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 20), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, 180), _ji1595, _yg1086, _qn1014);
_ba447 = 0;
};
};
};
};
};
}
private static function _cx41(_arg1:Number):void{
var _local2:int;
while (_local2 < 8) {
_px1609 = _lv349._gm1204._kn515(_fa1080[_arg1], 0, 0, _rk277._og1507.width, _rk277._og1507.height, _mu995, _dg84.x, _dg84.y, 0);
if (_rw574._hg629(70) == true){
_px1609._mm1672(_fa1080[_arg1], _rw574._up1471._tp230(0.006, 0.05), 20, 4);
} else {
_px1609._mm1672(_sn1438[_arg1], _rw574._up1471._tp230(0.006, 0.05), 20, 4);
};
_px1609._ss1421((_dg84.x - _rw574._be1379(_dg84.rotation, 10)), (_dg84.y - _rw574._dm1262(_dg84.rotation, 10)));
_px1609._io238(_dg84.rotation, 70, _rw574._up1471._tp230(0.05, 0.2), 0, 0, false);
_px1609._ai1537((1000 / 20), 0.9);
_px1609._gy1216(_he822._sa512);
_px1609._xx1283 = -(_px1609._xx1283);
_px1609._ke128 = -(_px1609._ke128);
_local2++;
};
}
public static function _ui165():void{
_px1609 = _lv349._va1163._kn515(_rk277._tl1592, 0, 0, _rk277._tl1592.width, _rk277._tl1592.height, _he822._yh998._dn642, (750 / 2), (500 / 2), 1);
_px1609._be390(0.0008, 50);
_px1609._me814(0.0017, 0, 100, 4, 0);
_px1609._rn387(0.0018, 0, 100, 4, 0);
_px1609._td1389 = false;
_rm966._xm563("newweapon");
}
private static function _jt1062():void{
_px1609 = _pr1270._kn515(_aw829[1], 0, 0, _rk277._mc443.width, _rk277._mc443.height, _he822._yh998._dn642, 0, 0, 0);
_px1609._gy1216(_tr690);
_px1609._sh1626(9);
_px1609._kf1221(_dg84, _rw574._lb492(), 0.0025, 45);
_px1609._se1147 = 250;
_px1609._vr1480(_td1025);
}
private static function _iu932():void{
if (_mj1492 == 1){
_ch1637(_rw574._by1162(_dg84.rotation, (0 + 180)), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 2){
_ch1637(_rw574._by1162(_dg84.rotation, (-15 + 180)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (15 + 180)), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 3){
_ch1637(_rw574._by1162(_dg84.rotation, (-20 + 180)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (0 + 180)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (20 + 180)), _ji1595, _yg1086, _qn1014);
} else {
if (_mj1492 == 4){
_ch1637(_rw574._by1162(_dg84.rotation, (-25 + 180)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (-10 + 180)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (10 + 180)), _ji1595, _yg1086, _qn1014);
_ch1637(_rw574._by1162(_dg84.rotation, (25 + 180)), _ji1595, _yg1086, _qn1014);
};
};
};
};
}
private static function _xc543():void{
_px1609 = _pr1270._kn515(_rk277._xa1227, 0, 0, 1, 1, _he822._yh998._dn642, _dg84.x, _dg84.y, 0);
_px1609._sh1626(150);
_px1609._gy1216(_be1607);
_px1609._md1262 = 10000;
_px1609._se1147 = 0;
_px1609._pr104 = true;
}
public static function _gg1392(_arg1:_uf368):void{
var _local2:Number = _rw574._vq657(_arg1.x, _arg1.y, _dg84.x, _dg84.y);
_arg1.x = (_arg1.x + (_rw574._be1379(_local2, _arg1._ly281) * _he1472._mv493));
_arg1.y = (_arg1.y + (_rw574._dm1262(_local2, _arg1._ly281) * _he1472._mv493));
if (_rw574._if1500(_arg1, _af1146._dg84) == true){
_arg1._tc794 = true;
_arg1._os1213 = false;
_sg106(_arg1);
} else {
if (_arg1.x < _arg1._ip440){
_arg1.x = _arg1._ux410;
} else {
if (_arg1.x > _arg1._ux410){
_arg1.x = _arg1._ip440;
};
};
if (_arg1.y < _arg1._eg945){
_arg1.y = _arg1._jm1029;
} else {
if (_arg1.y > _arg1._jm1029){
_arg1.y = _arg1._eg945;
};
};
if (_arg1._md1262 > 0){
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._md1262 = 0;
_arg1._mm1672(_af1146._en1283[1], 0.02, 20, 4);
};
};
};
}
public static function _xr1143():void{
if (_sw930 == false){
_um1575._mt336();
_um1575._mu1098();
_um1575._ng1413();
};
_sw930 = false;
}
public static function _ai1250():void{
var _local1:int;
while (_local1 < 4) {
_px1609 = _pr1270._kn515(_rk277._kd1220, 0, 0, _rk277._kd1220.width, _rk277._kd1220.height, _he822._yh998._dn642, 0, 0, 1);
_px1609._xy276(-128, -128, (750 + 128), (500 + 128));
if (_local1 == 0){
_px1609._ss1421(-64, -64);
_px1609.rotation = 40;
};
if (_local1 == 1){
_px1609._ss1421((749 + 64), -64);
_px1609.rotation = 145;
};
if (_local1 == 2){
_px1609._ss1421((749 + 64), (499 + 64));
_px1609.rotation = 215;
};
if (_local1 == 3){
_px1609._ss1421(-64, (499 + 64));
_px1609.rotation = 325;
};
_px1609._io238(_px1609.rotation, 0, 0.4, 0, 0, true);
_px1609._yl1629 = 5;
_px1609._xf81 = 5;
_px1609._mq1422 = BlendMode.ADD;
_px1609._td1389 = false;
_px1609._sh1626(17);
_px1609._pr104 = true;
_local1++;
};
}
private static function _sh878():void{
_px1609 = _lv349._gm1204._kn515(_kp743[_rw574._up1471._ma459(0, 3)], 0, 0, 90, 26, _he822._yh998._dn642, _dg84.x, _dg84.y, 1);
_px1609._rm1503(_rw574._up1471._tp230(-0.2, 0.2), 0, 359, 1, _rw574._up1471._tp230(0, 359));
_px1609._me814(_rw574._up1471._tp230(0.002, 0.02), 0, 6, 1, 0);
_px1609._xf81 = _rw574._up1471._tp230(0.5, 3);
_px1609._ch630(-0.0009, 1);
_px1609._mq1422 = BlendMode.ADD;
_px1609._td1389 = false;
_px1609._gy1216(_tv1324);
}
public static function _wm534(_arg1:_uf368, _arg2:int):void{
var _local3:Number = 0;
var _local4:int;
while (_local4 < _arg2) {
_px1609 = _lv349._gm1204._kn515(_rk277._tv949, 0, 0, _rk277._tv949.width, _rk277._tv949.height, _he822._yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._go304 = 1;
_px1609._mm1672(_af1146._wv596[1], 0.1, 20, 1);
_px1609._sh1626(7.5);
_px1609._xy276(-16, -16, (_he1472._dj78 + 16), (_he1472._rc1179 + 16));
_px1609._md1262 = 3700;
_px1609.x = (_px1609.x + _rw574._be1379(_local3, 50));
_px1609.y = (_px1609.y + _rw574._dm1262(_local3, 50));
_px1609._gy1216(_gg1392);
_px1609._qy180 = 100;
_px1609._wh1061(_dg84, _rw574._up1471._tp230(0.025, 0.07));
_local3 = _rw574._lb492();
_px1609._io238(_local3, 0, _rw574._up1471._tp230(0.25, 0.55), 0, 0, false);
_px1609._ai1537((1000 / 20), 0.85);
_local4++;
};
}
private static function _pc1108(_arg1:_uf368):void{
_arg1._se1147 = (_arg1._se1147 - _he1472._mv493);
if (_arg1._se1147 < 1){
_arg1._se1147 = (1000 / 20);
_hp768(_arg1);
};
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._tc794 = true;
_arg1._gy1216(null);
};
}
public static function _oc639():void{
if (_he822._vq26 == false){
_sl1002();
_dx559();
};
}
private static function _be1607(_arg1:_uf368):void{
_arg1.x = _dg84.x;
_arg1.y = _dg84.y;
_arg1._se1147 = (_arg1._se1147 - _he1472._mv493);
if (_arg1._se1147 < 1){
_arg1._se1147 = (1000 / 20);
_sh878();
_sh878();
};
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._tc794 = true;
_arg1._gy1216(null);
};
}
public static function _mb432(_arg1:_uf368):void{
if (_he822._vq26 == false){
if (_he822._gt186 == false){
if (_bh1571 > 0){
_ib16._xn128(_arg1, _dg84);
} else {
if (_dg84._nk1079 == 0){
trace("hit!");
_sw930 = true;
_fq1134();
_vu1546 = (_vu1546 - 1);
if (_vu1546 == 0){
_ne1665();
} else {
_dg84._ts367(_ey187, 0.006, 2, 3000);
_jl210(_pr1196[(_vu1546 - 1)], _dg84.x, _dg84.y);
_rm966._xm563("strike");
};
};
};
};
};
}
public static function _ti941():void{
if (_qp353 < 99){
_qp353++;
_he822._qi885();
_jl210(_rk277._is1489, _dg84.x, _dg84.y);
};
}
private static function _cp302():void{
_px1609 = _pr1270._kn515(_rk277._yy862, 0, 0, _rk277._yy862.width, _rk277._yy862.height, _he822._yh998._dn642, _dg84.x, _dg84.y, 1);
_px1609._me814(0.001, 0, 100, 3, 0);
_px1609._rn387(0.001, 0, 100, 3, 0);
_px1609._sh1626((335 / 2));
_px1609._pr104 = true;
_px1609._mq1422 = BlendMode.ADD;
_px1609._td1389 = false;
_px1609._gy1216(_ei470);
_px1609._md1262 = 1200;
_rm966._bw292("bombpickup");
}
private static function _pc962():void{
}
public static function _gq1207(_arg1:Number=2000):void{
_wy323 = 0;
_hr398 = 0;
_ib16._tg1510();
_ib16._qk638 = false;
_lv349._vc316();
_he822._rj891 = _he822._tb944;
_he822._gt186 = false;
if (_he822._gu735 == 0){
_vt466();
} else {
_dg84._ss1421((_he1472._dj78 / 2), (_he1472._rc1179 / 2));
_dg84._nk1079 = 0;
_dg84._vk951(_rk277._rw1198, 0, 0, _rk277._rw1198.width, _rk277._rw1198.height);
_dg84._sh1626(20);
_dg84._me814(-0.03, 1, 20, 3, 20);
_dg84._rn387(-0.03, 1, 20, 3, 20);
_he822._sk1086._lk434(_ib16._wu697, _arg1);
_rm966._xm563("resetplayer");
_br345 = 1250;
};
}
public static function _fq1134():void{
_mj1492 = (_mj1492 - 1);
if (_mj1492 < 1){
_mj1492 = 1;
};
_mi882();
}
private static function _ei470(_arg1:_uf368):void{
_arg1.x = (_arg1.x - _wy323);
_arg1.y = (_arg1.y - _hr398);
if (_arg1._md1262 > 0){
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._md1262 = 0;
_arg1._ch630(-0.001, 1);
};
};
}
public static function _es1182(_arg1:_uf368):void{
if (_arg1.id != 28){
_px1609 = _lv349._gm1204._kn515(_rk277._tv949, 0, 0, _rk277._tv949.width, _rk277._tv949.height, _he822._yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._go304 = 1;
_px1609._mm1672(_af1146._wv596[1], 0.1, 20, 1);
_px1609._sh1626(7.5);
_px1609._xy276(-16, -16, (_he1472._dj78 + 16), (_he1472._rc1179 + 16));
_px1609._md1262 = 3700;
_px1609._gy1216(_gg1392);
_px1609._qy180 = 100;
_px1609._wh1061(_dg84, _rw574._up1471._tp230(0.025, 0.07));
_px1609._gm610 = 0;
};
}
}
}//package
Section 46
//_bu568 (_bu568)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _bu568 {
private static var _px1609:_uf368;
public static var _yx1156:BitmapData;
public static var _rc708:Array = [_rk277._bi1549, _rk277._bi1549, _rk277._or1372, _rk277._or1372, _rk277._xl975, _rk277._xl975, _rk277._cb220, _rk277._cb220, _rk277._nw832, _rk277._nw832, _rk277._nv1339, _rk277._nv1339, _rk277._gp728, _rk277._gp728, _rk277._fl38, _rk277._fl38, _rk277._eh1259, _rk277._eh1259];
private static function _cf73(_arg1:_uf368):void{
_arg1._ot621(((_arg1.x + _arg1.target.x) / 2), ((_arg1.y + _arg1.target.y) / 2), 0.25);
}
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local7:BitmapData;
var _local8:_uf368;
var _local9:_uf368;
var _local10:int;
var _local3 = 20000;
var _local4 = 4;
var _local5 = 26;
var _local6 = 3;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local11 = _ib16._ea276;
var _local12 = _local5;
var _local13 = (_local11[_local12] - 1);
_local11[_local12] = _local13;
} else {
_yx1156 = _arg1;
_local10 = 0;
while (_local10 < 18) {
_local7 = _rc708[_local10];
_px1609 = _ib16._ij1088._kn515(_local7, 0, 0, _local7.width, _local7.height, _arg1, -1, -1, 0);
_he1472._nx1028(_px1609, 32);
_px1609._qd1101 = 135;
_px1609._xy276(-320, -320, (_he1472._dj78 + 320), (_he1472._rc1179 + 320));
_px1609._sh1626((_local7.width / 2));
_px1609._up929(_af1146._dg84, _rw574._up1471._tp230(5E-5, 0.0005), _rw574._up1471._tp230(0.15, 0.19), _rw574._up1471._tp230(5E-5, 0.0005), _rw574._up1471._tp230(0.15, 0.19));
if (_local10 > 0){
_px1609._ss1421(_local8.x, _local8.y);
_px1609.target = _local8;
_px1609._gy1216(_cf73);
_px1609._ot621(_local8.x, _local8.y, 0.1);
_px1609._uf56 = true;
};
_px1609.id = _local5;
_px1609._gu403 = _local6;
_px1609._qy180 = _local3;
_local8 = _px1609;
if (_local10 == 0){
_local9 = _px1609;
};
_px1609._pb1487 = _local9;
_local10++;
};
};
}
public static function _lj1393(_arg1:_uf368):void{
var _local2:_uf368;
for each (_local2 in _ib16._ij1088._rh308) {
if (_local2._pb1487 == _arg1){
_local2._tc794 = true;
_local2._os1213 = false;
_lv349._af629(_local2.x, _local2.y, _he822._yh998._dn642, 1, 4);
};
};
_af1146._wm534(_arg1, 15);
}
public static function _xh499():void{
}
}
}//package
Section 47
//_ci552 (_ci552)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _ci552 {
public static var _qi914:Array = [_aw1346, _lo1633, _ak1068, _gf209];
public static var _lo1633:Object = new Object();
public static var _ak1068:Object = new Object();
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static var _gf209:Object = new Object();
public static function _ax548(_arg1:BitmapData):void{
var _local2 = 300;
var _local3 = 10;
var _local4 = 3;
var _local5 = 3;
var _local6:Number = 0;
var _local7:Number = 0;
if (_ib16._ea276[_local4] > _local3){
_ib16._nk274--;
var _local8 = _ib16._ea276;
var _local9 = _local4;
var _local10 = (_local8[_local9] - 1);
_local8[_local9] = _local10;
} else {
if (_local5 == 1){
_local6 = 24;
_local7 = 24;
};
if (_local5 == 2){
_local6 = 36;
_local7 = 36;
};
if (_local5 == 3){
_local6 = 48;
_local7 = 48;
};
if (_local5 == 4){
_local6 = 60;
_local7 = 60;
};
_px1609 = _ib16._ij1088._kn515(_qi914[(_local5 - 1)][0], 0, 0, _local6, _local7, _arg1, -1, -1, 0);
_he1472._nx1028(_px1609, 64);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._wh1061(_af1146._dg84, _rw574._up1471._tp230(0.005, 0.06), 0, 5E-6, 0);
_px1609._mm1672(_qi914[(_local5 - 1)][0], _rw574._up1471._tp230(0.05, 0.2), 20, 1, 0);
_px1609._sh1626((_local6 * 0.4));
_px1609._gy1216(_cf73);
_px1609._gu403 = _local5;
_px1609.id = _local4;
_px1609._qy180 = _local2;
};
}
private static function _cf73(_arg1:_uf368):void{
var _local2:int;
var _local4:Object;
var _local3:Number = _rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y);
_local2 = (_local3 / 5.6);
if (_local2 > 63){
_local2 = 63;
};
_local4 = _qi914[(_arg1._gu403 - 1)];
_arg1._ud376 = _local4[_local2];
}
public static function _xh499():void{
var _local2:int;
var _local1:Number = 0;
_local1 = 0;
_local2 = 0;
while (_local2 < 64) {
_rw574._wy1430(_aw1346, _local2, _rk277._jw1129, 0, -0.015, 20, true, _local1, 0.5);
_rw574._wy1430(_lo1633, _local2, _rk277._jw1129, 0, -0.015, 20, true, _local1, 0.75);
_rw574._wy1430(_ak1068, _local2, _rk277._jw1129, 0, -0.015, 20, true, _local1, 1);
_rw574._wy1430(_gf209, _local2, _rk277._jw1129, 0, -0.015, 20, true, _local1, 1.25);
_local1 = (_local1 + (360 / 64));
_local2++;
};
}
}
}//package
Section 48
//_ck725 (_ck725)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
import caurina.transitions.*;
public class _ck725 {
private static var _qq1597:_uf368;
private static var _qg906:_uf368;
private static var _px1609:_uf368;
private static var _fm1401:_uf368;
private static var _rn1243:BitmapData;
public static function _xh499():void{
}
public static function _nu123(_arg1:_uf368):void{
_qq1597._tc794 = true;
_qq1597._gy1216(null);
_fm1401._tc794 = true;
_fm1401._gy1216(null);
_lv349._af629(_qg906.x, _qg906.y, _he822._yh998._dn642, 16, 0);
_af1146._wm534(_arg1, 65);
}
private static function _yd38(_arg1:_uf368):void{
if (_qg906.state == 1){
if (_qg906._lc262 > 0){
if (_arg1._se1147 < _qg906.y){
_arg1._se1147 = (_arg1._se1147 + (0.2 * _he1472._mv493));
} else {
if (_arg1._se1147 > _qg906.y){
_arg1._se1147 = (_arg1._se1147 - (0.2 * _he1472._mv493));
};
};
if (_rw574._bk1717((_arg1.x - 20), (_arg1.y - 75), 40, 150, _qg906.x, _qg906.y, 35) == true){
_qg906.x = ((_arg1.x - 20) - 17);
_qg906._lc262 = -(_qg906._lc262);
};
} else {
if (_arg1._se1147 < 270){
_arg1._se1147 = (_arg1._se1147 + (0.05 * _he1472._mv493));
} else {
if (_arg1._se1147 > 270){
_arg1._se1147 = (_arg1._se1147 - (0.05 * _he1472._mv493));
};
};
};
};
_arg1._ss1421(_arg1._md1262, _arg1._se1147);
if (_af1146._dg84.x > 653){
if (_rw574._hg629(10) == true){
if (_af1146._dg84.y > _arg1.y){
_xs1434(_arg1.x, _arg1.y, 90);
} else {
_xs1434(_arg1.x, _arg1.y, 270);
};
};
};
}
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local3 = 40000;
var _local4 = 1;
var _local5 = 21;
var _local6 = 4;
_rn1243 = _arg1;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local7 = _ib16._ea276;
var _local8 = _local5;
var _local9 = (_local7[_local8] - 1);
_local7[_local8] = _local9;
} else {
_qg906 = _ib16._ij1088._kn515(_rk277._xg1054, 0, 0, 130, 130, _arg1, -1, -1, 0);
_qg906._qd1101 = 400;
if (_af1146._mj1492 == 3){
_qg906._qd1101 = 500;
};
if (_af1146._mj1492 == 4){
_qg906._qd1101 = 600;
};
_qg906._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_qg906._sh1626(35);
_qg906._ss1421((700 / 2), -130);
_qg906._md1262 = _qg906.x;
_qg906._se1147 = _qg906.y;
_qg906._lc262 = 0.2;
_qg906._mb1382 = 0.2;
_qg906._gy1216(_ty946);
_qg906.id = _local5;
_qg906._gu403 = _local6;
_qg906._qy180 = _local3;
_qg906.state = 0;
_qg906._xv42 = 5000;
_qq1597 = _ib16._se1010._kn515(_rk277._nd862, 0, 0, 104, 212, _arg1, -1, -1, 0);
_qq1597._ss1421(-104, (500 / 2));
_qq1597._md1262 = _qq1597.x;
_qq1597._se1147 = _qq1597.y;
_qq1597._gy1216(_sh252);
_qq1597.id = 22;
_qq1597._os1213 = false;
_fm1401 = _ib16._se1010._kn515(_rk277._nd862, 0, 0, 104, 212, _arg1, -1, -1, 0);
_fm1401._ss1421((699 + 104), (500 / 2));
_fm1401._md1262 = _fm1401.x;
_fm1401._se1147 = _fm1401.y;
_fm1401._gy1216(_yd38);
_fm1401.id = 22;
_fm1401._os1213 = false;
};
}
private static function _sh252(_arg1:_uf368):void{
if (_qg906.state == 1){
if (_qg906._lc262 < 0){
if (_arg1._se1147 < _qg906.y){
_arg1._se1147 = (_arg1._se1147 + (0.2 * _he1472._mv493));
} else {
if (_arg1._se1147 > _qg906.y){
_arg1._se1147 = (_arg1._se1147 - (0.2 * _he1472._mv493));
};
};
if (_rw574._bk1717((_arg1.x - 20), (_arg1.y - 75), 40, 150, _qg906.x, _qg906.y, 35) == true){
_qg906.x = ((_arg1.x + 20) + 17);
_qg906._lc262 = -(_qg906._lc262);
};
} else {
if (_arg1._se1147 < 270){
_arg1._se1147 = (_arg1._se1147 + (0.05 * _he1472._mv493));
} else {
if (_arg1._se1147 > 270){
_arg1._se1147 = (_arg1._se1147 - (0.05 * _he1472._mv493));
};
};
};
};
_arg1._ss1421(_arg1._md1262, _arg1._se1147);
if (_af1146._dg84.x < 39){
if (_rw574._hg629(10) == true){
if (_af1146._dg84.y > _arg1.y){
_xs1434(_arg1.x, _arg1.y, 90);
} else {
_xs1434(_arg1.x, _arg1.y, 270);
};
};
};
}
private static function _ty946(_arg1:_uf368):void{
var _local2:int;
var _local3:int;
if (_arg1.state == 1){
_arg1._md1262 = (_arg1._md1262 + (_arg1._lc262 * _he1472._mv493));
_arg1._se1147 = (_arg1._se1147 + (_arg1._mb1382 * _he1472._mv493));
if (_arg1._se1147 < 50){
_arg1._se1147 = 50;
_arg1._mb1382 = -(_arg1._mb1382);
} else {
if (_arg1._se1147 > (499 - 30)){
_arg1._se1147 = (499 - 30);
_arg1._mb1382 = -(_arg1._mb1382);
};
};
_arg1._xv42 = (_arg1._xv42 - _he1472._mv493);
if (_arg1._xv42 < 1){
_arg1._xv42 = _rw574._up1471._tp230(3000, 8000);
_local2 = _rw574._up1471._ma459(10, 30);
_local3 = 0;
while (_local3 < _local2) {
_px1609 = _ib16._se1010._kn515(_rk277._wg23, 0, 0, 33, 33, _rn1243, _arg1.x, _arg1.y, 0);
_px1609._xy276(-16, -16, (750 + 16), (500 + 16));
_px1609._io238((_local3 * (360 / _local2)), 0, 0.15);
_px1609._sh1626(5.25);
_local3++;
};
_rm966._bw292("enemyfire");
};
} else {
_arg1._se1147 = (_arg1._se1147 + (0.05 * _he1472._mv493));
if (_arg1._se1147 > 260){
_arg1._se1147 = 260;
_arg1.state = 1;
Tweener.addTween(_qq1597, {_md1262:32, time:0.8, transition:"linear"});
Tweener.addTween(_fm1401, {_md1262:(699 - 32), time:0.8, transition:"linear"});
};
};
_arg1._ss1421(_arg1._md1262, _arg1._se1147);
}
public static function _xs1434(_arg1:Number, _arg2:Number, _arg3:Number):void{
_px1609 = _ib16._se1010._kn515(_rk277._wg23, 0, 0, 33, 33, _rn1243, _arg1, _arg2, 0);
_px1609._xy276(-16, -16, (750 + 16), (500 + 16));
_px1609._io238(_arg3, 0, 0.15);
_px1609._sh1626(5.25);
_rm966._bw292("enemyfire");
}
}
}//package
Section 49
//_dt1661 (_dt1661)
package {
public class _dt1661 {
public var _wm1308:int;
public var _em819:Array;
public var _ow842:Number;// = 0
}
}//package
Section 50
//_fq1664 (_fq1664)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _fq1664 {
public static var _uh966:Object = new Object();
private static var _px1609:_uf368;
public static function _ax548(_arg1:BitmapData):void{
var _local6:BitmapData;
var _local2 = 400;
var _local3 = 60;
var _local4 = 6;
var _local5:int = _rw574._up1471._ma459(1, 4);
var _local7:Number = 0;
var _local8:Number = 0;
if (_ib16._ea276[_local4] > _local3){
_ib16._nk274--;
var _local9 = _ib16._ea276;
var _local10 = _local4;
var _local11 = (_local9[_local10] - 1);
_local9[_local10] = _local11;
} else {
if (_local5 == 1){
_local6 = _uh966[1];
_local7 = 18;
_local8 = 18;
};
if (_local5 == 2){
_local6 = _uh966[2];
_local7 = 27;
_local8 = 27;
};
if (_local5 == 3){
_local6 = _uh966[3];
_local7 = 36;
_local8 = 36;
};
if (_local5 == 4){
_local6 = _uh966[4];
_local7 = 45;
_local8 = 45;
};
_px1609 = _ib16._ij1088._kn515(_local6, 0, 0, _local7, _local8, _arg1, -1, -1, 0);
if (_local5 == 1){
_px1609._qd1101 = _rw574._up1471._tp230(0, 2);
};
if (_local5 == 2){
_px1609._qd1101 = _rw574._up1471._tp230(3, 5);
};
if (_local5 == 3){
_px1609._qd1101 = _rw574._up1471._tp230(6, 8);
};
if (_local5 == 4){
_px1609._qd1101 = _rw574._up1471._tp230(9, 11);
};
_he1472._nx1028(_px1609, 64);
_px1609._io238(_rw574._up1471._tp230(0, 359), 0, _rw574._up1471._tp230(0.01, 0.08), 0, 0, false);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._mm1672(_local6, _rw574._up1471._tp230(0.025, 0.03), 32, 2, 0);
if (_rw574._hg629() == true){
_px1609._xi1222 = -(_px1609._xi1222);
};
_px1609._sh1626((_local7 * 0.3));
_px1609._ug1030(_eq85);
_px1609.id = _local4;
_px1609._gu403 = _local5;
_px1609._qy180 = _local2;
};
}
public static function _xh499():void{
_rw574._qh982(_uh966, 1, _rk277._tn254, 1, 1, 1, 32, 0.5);
_rw574._qh982(_uh966, 2, _rk277._tn254, 1, 1, 1, 32, 0.75);
_rw574._qh982(_uh966, 3, _rk277._tn254, 1, 1, 1, 32, 1);
_rw574._qh982(_uh966, 4, _rk277._tn254, 1, 1, 1, 32, 1.25);
}
private static function _eq85(_arg1:_uf368, _arg2:_uf368):void{
_arg1.x = (_arg1.x + (_arg2._xx1283 * _he1472._mv493));
_arg1.y = (_arg1.y + (_arg2._ke128 * _he1472._mv493));
}
}
}//package
Section 51
//_gn1592 (_gn1592)
package {
import flash.events.*;
import classes.*;
import flash.display.*;
import flash.net.*;
import mochi.*;
import flash.geom.*;
import flash.filters.*;
import flash.utils.*;
import caurina.transitions.*;
import flash.ui.*;
public class _gn1592 {
public static var filter:BitmapFilter = new ConvolutionFilter(3, 3, [1, 1, 1, 1, 1, 1, 1, 1, 1], 9, -1);
public static var _mo474:Number = 0;
public static var _mt1037:_uf368;
public static var _fn1602:Boolean;
public static var _px1609:_uf368;
public static var _bs1205:Number = 0;
public static var _ic886:BitmapData;
public static var _yh998:_ot570;
public static var _km1403:Array = [_rk277._iy985, _rk277._ed342, _rk277._qy1261, _rk277._vv1547, _rk277._wl1570, _rk277._fv188, _rk277._ee1433, _rk277._bn665];
public static var _aw1060:Boolean;
public static var _gw558:Boolean;
public static var State:int;
private static var _qr783:Sprite;
public static var _mc1611:Boolean;
public static var _ft1675:Boolean;
public static var _de991:Number = 0;
public static var _ba999:_rd716;
public static var _ql667:_nx31;
public static var _rb460:Number = 0;
public static function _fc837(_arg1:_uf368):void{
if (_arg1._yl1629 > 3){
_arg1._gy1216(null);
_arg1._ch630(-0.0002, 0.6, 0, 0.6);
};
}
public static function _wp846():void{
}
public static function _do654():void{
var _local1:BitmapData;
var _local2:Number = 0;
_mo474++;
if (_mo474 < 9){
_local1 = _km1403[(_mo474 - 1)];
_px1609 = _ql667._kn515(_local1, 0, 0, 300, 200, _yh998._dn642, 350, 250, 1);
if ((_mo474 % 2) == 0){
_local2 = 180;
} else {
_local2 = 0;
};
_px1609._io238(_local2, 0, 0.135, 0, 0, false);
_px1609._ch630(0.0004, 0, 0, 0.6);
_px1609._td1389 = true;
_px1609._br1109(0.00065, 0, 10, 3, 0);
_px1609._gy1216(_fc837);
};
}
public static function Init(_arg1:Sprite):void{
_qr783 = _arg1;
_yh998 = new _ot570();
_yh998.Init(_arg1, _he1472._dj78, _he1472._rc1179, false, 4278190080, true);
_yh998._rl373.alpha = 0;
_yh998._rl373.visible = false;
_ql667 = new _nx31();
}
public static function _ig1054(_arg1:Number, _arg2:Number, _arg3:Number):void{
var _local4:int;
_he822._sk1086._ig1054(_arg3);
_yh998._vt140();
_yh998._iv943();
_yf349._ig1054();
_ql667._cd171(_arg3);
_rw574._jy699(_rk277._oc636, (350 - (_rk277._oc636.width / 2)), int(_rb460), 0, 0, _rk277._oc636.width, _rk277._oc636.height, _yh998._dn642, true);
_rw574._jy699(_rk277._cd1707, 0, 400, 0, 0, 700, 100, _yh998._dn642);
_rw574._jy699(_rk277._eb223, 0, 0, 0, 0, 700, 100, _yh998._dn642);
_yh998._vm1651();
if (_aw1060 == true){
if (_ft1675 == false){
_rb460 = (_rb460 - 0.65);
if (_mc1611 == false){
if (_rb460 < -730){
_mc1611 = true;
_px1609 = _ql667._kn515(_rk277._rw1198, 0, 0, _rk277._rw1198.width, _rk277._rw1198.height, _yh998._dn642, 350, 250, 1);
_px1609._be390(0.0004, 50);
_px1609.rotation = 270;
_px1609._td1389 = true;
_px1609._br1109(0.002, 0, 100, 3, 0);
};
};
if (_rb460 < -950){
_ft1675 = true;
Tweener.addTween(_yh998._rl373, {alpha:0, time:1, transition:"linear", onComplete:_tl1479});
_he1472._ml674 = _he1472._xy891;
};
};
_bs1205 = (_bs1205 + _arg3);
if (_bs1205 > 5800){
_bs1205 = 0;
_do654();
};
} else {
_de991 = (_de991 - _arg3);
if (_de991 < 1){
_aw1060 = true;
};
};
}
public static function _fj1529():void{
Tweener.addTween(_yh998._rl373, {alpha:0, time:2, transition:"linear", onComplete:_aa1667});
_gw558 = false;
}
public static function _qf314(_arg1:Event):void{
_ft1675 = true;
Tweener.addTween(_yh998._rl373, {alpha:0, time:1, transition:"linear", onComplete:_tl1479});
_he1472._ml674 = _he1472._xy891;
}
private static function _aa1667():void{
_yh998._rl373.visible = false;
}
public static function _pm486():void{
_yh998._rh308._vc316();
_ba999 = _yh998._rh308._cc1534(_yh998._rl373, _rk277._fx657, ((350 - (_rk277._fx657.width / 2)) - 2), ((250 - (_rk277._fx657.height / 2)) - 2), 1, _qf314, _he1472._cr574, _he1472._fm1215);
}
public static function _tl1479():void{
_ql667._vc316();
_yh998._rl373.visible = false;
_yh998._ct375();
_yf349._bu163();
_gj916._cw945();
_rk277._oc636 = null;
_rk277._iy985 = null;
_rk277._ed342 = null;
_rk277._qy1261 = null;
_rk277._vv1547 = null;
_rk277._wl1570 = null;
_rk277._fv188 = null;
_rk277._ee1433 = null;
_rk277._bn665 = null;
_km1403 = null;
_gw558 = false;
_ss1375._id1125();
}
public static function _id1125():void{
_of949._mu960();
_yh998._eg504(true);
_yh998._rl373.visible = true;
_gw558 = true;
_pm486();
Tweener.addTween(_yh998._rl373, {alpha:1, time:2, transition:"linear"});
_he1472._ml674 = _ig1054;
_aw1060 = false;
_mc1611 = false;
_ft1675 = false;
_rb460 = 500;
_de991 = 2000;
_yf349.Init(2000, _yh998._dn642);
_gj916._xm563("title");
}
}
}//package
Section 52
//_he1472 (_he1472)
package {
import flash.events.*;
import classes.*;
import flash.display.*;
import flash.net.*;
import com.urbansquall.display.*;
import mochi.*;
import flash.geom.*;
import flash.filters.*;
import flash.utils.*;
import caurina.transitions.*;
import flash.system.*;
import flash.text.*;
import flash.ui.*;
public class _he1472 extends InitializedSprite {
private var _ky1534:String;
public static const _ch791:int = 3;
public static const _is831:int = 1;
public static const _dy940:int = 2;
public static var _mv493:Number;
public static var _gg961:Sprite;
public static var _ho349:_rd716;
public static var _lr1723:_is771 = new _is771();
public static var _ml674:Function;
public static var _lf1297:Number = 1;
public static var _yl1448:Boolean;
public static var _ur31:Boolean = false;
public static var _ee1602:BlurFilter;
public static var _wo1191:Boolean;
public static var agi_url:String = "http://agi.armorgames.com/assets/agi/AGI.swf";
public static var agi_busy:Boolean;
public static var _qr783:Stage;
public static var _xx207:Function;
public static var _rl369:int = 35;
public static var _de1347:Number = 1;
public static var _dj78:int = 700;
public static var _sf1080:_al1402;
public static var _eu1004:_al1402;
public static var agi_loader:Loader;
public static var _rc1179:int = 500;
public static var _gj1555:Number;
public static var agi_urlRequest:URLRequest;
public static var agi_api;
public static var _un557:Number = 1;
public static var _ft187:SharedObject = SharedObject.getLocal(_li1085);
public static var _jv844:int = 1;
public static var _bw1493:Boolean = false;
public static var _ci1625:Number;
public static var _lh1716:Number;
public static var _li1085:String = "RetroShoot360";
public static var _ba999:_rd716;
public static var Transition:_ot570;
public static var armorgamesmc:MovieClip;
public function _he1472():void{
}
private function _pc1028():String{
var _local2:String;
var _local1:String = this.root.loaderInfo.url;
_local2 = _local1;
return (_local2.toLowerCase());
}
private function _sf1274(_arg1:Event):void{
_mv493 = _bx367._oa876();
if (_af1146._bh1571 > 0){
_mv493 = (_mv493 * 0.5);
};
_gj1555 = mouseX;
_lh1716 = mouseY;
if (_ci1625 > 0){
_ci1625 = (_ci1625 - _mv493);
if (_ci1625 < 1){
_ci1625 = 0;
};
} else {
_ml674(_gj1555, _lh1716, _mv493);
};
_of949._ny1521 = false;
}
private function _dj1500():void{
_yl1448 = false;
Security.allowDomain(agi_url);
Security.allowInsecureDomain(agi_url);
agi_urlRequest = new URLRequest(agi_url);
agi_loader = new Loader();
agi_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, _md1656);
agi_loader.load(agi_urlRequest);
}
private function _uo1382():void{
if (_wo1191 == true){
_gn1592._id1125();
_ml674 = _gn1592._ig1054;
} else {
_ss1375._id1125();
_ml674 = _ss1375._ig1054;
};
_bx367._hd755();
_xb191._ve93();
stage.addEventListener(Event.ENTER_FRAME, _sf1274);
}
private function _bm646():void{
var _local1:int;
_eu1004 = new _al1402();
_eu1004._mf1181(_rk277._un551, 2);
_sf1080 = new _al1402();
_sf1080._mf1181(_rk277._no1669, 2);
_eu1004._uy403(32, 0, 0, 16, 16);
_sf1080._uy403(32, 0, 0, 16, 16);
_local1 = 0;
while (_local1 < 26) {
_eu1004._uy403((65 + _local1), (17 + (_local1 * 17)), 0, 16, 16);
_sf1080._uy403((65 + _local1), (17 + (_local1 * 17)), 0, 16, 16);
_local1++;
};
_local1 = 0;
while (_local1 < 10) {
_eu1004._uy403((48 + _local1), ((27 * 17) + (_local1 * 17)), 0, 16, 16);
_sf1080._uy403((48 + _local1), ((27 * 17) + (_local1 * 17)), 0, 16, 16);
_local1++;
};
_eu1004._uy403(46, (37 * 17), 0, 16, 16);
_eu1004._uy403(95, (38 * 17), 0, 16, 16);
_sf1080._uy403(46, (37 * 17), 0, 16, 16);
_sf1080._uy403(95, (38 * 17), 0, 16, 16);
_eu1004._uy403(63, (39 * 17), 0, 15, 16);
_sf1080._uy403(63, (39 * 17), 0, 15, 16);
}
override protected function Init():void{
_qr783 = stage;
stage.frameRate = _rl369;
stage.quality = StageQuality.MEDIUM;
stage.showDefaultContextMenu = false;
_of949.Init(stage);
_rm966.Init();
_rm966._ax548("baddiehit", new _rk277._fq481(), 0, 0);
_rm966._ax548("baddiekilled1", new _rk277._eh206(), 0, 0);
_rm966._ax548("baddiekilled2", new _rk277._co1550(), 0, 0);
_rm966._ax548("baddiekilled3", new _rk277._vo1158(), 0, 0);
_rm966._ax548("newlevel", new _rk277._fo858(), 0, 0);
_rm966._ax548("laser", new _rk277._nr664(), 0, 0);
_rm966._ax548("crystalpickup", new _rk277._jg759(), 0, 0);
_rm966._ax548("bombpickup", new _rk277._lj54(), 0, 0);
_rm966._ax548("reload", new _rk277._yr1121(), 0, 0);
_rm966._ax548("playerhit", new _rk277._th860(), 0, 0);
_rm966._ax548("resetplayer", new _rk277._uk426(), 0, 0);
_rm966._ax548("pickupsound", new _rk277._ew1365(), 0, 0);
_rm966._ax548("sputter", new _rk277._bs74(), 0, 0);
_rm966._ax548("flame", new _rk277._hj219(), 0, 0);
_rm966._ax548("strike", new _rk277._im1533(), 0, 0);
_rm966._ax548("smashhit", new _rk277._cb1105(), 0, 0);
_rm966._ax548("smashshoot", new _rk277._tv678(), 0, 0);
_rm966._ax548("smashufoshoot", new _rk277._ex98(), 0, 0);
_rm966._ax548("bubble", new _rk277._uv1604(), 50, 0);
_rm966._ax548("enemyfire", new _rk277._mt1051(), 0, 0);
_rm966._ax548("nicebeaver", new _rk277._lf1020(), 0, 0);
_rm966._ax548("quack", new _rk277._su60(), 0, 0);
_rm966._ax548("superman", new _rk277._mg1388(), 0, 0);
_rm966._ax548("newweapon", new _rk277._cs378(), 0, 0);
_gj916.Init();
_gj916._ax548("track1", new _rk277._ks1301(), 0, 1000);
_gj916._ax548("title", new _rk277._dx548(), 18, 1000);
_gj916._ax548("titleloop", new _rk277._dt1441(), 20, 0);
_gj916._ax548("smashmusic", new _rk277._ps763(), 18, 1000);
_pm411();
_bx367._tn743((1000 / 25));
_wo1191 = _sj1012();
_gg961 = new Sprite();
_gg961.x = 0;
_gg961.y = 0;
_gg961.scrollRect = new Rectangle(0, 0, _dj78, _rc1179);
addChild(_gg961);
_dr1218();
}
private function _dr1218():void{
_um1575._au157();
_gn1592.Init(_gg961);
_ss1375.Init(_gg961);
_he822.Init(_gg961);
_om527.Init(_gg961);
_og247.Init(_gg961);
_dj1500();
_cl615();
}
private function _sj1012():Boolean{
var _local1:String = _pc1028();
var _local2:Boolean;
var _local3:Array = ["armorgames.com"];
var _local4:int;
while (_local4 < _local3.length) {
if (_local1.indexOf(_local3[_local4]) > 0){
_local2 = true;
};
_local4++;
};
return (_local2);
}
private function _nr679(_arg1:String):void{
}
private function _pm411():void{
_lv349.Init();
_af1146._xh499();
_ib16._xh499();
_yf492._xt1326();
_om527._xh499();
_bm646();
}
private function _cl615():void{
stage.quality = StageQuality.HIGH;
stage.addEventListener(Event.ENTER_FRAME, _no1176);
armorgamesmc = new armorGamesIntroMC();
armorgamesmc.scaleX = 1.5;
armorgamesmc.scaleY = 1.5;
armorgamesmc.x = (_dj78 / 2);
armorgamesmc.y = (_rc1179 / 2);
armorgamesmc.mouseEnabled = true;
armorgamesmc.buttonMode = true;
armorgamesmc.addEventListener(MouseEvent.CLICK, _hb1574);
stage.addChild(armorgamesmc);
armorgamesmc.gotoAndPlay(2);
_bx367._hd755();
}
private function _md1656(_arg1:Event):void{
var _local2 = "f0ad50e57b3eb67ad32db047c6d953d5";
var _local3 = "retroshoot360";
agi_api = _arg1.currentTarget.content;
addChild(agi_api);
agi_api.init(_local2, _local3);
_yl1448 = true;
trace("AGI Loaded!");
}
private function _vw1582():void{
}
private function _no1176(_arg1:Event):void{
if (armorgamesmc.currentFrame == 218){
stage.quality = StageQuality.MEDIUM;
armorgamesmc.removeEventListener(MouseEvent.CLICK, _hb1574);
stage.removeChild(armorgamesmc);
armorgamesmc.enabled = false;
armorgamesmc.visible = false;
armorgamesmc = null;
stage.removeEventListener(Event.ENTER_FRAME, _no1176);
_uo1382();
};
}
public static function _cr574(_arg1:Event):void{
Tweener.addTween(_arg1.currentTarget, {brightness:1.4, time:0.25, transition:"linear"});
}
public static function _wn126():void{
Transition._vc1162(false);
_xx207();
}
public static function _pv1091(_arg1:_ot570, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:String, _arg7:Function, _arg8:Function, _arg9:Function):void{
}
public static function _nx1028(_arg1:_uf368, _arg2:Number=32):Number{
var _local3:int = _rw574._up1471._ma459(1, 4);
if (_local3 == 1){
_arg1._ss1421(-(_arg2), _rw574._up1471._tp230(0, (_slot1._rc1179 - 1)));
} else {
if (_local3 == 2){
_arg1._ss1421((_slot1._dj78 + _arg2), _rw574._up1471._tp230(0, (_slot1._rc1179 - 1)));
} else {
if (_local3 == 3){
_arg1._ss1421(_rw574._up1471._tp230(0, (_slot1._dj78 - 1)), -(_arg2));
} else {
if (_local3 == 4){
_arg1._ss1421(_rw574._up1471._tp230(0, (_slot1._dj78 - 1)), ((_slot1._rc1179 - 1) + _arg2));
};
};
};
};
return (_local3);
}
public static function _lk1012(_arg1:Function):void{
Transition.scale = 0;
Transition._vc1162(true);
Tweener.addTween(Transition, {scale:14, time:1, transition:"linear", onComplete:_arg1});
}
public static function _hb1574(_arg1:Event):void{
_rw574._pn1711("http://armorgames.com");
}
public static function _xy891(_arg1:Number, _arg2:Number, _arg3:Number):void{
}
public static function _fl208(_arg1:Function):void{
_xx207 = _arg1;
Tweener.addTween(Transition, {scale:0, time:1, transition:"linear", onComplete:_wn126});
}
public static function _ss988(_arg1:Event):void{
}
public static function _fm1215(_arg1:Event):void{
Tweener.addTween(_arg1.currentTarget, {brightness:1, time:0.25, transition:"linear"});
}
}
}//package
Section 53
//_he822 (_he822)
package {
import flash.events.*;
import classes.*;
import flash.display.*;
import flash.net.*;
import mochi.*;
import flash.geom.*;
import flash.filters.*;
import flash.utils.*;
import caurina.transitions.*;
import flash.ui.*;
public class _he822 {
public static var _tp1528:Number;
public static var _nm1701:Boolean;
public static var _dt1403:Boolean = false;
public static var _rj891:Function;
public static var _px1609:_uf368;
public static var _vq26:Boolean;
public static var _uk303:Number = 0;
public static var _eq894:Number = 0;
public static var _gu735:int;
public static var _cg1707:Number = 1;
public static var _od1678:int;
public static var _dc52:Boolean;
public static var _ey142:Number = 1;
public static var _gs844:_aw957 = new _aw957();
public static var _yn1133:Boolean = false;
public static var _sl35:Boolean;
public static var _yl891:BitmapData;
public static var _av443:_uf368;
public static var _sk1673:Number = 1;
public static var _xl1512:_ot570;
public static var _ao412:MochiDigits = new MochiDigits();
public static var _ad262:BitmapData = new BitmapData(700, 500, false, 4278190080);
public static var _ky836:Boolean;
public static var State:int;
public static var _ap1424:int;
public static var _sb1415:_yi26 = new _yi26();
public static var _id661:Boolean = false;
public static var _ba999:_rd716;
public static var _se477:Number;
public static var _hx830:Number = 0;
public static var _gf734:int;
public static var _fb216:BitmapData;
public static var _ur1642:Number = 1;
public static var _vg221:Boolean;
public static var _ss627:Function;
public static var _pv1497:Number;
public static var _gw558:Boolean;
public static var _yh998:_ot570;
public static var _ho1212:Number = 0;
public static var _nr1154:_yi26 = new _yi26();
public static var _kj1140:_uf368;
public static var _if343:Boolean;
public static var _nt369:Boolean;
public static var _gd841:Boolean;
public static var _md441:Number = 0;
public static var _rg598:Boolean = false;
private static var _qr783:Sprite;
public static var _at1725:Number = 0;
public static var _iy345:int;
public static var _md1249:Boolean;
public static var _na1492:Boolean;
public static var _do647:int;
public static var _tf1595:Boolean = false;
public static var _uv872:int;
public static var _sk1086:_yq299;
public static var _jh459:Number = 1;
public static var _ss1485:Number = 0;
public static var _gt186:Boolean;
public static var _nt428:String;
public static var _jd932:Number = 1;
public static function _kd900():void{
_he1472._lr1723.draw(_yh998._dn642, ("" + _xb191._nl1695()), 10, (_he1472._rc1179 - 15));
}
private static function _cr574(_arg1:Event):void{
Tweener.addTween(_arg1.currentTarget, {brightness:2, time:0.25, transition:"linear"});
}
public static function _sa512(_arg1:_uf368):void{
_arg1.x = (_arg1.x - _af1146._wy323);
_arg1.y = (_arg1.y - _af1146._hr398);
}
public static function _ko342(_arg1:_uf368):void{
_arg1._tc794 = true;
}
public static function _bk106():void{
_sl35 = true;
_ib16._qk638 = false;
_af1146._nw1700();
_sg1300();
_uk303 = 1;
_ss1485 = 0;
_md441 = 0;
_rj891 = _il1210;
_kj1140 = _lv349._va1163._kn515(_rk277._px1561, 0, 0, _rk277._px1561.width, _rk277._px1561.height, _yh998._dn642, 0, 0, 1);
_kj1140._ss1421(350, 220);
_kj1140._br1109(0.001, 0, 1, 3, 0);
_kj1140._td1389 = false;
}
public static function _hu925():void{
var _local1:BitmapData = new _rk277._qe379().bitmapData;
var _local2:BitmapData = new _rk277._qj671().bitmapData;
_rk277._hp548.lock();
_rk277._ak1208.lock();
_rw574._jy699(_local1, 0, 0, 0, 0, 600, 600, _rk277._hp548, true);
_rk277._ak1208.fillRect(new Rectangle(0, 0, 600, 600), 0);
_rw574._jy699(_local2, 0, 0, 0, 0, 600, 600, _rk277._ak1208, true);
_rk277._hp548.unlock();
_rk277._ak1208.unlock();
_local1 = null;
_local2 = null;
if (_yn1133 == false){
if (_um1575._rr151() == true){
_gm90();
};
_vq26 = true;
};
_nt369 = true;
}
public static function _pm486():void{
_ba999 = _yh998._rh308._kn515(_yh998._rl373, _rk277._qo1068, (((700 / 2) - (_rk277._qo1068.width / 2)) - 2), (((500 / 2) - (_rk277._qo1068.height / 2)) - 2), 1);
}
public static function _xq168(_arg1:Number):void{
_af1146._wy323 = 0;
_af1146._hr398 = 0;
if (_rw574._hg629(5) == true){
_lv349._af629(_rw574._up1471._tp230(0, 749), _rw574._up1471._tp230(0, 499), _yh998._dn642, _rw574._up1471._ma459(1, 4));
};
_yh998._vt140();
_rw574._jy699(_ad262, 0, 0, 0, 0, 700, 500, _yh998._dn642, false);
_lv349._va1163._cd171(_arg1);
_ib16._ig1054();
_lv349._gm1204._tw1613(_sa512, _arg1);
_af1146._pr1270._cd171(_he1472._mv493);
_lv349._ow1485._tw1613(_sa512, _arg1);
_np825();
_yh998._vm1651();
if (_eq894 > 1){
_eq894 = (_eq894 - _arg1);
if (_eq894 < 1){
_eq894 = 0;
_so552();
};
};
}
public static function _id1125():void{
trace("game opened");
_of949._mu960();
_of949._ny1521 = false;
_of949._nb1479 = false;
_yh998._rl373.alpha = 0;
_yh998._iv943();
_yh998._rl373.visible = true;
_sk1086._mi1586();
_yl891 = new _rk277._de54().bitmapData;
_ao412.value = 0;
_xa1271(0);
_gf734 = 1;
_gu735 = 0;
_af1146._eo543();
_af1146._yy1343();
_yh998._rh308._vc316();
_pm486();
_ib16.Init(_yh998._dn642);
_af1146.Init(_yh998._dn642);
_lv349._vc316();
_sb1415.Init(_rk277._hp548, _yh998._dn642, 0, 0, 600, 600, 0, 24, _he1472._dj78, (_he1472._rc1179 - 24));
_nr1154.Init(_rk277._ak1208, _yh998._dn642, 0, 0, 600, 600, 0, 24, _he1472._dj78, (_he1472._rc1179 - 24));
_gs844.Init(75, _yh998._dn642, 0, 0, _he1472._dj78, _he1472._rc1179);
_vg221 = false;
_nt369 = false;
if (_ky836 == true){
_hu925();
_ky836 = false;
};
if (_yn1133 == true){
_nt369 = true;
_hu925();
};
_ap1424 = 0;
_av443 = new _uf368();
_av443._wr444(_rk277._yt431, 0, 0, _rk277._yt431.width, _rk277._yt431.height, _yh998._dn642, 0);
_av443._ss1421((700 / 2), (500 / 2));
_av443._gy1216(_ww253);
_av443._xy276(-((_rk277._yt431.width / 2)), -(_rk277._yt431.height), (700 + (_rk277._yt431.width / 2)), (500 + (_rk277._yt431.height / 2)));
Tweener.addTween(_yh998._rl373, {alpha:1, time:1, transition:"linear", onComplete:_gn151});
if (_yh998.scale != 1){
};
State = 1;
_gw558 = true;
_he1472._ml674 = _ig1054;
_rj891 = _fl118;
_gj916._xm563("track1");
}
public static function _yw1443():void{
_ib16._bs472 = _ib16._xy891;
if (_sl35 == false){
_kw1293(_rk277._oh414, _lv349._rm1131);
};
_sk1086._lk434(_mx614, 3000);
_rm966._bw292("newlevel");
}
public static function _es275():void{
}
public static function _sg1300():void{
for each (_px1609 in _lv349._gm1204._rh308) {
if (_px1609._go304 > 0){
_px1609._tc794 = true;
_px1609._os1213 = false;
};
};
}
public static function _sn132():void{
_ho1212 = (_ho1212 - _he1472._mv493);
if (_ho1212 < 1){
_ho1212 = 2000;
if (_rw574._hg629() == true){
if (_gf734 == 11){
if (_na1492 == false){
_fl1490();
_na1492 = true;
};
} else {
if (_gf734 == 21){
if (_md1249 == false){
_wd1181();
_md1249 = true;
};
} else {
if (_gf734 == 34){
if (_if343 == false){
_gt732();
_if343 = true;
};
};
};
};
};
};
}
public static function _qi885():void{
_he1472._eu1004._cl1397(_yl891, _rw574._jx992(("" + _af1146._qp353), 2), 228, 4, false, false);
}
public static function _im1325(_arg1:Event):void{
_ey142 = (_ey142 + 0.1);
_fa955();
}
public static function _fb897(_arg1:_rd716):void{
_arg1._ct375();
_arg1 = null;
}
public static function _ln105():void{
var _local1:Number = 0.00025;
if (_sk1673 < _cg1707){
_sk1673 = (_sk1673 + (_local1 * _he1472._mv493));
if (_sk1673 > _cg1707){
_sk1673 = _cg1707;
};
} else {
if (_sk1673 > _cg1707){
_sk1673 = (_sk1673 - (_local1 * _he1472._mv493));
if (_sk1673 < _cg1707){
_sk1673 = _cg1707;
};
};
};
if (_ur1642 < _ey142){
_ur1642 = (_ur1642 + (_local1 * _he1472._mv493));
if (_ur1642 > _ey142){
_ur1642 = _ey142;
};
} else {
if (_ur1642 > _ey142){
_ur1642 = (_ur1642 - (_local1 * _he1472._mv493));
if (_ur1642 < _ey142){
_ur1642 = _ey142;
};
};
};
if (_jd932 < _jh459){
_jd932 = (_jd932 + (_local1 * _he1472._mv493));
if (_jd932 > _jh459){
_jd932 = _jh459;
};
} else {
if (_jd932 > _jh459){
_jd932 = (_jd932 - (_local1 * _he1472._mv493));
if (_jd932 < _jh459){
_jd932 = _jh459;
};
};
};
_rk277._ak1208.lock();
_rk277._ak1208.fillRect(new Rectangle(0, 0, 600, 600), 0);
_rw574._xf494(_rk277._sg43, 0, 0, _rk277._ak1208, 1, 1, 1, _sk1673, _ur1642, _jd932);
_rk277._ak1208.unlock();
if (_sk1673 == _cg1707){
if (_ur1642 == _ey142){
if (_jd932 == _jh459){
_nm1701 = false;
};
};
};
}
public static function Init(_arg1:Sprite):void{
_qr783 = _arg1;
_yh998 = new _ot570();
_yh998.Init(_arg1, _he1472._dj78, _he1472._rc1179, false, 4278190080);
_xl1512 = new _ot570();
_xl1512.Init(_qr783, _rk277._mi846.width, _rk277._mi846.height);
_xl1512._na739(_rk277._mi846);
_xl1512._eg504(false);
_xl1512._vc1162(false);
_xl1512._ss1421(350, 200);
_sk1086 = new _yq299();
_yh998._rl373.alpha = 0;
_yh998._rl373.visible = false;
}
public static function _ai819(_arg1:Event):void{
_jh459 = (_jh459 - 0.1);
_fa955();
}
public static function _nx482():void{
_fj1529();
_ss1375._id1125();
}
public static function _wl405(_arg1:Number, _arg2:Number, _arg3:Number):void{
if (_of949._cg1119 > 0){
_xe220();
};
}
public static function _qt1013(_arg1:Event):void{
_jh459 = (_jh459 + 0.1);
_fa955();
}
public static function _gn151():void{
_af1146._jl210(_rk277._ww193, (700 / 2), (500 / 2));
_sk1086._lk434(_ih1659, 2500);
}
public static function _mx614():void{
_pv1497 = getTimer();
_gf734++;
if (_vq26 == true){
_gf734 = 1;
};
_ap1424++;
_um1575._nm881((_gf734 - 1));
if (_yn1133 == false){
if (_gf734 == 51){
_gf734 = 50;
_bk106();
} else {
_rt1232();
};
} else {
if (_gf734 == 52){
_gf734 = 51;
_bk106();
} else {
_rt1232();
};
};
}
public static function _cn66(_arg1:_uf368):void{
_arg1._me814(0.003, 1, 1.5, 5, 0);
_arg1._rn387(0.003, 1, 1.5, 5, 0);
}
public static function _ig1054(_arg1:Number, _arg2:Number, _arg3:Number):void{
_at1725 = _arg1;
_hx830 = _arg2;
_rj891(_arg3);
_sk1086._ig1054(_arg3);
_rm966._aw1694();
if (_uv872 > 0){
if (_uv872 == 1){
_rj891 = _gx628;
};
if (_uv872 == 2){
_rj891 = _xq168;
};
if (_uv872 == 3){
};
if (_uv872 == 4){
};
if (_uv872 == 5){
};
_uv872 = 0;
};
if (_of949._cg1119 > 0){
if (_of949._cg1119 == 32){
_yh998.scale = (_yh998.scale * 0.95);
if (_yh998.scale < 0.3){
_yh998.scale = 1;
};
if (_yh998.scale != 1){
};
};
if (_of949._cg1119 == 27){
_fj1529();
_ss1375._id1125();
};
if (_of949._cg1119 == 54){
if (_he1472._qr783.frameRate == 60){
_he1472._qr783.frameRate = 35;
} else {
_he1472._qr783.frameRate = 60;
};
};
if ((((_of949._cg1119 == 80)) || ((_of949._cg1119 == 19)))){
_qq510();
};
_of949._aj742(_of949._cg1119);
};
}
public static function _fj1529():void{
_vq26 = false;
_vg221 = false;
_af1146._nw1700();
Tweener.addTween(_yh998._rl373, {alpha:0, time:1, transition:"linear", onComplete:_aa1667});
if (_yh998.scale != 1){
};
_gj916._cw945();
_lv349._vc316();
_rj891 = _xy891;
_gw558 = false;
}
public static function _qr757(_arg1:Event):void{
_fj1529();
_ss1375._id1125();
}
public static function _tb944(_arg1:Number):void{
_yh998._vt140();
_gp1225();
_lv349._va1163._cd171(_arg1);
_ib16._ig1054();
_lv349._gm1204._tw1613(_sa512, _arg1);
_af1146._ig1054();
_lv349._ow1485._tw1613(_sa512, _arg1);
_np825();
_yh998._vm1651();
}
public static function _wh1042(_arg1:Event):void{
}
public static function _wl1672():void{
trace(("DrawCurrentLevel=" + _gf734));
_he1472._eu1004._cl1397(_yl891, _rw574._jx992(("" + _gf734), 2), 661, 4, false, false);
}
private static function _dm1179(_arg1:Event):void{
var _local2:String;
if (_yn1133 == true){
_local2 = "Survival";
} else {
_local2 = "RetroShoot360";
};
_yh998._mf1555();
if (_he1472._yl1448 == true){
_he1472.agi_busy = true;
_he1472.agi_api.initAGUI({onClose:_qj778});
_he1472.agi_api.showScoreboardSubmit(_ao412.value, null, _local2);
} else {
_yh998._mx1114();
_sk1086._lk434(_nx482, 1500);
};
}
public static function _fl1490():void{
var _local1:BitmapData = _rk277._lu1650;
_px1609 = _lv349._va1163._kn515(_local1, 0, 0, _local1.width, _local1.height, _he822._yh998._dn642, 0, 0, 0);
if (_rw574._hg629() == true){
_px1609._md1262 = -((_local1.width / 2));
_px1609._se1147 = _rw574._up1471._tp230(100, 200);
} else {
_px1609._md1262 = (700 + (_local1.width / 2));
_px1609._se1147 = (700 - _rw574._up1471._tp230(100, 200));
};
_px1609.state = 1;
_px1609._ss1421(_px1609._md1262, _rw574._up1471._tp230(100, 400));
_px1609._go304 = 10;
_px1609._ot621(_px1609._se1147, _px1609.y, 0, 0.0005, false);
_px1609._lc262 = 1500;
_px1609._sh1626((_local1.width * 0.48));
_px1609._gy1216(_fe288);
}
public static function _ih1659():void{
_na1492 = false;
_md1249 = false;
_if343 = false;
_ho1212 = 2000;
_ib16._bs472 = _ib16._xy891;
_se477 = getTimer();
_um1575._ov905 = false;
_ao412.value = 0;
_gf734 = (_tp1528 - 1);
_tp1528 = 0;
_gu735 = 3;
_gt186 = false;
_sl35 = false;
if (_yn1133 == true){
_gu735 = 1;
_gf734 = 50;
};
_af1146.Init(_yh998._dn642);
_mx614();
_rj891 = _tb944;
_af1146._gq1207(3000);
}
private static function _fm1215(_arg1:Event):void{
Tweener.addTween(_arg1.currentTarget, {brightness:1, time:0.25, transition:"linear"});
}
public static function _gs1297():void{
_he1472._eu1004._cl1397(_yl891, _nt428, 452, 4, false, false);
}
public static function _ia1194(_arg1:Event):void{
_cg1707 = (_cg1707 + 0.1);
_fa955();
}
public static function _np825():void{
_rw574._jy699(_yl891, 0, 0, 0, 0, 700, 24, _yh998._dn642, false);
if (_dc52 == true){
_gs1297();
_dc52 = false;
};
if (_rg598 == true){
_rw574._jy699(_rk277._sr624, 0, 24, 0, 0, 700, 476, _yh998._dn642);
};
if (_nm1701 == true){
_ln105();
};
if (_vq26 == true){
_rw574._ci1517(_rk277._me1014, 350, 80, 0, 0, 490, 85, _yh998._dn642);
if (_vg221 == false){
_rn429();
};
};
}
public static function _xa1271(_arg1:Number):void{
_ao412.addValue(_arg1);
_nt428 = _rw574._jx992(_ao412.toString(), 7);
_dc52 = true;
}
public static function _gm90():void{
_ba999 = _yh998._rh308._cc1534(_yh998._rl373, _rk277._xs1050, 0, -105, 1, _qr757, _he1472._cr574, _he1472._fm1215);
_vg221 = true;
}
public static function _lg339():void{
_rw574._jy699(_rk277._ol1520, 273, 2, 273, 2, 78, 20, _yl891, false);
if (_gu735 > 0){
_rw574._jy699(_rk277._sl1709, 273, 2, 0, 0, (_gu735 * 26), 20, _yl891, false);
};
}
public static function _ry361():void{
var _local1:Number = int(((getTimer() - _se477) / 1000));
var _local2:Number = int((_local1 / 60));
}
public static function _ww253(_arg1:_uf368):void{
_arg1.x = (_arg1.x - (_af1146._wy323 * 0.3));
_arg1.y = (_arg1.y - (_af1146._hr398 * 0.3));
if (_arg1.x < _arg1._ip440){
_arg1.x = _arg1._ux410;
} else {
if (_arg1.x > _arg1._ux410){
_arg1.x = _arg1._ip440;
};
};
if (_arg1.y < _arg1._eg945){
_arg1.y = _arg1._jm1029;
} else {
if (_arg1.y > _arg1._jm1029){
_arg1.y = _arg1._eg945;
};
};
}
public static function _wd1181():void{
var _local1:BitmapData = _rk277._xv242;
_px1609 = _lv349._va1163._kn515(_local1, 0, 0, _local1.width, _local1.height, _he822._yh998._dn642, 0, 0, 0);
if (_rw574._hg629() == true){
_px1609._md1262 = -((_local1.width / 2));
_px1609._se1147 = _rw574._up1471._tp230(100, 200);
} else {
_px1609._md1262 = (700 + (_local1.width / 2));
_px1609._se1147 = (700 - _rw574._up1471._tp230(100, 200));
};
_px1609.state = 1;
_px1609._ss1421(_px1609._md1262, _rw574._up1471._tp230(100, 400));
_px1609._go304 = 11;
_px1609._ot621(_px1609._se1147, _px1609.y, 0, 0.0005, false);
_px1609._lc262 = 1500;
_px1609._sh1626((_local1.width * 0.48));
_px1609._gy1216(_hk1210);
}
public static function _kw1293(_arg1:BitmapData, _arg2:Object):void{
var _local7:_uf368;
var _local8:Number;
var _local3:Number = _rw574._up1471._tp230(0, 359);
var _local4:Number = 0.025;
var _local5:Number = ((_local4 / _arg1.height) * 2);
_local4 = -(_local4);
var _local6:int;
while (_local6 < _arg1.height) {
_local7 = new _uf368();
_local8 = 0;
_local7 = _lv349._va1163._kn515(_arg2[_local6], 0, 0, _arg1.width, 1, _yh998._dn642, 0, 0, 1, 0, true, false);
_local7._ss1421((_he1472._dj78 / 2), (((_he1472._rc1179 / 2) - (_arg1.height / 2)) + _local6));
_local7._ti798(0, _local4, 0, 0, 0, false);
_local4 = (_local4 + _local5);
_local7._me814(0.00125, 0, 1000, 4, 0);
_local7._rn387(0.0013, 0, 1000, 4, 0);
_local7._md1262 = 1250;
_local7._se1147 = 1;
_local7._td1389 = false;
_local7._gy1216(_kg956);
_local6++;
};
}
public static function _gx628(_arg1:Number):void{
_af1146._wy323 = 0;
_af1146._hr398 = 0;
_yh998._vt140();
_gp1225();
_lv349._va1163._cd171(_arg1);
_ib16._ig1054();
_lv349._gm1204._tw1613(_sa512, _arg1);
_af1146._pr1270._cd171(_he1472._mv493);
_lv349._ow1485._tw1613(_sa512, _arg1);
_np825();
_yh998._vm1651();
_eq894 = (_eq894 - _arg1);
if (_eq894 < 1){
_eq894 = 0;
_af1146._gq1207();
};
}
public static function _iq828(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Number):void{
}
public static function _lr1723(_arg1:String, _arg2:Number, _arg3:Number):void{
_he1472._lr1723.draw(_yh998._dn642, _arg1, _arg2, _arg3);
}
public static function _fe288(_arg1:_uf368):void{
if (_arg1.state == 1){
if (_arg1._gm610 == 0){
_arg1._lc262 = (_arg1._lc262 - _he1472._mv493);
if (_arg1._lc262 < 1){
_arg1._ot621(_px1609._md1262, _px1609.y, 0, 0.0005, true);
_arg1.state = 0;
};
};
};
if (_rw574._if1500(_arg1, _af1146._dg84) == true){
_arg1._tc794 = true;
_arg1._os1213 = false;
_af1146._sg106(_arg1);
};
}
public static function _gn738():void{
_fj1529();
_ss1375._id1125();
}
public static function _tu440(_arg1:_rd716):void{
_arg1._tc794 = true;
_yh998._rh308._ei187(1);
}
private static function _dt1567(_arg1:Number):void{
}
public static function _qj778():void{
_he1472.agi_busy = false;
_yh998._mx1114();
_sk1086._lk434(_nx482, 1500);
}
public static function _bu608(_arg1:Event):void{
}
public static function _gp1225():void{
if (_nt369 == false){
_sb1415._ks192((-(_af1146._wy323) * 0.15), (-(_af1146._hr398) * 0.15), 1);
if (_tf1595 == true){
_av443._ig1054(_he1472._mv493);
_av443._ij1556();
};
if (_id661 == true){
_nr1154._ks192((-(_af1146._wy323) * 0.45), (-(_af1146._hr398) * 0.45), 1);
};
if (_dt1403 == true){
_gs844._ig1054(((-(_af1146._wy323) * 0.025) * _he1472._mv493), ((-(_af1146._hr398) * 0.025) * _he1472._mv493));
};
} else {
_sb1415._ks192((-(_af1146._wy323) * 0.15), (-(_af1146._hr398) * 0.15), 1);
if (_id661 == true){
_nr1154._ks192((-(_af1146._wy323) * 0.45), (-(_af1146._hr398) * 0.45), 1);
};
};
}
public static function _fl118(_arg1:Number):void{
_af1146._wy323 = 0;
_af1146._hr398 = 0;
_yh998._vt140();
_gp1225();
_lv349._va1163._cd171(_arg1);
_lv349._gm1204._tw1613(_sa512, _arg1);
_lv349._ow1485._tw1613(_sa512, _arg1);
_np825();
_yh998._vm1651();
}
public static function _xy891(_arg1:Number):void{
}
public static function _hk1210(_arg1:_uf368):void{
if (_arg1.state == 1){
if (_arg1._gm610 == 0){
_arg1._lc262 = (_arg1._lc262 - _he1472._mv493);
if (_arg1._lc262 < 1){
_arg1._ot621(_px1609._md1262, _px1609.y, 0, 0.0005, true);
_arg1.state = 0;
};
};
};
if (_rw574._if1500(_arg1, _af1146._dg84) == true){
_arg1._tc794 = true;
_arg1._os1213 = false;
_af1146._sg106(_arg1);
};
}
public static function _kg956(_arg1:_uf368):void{
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._ke128 = (_arg1._ke128 * 1.15);
if (_arg1._se1147 == 1){
_arg1._se1147 = 0;
_arg1._ch630(-0.0007, 1);
};
};
}
private static function _rt1232():void{
_ib16._mx614(_gf734);
_ib16._qk638 = true;
_af1146._yy1343();
if (_ap1424 > 1){
_od1678 = _rw574._up1471._ma459(1, 10);
_xr500();
};
_sk1086._lk434(_af1146._oc639, 1500);
}
public static function _gt732():void{
var _local1:BitmapData = _rk277._rj640;
_px1609 = _lv349._va1163._kn515(_local1, 0, 0, 84, 75, _he822._yh998._dn642, 0, 0, 0);
_px1609._xy276(-((84 / 2)), -((75 / 2)), (700 + (84 / 2)), (500 + (75 / 2)));
if (_rw574._hg629() == true){
_px1609._vk951(_local1, 0, 0, 84, 75);
_px1609._ss1421(-((84 / 2)), (500 + (75 / 2)));
_px1609._ti798(0.2, 0, 0, -0.00018);
} else {
_px1609._vk951(_local1, 84, 0, 84, 75);
_px1609._ss1421((700 + (84 / 2)), (500 + (75 / 2)));
_px1609._ti798(-0.2, 0, 0, -0.00018);
};
_px1609._go304 = 12;
_px1609._sh1626((84 * 0.45));
_px1609._gy1216(_mc1222);
}
public static function _xr500():void{
var _local1:Number = 0;
var _local2:Number = 0;
var _local3:Number = 0;
if (_nt369 == false){
_od1678++;
if (_od1678 > 10){
_od1678 = 1;
};
if (_od1678 == 1){
_local1 = 1;
_local2 = 1;
_local3 = 1;
} else {
if (_od1678 == 2){
_local1 = 1.3;
_local2 = 0.6;
_local3 = 0.6;
} else {
if (_od1678 == 3){
_local1 = 1.5;
_local2 = 1.5;
_local3 = 0.2;
} else {
if (_od1678 == 4){
_local1 = 1;
_local2 = 1;
_local3 = 1;
} else {
if (_od1678 == 5){
_local1 = 0.5;
_local2 = 1.7;
_local3 = 1.2;
} else {
if (_od1678 == 6){
_local1 = 1.4;
_local2 = 0.4;
_local3 = 1.4;
} else {
if (_od1678 == 7){
_local1 = 0.5;
_local2 = 1.6;
_local3 = 0.5;
} else {
if (_od1678 == 8){
_local1 = 1.4;
_local2 = 0.5;
_local3 = 0.5;
} else {
if (_od1678 == 9){
_local1 = 1;
_local2 = 1;
_local3 = 1;
} else {
if (_od1678 == 10){
_local1 = 0.5;
_local2 = 0.5;
_local3 = 1.2;
};
};
};
};
};
};
};
};
};
};
_cg1707 = _local1;
_ey142 = _local2;
_jh459 = _local3;
_nm1701 = true;
};
}
public static function _ti658(_arg1:Event):void{
_ey142 = (_ey142 - 0.1);
_fa955();
}
public static function _ho649(_arg1:Event):void{
}
public static function _so552():void{
var _local1 = "linear";
_ba999 = _yh998._rh308._kn515(_yh998._rl373, _rk277._bg1147, 0, 0, 1);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, transition:_local1});
_ba999 = _yh998._rh308._cc1534(_yh998._rl373, _rk277._af1466, 0, 80, 1, _dm1179, _he1472._cr574, _he1472._fm1215);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, transition:_local1});
_ba999 = _yh998._rh308._cc1534(_yh998._rl373, _rk277._yx1291, 0, 140, 1, _oc241, _he1472._cr574, _he1472._fm1215);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, transition:_local1});
}
public static function _il1210(_arg1:Number):void{
_yh998._vt140();
_gp1225();
_lv349._va1163._cd171(_arg1);
_ib16._ig1054();
_lv349._gm1204._tw1613(_sa512, _arg1);
_af1146._ig1054();
_lv349._ow1485._tw1613(_sa512, _arg1);
_np825();
_yh998._vm1651();
_ss1485 = (_ss1485 + _arg1);
if (_ss1485 > 150){
_ss1485 = 0;
_lv349._af629(_rw574._up1471._tp230(50, (700 - 50)), _rw574._up1471._tp230(50, (500 - 50)), _yh998._dn642, _rw574._up1471._ma459(1, 4));
};
_md441 = (_md441 + _arg1);
if (_md441 > 15000){
_md441 = -10000;
_af1146._vt466();
_kj1140._tc794 = true;
};
}
public static function _mc1222(_arg1:_uf368):void{
if (_rw574._if1500(_arg1, _af1146._dg84) == true){
_arg1._tc794 = true;
_arg1._os1213 = false;
_af1146._sg106(_arg1);
};
}
public static function _fy1361(_arg1:String, _arg2:Number, _arg3:Number):void{
var _local4:_rd716;
var _local5:Number = _he1472._eu1004._un1229(_arg1);
_local4 = new _rd716();
_local4.Init(_yh998._rl373, 0, (_local5 + 1), (31 + 1), true, 0, true);
_local4._ss1421(int(_arg2), int(_arg3));
_he1472._eu1004._cl1397(_local4._vp1496, _arg1, 0, 0);
_local4._to402(true);
Tweener.addTween(_local4, {y:(_arg3 - 200), time:5, transition:"linear"});
Tweener.addTween(_local4, {alpha:0, time:1, delay:1, onComplete:_fb897, onCompleteParams:[_local4]});
}
public static function _ss988(_arg1:Event):void{
}
public static function _ur717():void{
_sk1673 = 1;
_ur1642 = 1;
_jd932 = 1;
_cg1707 = 1;
_ey142 = 1;
_jh459 = 1;
_nm1701 = false;
_rk277._hp548.lock();
_rk277._ak1208.lock();
_rw574._jy699(_rk277._xp1238, 0, 0, 0, 0, 600, 600, _rk277._hp548, true);
_rk277._ak1208.fillRect(new Rectangle(0, 0, 600, 600), 0);
_rw574._xf494(_rk277._sg43, 0, 0, _rk277._ak1208, 1, 1, 1, 1, 1, 1);
_rk277._hp548.unlock();
_rk277._ak1208.unlock();
_od1678 = 1;
}
public static function _xe220():void{
_yh998._mx1114();
_xl1512._vc1162(false);
_of949._mu960();
_gj916._xm563("track1");
_bx367._hd755();
_he1472._ml674 = _ss627;
}
private static function _aa1667():void{
_yh998._rh308._vc316();
_yh998._rl373.visible = false;
}
public static function _kg201():void{
}
public static function _du1253(_arg1:Event):void{
_cg1707 = (_cg1707 - 0.1);
_fa955();
}
private static function _oc241(_arg1:Event):void{
_fj1529();
_ss1375._id1125();
}
public static function _rn429():void{
if (_um1575._rr151() == false){
if (_ao412.value > 4999){
_um1575._di1225();
_gm90();
};
};
}
public static function _ba670(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Number):void{
trace(_arg1);
}
public static function _kh1692(_arg1:Event):void{
}
public static function _qq510():void{
_gj916._tv1244("track1");
_yh998._mf1555(0.5, 5);
_xl1512._vc1162(true);
_ss627 = _he1472._ml674;
_he1472._ml674 = _wl405;
}
public static function _lc1288(_arg1:Number):void{
_ao412.addValue(_arg1);
_nt428 = _rw574._jx992(_ao412.toString(), 7);
_he1472._eu1004._cl1397(_yl891, _nt428, 452, 4, false, false);
_dc52 = true;
}
public static function _fa955():void{
_rk277._ak1208.lock();
_rk277._ak1208.fillRect(new Rectangle(0, 0, 600, 600), 0);
_rw574._xf494(_rk277._sg43, 0, 0, _rk277._ak1208, 1, 1, 1, _cg1707, _ey142, _jh459);
_rk277._ak1208.unlock();
}
}
}//package
Section 54
//_ib16 (_ib16)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _ib16 {
public static var _ij1088:_nx31;
public static var _qk638:Boolean;
public static var _px1609:_uf368;
public static var _br1505:Number = 0;
public static var _vv1077:Number = 0;
public static var _bs472:Function;
public static var _mu995:BitmapData;
public static var _se1010:_nx31;
public static var _yi1355:int;
public static var _nk274:int;
public static var _ea276:Array = [];
public static var _rd17:Array;
public static function _wu697():void{
_qk638 = true;
}
private static function _lx651(_arg1:_uf368, _arg2:_uf368):void{
var _local5:int;
var _local3:Number = ((_arg1.x + _arg2.x) / 2);
var _local4:Number = ((_arg1.y + _arg2.y) / 2);
if (_arg1.id == 1){
_local5 = 1;
} else {
if (_arg1.id == 2){
_local5 = 0;
} else {
if (_arg1.id == 3){
_local5 = 0;
} else {
if (_arg1.id == 4){
_local5 = 4;
} else {
if (_arg1.id == 5){
_local5 = 4;
} else {
if (_arg1.id == 6){
_local5 = 0;
} else {
if (_arg1.id == 7){
_local5 = 1;
} else {
if (_arg1.id == 8){
_local5 = 4;
} else {
if (_arg1.id == 9){
_local5 = 2;
} else {
if (_arg1.id == 10){
_local5 = 2;
} else {
if (_arg1.id == 11){
_local5 = 2;
} else {
if (_arg1.id == 12){
_local5 = 1;
} else {
if (_arg1.id == 13){
_local5 = 2;
} else {
if (_arg1.id == 14){
_local5 = 0;
} else {
if (_arg1.id == 15){
_local5 = 2;
} else {
if (_arg1.id == 16){
_local5 = 4;
} else {
if (_arg1.id == 17){
_local5 = 1;
} else {
if (_arg1.id == 18){
_local5 = 0;
} else {
if (_arg1.id == 19){
_local5 = 0;
} else {
if (_arg1.id == 20){
_local5 = 0;
} else {
if (_arg1.id == 21){
_local5 = 0;
} else {
if (_arg1.id == 22){
_local5 = 1;
} else {
if (_arg1.id == 23){
_local5 = 4;
} else {
if (_arg1.id == 24){
_local5 = 2;
} else {
if (_arg1.id == 25){
_local5 = 2;
} else {
if (_arg1.id == 26){
_local5 = 4;
} else {
if (_arg1.id == 27){
_local5 = 3;
} else {
if (_arg1.id == 28){
_local5 = 1;
} else {
if (_arg1.id == 50){
_local5 = 0;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
_lv349._vt103(_local3, _local4, -(_arg2._xx1283), -(_arg2._ke128), _he822._yh998._dn642, _local5);
}
public static function _xy891():void{
}
public static function _xn128(_arg1:_uf368, _arg2:_uf368):void{
if (_arg1._pb1487 != null){
if (_arg1._pb1487._mk1096(1) == true){
_arg1._tc794 = true;
_arg1._os1213 = false;
_rq948(_arg1);
_af1146._es1182(_arg1);
_rm966._bw292(("baddiekilled" + _rw574._up1471._ma459(1, 3)));
_he822._xa1271(_arg1._qy180);
} else {
_arg1._pb1487._jq651 = 3000;
_lx651(_arg1, _arg2);
_rm966._bw292("baddiehit");
if (_arg1._kj237 != null){
_arg1._kj237(_arg1, _arg2);
};
};
} else {
if (_arg1._mk1096(1) == true){
_arg1._tc794 = true;
_arg1._os1213 = false;
_rq948(_arg1);
_af1146._es1182(_arg1);
_rm966._bw292(("baddiekilled" + _rw574._up1471._ma459(1, 3)));
_he822._xa1271(_arg1._qy180);
} else {
_arg1._jq651 = 3000;
_lx651(_arg1, _arg2);
_rm966._bw292("baddiehit");
if (_arg1._kj237 != null){
_arg1._kj237(_arg1, _arg2);
};
};
};
}
public static function _ig1054():void{
var _local1:int;
if (_qk638 == true){
_bs472();
_he822._sn132();
if (_nk274 < _yi1355){
_vv1077 = (_vv1077 - _he1472._mv493);
if (_vv1077 < 1){
_nk274++;
_vv1077 = _br1505;
_local1 = _rd17[_rw574._up1471._ma459(0, (_rd17.length - 1))];
var _local2 = _ea276;
var _local3 = _local1;
var _local4 = (_local2[_local3] + 1);
_local2[_local3] = _local4;
if (_local1 == 1){
_ul707._ax548(_mu995);
} else {
if (_local1 == 2){
_ul707._ax548(_mu995, 2);
} else {
if (_local1 == 3){
_ci552._ax548(_mu995);
} else {
if (_local1 == 4){
_rv716._ax548(_mu995);
} else {
if (_local1 == 5){
_sc582._ax548(_mu995);
} else {
if (_local1 == 6){
_fq1664._ax548(_mu995);
} else {
if (_local1 == 7){
_sd877._ax548(_mu995);
} else {
if (_local1 == 8){
_tp1139._ax548(_mu995);
} else {
if (_local1 == 9){
_yg1481._ax548(_mu995);
} else {
if (_local1 == 12){
_xy1313._ax548(_mu995);
} else {
if (_local1 == 13){
_uh1173._ax548(_mu995);
} else {
if (_local1 == 14){
_so290._ax548(_mu995);
} else {
if (_local1 == 15){
_oc1204._ax548(_mu995);
} else {
if (_local1 == 16){
_sv1446._ax548(_mu995);
} else {
if (_local1 == 17){
_jv1452._ax548(_mu995);
} else {
if (_local1 == 18){
_sm596._ax548(_mu995);
} else {
if (_local1 == 20){
_mv211._ax548(_mu995);
} else {
if (_local1 == 21){
_ck725._ax548(_mu995);
} else {
if (_local1 == 23){
_xk709._ax548(_mu995);
} else {
if (_local1 == 24){
_py1255._ax548(_mu995);
} else {
if (_local1 == 26){
_bu568._ax548(_mu995);
} else {
if (_local1 == 27){
_yi1445._ax548(_mu995);
} else {
if (_local1 == 28){
_wd413._ax548(_mu995);
} else {
if (_local1 == 50){
_ku952._ax548(_mu995);
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
} else {
if (_ij1088._eb418() == 0){
if (_se1010._eb418() == 0){
if (_he822._gt186 == false){
_af1146._xr1143();
_af1146._qr920();
_qk638 = false;
_he822._yw1443();
};
};
};
};
};
_ij1088._tw1613(_sq180, _he1472._mv493);
_se1010._tw1613(_ee750, _he1472._mv493);
}
private static function _rq948(_arg1:_uf368):void{
var _local2 = _ea276;
var _local3 = _arg1.id;
var _local4 = (_local2[_local3] - 1);
_local2[_local3] = _local4;
if (_arg1.id == 1){
_lv349._af629(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 1);
} else {
if (_arg1.id == 2){
_lv349._af629(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 0);
} else {
if (_arg1.id == 3){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 0);
} else {
if (_arg1.id == 4){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 4);
} else {
if (_arg1.id == 5){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 4);
} else {
if (_arg1.id == 6){
_lv349._af629(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 0);
} else {
if (_arg1.id == 7){
_lv349._af629(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 1);
} else {
if (_arg1.id == 8){
_lv349._af629(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 4);
} else {
if (_arg1.id == 9){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 2);
} else {
if (_arg1.id == 10){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 2);
} else {
if (_arg1.id == 11){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 2);
} else {
if (_arg1.id == 12){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 1);
} else {
if (_arg1.id == 13){
_lv349._rm695(_arg1);
} else {
if (_arg1.id == 14){
_lv349._rm695(_arg1);
} else {
if (_arg1.id == 15){
_lv349._af629(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 2);
} else {
if (_arg1.id == 16){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 4);
} else {
if (_arg1.id == 17){
_lv349._af629(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 1);
} else {
if (_arg1.id == 18){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 0);
} else {
if (_arg1.id == 19){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 0);
} else {
if (_arg1.id == 20){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 0);
} else {
if (_arg1.id == 21){
_ck725._nu123(_arg1);
} else {
if (_arg1.id == 23){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 4);
} else {
if (_arg1.id == 24){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 2);
} else {
if (_arg1.id == 25){
_lv349._ik1324(_arg1.x, _arg1.y, _he822._yh998._dn642, _arg1._gu403, 2);
} else {
if (_arg1.id == 26){
_bu568._lj1393(_arg1._pb1487);
} else {
if (_arg1.id == 27){
_yi1445._sv1255(_arg1);
} else {
if (_arg1.id == 28){
_lv349._af629(_arg1.x, _arg1.y, _he822._yh998._dn642, -1, 0);
} else {
if (_arg1.id == 50){
_lv349._af629(_arg1.x, _arg1.y, _he822._yh998._dn642, 4, 0);
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (_arg1._by730 != null){
_arg1._by730(_arg1);
};
}
public static function _mx614(_arg1:int):void{
var _local2:_dt1661 = _yf492._oa700[_arg1];
_nk274 = 0;
_yi1355 = _local2._wm1308;
_vv1077 = 0;
_br1505 = _local2._ow842;
_rd17 = _local2._em819;
if (_he822._vq26 == true){
_yi1355 = 1000000;
_br1505 = (1000 / 10);
_rd17 = [50];
};
}
private static function _sq180(_arg1:_uf368):void{
var _local3:_uf368;
_arg1.x = (_arg1.x - _af1146._wy323);
_arg1.y = (_arg1.y - _af1146._hr398);
if (_arg1.x < _arg1._ip440){
_arg1.x = _arg1._ux410;
} else {
if (_arg1.x > _arg1._ux410){
_arg1.x = _arg1._ip440;
};
};
if (_arg1.y < _arg1._eg945){
_arg1.y = _arg1._jm1029;
} else {
if (_arg1.y > _arg1._jm1029){
_arg1.y = _arg1._eg945;
};
};
var _local2:int = (_af1146._pr1270._rh308.length - 1);
var _local4:int = _local2;
while (_local4 >= 0) {
_local3 = _af1146._pr1270._rh308[_local4];
if ((((_arg1._os1213 == true)) && ((_local3._os1213 == true)))){
if (Math.sqrt((((_local3.x - _arg1.x) * (_local3.x - _arg1.x)) + ((_local3.y - _arg1.y) * (_local3.y - _arg1.y)))) <= ((_arg1._le126 * _arg1._yl1629) + (_local3._le126 * _local3._yl1629))){
_xn128(_arg1, _local3);
if (_local3._pr104 == false){
if (_local3._vo333 != null){
_local3._vo333(_local3);
};
_local3._ct375();
_af1146._pr1270._rh308.splice(_local4, 1);
_local3 = null;
};
};
};
_local4--;
};
if ((((_arg1._os1213 == true)) && ((_af1146._dg84._os1213 == true)))){
if (Math.sqrt((((_af1146._dg84.x - _arg1.x) * (_af1146._dg84.x - _arg1.x)) + ((_af1146._dg84.y - _arg1.y) * (_af1146._dg84.y - _arg1.y)))) <= ((_arg1._le126 * _arg1._yl1629) + (_af1146._dg84._le126 * _af1146._dg84._yl1629))){
if (_he1472._bw1493 == false){
_af1146._mb432(_arg1);
};
};
};
}
public static function _ea1481():void{
_px1609 = _lv349._va1163._kn515(_rk277._bl964, 0, 0, _rk277._bl964.width, _rk277._bl964.height, _he822._yh998._dn642, 50, 50, 1);
_px1609._rm1503(0.2, 0, 359, 2, 0);
_px1609._gm766(0.02, 0.02, 40, 40, (750 - 40), (500 - 40));
_px1609.alpha = 0.7;
_px1609._td1389 = false;
_px1609 = _lv349._va1163._kn515(_rk277._bl964, 0, 0, _rk277._bl964.width, _rk277._bl964.height, _he822._yh998._dn642, 50, 50, 1);
_px1609._rm1503(0.4, 0, 359, 2, 0);
_px1609._gm766(0.02, 0.02, 40, 40, (750 - 40), (500 - 40));
_px1609._td1389 = false;
}
public static function _tg1510():void{
Init(_he822._yh998._dn642);
_lf1282();
_mx614(_he822._gf734);
}
public static function _xh499():void{
_ul707._xh499();
_ci552._xh499();
_rv716._xh499();
_sc582._xh499();
_fq1664._xh499();
_tp1139._xh499();
_sv1446._xh499();
_sm596._xh499();
_mv211._xh499();
_xk709._xh499();
_py1255._xh499();
}
private static function _ee750(_arg1:_uf368):void{
_arg1.x = (_arg1.x - _af1146._wy323);
_arg1.y = (_arg1.y - _af1146._hr398);
if (_rw574._if1500(_arg1, _af1146._dg84) == true){
if (_he1472._bw1493 == false){
_arg1._tc794 = true;
_arg1._os1213 = false;
_af1146._mb432(_arg1);
};
};
}
public static function _lf1282():void{
_ea276 = [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
}
public static function _uy474(_arg1:_uf368, _arg2:Number=0.25, _arg3:Number=0):void{
_px1609 = _se1010._kn515(_rk277._fl527, 0, 0, 32, 32, _he822._yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._sh1626(12);
_px1609._mm1672(_rk277._fl527, 0.01, 2, 2);
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._io238(_rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y), _arg3, _arg2, 0, 0, true);
_rm966._bw292("enemyfire");
}
public static function Init(_arg1:BitmapData):void{
_mu995 = _arg1;
if (_ij1088 == null){
_ij1088 = new _nx31();
} else {
_ij1088._vc316();
};
if (_se1010 == null){
_se1010 = new _nx31();
} else {
_se1010._vc316();
};
_br1505 = 0;
_vv1077 = _br1505;
_nk274 = 0;
_yi1355 = 0;
_lf1282();
}
}
}//package
Section 55
//_id943 (_id943)
package {
import classes.*;
public class _id943 {
public var _pm15:Number;// = 0
public var _cf892:Number;// = 0
public var x:Number;// = 0
public var y:Number;// = 0
public var z:Number;// = 0
public function _ll258():void{
z = _rw574._up1471._tp230(200, 0xFF);
x = _rw574._up1471._tp230(-1000, 1000);
y = _rw574._up1471._tp230(-1000, 1000);
}
}
}//package
Section 56
//_jv1452 (_jv1452)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _jv1452 {
private static var _px1609:_uf368;
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local3 = 1000;
var _local4 = 30;
var _local5 = 17;
var _local6 = 2;
var _local7:Number = 0;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local8 = _ib16._ea276;
var _local9 = _local5;
var _local10 = (_local8[_local9] - 1);
_local8[_local9] = _local10;
} else {
_px1609 = _ib16._ij1088._kn515(_rk277._wl760, 0, 0, 32, 32, _arg1, -1, -1, 0);
_px1609._qd1101 = _rw574._up1471._tp230(10, 20);
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_he1472._nx1028(_px1609, 32);
_px1609._sh1626(12);
_px1609._md1262 = _rw574._up1471._tp230(125, 1250);
_px1609._se1147 = _px1609._md1262;
_px1609._lc262 = 0;
_px1609._mb1382 = _rw574._up1471._tp230(500, 12000);
_px1609._gy1216(_tq1674);
_px1609.id = _local5;
_px1609._gu403 = _local6;
_px1609._qy180 = _local3;
};
}
public static function _xh499():void{
}
private static function _tq1674(_arg1:_uf368):void{
var _local2:Number = 0;
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._md1262 = _arg1._se1147;
_local2 = _rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y);
_arg1.x = (_arg1.x + _rw574._be1379(_local2, 4));
_arg1.y = (_arg1.y + _rw574._dm1262(_local2, 4));
_arg1._lc262++;
if (_arg1._lc262 == 10){
_arg1._lc262 = 0;
};
_arg1._ps1590 = (_arg1._lc262 * 32);
};
_arg1._mb1382 = (_arg1._mb1382 - _he1472._mv493);
if (_arg1._mb1382 < 1){
_arg1._mb1382 = _rw574._up1471._tp230(3000, 15000);
if (_rw574._hg629(20) == true){
_ib16._uy474(_arg1, 0.25, 0);
};
};
}
}
}//package
Section 57
//_ku952 (_ku952)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _ku952 {
private static var _px1609:_uf368;
public static function _ax548(_arg1:BitmapData):void{
var _local2:int = _rw574._up1471._ma459(1, 4);
var _local3 = 5;
var _local4 = 25;
var _local5 = 50;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local6 = _ib16._ea276;
var _local7 = _local5;
var _local8 = (_local6[_local7] - 1);
_local6[_local7] = _local8;
} else {
_px1609 = _ib16._ij1088._kn515(_rk277._iy1275, 0, 0, 64, 64, _arg1, -1, -1, 0);
_he1472._nx1028(_px1609, 64);
_px1609._io238(_rw574._up1471._tp230(0, 359), 0, 0.05, 0, 0, false);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._sh1626(15.5);
if (_rw574._hg629(15) == true){
_px1609._qd1101 = _rw574._up1471._tp230(0, 50);
};
_px1609._gu403 = 4;
_px1609.id = _local5;
_px1609._qy180 = _local3;
};
}
public static function _xh499():void{
}
}
}//package
Section 58
//_lv349 (_lv349)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _lv349 {
public static var _yl127:Object = new Object();
public static var _rm1131:Object = new Object();
public static var _px1609:_uf368;
public static var _pg588:Object = new Object();
public static var _uq1203:Object = new Object();
public static var _ow1485:_nx31;
public static var _ah1103:Object = new Object();
public static var _gm1204:_nx31;
public static var _fp1498:Object = new Object();
public static var _dv888:Object = new Object();
public static var _va1163:_nx31;
public static var _bb468:Array = [_pg588, _fp1498, _vo1364, _ah1103, _qa1596];
public static var _vo1364:Object = new Object();
public static var _qa1596:Object = new Object();
public static function _vt103(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:BitmapData, _arg6:int=-1):void{
var _local8:BitmapData;
var _local7:int = _rw574._up1471._ma459(5, 15);
if (_arg6 == -1){
_local8 = _dv888[_rw574._up1471._ma459(0, 4)];
} else {
_local8 = _dv888[_arg6];
};
var _local9:int;
while (_local9 < _local7) {
_px1609 = _gm1204._kn515(_local8, 0, 0, _rk277._po1551.width, _rk277._po1551.height, _arg5, _af1146._dg84.x, _af1146._dg84.y, 0);
_px1609._mm1672(_local8, _rw574._up1471._tp230(0.008, 0.05), 20, 4);
_px1609._ss1421(_arg1, _arg2);
_px1609._ti798(((_arg3 * 0.5) + _rw574._up1471._tp230(-0.1, 0.1)), ((_arg4 * 0.5) + _rw574._up1471._tp230(-0.1, 0.1)), 0, 0, 0, false);
_local9++;
};
}
public static function _rm695(_arg1:_uf368):void{
var _local4:_uf368;
var _local2:Number = 0.8;
var _local3:int;
while (_local3 < 32) {
_local4 = new _uf368();
_local4 = _gm1204._kn515(_arg1._ud376, (28 * 3), _local3, 28, 1, _he822._yh998._dn642, -1, -1, 0);
_local4._ss1421(_arg1.x, _arg1.y);
if (_local3 < 16){
_local2 = (_local2 - 0.05);
_local4._io238(270, 0, _local2);
} else {
_local2 = (_local2 + 0.05);
_local4._io238(90, 0, _local2);
};
_local4._la93(800);
_local4._xy276(-30, -30, (700 + 30), (500 + 30));
_local3++;
};
}
public static function _vc316():void{
_gm1204._vc316();
_va1163._vc316();
_ow1485._vc316();
}
public static function _lv801():void{
_kp1548(_rk277._oh414, _rm1131);
_kp1548(_rk277._sg324, _uq1203);
}
public static function Init():void{
_va1163 = new _nx31();
_gm1204 = new _nx31();
_ow1485 = new _nx31();
_xh499();
_lv801();
}
public static function _xh499():void{
var _local2:int;
var _local1:Number = 0;
_local2 = 0;
while (_local2 < 64) {
_rw574._th1227(_pg588, _local2, _rk277._xa1227, 4, 4, 4, 0, true, 20, 0, -0.5, -0.5, false, 0, _local1);
_rw574._th1227(_fp1498, _local2, _rk277._xa1227, 4, 4, 4, 0, true, 20, -0.5, 0, -0.5, false, 0, _local1);
_rw574._th1227(_vo1364, _local2, _rk277._xa1227, 4, 4, 4, 0, true, 20, -0.5, -0.5, 0, false, 0, _local1);
_rw574._th1227(_ah1103, _local2, _rk277._xa1227, 4, 4, 4, 0, true, 20, 0, 0, -0.5, false, 0, _local1);
_rw574._th1227(_qa1596, _local2, _rk277._xa1227, 4, 4, 4, 0, true, 20, 0, -0.5, 0, false, 0, _local1);
_local1 = (_local1 + (360 / 64));
_local2++;
};
_rw574._th1227(_yl127, 0, _rk277._jq897, 4, 4, 4, 0, true, 20, 0, -0.8, -0.8);
_rw574._th1227(_yl127, 1, _rk277._jq897, 4, 4, 4, 0, true, 20, -0.8, 0, -0.8);
_rw574._th1227(_yl127, 2, _rk277._jq897, 4, 4, 4, 0, true, 20, -0.8, -0.8, 0);
_rw574._th1227(_yl127, 3, _rk277._jq897, 4, 4, 4, 0, true, 20, 0, 0, -0.8);
_rw574._th1227(_yl127, 4, _rk277._jq897, 4, 4, 4, 0, true, 20, 0, -0.8, 0);
_rw574._th1227(_yl127, 5, _rk277._jq897, 4, 4, 0, 0, true, 20, 0, -0.8, 0);
_rw574._th1227(_dv888, 0, _rk277._po1551, 4, 4, 4, 0, true, 20, 0, -0.8, -0.8);
_rw574._th1227(_dv888, 1, _rk277._po1551, 4, 4, 4, 0, true, 20, -0.8, 0, -0.8);
_rw574._th1227(_dv888, 2, _rk277._po1551, 4, 4, 4, 0, true, 20, -0.8, -0.8, 0);
_rw574._th1227(_dv888, 3, _rk277._po1551, 4, 4, 4, 0, true, 20, 0, 0, -0.8);
_rw574._th1227(_dv888, 4, _rk277._po1551, 4, 4, 4, 0, true, 20, 0, -0.8, 0);
}
public static function _wm802(_arg1:Number, _arg2:Number, _arg3:BitmapData, _arg4:int, _arg5:Number=0.95, _arg6:int=-1):void{
var _local8:int;
var _local9:Object;
var _local7:Number = (360 / _arg4);
if (_arg6 == -1){
_local9 = _bb468[_rw574._up1471._ma459(0, 3)];
} else {
_local9 = _bb468[_arg6];
};
var _local10:int;
while (_local10 < _arg4) {
_local8 = (_local7 / 5.6);
if (_local8 > 63){
_local8 = 63;
};
_px1609 = _gm1204._kn515(_pg588[_local8], 0, 0, _rk277._xa1227.width, _rk277._xa1227.height, _arg3, _af1146._dg84.x, _af1146._dg84.y, 0);
_px1609._mm1672(_local9[_local8], _rw574._up1471._tp230(0.02, 0.02), 20, 4);
_px1609._ss1421(_arg1, _arg2);
_px1609._io238(_local7, 0, _rw574._up1471._tp230(0.4, 0.4), 0, 0, false);
if (_arg5 > 0){
_px1609._ai1537((1000 / 20), _arg5);
};
_local7 = (_local7 + (360 / _arg4));
_local10++;
};
}
public static function _kp1548(_arg1:BitmapData, _arg2:Object):void{
var _local3:int;
while (_local3 < _arg1.height) {
_arg2[_local3] = new BitmapData(_arg1.width, 1, true, 0);
_rw574._jy699(_arg1, 0, 0, 0, _local3, _arg1.width, 1, _arg2[_local3]);
_local3++;
};
}
public static function _ik1324(_arg1:Number, _arg2:Number, _arg3:BitmapData, _arg4:int, _arg5:int=-1):void{
var _local8:int;
var _local9:BitmapData;
var _local6:int = _rw574._up1471._ma459((10 * _arg4), (50 * _arg4));
var _local7:Number = (360 / _local6);
if (_arg5 == -1){
_local9 = _yl127[_rw574._up1471._ma459(0, 4)];
} else {
_local9 = _yl127[_arg5];
};
var _local10:int;
while (_local10 < _local6) {
_local7 = _rw574._up1471._tp230(0, 359);
_local8 = (_local7 / 5.6);
if (_local8 > 63){
_local8 = 63;
};
_px1609 = _gm1204._kn515(_local9, 0, 0, _rk277._jq897.width, _rk277._jq897.height, _arg3, _arg1, _arg2, 0);
_px1609._mm1672(_local9, _rw574._up1471._tp230(0.008, 0.03), 20, 4);
_px1609._ss1421(_arg1, _arg2);
_px1609._io238(_local7, 0, _rw574._up1471._tp230(0.05, 0.2), 0, 0, false);
_local7 = (_local7 + (360 / _local6));
_local10++;
};
}
public static function _af629(_arg1:Number, _arg2:Number, _arg3:BitmapData, _arg4:int, _arg5:int=-1):void{
var _local8:int;
var _local9:Object;
var _local6:int = _rw574._up1471._ma459((10 * _arg4), (50 * _arg4));
if (_arg4 == -1){
_local6 = _rw574._up1471._ma459(5, 10);
};
var _local7:Number = (360 / _local6);
if (_arg5 == -1){
_local9 = _bb468[_rw574._up1471._ma459(0, 4)];
} else {
_local9 = _bb468[_arg5];
};
var _local10:int;
while (_local10 < _local6) {
_local7 = _rw574._up1471._tp230(0, 359);
_local8 = (_local7 / 5.6);
if (_local8 > 63){
_local8 = 63;
};
_px1609 = _gm1204._kn515(_pg588[_local8], 0, 0, _rk277._xa1227.width, _rk277._xa1227.height, _arg3, 0, 0, 0);
_px1609._mm1672(_local9[_local8], _rw574._up1471._tp230(0.01, 0.05), 20, 4);
_px1609._ss1421(_arg1, _arg2);
_px1609._io238(_local7, 0, _rw574._up1471._tp230(0.08, 0.5), 0, 0, false);
_px1609._ai1537((1000 / 20), 0.95);
_local7 = (_local7 + (360 / _local6));
_local10++;
};
}
}
}//package
Section 59
//_mv211 (_mv211)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _mv211 {
public static var _cp727:Number = 0;
public static var _aq1168:Number = 1;
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local3 = 1100;
var _local4 = 40;
var _local5 = 20;
var _local6 = 3;
_ib16._bs472 = _sv1711;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local7 = _ib16._ea276;
var _local8 = _local5;
var _local9 = (_local7[_local8] - 1);
_local7[_local8] = _local9;
} else {
_px1609 = _ib16._ij1088._kn515(_rk277._as1456, 0, 0, 48, 48, _arg1, -1, -1, 0);
_he1472._nx1028(_px1609, 64);
_px1609._qd1101 = _rw574._up1471._tp230(5, 15);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._mm1672(_aw1346[0], _rw574._up1471._tp230(0.05, 0.2), 20, 1, 0);
_px1609._sh1626(18);
_px1609._gy1216(_cf73);
_px1609._ru190(_rw574._lb492(), _rw574._up1471._tp230(0.001, 0.003), 0.035, _rw574._lb492(), _rw574._up1471._tp230(0.001, 0.003), 0.035, 0, _rw574._up1471._tp230(0.025, 0.15), 0, 0, false);
_px1609._md1262 = _rw574._up1471._tp230(1000, 8000);
_px1609._se1147 = _px1609._md1262;
_px1609._lc262 = _rw574._up1471._tp230(0.05, 0.15);
_px1609.id = _local5;
_px1609._gu403 = _local6;
_px1609._qy180 = _local3;
};
}
public static function _xh499():void{
_rw574._wy1430(_aw1346, 0, _rk277._as1456, -0.015, 0, 20, true, 0, 1);
}
public static function _sv1711():void{
_cp727 = (_cp727 + _he1472._mv493);
if (_cp727 > 2000){
_cp727 = _rw574._up1471._tp230(-2500, 1500);
if (_aq1168 == 1){
_aq1168 = -1;
} else {
_aq1168 = 1;
};
};
}
private static function _cf73(_arg1:_uf368):void{
_arg1.x = (_arg1.x + ((_arg1._lc262 * _he1472._mv493) * _aq1168));
}
}
}//package
Section 60
//_oc1204 (_oc1204)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _oc1204 {
public static var _qi914:Array = [_aw1346, _lo1633, _ak1068, _gf209];
public static var _lo1633:Object = new Object();
public static var _ak1068:Object = new Object();
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static var _gf209:Object = new Object();
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local5:int;
var _local8:int;
var _local9:int;
var _local3 = 1400;
var _local4 = 200;
_local5 = 15;
var _local6 = 1;
var _local7:Number = 0;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local10 = _ib16._ea276;
var _local11 = _local5;
var _local12 = (_local10[_local11] - 1);
_local10[_local11] = _local12;
} else {
trace("SpacerInvaders Launched!");
_ib16._ea276[_local5] = (_ib16._ea276[_local5] + 200);
_local8 = 0;
while (_local8 < 10) {
_local9 = 0;
while (_local9 < 20) {
_px1609 = _ib16._ij1088._kn515(_rk277._yy508, 0, 0, 28, 20, _arg1, -1, -1, 0);
_px1609._qd1101 = _rw574._up1471._tp230(3, 8);
_px1609._xy276(-64, -3000, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._ss1421((10 + (_local9 * 34)), (0 - (30 * _local8)));
_px1609._mm1672(_rk277._yy508, _rw574._up1471._tp230(0.0025, 0.005), 2, 2);
_px1609._ru190(_rw574._lb492(), _rw574._up1471._tp230(0.001, 0.003), 0.05, _rw574._lb492(), _rw574._up1471._tp230(0.001, 0.003), 0.05, 0, 0.05, 0, 0, false);
_px1609._sh1626(11);
_px1609._md1262 = _rw574._up1471._tp230(15000, 35000);
_px1609._gy1216(_tq1674);
_px1609.id = _local5;
_px1609._gu403 = _local6;
_px1609._qy180 = _local3;
_px1609._bb209 = false;
_local9++;
};
_local8++;
};
};
}
private static function _tq1674(_arg1:_uf368):void{
if (_arg1._bb209 == false){
if (_arg1.y > 400){
(_arg1._bb209 == true);
_arg1._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
};
};
if (_arg1._md1262 > 0){
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._md1262 = 0;
_arg1._ud376 = _rk277._xe1337;
_arg1._wh1061(_af1146._dg84, _rw574._up1471._tp230(0.05, 0.15), 0, 0, 0);
_arg1._gy1216(null);
};
};
}
public static function _xh499():void{
}
}
}//package
Section 61
//_og247 (_og247)
package {
import flash.events.*;
import classes.*;
import flash.display.*;
import flash.net.*;
import mochi.*;
import flash.geom.*;
import flash.filters.*;
import flash.utils.*;
import caurina.transitions.*;
import flash.ui.*;
public class _og247 {
public static var _px1609:_uf368;
public static var _uk303:Number = 0;
public static var _uq806:Number = 0;
public static var _eq894:Number = 0;
public static var _gu735:int;
public static var _ta1347:Number = 0;
public static var _yo1216:_nx31;
public static var _nm816:int;
public static var _uh966:Object = new Object();
public static var _sl35:Boolean;
public static var _ol817:Number = 0;
public static var _lo1633:Object = new Object();
public static var _ao412:MochiDigits = new MochiDigits();
public static var _pj1518:int;
public static var State:int;
public static var _bc899:Number = 0;
public static var _ba999:_rd716;
public static var _hx830:Number = 0;
public static var _gf734:int;
public static var _fb216:BitmapData;
public static var _dg84:_uf368;
public static var _gw558:Boolean;
public static var _yh998:_ot570;
public static var _mk1566:Number = 0;
private static var _qr783:Sprite;
public static var _yq1010:int;
public static var _at1725:Number = 0;
public static var _do647:int;
public static var _sk1086:_yq299;
public static var _ss1485:Number = 0;
public static var _nt428:String;
private static function _cr574(_arg1:Event):void{
Tweener.addTween(_arg1.currentTarget, {brightness:2, time:0.25, transition:"linear"});
}
public static function _kv374():void{
_af1146._pr1270 = new _nx31();
_yo1216 = new _nx31();
_lv349._vc316();
_ao412.value = 0;
_gf734 = 1;
_gu735 = 3;
_dg84 = new _uf368();
_dg84._wr444(_rk277._pf1210, 0, 0, 30, 30, _yh998._dn642, 0);
_dg84._ss1421(175, 235);
_dg84.state = 1;
_dg84._sh1626(14.8);
_mk1566 = (1000 / 2);
_ol817 = _mk1566;
_nm816 = 1;
_uq806 = 8000;
_do647 = 2;
_bc899 = 3000;
_pj1518 = 0;
_sk1086._lk434(_yw1443, 3000);
}
public static function _ko342(_arg1:_uf368):void{
_arg1._tc794 = true;
}
public static function _pm486():void{
}
public static function _fb897(_arg1:_rd716):void{
_arg1._ct375();
_arg1 = null;
}
public static function _oq369():void{
var _local1:Number = (_at1725 - _dg84.x);
var _local2:Number = (_hx830 - _dg84.y);
var _local3:Number = (_local1 / 800);
var _local4:Number = (_local2 / 800);
_dg84.x = (_dg84.x + (_local3 * _he1472._mv493));
if (_dg84._md1262 == 0){
if (_of949._ny1521 == true){
_dg84._md1262 = 1;
_dg84._vf62 = 0.0006;
_dg84._ke128 = -0.35;
};
} else {
_dg84.y = (_dg84.y + (_dg84._ke128 * _he1472._mv493));
_dg84._ke128 = (_dg84._ke128 + (_dg84._vf62 * _he1472._mv493));
if (_dg84.y > 235){
_dg84.y = 235;
_dg84._md1262 = 0;
};
};
}
public static function _id1125():void{
_of949._mu960();
_of949._ny1521 = false;
_of949._nb1479 = false;
_yh998._rl373.alpha = 0;
_yh998._iv943();
_yh998._rl373.visible = true;
_sk1086._mi1586();
_yh998._rh308._vc316();
_pm486();
_kv374();
Tweener.addTween(_yh998._rl373, {alpha:1, time:1, transition:"linear", onComplete:_jx306});
State = 1;
_gw558 = true;
_ao412.value = 0;
_xa1271(0);
_he1472._ml674 = _ig1054;
_gj916._xm563("smashmusic");
}
public static function _yw1443():void{
_pj1518 = (_pj1518 + 1);
_yq1010 = (_pj1518 * 15);
_to506(_pj1518);
}
public static function _ke1547(_arg1:Number, _arg2:Number):void{
var _local5:int;
var _local6:BitmapData;
var _local3 = 200;
var _local4:Number = (360 / _local3);
_local6 = _lv349._yl127[3];
var _local7:int;
while (_local7 < _local3) {
_local4 = _rw574._up1471._tp230(0, 359);
_local5 = (_local4 / 5.6);
if (_local5 > 63){
_local5 = 63;
};
_px1609 = _lv349._gm1204._kn515(_local6, 0, 0, _rk277._jq897.width, _rk277._jq897.height, _yh998._dn642, _arg1, _arg2, 0);
_px1609._mm1672(_local6, _rw574._up1471._tp230(0.003, 0.03), 20, 4);
_px1609._ss1421(_arg1, _arg2);
_px1609._io238(_local4, 0, _rw574._up1471._tp230(0.01, 0.15), 0, 0, false);
_local4 = (_local4 + (360 / _local3));
_local7++;
};
}
public static function _nx482():void{
_fj1529();
_ss1375._id1125();
}
public static function _am1441(_arg1:_uf368):void{
_du1222(_arg1.x, _arg1.y);
_arg1._tc794 = true;
_arg1._os1213 = false;
if (_arg1.id < 4){
_fp1092(_arg1);
};
_ao412.addValue(100);
_yq1010 = (_yq1010 - 1);
if (_yq1010 == 0){
_sk1086._lk434(_yw1443, 3000);
};
_rm966._bw292("bubble");
}
public static function Init(_arg1:Sprite):void{
_qr783 = _arg1;
_yh998 = new _ot570();
_yh998.Init(_arg1, 350, 250, false, 4278190080, false);
_yh998.scale = 2;
_yh998._ss1421(350, 250);
_sk1086 = new _yq299();
_yh998._rl373.alpha = 0;
_yh998._rl373.visible = false;
}
public static function _es275():void{
}
public static function _ce1549():void{
_uk503();
}
public static function _xa1271(_arg1:Number):void{
_ao412.addValue(_arg1);
_nt428 = _rw574._jx992(_ao412.toString(), 7);
}
public static function _ig1054(_arg1:Number, _arg2:Number, _arg3:Number):void{
var _local4:Number;
_at1725 = (_arg1 * 0.5);
_hx830 = (_arg2 * 0.5);
_sk1086._ig1054(_arg3);
_rm966._aw1694();
_yh998._vt140();
_yh998._na739(_rk277._gh743);
_yo1216._fa505(_yh477, _arg3);
_af1146._pr1270._cd171(_arg3);
if (_dg84.state == 1){
_dg84._ig1054(_arg3);
_dg84._ij1556();
_local4 = _rw574._vq657(_dg84.x, _dg84.y, _at1725, _hx830);
_rw574._ci1517(_rk277._py613, ((_dg84.x + 1) + Math.round(_rw574._be1379(_local4, 2))), (_dg84.y + Math.round(_rw574._dm1262(_local4, 2))), 0, 0, 15, 4, _yh998._dn642);
};
_lv349._gm1204._cd171(_arg3);
_he1472._lr1723.draw(_yh998._dn642, ("SCORE " + _ao412.value), 175, 5, _is771.CENTER);
if (_do647 == 1){
_ce1549();
} else {
if (_do647 == 2){
_oq369();
_bc899 = (_bc899 - _arg3);
if (_bc899 < 1){
_bc899 = 0;
_do647 = 1;
};
} else {
if (_do647 == 3){
_mo47();
_bc899 = (_bc899 - _arg3);
if (_bc899 < 1){
_bc899 = 0;
_do647 = 4;
_yh998._mf1555();
if (_he1472._yl1448 == true){
_he1472.agi_busy = true;
_he1472.agi_api.initAGUI({onClose:_qj778});
_he1472.agi_api.showScoreboardSubmit(_ao412.value, null, "BallieBubble");
} else {
_yh998._mx1114();
_sk1086._lk434(_nx482, 1500);
};
};
} else {
if (_do647 == 4){
_he1472._lr1723.draw(_yh998._dn642, "GAME OVER", 175, 70, _is771.CENTER);
};
};
};
};
if (_of949._cg1119 > 0){
if ((((_of949._cg1119 == 27)) && (!((_do647 == 4))))){
_fj1529();
_ss1375._id1125();
};
_of949._aj742(_of949._cg1119);
};
_yh998._vm1651();
}
private static function _dm1179(_arg1:Event):void{
_fj1529();
_ss1375._id1125();
}
public static function _ch1637(_arg1:Number, _arg2:Number):void{
_px1609 = _af1146._pr1270._kn515(_rk277._ij1611, 0, 0, 8, 8, _yh998._dn642, 0, 0, 0);
_px1609._ss1421(_dg84.x, _dg84.y);
_px1609._xy276(-8, -8, (350 + 8), (250 + 8));
_px1609._io238(_arg1, 0, _arg2);
_px1609._sh1626(3.9);
}
public static function _fj1529():void{
Tweener.addTween(_yh998._rl373, {alpha:0, time:1, transition:"linear", onComplete:_aa1667});
_gj916._cw945();
_gw558 = false;
}
public static function _du1222(_arg1:Number, _arg2:Number):void{
var _local4:BitmapData;
var _local3:int = _rw574._up1471._ma459(15, 45);
_local4 = _lv349._dv888[0];
var _local5:int;
while (_local5 < _local3) {
_px1609 = _lv349._gm1204._kn515(_local4, 0, 0, _rk277._po1551.width, _rk277._po1551.height, _yh998._dn642, _arg1, _arg2, 0);
_px1609._mm1672(_local4, _rw574._up1471._tp230(0.008, 0.05), 20, 4);
_px1609._ss1421(_arg1, _arg2);
_px1609._io238(270, 180, _rw574._up1471._tp230(0.05, 0.2), 0, 0.0001, false);
_local5++;
};
}
public static function _cn66(_arg1:_uf368):void{
_arg1._me814(0.003, 1, 1.5, 5, 0);
_arg1._rn387(0.003, 1, 1.5, 5, 0);
}
public static function _wh1042(_arg1:Event):void{
}
public static function _fp1092(_arg1:_uf368):void{
var _local2:int;
while (_local2 < 2) {
_px1609 = _yo1216._kn515(_rk277._ok549, 0, 0, 60, 60, _yh998._dn642, -1, -1, 1);
_px1609._ss1421(_arg1.x, _arg1.y);
_px1609.id = (_arg1.id + 1);
_px1609._qy180 = 100;
_px1609._xx1283 = _rw574._up1471._tp230(0.02, 0.06);
if (_rw574._hg629() == true){
_px1609._xx1283 = -(_px1609._xx1283);
};
_px1609._ke128 = -(_rw574._up1471._tp230(0.02, 0.06));
_px1609._sh1626(29.5);
_px1609._gy1216(_sq180);
_px1609._td1389 = true;
if (_px1609.id == 2){
_px1609._ob612(0.8, 0.8);
};
if (_px1609.id == 3){
_px1609._ob612(0.5, 0.5);
};
if (_px1609.id == 4){
_px1609._ob612(0.25, 0.25);
};
_local2++;
};
}
public static function _xh499():void{
}
public static function _jx306():void{
}
private static function _fm1215(_arg1:Event):void{
Tweener.addTween(_arg1.currentTarget, {brightness:1, time:0.25, transition:"linear"});
}
public static function _mo47():void{
}
public static function _lr1723(_arg1:String, _arg2:Number, _arg3:Number):void{
_he1472._lr1723.draw(_yh998._dn642, _arg1, _arg2, _arg3);
}
public static function _tu440(_arg1:_rd716):void{
_arg1._tc794 = true;
_yh998._rh308._ei187(1);
}
public static function _bu608(_arg1:Event):void{
}
public static function _gn738():void{
_fj1529();
_ss1375._id1125();
}
public static function _vq1473(_arg1:_uf368):void{
if (_arg1.x < 4){
_arg1.x = 4;
_arg1._xx1283 = -(_arg1._xx1283);
} else {
if (_arg1.x > 346){
_arg1.x = 346;
_arg1._xx1283 = -(_arg1._xx1283);
};
};
}
public static function _qj778():void{
_he1472.agi_busy = false;
_yh998._mx1114();
_sk1086._lk434(_nx482, 1500);
}
public static function _to506(_arg1:int=1):void{
var _local2:int;
while (_local2 < _arg1) {
_px1609 = _yo1216._kn515(_rk277._ok549, 0, 0, 60, 60, _yh998._dn642, -1, -1, 1);
_px1609._ss1421(_rw574._up1471._ma459(30, (350 - 30)), 30);
_px1609.id = 1;
_px1609._qy180 = 100;
_px1609._xx1283 = _rw574._up1471._tp230(0.02, 0.06);
if (_rw574._hg629() == true){
_px1609._xx1283 = -(_px1609._xx1283);
};
_px1609._ke128 = _rw574._up1471._tp230(0.02, 0.06);
if (_rw574._hg629() == true){
_px1609._ke128 = -(_px1609._ke128);
};
_px1609._sh1626(29.5);
_px1609._gy1216(_sq180);
_px1609._td1389 = true;
_px1609._ch630(0.001, 0, 0, 1);
_local2++;
};
}
public static function _uk503():void{
_oq369();
_ta1347 = (_ta1347 - _he1472._mv493);
if (_ta1347 < 1){
_ta1347 = 250;
_ch1637(_rw574._vq657(_dg84.x, _dg84.y, _at1725, _hx830), 0.2);
};
}
private static function _yh477(_arg1:_uf368):void{
if (_arg1._tc794 == false){
};
}
public static function _xy891(_arg1:Number):void{
}
private static function _sq180(_arg1:_uf368):void{
var _local3:_uf368;
_arg1.x = (_arg1.x + (_arg1._xx1283 * _he1472._mv493));
_arg1.y = (_arg1.y + (_arg1._ke128 * _he1472._mv493));
if (_arg1._xx1283 > 0){
if (_arg1.x > (350 - ((_arg1.width * _arg1._yl1629) / 2))){
_arg1.x = (350 - ((_arg1.width * _arg1._yl1629) / 2));
_arg1._xx1283 = -(_arg1._xx1283);
};
} else {
if (_arg1._xx1283 < 0){
if (_arg1.x < ((_arg1.width * _arg1._yl1629) / 2)){
_arg1.x = ((_arg1.width * _arg1._yl1629) / 2);
_arg1._xx1283 = -(_arg1._xx1283);
};
};
};
if (_arg1._ke128 > 0){
if (_arg1.y > (250 - ((_arg1.height * _arg1._xf81) / 2))){
_arg1.y = (250 - ((_arg1.height * _arg1._xf81) / 2));
_arg1._ke128 = -(_arg1._ke128);
};
} else {
if (_arg1._ke128 < 0){
if (_arg1.y < ((_arg1.height * _arg1._xf81) / 2)){
_arg1.y = ((_arg1.height * _arg1._xf81) / 2);
_arg1._ke128 = -(_arg1._ke128);
};
};
};
var _local2:int = (_af1146._pr1270._rh308.length - 1);
var _local4:int = _local2;
while (_local4 >= 0) {
_local3 = _af1146._pr1270._rh308[_local4];
if (_arg1.id > -1){
if (_rw574._if1500(_arg1, _local3) == true){
_am1441(_arg1);
_local3._ct375();
_af1146._pr1270._rh308.splice(_local4, 1);
_local3 = null;
};
};
_local4--;
};
if (_rw574._if1500(_arg1, _dg84) == true){
if (_do647 != 3){
_ke1547(_dg84.x, _dg84.y);
_arg1._tc794 = true;
_do647 = 3;
_dg84.state = 0;
_dg84._os1213 = false;
_bc899 = 3500;
_rm966._bw292("smashhit");
};
};
}
public static function _kg201():void{
}
private static function _oc241(_arg1:Event):void{
_fj1529();
_ss1375._id1125();
}
private static function _aa1667():void{
_yh998._rh308._vc316();
_yh998._rl373.visible = false;
}
public static function _ba670(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Number):void{
trace(_arg1);
}
public static function _kh1692(_arg1:Event):void{
}
}
}//package
Section 62
//_om527 (_om527)
package {
import flash.events.*;
import classes.*;
import flash.display.*;
import flash.net.*;
import mochi.*;
import flash.geom.*;
import flash.filters.*;
import flash.utils.*;
import caurina.transitions.*;
import flash.ui.*;
public class _om527 {
public static var _hx830:Number = 0;
public static var _px1609:_uf368;
public static var _gf734:int;
public static var _fb216:BitmapData;
public static var _uk303:Number = 0;
public static var _uq806:Number = 0;
public static var _dg84:_uf368;
public static var _gw558:Boolean;
public static var _yh998:_ot570;
public static var _gu735:int;
public static var _eq894:Number = 0;
public static var _mk1566:Number = 0;
public static var _ta1347:Number = 0;
private static var _qr783:Sprite;
public static var _at1725:Number = 0;
public static var _nm816:int;
public static var _uh966:Object = new Object();
public static var _yo1216:_nx31;
public static var _do647:int;
public static var _sl35:Boolean;
public static var _sk1086:_yq299;
public static var _ss1485:Number = 0;
public static var _ol817:Number = 0;
public static var _lo1633:Object = new Object();
public static var _ao412:MochiDigits = new MochiDigits();
public static var State:int;
public static var _nt428:String;
public static var _bc899:Number = 0;
public static var _ba999:_rd716;
public static function _re1385(_arg1:_uf368):void{
_px1609 = _lv349._gm1204._kn515(_rk277._fx88, 0, 0, 19, 19, _yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._xy276(-20, -20, (350 + 20), (250 + 20));
_px1609._io238(315, 0, 0.2);
_px1609._la93(300);
_px1609 = _lv349._gm1204._kn515(_rk277._fx88, 0, 0, 19, 19, _yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._xy276(-20, -20, (350 + 20), (250 + 20));
_px1609._io238(45, 0, 0.2);
_px1609._la93(300);
_px1609 = _lv349._gm1204._kn515(_rk277._fx88, 0, 0, 19, 19, _yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._xy276(-20, -20, (350 + 20), (250 + 20));
_px1609._io238(135, 0, 0.2);
_px1609._la93(300);
_px1609 = _lv349._gm1204._kn515(_rk277._fx88, 0, 0, 19, 19, _yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._xy276(-20, -20, (350 + 20), (250 + 20));
_px1609._io238(225, 0, 0.2);
_px1609._la93(300);
}
public static function _kp1248():void{
var _local2:BitmapData;
var _local1:int = _rw574._up1471._ma459(1, 4);
var _local3:Number = 0;
var _local4:Number = 0;
var _local5:int = _rw574._up1471._ma459(1, 4);
var _local6 = 200;
var _local7 = 20;
var _local8:int = _rw574._up1471._ma459(0, 1);
if (_local1 == 1){
_local2 = _uh966[1];
_local3 = 16;
_local4 = 16;
};
if (_local1 == 2){
_local2 = _uh966[2];
_local3 = 24;
_local4 = 24;
};
if (_local1 == 3){
_local2 = _uh966[3];
_local3 = 32;
_local4 = 32;
};
if (_local1 == 4){
_local2 = _uh966[4];
_local3 = 40;
_local4 = 40;
};
_px1609 = _yo1216._kn515(_local2, 0, 0, _local3, _local4, _yh998._dn642, -1, -1, 0);
_px1609._ss1421(_rw574._up1471._tp230(20, (350 - 20)), -20);
_px1609._io238(90, 0, _rw574._up1471._tp230(0.025, 0.15), 0, 0, true);
_px1609._xy276(-20, -20, (350 + 20), (250 + 20));
_px1609._mm1672(_local2, _rw574._up1471._tp230(0.025, 0.04), 32, 2, 0);
if (_rw574._hg629() == true){
_px1609._xi1222 = -(_px1609._xi1222);
};
_px1609._gu403 = 2;
_px1609.id = _local8;
_px1609._qy180 = _local6;
}
public static function _mo47():void{
if (_rw574._hg629(30) == true){
_px1609 = _lv349._gm1204._kn515(_rk277._bn1137, 0, 0, 47, 48, _yh998._dn642, 0, 0, 0);
_px1609._ss1421(_dg84.x, _dg84.y);
_px1609._io238(_rw574._lb492(), 0, _rw574._up1471._tp230(0.05, 0.1), 0, 0, false);
_px1609._la93(500);
};
if (_rw574._hg629(70) == true){
_px1609 = _lv349._gm1204._kn515(_rk277._fx88, 0, 0, 19, 19, _yh998._dn642, 0, 0, 0);
_px1609._ss1421(_dg84.x, _dg84.y);
_px1609._io238(_rw574._lb492(), 0, _rw574._up1471._tp230(0.05, 0.3), 0, 0, false);
_px1609._la93(500);
};
}
public static function _ba670(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Number):void{
trace(_arg1);
}
public static function _kh1692(_arg1:Event):void{
}
private static function _cr574(_arg1:Event):void{
Tweener.addTween(_arg1.currentTarget, {brightness:2, time:0.25, transition:"linear"});
}
public static function _kv374():void{
_af1146._pr1270 = new _nx31();
_yo1216 = new _nx31();
_lv349._vc316();
_ao412.value = 0;
_gf734 = 1;
_gu735 = 3;
_dg84 = new _uf368();
_dg84._wr444(_rk277._du577, 0, 0, _rk277._du577.width, _rk277._du577.height, _yh998._dn642, 0);
_dg84._ss1421(175, (249 - (_rk277._du577.height / 2)));
_dg84.state = 1;
_dg84._os1213 = true;
_mk1566 = (1000 / 2);
_ol817 = _mk1566;
_nm816 = 1;
_uq806 = 8000;
_do647 = 2;
_bc899 = 3000;
}
public static function _fh1255():void{
trace("New UFO 1");
_px1609 = _yo1216._kn515(_rk277._pr1490, 0, 0, 61, 29, _yh998._dn642, -1, -1, 0);
_px1609._ss1421(_rw574._up1471._tp230(40, (350 - 40)), -15);
_px1609._nu1684(_px1609.x, _px1609.y, 0.00025, _rw574._up1471._tp230(0.04, 0.1), 0.00025, _rw574._up1471._tp230(0.04, 0.1));
_px1609.x = (_px1609.x + _rw574._up1471._tp230(-50, 50));
_px1609.y = (_px1609.y + _rw574._up1471._tp230(-20, 20));
_px1609._gy1216(_yt950);
_px1609._md1262 = _rw574._up1471._ma459(50, 100);
_px1609._se1147 = _rw574._up1471._ma459(2000, 5000);
_px1609.id = 2;
}
public static function _be594(_arg1:_uf368):void{
_px1609 = _lv349._gm1204._kn515(_rk277._bn1137, 0, 0, 47, 48, _yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._la93(600);
}
public static function _mc1543(_arg1:_uf368):void{
if (_rw574._hg629(10) == true){
_px1609 = _yo1216._kn515(_rk277._cu1304, 0, 0, 9, 17, _yh998._dn642, -1, -1, 0);
_px1609._ss1421(_arg1.x, (_arg1.y + 10));
_px1609._io238(90, 0, 0.2, 0, 0, true);
_px1609._xy276(-20, -20, (350 + 20), (250 + 20));
_px1609.id = -1;
_rm966._bw292("smashufoshoot");
};
}
public static function _ko342(_arg1:_uf368):void{
_arg1._tc794 = true;
}
public static function _xy891(_arg1:Number):void{
}
public static function _pm486():void{
}
public static function _tu440(_arg1:_rd716):void{
_arg1._tc794 = true;
_yh998._rh308._ei187(1);
}
public static function _lr1723(_arg1:String, _arg2:Number, _arg3:Number):void{
_he1472._lr1723.draw(_yh998._dn642, _arg1, _arg2, _arg3);
}
public static function _id1125():void{
_of949._mu960();
_of949._ny1521 = false;
_of949._nb1479 = false;
_yh998._rl373.alpha = 0;
_yh998._na739(_rk277._rf956);
_yh998._rl373.visible = true;
_sk1086._mi1586();
_yh998._rh308._vc316();
_pm486();
_kv374();
Tweener.addTween(_yh998._rl373, {alpha:1, time:1, transition:"linear", onComplete:_jx306});
State = 1;
_gw558 = true;
_ao412.value = 0;
_xa1271(0);
_he1472._ml674 = _ig1054;
_gj916._xm563("smashmusic");
}
public static function _qj778():void{
_he1472.agi_busy = false;
_yh998._mx1114();
_sk1086._lk434(_nx482, 1500);
}
public static function _bu608(_arg1:Event):void{
}
public static function _xk701(_arg1:_uf368):void{
var _local2:int = _rw574._up1471._ma459(2, 4);
var _local3:int;
while (_local3 < _local2) {
_dn1022(_arg1);
_local3++;
};
}
public static function _gn738():void{
_fj1529();
_ss1375._id1125();
}
public static function _fb897(_arg1:_rd716):void{
_arg1._ct375();
_arg1 = null;
}
public static function Init(_arg1:Sprite):void{
_qr783 = _arg1;
_yh998 = new _ot570();
_yh998.Init(_arg1, 350, 250, false, 4278190080, false);
_yh998.scale = 2;
_yh998._ss1421(350, 250);
_sk1086 = new _yq299();
_yh998._rl373.alpha = 0;
_yh998._rl373.visible = false;
}
public static function _nx482():void{
_fj1529();
_ss1375._id1125();
}
public static function _uk503():void{
_dg84.x = _at1725;
_ta1347 = (_ta1347 - _he1472._mv493);
if (_ta1347 < 1){
_ta1347 = 250;
_ch1637(270, 0.4);
_rm966._bw292("smashshoot");
};
}
public static function _dn1022(_arg1:_uf368):void{
var _local3:BitmapData;
var _local2:int = _rw574._up1471._ma459(1, 3);
var _local4:Number = 0;
var _local5:Number = 0;
var _local6 = 200;
var _local7 = 1;
if (_local2 == 1){
_local3 = _uh966[1];
_local4 = 16;
_local5 = 16;
};
if (_local2 == 2){
_local3 = _uh966[2];
_local4 = 24;
_local5 = 24;
};
if (_local2 == 3){
_local3 = _uh966[3];
_local4 = 32;
_local5 = 32;
};
if (_local2 == 4){
_local3 = _uh966[4];
_local4 = 40;
_local5 = 40;
};
_px1609 = _yo1216._kn515(_local3, 0, 0, _local4, _local5, _yh998._dn642, -1, -1, 0);
_px1609._ss1421(_arg1.x, _arg1.y);
_px1609._io238(90, 160, _rw574._up1471._tp230(0.05, 0.2), 0, 0, true);
_px1609._xy276(-20, -20, (350 + 20), (250 + 20));
_px1609._mm1672(_local3, _rw574._up1471._tp230(0.025, 0.01), 32, 2, 0);
if (_rw574._hg629() == true){
_px1609._xi1222 = -(_px1609._xi1222);
};
_px1609._gu403 = 2;
_px1609.id = _local7;
_px1609._qy180 = _local6;
}
public static function _kg201():void{
}
public static function _ce1549():void{
_uk503();
_uq806 = (_uq806 - _he1472._mv493);
if (_uq806 < 1){
_uq806 = _rw574._up1471._tp230(5000, 15000);
_nm816 = _rw574._up1471._ma459(1, 5);
};
_mk1566 = (_mk1566 - (0.001 * _he1472._mv493));
if (_mk1566 < 33){
_mk1566 = 33;
};
_ol817 = (_ol817 - _he1472._mv493);
if (_ol817 < 1){
_ol817 = _mk1566;
if (_nm816 == 1){
_kp1248();
} else {
if (_nm816 == 2){
if (_rw574._hg629(30) == true){
_fh1255();
};
} else {
if (_nm816 == 3){
if (_rw574._hg629(30) == true){
_oh137();
};
} else {
if (_nm816 == 4){
_kp1248();
if (_rw574._hg629(30) == true){
_fh1255();
};
} else {
if (_nm816 == 5){
_kp1248();
if (_rw574._hg629(30) == true){
_oh137();
};
};
};
};
};
};
};
}
public static function _ch1637(_arg1:Number, _arg2:Number):void{
_px1609 = _af1146._pr1270._kn515(_rk277._vr118, 0, 0, 6, 19, _yh998._dn642, 0, 0, 0);
_px1609._ss1421(_dg84.x, _dg84.y);
_px1609._xy276(-16, -16, (350 + 16), (250 + 16));
_px1609._io238(_arg1, 0, _arg2);
}
public static function _cn66(_arg1:_uf368):void{
_arg1._me814(0.003, 1, 1.5, 5, 0);
_arg1._rn387(0.003, 1, 1.5, 5, 0);
}
public static function _ig1054(_arg1:Number, _arg2:Number, _arg3:Number):void{
_at1725 = (_arg1 * 0.5);
_hx830 = (_arg2 * 0.5);
_sk1086._ig1054(_arg3);
_rm966._aw1694();
_yh998._vt140();
_yh998._na739(_rk277._rf956);
_yo1216._tw1613(_sq180, _arg3);
_af1146._pr1270._cd171(_arg3);
if (_dg84.state == 1){
_dg84._ig1054(_arg3);
_dg84._ij1556();
};
_lv349._gm1204._cd171(_arg3);
_he1472._lr1723.draw(_yh998._dn642, ("SCORE " + _ao412.value), 175, 5, _is771.CENTER);
if (_do647 == 1){
_ce1549();
} else {
if (_do647 == 2){
_dg84.x = _at1725;
_bc899 = (_bc899 - _arg3);
if (_bc899 < 1){
_bc899 = 0;
_do647 = 1;
};
} else {
if (_do647 == 3){
_mo47();
_bc899 = (_bc899 - _arg3);
if (_bc899 < 1){
_bc899 = 0;
_do647 = 4;
_yh998._mf1555();
if (_he1472._yl1448 == true){
_he1472.agi_busy = true;
_he1472.agi_api.initAGUI({onClose:_qj778});
_he1472.agi_api.showScoreboardSubmit(_ao412.value, null, "AstroSmash");
} else {
_yh998._mx1114();
_sk1086._lk434(_nx482, 1500);
};
};
} else {
if (_do647 == 4){
_he1472._lr1723.draw(_yh998._dn642, "GAME OVER", 175, 70, _is771.CENTER);
};
};
};
};
if (_of949._cg1119 > 0){
if ((((_of949._cg1119 == 27)) && (!((_do647 == 4))))){
_fj1529();
_ss1375._id1125();
};
_of949._aj742(_of949._cg1119);
};
_yh998._vm1651();
}
public static function _fj1529():void{
Tweener.addTween(_yh998._rl373, {alpha:0, time:1, transition:"linear", onComplete:_aa1667});
_gj916._cw945();
_gw558 = false;
}
private static function _oc241(_arg1:Event):void{
_fj1529();
_ss1375._id1125();
}
public static function _oh137():void{
trace("New UFO 2");
_px1609 = _yo1216._kn515(_rk277._wh29, 0, 0, 61, 29, _yh998._dn642, -1, -1, 0);
if (_rw574._hg629() == true){
_px1609._ss1421(-32, _rw574._up1471._tp230(30, 150));
_px1609._ru190(0, 0, 0, _rw574._lb492(), 0.005, 0.025, _rw574._up1471._tp230(0.05, 0.2), 0, 0, 0, true);
} else {
_px1609._ss1421((350 + 32), _rw574._up1471._tp230(30, 150));
_px1609._ru190(0, 0, 0, _rw574._lb492(), 0.005, 0.025, -(_rw574._up1471._tp230(0.05, 0.2)), 0, 0, 0, true);
};
_px1609._xy276(-32, -32, (350 + 32), (250 + 32));
_px1609._gy1216(_mc1543);
_px1609.id = 2;
}
public static function _yt950(_arg1:_uf368):void{
if (_arg1._xo329 < _arg1._md1262){
_arg1._xo329 = (_arg1._xo329 + (0.2 * _he1472._mv493));
};
if (_rw574._hg629(5) == true){
_px1609 = _yo1216._kn515(_rk277._cu1304, 0, 0, 9, 17, _yh998._dn642, -1, -1, 0);
_px1609._ss1421(_arg1.x, (_arg1.y + 10));
_px1609._io238(90, 0, 0.2, 0, 0, true);
_px1609._xy276(-20, -20, (350 + 20), (250 + 20));
_px1609.id = -1;
_rm966._bw292("smashufoshoot");
};
_arg1._se1147 = (_arg1._se1147 - _he1472._mv493);
if (_arg1._se1147 < 1){
_arg1._gy1216(null);
_arg1._io238(270, 0, 0.025, 0, -0.0001, true);
_arg1._xy276(-20, -20, (350 + 20), (250 + 20));
};
}
private static function _dm1179(_arg1:Event):void{
_fj1529();
_ss1375._id1125();
}
public static function _xh499():void{
_rw574._qh982(_uh966, 1, _rk277._dm470, 1, 1, 1, 32, 0.4);
_rw574._qh982(_uh966, 2, _rk277._dm470, 1, 1, 1, 32, 0.6);
_rw574._qh982(_uh966, 3, _rk277._dm470, 1, 1, 1, 32, 0.8);
_rw574._qh982(_uh966, 4, _rk277._dm470, 1, 1, 1, 32, 1);
}
private static function _fm1215(_arg1:Event):void{
Tweener.addTween(_arg1.currentTarget, {brightness:1, time:0.25, transition:"linear"});
}
private static function _aa1667():void{
_yh998._rh308._vc316();
_yh998._rl373.visible = false;
}
private static function _sq180(_arg1:_uf368):void{
var _local3:_uf368;
if (_arg1.x < _arg1._ip440){
_arg1._tc794 = true;
} else {
if (_arg1.x > _arg1._ux410){
_arg1._tc794 = true;
};
};
if (_arg1.y < _arg1._eg945){
_arg1._tc794 = true;
} else {
if (_arg1.y > _arg1._jm1029){
_arg1._tc794 = true;
};
};
var _local2:int = (_af1146._pr1270._rh308.length - 1);
var _local4:int = _local2;
while (_local4 >= 0) {
_local3 = _af1146._pr1270._rh308[_local4];
if (_arg1.id > -1){
if (_rw574._ta884(_arg1, _local3) == true){
if (_arg1.id < 2){
_re1385(_arg1);
if (_arg1.id == 0){
_xk701(_arg1);
};
_ao412.addValue(50);
_rm966._bw292("smashhit");
} else {
if (_arg1.id == 2){
_be594(_arg1);
_ao412.addValue(100);
_rm966._bw292("smashhit");
};
};
_arg1._tc794 = true;
_local3._ct375();
_af1146._pr1270._rh308.splice(_local4, 1);
_local3 = null;
};
};
_local4--;
};
if (_rw574._ta884(_arg1, _dg84) == true){
if (_do647 != 3){
_re1385(_arg1);
_arg1._tc794 = true;
_do647 = 3;
_dg84.state = 0;
_dg84._os1213 = false;
_bc899 = 3500;
};
};
}
public static function _wh1042(_arg1:Event):void{
}
public static function _jx306():void{
}
public static function _es275():void{
}
public static function _xa1271(_arg1:Number):void{
_ao412.addValue(_arg1);
_nt428 = _rw574._jx992(_ao412.toString(), 7);
}
}
}//package
Section 63
//_py1255 (_py1255)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _py1255 {
public static var _lo1633:Object = new Object();
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static var _yx1156:BitmapData;
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local3 = 1700;
var _local4 = 10;
var _local5 = 24;
var _local6 = 3;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local7 = _ib16._ea276;
var _local8 = _local5;
var _local9 = (_local7[_local8] - 1);
_local7[_local8] = _local9;
} else {
_yx1156 = _arg1;
_px1609 = _ib16._ij1088._kn515(_rk277._yq20, 0, 0, 49, 41, _arg1, -1, -1, 0);
_px1609._ss1421(350, -32);
_px1609._qd1101 = 35;
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._mm1672(_aw1346[0], _rw574._up1471._tp230(0.1, 0.2), 20, 1, 0);
_px1609._sh1626(15);
_px1609._ot621(_rw574._up1471._tp230(50, (700 - 50)), _rw574._up1471._tp230(50, (500 - 50)), 0.05, 5E-5, false);
_px1609._gy1216(_cf73);
_px1609.id = _local5;
_px1609._gu403 = _local6;
_px1609._qy180 = _local3;
_px1609._md1262 = _rw574._up1471._tp230(1000, 12000);
_px1609._se1147 = _rw574._up1471._tp230(5000, 15000);
};
}
public static function _xh499():void{
_rw574._wy1430(_aw1346, 0, _rk277._yq20, -0.015, 0, 20, true, 0, 1);
_rw574._wy1430(_lo1633, 0, _rk277._pw459, -0.015, 0, 20, true, 0, 1);
}
private static function _dq136(_arg1:_uf368):void{
if ((((_arg1.target == null)) || ((_arg1.target._tc794 == true)))){
_arg1.target = _af1146._dg84;
};
}
private static function _mk1139(_arg1:int, _arg2:_uf368):void{
var _local3:int;
while (_local3 < _arg1) {
_px1609 = _ib16._ij1088._kn515(_rk277._pw459, 0, 0, 15, 13, _yx1156, -1, -1, 0);
_px1609._ss1421((_arg2.x + _rw574._up1471._tp230(-32, 32)), (_arg2.y + _rw574._up1471._tp230(-32, 32)));
_px1609._qd1101 = _rw574._up1471._tp230(0, 3);
_px1609._xy276(-6000, -6000, (_he1472._dj78 + 6000), (_he1472._rc1179 + 6000));
_px1609._mm1672(_lo1633[0], _rw574._up1471._tp230(0.1, 0.2), 20, 1, 0);
_px1609._sh1626(5);
_px1609._gy1216(_dq136);
_px1609._up929(_arg2, _rw574._up1471._tp230(0.0001, 0.0005), 0.125, _rw574._up1471._tp230(0.0001, 0.0005), 0.125);
_px1609.id = 25;
_px1609._gu403 = 1;
_px1609._qy180 = 50;
_local3++;
};
}
private static function _cf73(_arg1:_uf368):void{
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._md1262 = _rw574._up1471._tp230(10000, 20000);
_arg1._ot621(_af1146._dg84.x, _af1146._dg84.y, 0.05, 5E-5, false);
} else {
_arg1._se1147 = (_arg1._se1147 - _he1472._mv493);
if (_arg1._se1147 < 1){
_arg1._se1147 = _rw574._up1471._tp230(5000, 10000);
_mk1139(3, _arg1);
};
};
}
}
}//package
Section 64
//_rk277 (_rk277)
package {
import flash.media.*;
import flash.display.*;
public class _rk277 {
private static var _sp815:Class = _rk277__sp815;
public static var _bs74:Class = _rk277__bs74;
public static var _bn1137:BitmapData = new _jn1150().bitmapData;
public static var _ed342:BitmapData = new _yi925().bitmapData;
private static var _tk1693:Class = _rk277__tk1693;
public static var _yr1121:Class = _rk277__yr1121;
public static var _vo1158:Class = _rk277__vo1158;
private static var _mu1085:Class = _rk277__mu1085;
private static var _lq603:Class = _rk277__lq603;
public static var _vg302:BitmapData = new _sg1662().bitmapData;
public static var _gu613:BitmapData = new _wv1690().bitmapData;
public static var _pf1210:BitmapData = new _ds47().bitmapData;
public static var _cb220:BitmapData = new _xf338().bitmapData;
public static var _vf575:BitmapData = new _xv534().bitmapData;
private static var _pw956:Class = _rk277__pw956;
public static var _yq20:BitmapData = new _xt661().bitmapData;
public static var _of1277:BitmapData = new _xh1606().bitmapData;
public static var _up442:BitmapData = new high().bitmapData;
public static var _ak1208:BitmapData = new _pw956().bitmapData;
public static var _rw559:BitmapData = new _qt497().bitmapData;
public static var _cu1304:BitmapData = new _wg1717().bitmapData;
private static var _mp685:Class = _rk277__mp685;
public static var _mt1051:Class = _rk277__mt1051;
private static var _dh1385:Class = _rk277__dh1385;
private static var _lh1308:Class = _rk277__lh1308;
public static var _fx88:BitmapData = new _dr1707().bitmapData;
public static var _rw325:BitmapData = new _cx531().bitmapData;
public static var _jw1129:BitmapData = new _ls103().bitmapData;
public static var _as1456:BitmapData = new _tk1693().bitmapData;
public static var _la182:BitmapData = new _nx495().bitmapData;
public static var _dx383:BitmapData = new _vy1130().bitmapData;
private static var _nb1659:Class = _rk277__nb1659;
private static var _pe1318:Class = _rk277__pe1318;
private static var _ds47:Class = _rk277__ds47;
private static var _qt497:Class = _rk277__qt497;
private static var start:Class = _rk277_start;
private static var _ei942:Class = _rk277__ei942;
public static var _xl975:BitmapData = new _pe1318().bitmapData;
private static var _fs771:Class = _rk277__fs771;
private static var _iv566:Class = _rk277__iv566;
public static var _xp1238:BitmapData = new _ur59().bitmapData;
private static var _sw1718:Class = _rk277__sw1718;
public static var _qi1078:BitmapData = new _ow822().bitmapData;
public static var _ln486:BitmapData = new _dl504().bitmapData;
public static var _fh1659:BitmapData = new _pf1040().bitmapData;
private static var _wv1690:Class = _rk277__wv1690;
public static var _ot1449:BitmapData = new _mu1085().bitmapData;
public static var _fu839:BitmapData = new _ps808().bitmapData;
private static var _lg1403:Class = _rk277__lg1403;
public static var _fq481:Class = _rk277__fq481;
public static var _nr664:Class = _rk277__nr664;
public static var _pt114:BitmapData = new _dv1176().bitmapData;
public static var _tn254:BitmapData = new _oh774().bitmapData;
private static var _xv534:Class = _rk277__xv534;
private static var _tj1579:Class = _rk277__tj1579;
public static var _cc348:BitmapData = new _ga1069().bitmapData;
private static var _ow822:Class = _rk277__ow822;
public static var _vt1555:BitmapData = new _lu1116().bitmapData;
private static var _kc207:Class = _rk277__kc207;
private static var _ky1064:Class = _rk277__ky1064;
private static var _gc906:Class = _rk277__gc906;
private static var _ns1113:Class = _rk277__ns1113;
public static var _sg43:BitmapData = new _pw956().bitmapData;
private static var _ou899:Class = _rk277__ou899;
private static var _ry1155:Class = _rk277__ry1155;
private static var _jg1037:Class = _rk277__jg1037;
public static var _bn665:BitmapData = new _fe872().bitmapData;
public static var _hj219:Class = _rk277__hj219;
public static var _ow830:Class = _rk277__ow830;
public static var _ro518:BitmapData = new _su1700().bitmapData;
public static var _eh1259:BitmapData = new _kn702().bitmapData;
private static var _sx1317:Class = _rk277__sx1317;
public static var _iy985:BitmapData = new _je236().bitmapData;
public static var _yy862:BitmapData = new _ka1534().bitmapData;
public static var _iu266:BitmapData = new _pi858().bitmapData;
private static var _wv638:Class = _rk277__wv638;
public static var _yy508:BitmapData = new _wn1135().bitmapData;
private static var _ts1391:Class = _rk277__ts1391;
private static var _xo802:Class = _rk277__xo802;
public static var _mi846:BitmapData = new paused().bitmapData;
private static var _jk87:Class = _rk277__jk87;
public static var _rf956:BitmapData = new _as897().bitmapData;
public static var _hu23:BitmapData = new _jg1037().bitmapData;
private static var _pf1040:Class = _rk277__pf1040;
public static var _tk1391:BitmapData = new _sp815().bitmapData;
private static var _gx707:Class = _rk277__gx707;
public static var _mf240:BitmapData = new _tm1334().bitmapData;
private static var _wn1135:Class = _rk277__wn1135;
private static var _mh422:Class = _rk277__mh422;
private static var _fy1015:Class = _rk277__fy1015;
private static var _ws496:Class = _rk277__ws496;
private static var _sq1001:Class = _rk277__sq1001;
private static var _wg290:Class = _rk277__wg290;
private static var _eu962:Class = _rk277__eu962;
private static var _or1655:Class = _rk277__or1655;
private static var _rx1026:Class = _rk277__rx1026;
public static var _vr118:BitmapData = new _cp1669().bitmapData;
public static var _th860:Class = _rk277__th860;
public static var _yy522:BitmapData = new _wr566().bitmapData;
public static var _tu922:BitmapData = new _qk1669().bitmapData;
private static var _sg1662:Class = _rk277__sg1662;
private static var _jn1150:Class = _rk277__jn1150;
public static var _ok549:BitmapData = new _pr1358().bitmapData;
public static var _ds873:BitmapData = new _qd1498().bitmapData;
private static var _su1700:Class = _rk277__su1700;
private static var _qg906:Class = _rk277__qg906;
private static var lock:Class = _rk277_lock;
private static var paused:Class = _rk277_paused;
public static var _nw832:BitmapData = new _fo1215().bitmapData;
public static var _ow876:BitmapData = new _lb855().bitmapData;
private static var _jm250:Class = _rk277__jm250;
public static var _sr624:BitmapData = new _ou899().bitmapData;
private static var _ok437:Class = _rk277__ok437;
private static var _fa617:Class = _rk277__fa617;
public static var _wl760:BitmapData = new _nw431().bitmapData;
public static var _ww1192:BitmapData = new _gc906().bitmapData;
private static var _hp931:Class = _rk277__hp931;
private static var _qo882:Class = _rk277__qo882;
public static var _rg1138:BitmapData = new _dl1173().bitmapData;
private static var _dr1707:Class = _rk277__dr1707;
public static var _ur1463:BitmapData = new _ln565().bitmapData;
public static var _py613:BitmapData = new _ou1411().bitmapData;
public static var _ew1365:Class = _rk277__ew1365;
private static var _kd256:Class = _rk277__kd256;
public static var _qo1068:BitmapData = new _gb539().bitmapData;
private static var _rw170:Class = _rk277__rw170;
private static var reset:Class = _rk277_reset;
private static var _id1143:Class = _rk277__id1143;
public static var _hp1631:BitmapData = new _vr503().bitmapData;
private static var _fo1215:Class = _rk277__fo1215;
public static var _yg1475:BitmapData = new _eu962().bitmapData;
public static var _wl1570:BitmapData = new _mp685().bitmapData;
public static var _pw459:BitmapData = new _um425().bitmapData;
public static var _xv242:BitmapData = new _ih1180().bitmapData;
private static var _mg252:Class = _rk277__mg252;
public static var _ur353:BitmapData = new _rl1410().bitmapData;
public static var _xd739:BitmapData = new _mj268().bitmapData;
public static var _su60:Class = _rk277__su60;
private static var _so1334:Class = _rk277__so1334;
private static var _ow408:Class = _rk277__ow408;
public static var _xu1206:BitmapData = new _jx1300().bitmapData;
private static var _ob645:Class = _rk277__ob645;
private static var _rs1702:Class = _rk277__rs1702;
public static var _ee1433:BitmapData = new _id1143().bitmapData;
public static var _lj54:Class = _rk277__lj54;
public static var _xg1054:BitmapData = new _qg906().bitmapData;
public static var _bi1549:BitmapData = new _mc440().bitmapData;
private static var target:Class = _rk277_target;
public static var _xe1337:BitmapData = new _ts1391().bitmapData;
private static var _gj137:Class = _rk277__gj137;
private static var _fu1624:Class = _rk277__fu1624;
public static var _dt1441:Class = _rk277__dt1441;
private static var _oa1667:Class = _rk277__oa1667;
public static var _bf539:BitmapData = new _kr595().bitmapData;
public static var _cd1381:Class = _rk277__cd1381;
private static var _gb539:Class = _rk277__gb539;
private static var high:Class = _rk277_high;
public static var _hw234:BitmapData = new _hq476().bitmapData;
public static var _sl1709:BitmapData = new _cx1720().bitmapData;
public static var _ks727:BitmapData = new _gx707().bitmapData;
public static var _io672:BitmapData = new _il1718().bitmapData;
public static var _is1489:BitmapData = new _ke1167().bitmapData;
public static var _lu1650:BitmapData = new _gh1132().bitmapData;
public static var _jq897:BitmapData = new _qh336().bitmapData;
public static var _fi365:BitmapData = new _mn1123().bitmapData;
private static var _is1367:Class = _rk277__is1367;
public static var _fl527:BitmapData = new _ob645().bitmapData;
public static var _tv949:BitmapData = new _fa617().bitmapData;
private static var _ok1038:Class = _rk277__ok1038;
public static var _ph1708:BitmapData = new _mh422().bitmapData;
public static var _yx1291:BitmapData = new _ve601().bitmapData;
public static var _eh206:Class = _rk277__eh206;
public static var _dr599:BitmapData = new _rs351().bitmapData;
public static var _oc636:BitmapData = new _cq1638().bitmapData;
private static var _cq1638:Class = _rk277__cq1638;
public static var _wh29:BitmapData = new _yt1579().bitmapData;
public static var _vu1096:BitmapData = new _yu1126().bitmapData;
private static var _rl1410:Class = _rk277__rl1410;
private static var _dv1176:Class = _rk277__dv1176;
private static var _qk1669:Class = _rk277__qk1669;
public static var _sg324:BitmapData = new _dl401().bitmapData;
private static var _xl254:Class = _rk277__xl254;
public static var _nc968:BitmapData = new _lj297().bitmapData;
private static var _oi190:Class = _rk277__oi190;
private static var _rs967:Class = _rk277__rs967;
public static var _ij1611:BitmapData = new _fy1015().bitmapData;
public static var _wg23:BitmapData = new _xl254().bitmapData;
private static var _cx1720:Class = _rk277__cx1720;
public static var _tg250:BitmapData = new _xo802().bitmapData;
public static var _jg759:Class = _rk277__jg759;
public static var _or1372:BitmapData = new _ta771().bitmapData;
public static var _no1669:BitmapData = new _mg252().bitmapData;
private static var _je236:Class = _rk277__je236;
private static var _fw1141:Class = _rk277__fw1141;
private static var _ls103:Class = _rk277__ls103;
public static var _et1432:BitmapData = new _tj1579().bitmapData;
private static var _wy884:Class = _rk277__wy884;
public static var _kd1220:BitmapData = new _ku262().bitmapData;
public static var _fc741:BitmapData = new low().bitmapData;
private static var _ga1069:Class = _rk277__ga1069;
public static var _mf1562:BitmapData = new _ah795().bitmapData;
public static var _qu1286:BitmapData = new _tt1432().bitmapData;
public static var _rw1198:BitmapData = new _vy754().bitmapData;
private static var _nq1278:Class = _rk277__nq1278;
private static var _kj1627:Class = _rk277__kj1627;
public static var _og1507:BitmapData = new _pf138().bitmapData;
private static var _nw431:Class = _rk277__nw431;
private static var _gh1132:Class = _rk277__gh1132;
public static var _rf1266:BitmapData = new options().bitmapData;
public static var _uv1604:Class = _rk277__uv1604;
public static var _ks1301:Class = _rk277__ks1301;
public static var _ae699:BitmapData = new _vo1483().bitmapData;
private static var _qd1498:Class = _rk277__qd1498;
public static var _gp728:BitmapData = new _iv566().bitmapData;
public static var _gl110:BitmapData = new _kd256().bitmapData;
public static var _ni1282:BitmapData = new _db974().bitmapData;
public static var _ec715:BitmapData = new _ig698().bitmapData;
private static var _lw1060:Class = _rk277__lw1060;
private static var _yi925:Class = _rk277__yi925;
public static var _fx657:BitmapData = new _tm964().bitmapData;
private static var _kr595:Class = _rk277__kr595;
public static var _uk426:Class = _rk277__uk426;
public static var _ug1305:BitmapData = new _eb653().bitmapData;
private static var _ke1167:Class = _rk277__ke1167;
public static var _mg1388:Class = _rk277__mg1388;
private static var _bb1298:Class = _rk277__bb1298;
public static var _br685:BitmapData = new checked().bitmapData;
private static var _pr1358:Class = _rk277__pr1358;
private static var _fo1177:Class = _rk277__fo1177;
private static var _lu1116:Class = _rk277__lu1116;
private static var _ap105:Class = _rk277__ap105;
public static var _hp548:BitmapData = new _ur59().bitmapData;
private static var _vy754:Class = _rk277__vy754;
private static var _so1172:Class = _rk277__so1172;
public static var _cb1105:Class = _rk277__cb1105;
public static var _lf1020:Class = _rk277__lf1020;
public static var _nd862:BitmapData = new _fo1177().bitmapData;
private static var _lm1667:Class = _rk277__lm1667;
public static var _fl38:BitmapData = new _ky1064().bitmapData;
private static var _ps808:Class = _rk277__ps808;
private static var _dl504:Class = _rk277__dl504;
public static var _rs423:BitmapData = new _rs967().bitmapData;
public static var _lf1053:BitmapData = new _qo882().bitmapData;
private static var _eb653:Class = _rk277__eb653;
private static var _db974:Class = _rk277__db974;
public static var _qx1719:BitmapData = new _nq1278().bitmapData;
private static var _jg349:Class = _rk277__jg349;
private static var options:Class = _rk277_options;
public static var _md1406:BitmapData = new _ki140().bitmapData;
private static var _mn1123:Class = _rk277__mn1123;
public static var _pr1490:BitmapData = new _lm1667().bitmapData;
private static var _lb855:Class = _rk277__lb855;
public static var _du577:BitmapData = new _ei942().bitmapData;
private static var _yu1126:Class = _rk277__yu1126;
private static var _ve601:Class = _rk277__ve601;
private static var _ci1107:Class = _rk277__ci1107;
private static var _dl401:Class = _rk277__dl401;
public static var _vq926:BitmapData = new _lk1687().bitmapData;
private static var _cp1669:Class = _rk277__cp1669;
private static var _tm964:Class = _rk277__tm964;
private static var _dl1173:Class = _rk277__dl1173;
public static var _uq1179:BitmapData = new _cu106().bitmapData;
public static var _uj387:BitmapData = new _wv638().bitmapData;
private static var _mj268:Class = _rk277__mj268;
public static var _jj1362:BitmapData = new _wy884().bitmapData;
private static var _ta771:Class = _rk277__ta771;
private static var _yt1579:Class = _rk277__yt1579;
public static var _gm140:BitmapData = new _ap153().bitmapData;
public static var _qe379:Class = _rk277__qe379;
public static var _cm944:BitmapData = new _fk1586().bitmapData;
private static var _wg1717:Class = _rk277__wg1717;
public static var _le1272:BitmapData = new _cd1381().bitmapData;
private static var _go1036:Class = _rk277__go1036;
public static var _rm1173:BitmapData = new start().bitmapData;
private static var _vy1130:Class = _rk277__vy1130;
private static var _um425:Class = _rk277__um425;
public static var _vn1617:BitmapData = new _cm672().bitmapData;
public static var _mw73:BitmapData = new _kc207().bitmapData;
private static var _ur59:Class = _rk277__ur59;
public static var _io1423:BitmapData = new _lw1060().bitmapData;
public static var _af1466:BitmapData = new _ri148().bitmapData;
public static var _nv1339:BitmapData = new _kj1627().bitmapData;
public static var _oq751:BitmapData = new _fu1624().bitmapData;
public static var _vf715:BitmapData = new _rj366().bitmapData;
private static var _ig573:Class = _rk277__ig573;
private static var _fe872:Class = _rk277__fe872;
public static var _fo858:Class = _rk277__fo858;
private static var _ig698:Class = _rk277__ig698;
private static var _ka1534:Class = _rk277__ka1534;
private static var _as897:Class = _rk277__as897;
private static var _gg1055:Class = _rk277__gg1055;
private static var _xh1606:Class = _rk277__xh1606;
private static var _lk1687:Class = _rk277__lk1687;
private static var _yj1632:Class = _rk277__yj1632;
public static var _cs378:Class = _rk277__cs378;
private static var _ap153:Class = _rk277__ap153;
private static var _ah795:Class = _rk277__ah795;
public static var _iy1275:BitmapData = new target().bitmapData;
private static var _jx1300:Class = _rk277__jx1300;
public static var _rj640:BitmapData = new _lq603().bitmapData;
private static var _tm1334:Class = _rk277__tm1334;
public static var _tv678:Class = _rk277__tv678;
public static var _mt1684:BitmapData = new _sq1001().bitmapData;
public static var _fv188:BitmapData = new _gj137().bitmapData;
private static var _xf338:Class = _rk277__xf338;
public static var _ra960:BitmapData = new _ow408().bitmapData;
private static var _rs351:Class = _rk277__rs351;
public static var _ww193:BitmapData = new _oi190().bitmapData;
public static var _bl964:BitmapData = new _so1172().bitmapData;
private static var _kn702:Class = _rk277__kn702;
public static var _me1014:BitmapData = new _dh1476().bitmapData;
private static var _hp1060:Class = _rk277__hp1060;
private static var _pi858:Class = _rk277__pi858;
public static var _op1273:BitmapData = new _bm957().bitmapData;
public static var _vg1447:BitmapData = new _ns1113().bitmapData;
private static var _cu106:Class = _rk277__cu106;
private static var _nx495:Class = _rk277__nx495;
public static var _px1561:BitmapData = new _sw1718().bitmapData;
public static var _eb223:BitmapData = new _rx1026().bitmapData;
private static var _ki140:Class = _rk277__ki140;
public static var _nw71:BitmapData = new reset().bitmapData;
private static var low:Class = _rk277_low;
public static var _un551:BitmapData = new _jg349().bitmapData;
private static var _mc440:Class = _rk277__mc440;
public static var _mc443:BitmapData = new _ci1107().bitmapData;
private static var _qh336:Class = _rk277__qh336;
private static var _tt1432:Class = _rk277__tt1432;
public static var _co1550:Class = _rk277__co1550;
public static var _yd1390:BitmapData = new _oa1667().bitmapData;
public static var _po1551:BitmapData = new _nb1659().bitmapData;
public static var _xa1562:BitmapData = new _tb229().bitmapData;
public static var _bf1337:BitmapData = new _sx1317().bitmapData;
private static var _hq476:Class = _rk277__hq476;
public static var _dx548:Class = _rk277__dx548;
private static var _bm957:Class = _rk277__bm957;
public static var _gd266:BitmapData = new _ok437().bitmapData;
public static var _gh743:BitmapData = new _yj1632().bitmapData;
public static var _ps763:Class = _rk277__ps763;
public static var _dy402:BitmapData = new _ok1038().bitmapData;
private static var _fk1586:Class = _rk277__fk1586;
public static var _bg1147:BitmapData = new _bb1298().bitmapData;
private static var _ou1411:Class = _rk277__ou1411;
private static var _il1718:Class = _rk277__il1718;
private static var _lj297:Class = _rk277__lj297;
public static var _xs1050:BitmapData = new _rw170().bitmapData;
private static var _lo623:Class = _rk277__lo623;
public static var _yt431:BitmapData = new _fw1141().bitmapData;
public static var _ph69:BitmapData = new _go1036().bitmapData;
public static var _sk222:BitmapData = new _rs1702().bitmapData;
public static var _vv1547:BitmapData = new _fs771().bitmapData;
public static var _da1257:BitmapData = new _ry1155().bitmapData;
private static var _cf90:Class = _rk277__cf90;
private static var _pf138:Class = _rk277__pf138;
public static var _cd1707:BitmapData = new _lh1308().bitmapData;
public static var _xa1227:BitmapData = new _or1655().bitmapData;
public static var _gs993:BitmapData = new _lg1403().bitmapData;
public static var _is359:BitmapData = new _cf90().bitmapData;
private static var _vo1483:Class = _rk277__vo1483;
public static var _sv222:BitmapData = new _hp1060().bitmapData;
public static var _kl437:BitmapData = new _so1334().bitmapData;
public static var _xu977:BitmapData = new _lo623().bitmapData;
public static var _de54:Class = _rk277__de54;
public static var _jp1243:BitmapData = new _jm250().bitmapData;
public static var _vv1327:BitmapData = new _dh1385().bitmapData;
public static var _up882:BitmapData = new _gg1055().bitmapData;
private static var checked:Class = _rk277_checked;
private static var _ku262:Class = _rk277__ku262;
private static var _cx531:Class = _rk277__cx531;
private static var _tb229:Class = _rk277__tb229;
public static var _tl1592:BitmapData = new _ap105().bitmapData;
public static var _vr503:Class = _rk277__vr503;
private static var _ih1180:Class = _rk277__ih1180;
public static var _gh659:BitmapData = new _is1367().bitmapData;
private static var _oh774:Class = _rk277__oh774;
public static var _ol1520:BitmapData = new _de54().bitmapData;
public static var _qj671:Class = _rk277__qj671;
private static var _dh1476:Class = _rk277__dh1476;
public static var _ve581:BitmapData = new lock().bitmapData;
private static var _cm672:Class = _rk277__cm672;
public static var _im1533:Class = _rk277__im1533;
public static var _ci1087:BitmapData = new _jk87().bitmapData;
public static var _oh414:BitmapData = new _hp931().bitmapData;
public static var _ex98:Class = _rk277__ex98;
public static var _qy1261:BitmapData = new _ig573().bitmapData;
public static var _tx340:BitmapData = new _wg290().bitmapData;
public static var _dm470:BitmapData = new _ws496().bitmapData;
private static var _ri148:Class = _rk277__ri148;
private static var _ln565:Class = _rk277__ln565;
private static var _wr566:Class = _rk277__wr566;
private static var _rj366:Class = _rk277__rj366;
private static var _xt661:Class = _rk277__xt661;
}
}//package
Section 65
//_rk277__ah795 (_rk277__ah795)
package {
import mx.core.*;
public class _rk277__ah795 extends BitmapAsset {
}
}//package
Section 66
//_rk277__ap105 (_rk277__ap105)
package {
import mx.core.*;
public class _rk277__ap105 extends BitmapAsset {
}
}//package
Section 67
//_rk277__ap153 (_rk277__ap153)
package {
import mx.core.*;
public class _rk277__ap153 extends BitmapAsset {
}
}//package
Section 68
//_rk277__as897 (_rk277__as897)
package {
import mx.core.*;
public class _rk277__as897 extends BitmapAsset {
}
}//package
Section 69
//_rk277__bb1298 (_rk277__bb1298)
package {
import mx.core.*;
public class _rk277__bb1298 extends BitmapAsset {
}
}//package
Section 70
//_rk277__bm957 (_rk277__bm957)
package {
import mx.core.*;
public class _rk277__bm957 extends BitmapAsset {
}
}//package
Section 71
//_rk277__bs74 (_rk277__bs74)
package {
import mx.core.*;
public class _rk277__bs74 extends SoundAsset {
}
}//package
Section 72
//_rk277__cb1105 (_rk277__cb1105)
package {
import mx.core.*;
public class _rk277__cb1105 extends SoundAsset {
}
}//package
Section 73
//_rk277__cd1381 (_rk277__cd1381)
package {
import mx.core.*;
public class _rk277__cd1381 extends BitmapAsset {
}
}//package
Section 74
//_rk277__cf90 (_rk277__cf90)
package {
import mx.core.*;
public class _rk277__cf90 extends BitmapAsset {
}
}//package
Section 75
//_rk277__ci1107 (_rk277__ci1107)
package {
import mx.core.*;
public class _rk277__ci1107 extends BitmapAsset {
}
}//package
Section 76
//_rk277__cm672 (_rk277__cm672)
package {
import mx.core.*;
public class _rk277__cm672 extends BitmapAsset {
}
}//package
Section 77
//_rk277__co1550 (_rk277__co1550)
package {
import mx.core.*;
public class _rk277__co1550 extends SoundAsset {
}
}//package
Section 78
//_rk277__cp1669 (_rk277__cp1669)
package {
import mx.core.*;
public class _rk277__cp1669 extends BitmapAsset {
}
}//package
Section 79
//_rk277__cq1638 (_rk277__cq1638)
package {
import mx.core.*;
public class _rk277__cq1638 extends BitmapAsset {
}
}//package
Section 80
//_rk277__cs378 (_rk277__cs378)
package {
import mx.core.*;
public class _rk277__cs378 extends SoundAsset {
}
}//package
Section 81
//_rk277__cu106 (_rk277__cu106)
package {
import mx.core.*;
public class _rk277__cu106 extends BitmapAsset {
}
}//package
Section 82
//_rk277__cx1720 (_rk277__cx1720)
package {
import mx.core.*;
public class _rk277__cx1720 extends BitmapAsset {
}
}//package
Section 83
//_rk277__cx531 (_rk277__cx531)
package {
import mx.core.*;
public class _rk277__cx531 extends BitmapAsset {
}
}//package
Section 84
//_rk277__db974 (_rk277__db974)
package {
import mx.core.*;
public class _rk277__db974 extends BitmapAsset {
}
}//package
Section 85
//_rk277__de54 (_rk277__de54)
package {
import mx.core.*;
public class _rk277__de54 extends BitmapAsset {
}
}//package
Section 86
//_rk277__dh1385 (_rk277__dh1385)
package {
import mx.core.*;
public class _rk277__dh1385 extends BitmapAsset {
}
}//package
Section 87
//_rk277__dh1476 (_rk277__dh1476)
package {
import mx.core.*;
public class _rk277__dh1476 extends BitmapAsset {
}
}//package
Section 88
//_rk277__dl1173 (_rk277__dl1173)
package {
import mx.core.*;
public class _rk277__dl1173 extends BitmapAsset {
}
}//package
Section 89
//_rk277__dl401 (_rk277__dl401)
package {
import mx.core.*;
public class _rk277__dl401 extends BitmapAsset {
}
}//package
Section 90
//_rk277__dl504 (_rk277__dl504)
package {
import mx.core.*;
public class _rk277__dl504 extends BitmapAsset {
}
}//package
Section 91
//_rk277__dr1707 (_rk277__dr1707)
package {
import mx.core.*;
public class _rk277__dr1707 extends BitmapAsset {
}
}//package
Section 92
//_rk277__ds47 (_rk277__ds47)
package {
import mx.core.*;
public class _rk277__ds47 extends BitmapAsset {
}
}//package
Section 93
//_rk277__dt1441 (_rk277__dt1441)
package {
import mx.core.*;
public class _rk277__dt1441 extends SoundAsset {
}
}//package
Section 94
//_rk277__dv1176 (_rk277__dv1176)
package {
import mx.core.*;
public class _rk277__dv1176 extends BitmapAsset {
}
}//package
Section 95
//_rk277__dx548 (_rk277__dx548)
package {
import mx.core.*;
public class _rk277__dx548 extends SoundAsset {
}
}//package
Section 96
//_rk277__eb653 (_rk277__eb653)
package {
import mx.core.*;
public class _rk277__eb653 extends BitmapAsset {
}
}//package
Section 97
//_rk277__eh206 (_rk277__eh206)
package {
import mx.core.*;
public class _rk277__eh206 extends SoundAsset {
}
}//package
Section 98
//_rk277__ei942 (_rk277__ei942)
package {
import mx.core.*;
public class _rk277__ei942 extends BitmapAsset {
}
}//package
Section 99
//_rk277__eu962 (_rk277__eu962)
package {
import mx.core.*;
public class _rk277__eu962 extends BitmapAsset {
}
}//package
Section 100
//_rk277__ew1365 (_rk277__ew1365)
package {
import mx.core.*;
public class _rk277__ew1365 extends SoundAsset {
}
}//package
Section 101
//_rk277__ex98 (_rk277__ex98)
package {
import mx.core.*;
public class _rk277__ex98 extends SoundAsset {
}
}//package
Section 102
//_rk277__fa617 (_rk277__fa617)
package {
import mx.core.*;
public class _rk277__fa617 extends BitmapAsset {
}
}//package
Section 103
//_rk277__fe872 (_rk277__fe872)
package {
import mx.core.*;
public class _rk277__fe872 extends BitmapAsset {
}
}//package
Section 104
//_rk277__fk1586 (_rk277__fk1586)
package {
import mx.core.*;
public class _rk277__fk1586 extends BitmapAsset {
}
}//package
Section 105
//_rk277__fo1177 (_rk277__fo1177)
package {
import mx.core.*;
public class _rk277__fo1177 extends BitmapAsset {
}
}//package
Section 106
//_rk277__fo1215 (_rk277__fo1215)
package {
import mx.core.*;
public class _rk277__fo1215 extends BitmapAsset {
}
}//package
Section 107
//_rk277__fo858 (_rk277__fo858)
package {
import mx.core.*;
public class _rk277__fo858 extends SoundAsset {
}
}//package
Section 108
//_rk277__fq481 (_rk277__fq481)
package {
import mx.core.*;
public class _rk277__fq481 extends SoundAsset {
}
}//package
Section 109
//_rk277__fs771 (_rk277__fs771)
package {
import mx.core.*;
public class _rk277__fs771 extends BitmapAsset {
}
}//package
Section 110
//_rk277__fu1624 (_rk277__fu1624)
package {
import mx.core.*;
public class _rk277__fu1624 extends BitmapAsset {
}
}//package
Section 111
//_rk277__fw1141 (_rk277__fw1141)
package {
import mx.core.*;
public class _rk277__fw1141 extends BitmapAsset {
}
}//package
Section 112
//_rk277__fy1015 (_rk277__fy1015)
package {
import mx.core.*;
public class _rk277__fy1015 extends BitmapAsset {
}
}//package
Section 113
//_rk277__ga1069 (_rk277__ga1069)
package {
import mx.core.*;
public class _rk277__ga1069 extends BitmapAsset {
}
}//package
Section 114
//_rk277__gb539 (_rk277__gb539)
package {
import mx.core.*;
public class _rk277__gb539 extends BitmapAsset {
}
}//package
Section 115
//_rk277__gc906 (_rk277__gc906)
package {
import mx.core.*;
public class _rk277__gc906 extends BitmapAsset {
}
}//package
Section 116
//_rk277__gg1055 (_rk277__gg1055)
package {
import mx.core.*;
public class _rk277__gg1055 extends BitmapAsset {
}
}//package
Section 117
//_rk277__gh1132 (_rk277__gh1132)
package {
import mx.core.*;
public class _rk277__gh1132 extends BitmapAsset {
}
}//package
Section 118
//_rk277__gj137 (_rk277__gj137)
package {
import mx.core.*;
public class _rk277__gj137 extends BitmapAsset {
}
}//package
Section 119
//_rk277__go1036 (_rk277__go1036)
package {
import mx.core.*;
public class _rk277__go1036 extends BitmapAsset {
}
}//package
Section 120
//_rk277__gx707 (_rk277__gx707)
package {
import mx.core.*;
public class _rk277__gx707 extends BitmapAsset {
}
}//package
Section 121
//_rk277__hj219 (_rk277__hj219)
package {
import mx.core.*;
public class _rk277__hj219 extends SoundAsset {
}
}//package
Section 122
//_rk277__hp1060 (_rk277__hp1060)
package {
import mx.core.*;
public class _rk277__hp1060 extends BitmapAsset {
}
}//package
Section 123
//_rk277__hp931 (_rk277__hp931)
package {
import mx.core.*;
public class _rk277__hp931 extends BitmapAsset {
}
}//package
Section 124
//_rk277__hq476 (_rk277__hq476)
package {
import mx.core.*;
public class _rk277__hq476 extends BitmapAsset {
}
}//package
Section 125
//_rk277__id1143 (_rk277__id1143)
package {
import mx.core.*;
public class _rk277__id1143 extends BitmapAsset {
}
}//package
Section 126
//_rk277__ig573 (_rk277__ig573)
package {
import mx.core.*;
public class _rk277__ig573 extends BitmapAsset {
}
}//package
Section 127
//_rk277__ig698 (_rk277__ig698)
package {
import mx.core.*;
public class _rk277__ig698 extends BitmapAsset {
}
}//package
Section 128
//_rk277__ih1180 (_rk277__ih1180)
package {
import mx.core.*;
public class _rk277__ih1180 extends BitmapAsset {
}
}//package
Section 129
//_rk277__il1718 (_rk277__il1718)
package {
import mx.core.*;
public class _rk277__il1718 extends BitmapAsset {
}
}//package
Section 130
//_rk277__im1533 (_rk277__im1533)
package {
import mx.core.*;
public class _rk277__im1533 extends SoundAsset {
}
}//package
Section 131
//_rk277__is1367 (_rk277__is1367)
package {
import mx.core.*;
public class _rk277__is1367 extends BitmapAsset {
}
}//package
Section 132
//_rk277__iv566 (_rk277__iv566)
package {
import mx.core.*;
public class _rk277__iv566 extends BitmapAsset {
}
}//package
Section 133
//_rk277__je236 (_rk277__je236)
package {
import mx.core.*;
public class _rk277__je236 extends BitmapAsset {
}
}//package
Section 134
//_rk277__jg1037 (_rk277__jg1037)
package {
import mx.core.*;
public class _rk277__jg1037 extends BitmapAsset {
}
}//package
Section 135
//_rk277__jg349 (_rk277__jg349)
package {
import mx.core.*;
public class _rk277__jg349 extends BitmapAsset {
}
}//package
Section 136
//_rk277__jg759 (_rk277__jg759)
package {
import mx.core.*;
public class _rk277__jg759 extends SoundAsset {
}
}//package
Section 137
//_rk277__jk87 (_rk277__jk87)
package {
import mx.core.*;
public class _rk277__jk87 extends BitmapAsset {
}
}//package
Section 138
//_rk277__jm250 (_rk277__jm250)
package {
import mx.core.*;
public class _rk277__jm250 extends BitmapAsset {
}
}//package
Section 139
//_rk277__jn1150 (_rk277__jn1150)
package {
import mx.core.*;
public class _rk277__jn1150 extends BitmapAsset {
}
}//package
Section 140
//_rk277__jx1300 (_rk277__jx1300)
package {
import mx.core.*;
public class _rk277__jx1300 extends BitmapAsset {
}
}//package
Section 141
//_rk277__ka1534 (_rk277__ka1534)
package {
import mx.core.*;
public class _rk277__ka1534 extends BitmapAsset {
}
}//package
Section 142
//_rk277__kc207 (_rk277__kc207)
package {
import mx.core.*;
public class _rk277__kc207 extends BitmapAsset {
}
}//package
Section 143
//_rk277__kd256 (_rk277__kd256)
package {
import mx.core.*;
public class _rk277__kd256 extends BitmapAsset {
}
}//package
Section 144
//_rk277__ke1167 (_rk277__ke1167)
package {
import mx.core.*;
public class _rk277__ke1167 extends BitmapAsset {
}
}//package
Section 145
//_rk277__ki140 (_rk277__ki140)
package {
import mx.core.*;
public class _rk277__ki140 extends BitmapAsset {
}
}//package
Section 146
//_rk277__kj1627 (_rk277__kj1627)
package {
import mx.core.*;
public class _rk277__kj1627 extends BitmapAsset {
}
}//package
Section 147
//_rk277__kn702 (_rk277__kn702)
package {
import mx.core.*;
public class _rk277__kn702 extends BitmapAsset {
}
}//package
Section 148
//_rk277__kr595 (_rk277__kr595)
package {
import mx.core.*;
public class _rk277__kr595 extends BitmapAsset {
}
}//package
Section 149
//_rk277__ks1301 (_rk277__ks1301)
package {
import mx.core.*;
public class _rk277__ks1301 extends SoundAsset {
}
}//package
Section 150
//_rk277__ku262 (_rk277__ku262)
package {
import mx.core.*;
public class _rk277__ku262 extends BitmapAsset {
}
}//package
Section 151
//_rk277__ky1064 (_rk277__ky1064)
package {
import mx.core.*;
public class _rk277__ky1064 extends BitmapAsset {
}
}//package
Section 152
//_rk277__lb855 (_rk277__lb855)
package {
import mx.core.*;
public class _rk277__lb855 extends BitmapAsset {
}
}//package
Section 153
//_rk277__lf1020 (_rk277__lf1020)
package {
import mx.core.*;
public class _rk277__lf1020 extends SoundAsset {
}
}//package
Section 154
//_rk277__lg1403 (_rk277__lg1403)
package {
import mx.core.*;
public class _rk277__lg1403 extends BitmapAsset {
}
}//package
Section 155
//_rk277__lh1308 (_rk277__lh1308)
package {
import mx.core.*;
public class _rk277__lh1308 extends BitmapAsset {
}
}//package
Section 156
//_rk277__lj297 (_rk277__lj297)
package {
import mx.core.*;
public class _rk277__lj297 extends BitmapAsset {
}
}//package
Section 157
//_rk277__lj54 (_rk277__lj54)
package {
import mx.core.*;
public class _rk277__lj54 extends SoundAsset {
}
}//package
Section 158
//_rk277__lk1687 (_rk277__lk1687)
package {
import mx.core.*;
public class _rk277__lk1687 extends BitmapAsset {
}
}//package
Section 159
//_rk277__lm1667 (_rk277__lm1667)
package {
import mx.core.*;
public class _rk277__lm1667 extends BitmapAsset {
}
}//package
Section 160
//_rk277__ln565 (_rk277__ln565)
package {
import mx.core.*;
public class _rk277__ln565 extends BitmapAsset {
}
}//package
Section 161
//_rk277__lo623 (_rk277__lo623)
package {
import mx.core.*;
public class _rk277__lo623 extends BitmapAsset {
}
}//package
Section 162
//_rk277__lq603 (_rk277__lq603)
package {
import mx.core.*;
public class _rk277__lq603 extends BitmapAsset {
}
}//package
Section 163
//_rk277__ls103 (_rk277__ls103)
package {
import mx.core.*;
public class _rk277__ls103 extends BitmapAsset {
}
}//package
Section 164
//_rk277__lu1116 (_rk277__lu1116)
package {
import mx.core.*;
public class _rk277__lu1116 extends BitmapAsset {
}
}//package
Section 165
//_rk277__lw1060 (_rk277__lw1060)
package {
import mx.core.*;
public class _rk277__lw1060 extends BitmapAsset {
}
}//package
Section 166
//_rk277__mc440 (_rk277__mc440)
package {
import mx.core.*;
public class _rk277__mc440 extends BitmapAsset {
}
}//package
Section 167
//_rk277__mg1388 (_rk277__mg1388)
package {
import mx.core.*;
public class _rk277__mg1388 extends SoundAsset {
}
}//package
Section 168
//_rk277__mg252 (_rk277__mg252)
package {
import mx.core.*;
public class _rk277__mg252 extends BitmapAsset {
}
}//package
Section 169
//_rk277__mh422 (_rk277__mh422)
package {
import mx.core.*;
public class _rk277__mh422 extends BitmapAsset {
}
}//package
Section 170
//_rk277__mj268 (_rk277__mj268)
package {
import mx.core.*;
public class _rk277__mj268 extends BitmapAsset {
}
}//package
Section 171
//_rk277__mn1123 (_rk277__mn1123)
package {
import mx.core.*;
public class _rk277__mn1123 extends BitmapAsset {
}
}//package
Section 172
//_rk277__mp685 (_rk277__mp685)
package {
import mx.core.*;
public class _rk277__mp685 extends BitmapAsset {
}
}//package
Section 173
//_rk277__mt1051 (_rk277__mt1051)
package {
import mx.core.*;
public class _rk277__mt1051 extends SoundAsset {
}
}//package
Section 174
//_rk277__mu1085 (_rk277__mu1085)
package {
import mx.core.*;
public class _rk277__mu1085 extends BitmapAsset {
}
}//package
Section 175
//_rk277__nb1659 (_rk277__nb1659)
package {
import mx.core.*;
public class _rk277__nb1659 extends BitmapAsset {
}
}//package
Section 176
//_rk277__nq1278 (_rk277__nq1278)
package {
import mx.core.*;
public class _rk277__nq1278 extends BitmapAsset {
}
}//package
Section 177
//_rk277__nr664 (_rk277__nr664)
package {
import mx.core.*;
public class _rk277__nr664 extends SoundAsset {
}
}//package
Section 178
//_rk277__ns1113 (_rk277__ns1113)
package {
import mx.core.*;
public class _rk277__ns1113 extends BitmapAsset {
}
}//package
Section 179
//_rk277__nw431 (_rk277__nw431)
package {
import mx.core.*;
public class _rk277__nw431 extends BitmapAsset {
}
}//package
Section 180
//_rk277__nx495 (_rk277__nx495)
package {
import mx.core.*;
public class _rk277__nx495 extends BitmapAsset {
}
}//package
Section 181
//_rk277__oa1667 (_rk277__oa1667)
package {
import mx.core.*;
public class _rk277__oa1667 extends BitmapAsset {
}
}//package
Section 182
//_rk277__ob645 (_rk277__ob645)
package {
import mx.core.*;
public class _rk277__ob645 extends BitmapAsset {
}
}//package
Section 183
//_rk277__oh774 (_rk277__oh774)
package {
import mx.core.*;
public class _rk277__oh774 extends BitmapAsset {
}
}//package
Section 184
//_rk277__oi190 (_rk277__oi190)
package {
import mx.core.*;
public class _rk277__oi190 extends BitmapAsset {
}
}//package
Section 185
//_rk277__ok1038 (_rk277__ok1038)
package {
import mx.core.*;
public class _rk277__ok1038 extends BitmapAsset {
}
}//package
Section 186
//_rk277__ok437 (_rk277__ok437)
package {
import mx.core.*;
public class _rk277__ok437 extends BitmapAsset {
}
}//package
Section 187
//_rk277__or1655 (_rk277__or1655)
package {
import mx.core.*;
public class _rk277__or1655 extends BitmapAsset {
}
}//package
Section 188
//_rk277__ou1411 (_rk277__ou1411)
package {
import mx.core.*;
public class _rk277__ou1411 extends BitmapAsset {
}
}//package
Section 189
//_rk277__ou899 (_rk277__ou899)
package {
import mx.core.*;
public class _rk277__ou899 extends BitmapAsset {
}
}//package
Section 190
//_rk277__ow408 (_rk277__ow408)
package {
import mx.core.*;
public class _rk277__ow408 extends BitmapAsset {
}
}//package
Section 191
//_rk277__ow822 (_rk277__ow822)
package {
import mx.core.*;
public class _rk277__ow822 extends BitmapAsset {
}
}//package
Section 192
//_rk277__ow830 (_rk277__ow830)
package {
import mx.core.*;
public class _rk277__ow830 extends BitmapAsset {
}
}//package
Section 193
//_rk277__pe1318 (_rk277__pe1318)
package {
import mx.core.*;
public class _rk277__pe1318 extends BitmapAsset {
}
}//package
Section 194
//_rk277__pf1040 (_rk277__pf1040)
package {
import mx.core.*;
public class _rk277__pf1040 extends BitmapAsset {
}
}//package
Section 195
//_rk277__pf138 (_rk277__pf138)
package {
import mx.core.*;
public class _rk277__pf138 extends BitmapAsset {
}
}//package
Section 196
//_rk277__pi858 (_rk277__pi858)
package {
import mx.core.*;
public class _rk277__pi858 extends BitmapAsset {
}
}//package
Section 197
//_rk277__pr1358 (_rk277__pr1358)
package {
import mx.core.*;
public class _rk277__pr1358 extends BitmapAsset {
}
}//package
Section 198
//_rk277__ps763 (_rk277__ps763)
package {
import mx.core.*;
public class _rk277__ps763 extends SoundAsset {
}
}//package
Section 199
//_rk277__ps808 (_rk277__ps808)
package {
import mx.core.*;
public class _rk277__ps808 extends BitmapAsset {
}
}//package
Section 200
//_rk277__pw956 (_rk277__pw956)
package {
import mx.core.*;
public class _rk277__pw956 extends BitmapAsset {
}
}//package
Section 201
//_rk277__qd1498 (_rk277__qd1498)
package {
import mx.core.*;
public class _rk277__qd1498 extends BitmapAsset {
}
}//package
Section 202
//_rk277__qe379 (_rk277__qe379)
package {
import mx.core.*;
public class _rk277__qe379 extends BitmapAsset {
}
}//package
Section 203
//_rk277__qg906 (_rk277__qg906)
package {
import mx.core.*;
public class _rk277__qg906 extends BitmapAsset {
}
}//package
Section 204
//_rk277__qh336 (_rk277__qh336)
package {
import mx.core.*;
public class _rk277__qh336 extends BitmapAsset {
}
}//package
Section 205
//_rk277__qj671 (_rk277__qj671)
package {
import mx.core.*;
public class _rk277__qj671 extends BitmapAsset {
}
}//package
Section 206
//_rk277__qk1669 (_rk277__qk1669)
package {
import mx.core.*;
public class _rk277__qk1669 extends BitmapAsset {
}
}//package
Section 207
//_rk277__qo882 (_rk277__qo882)
package {
import mx.core.*;
public class _rk277__qo882 extends BitmapAsset {
}
}//package
Section 208
//_rk277__qt497 (_rk277__qt497)
package {
import mx.core.*;
public class _rk277__qt497 extends BitmapAsset {
}
}//package
Section 209
//_rk277__ri148 (_rk277__ri148)
package {
import mx.core.*;
public class _rk277__ri148 extends BitmapAsset {
}
}//package
Section 210
//_rk277__rj366 (_rk277__rj366)
package {
import mx.core.*;
public class _rk277__rj366 extends BitmapAsset {
}
}//package
Section 211
//_rk277__rl1410 (_rk277__rl1410)
package {
import mx.core.*;
public class _rk277__rl1410 extends BitmapAsset {
}
}//package
Section 212
//_rk277__rs1702 (_rk277__rs1702)
package {
import mx.core.*;
public class _rk277__rs1702 extends BitmapAsset {
}
}//package
Section 213
//_rk277__rs351 (_rk277__rs351)
package {
import mx.core.*;
public class _rk277__rs351 extends BitmapAsset {
}
}//package
Section 214
//_rk277__rs967 (_rk277__rs967)
package {
import mx.core.*;
public class _rk277__rs967 extends BitmapAsset {
}
}//package
Section 215
//_rk277__rw170 (_rk277__rw170)
package {
import mx.core.*;
public class _rk277__rw170 extends BitmapAsset {
}
}//package
Section 216
//_rk277__rx1026 (_rk277__rx1026)
package {
import mx.core.*;
public class _rk277__rx1026 extends BitmapAsset {
}
}//package
Section 217
//_rk277__ry1155 (_rk277__ry1155)
package {
import mx.core.*;
public class _rk277__ry1155 extends BitmapAsset {
}
}//package
Section 218
//_rk277__sg1662 (_rk277__sg1662)
package {
import mx.core.*;
public class _rk277__sg1662 extends BitmapAsset {
}
}//package
Section 219
//_rk277__so1172 (_rk277__so1172)
package {
import mx.core.*;
public class _rk277__so1172 extends BitmapAsset {
}
}//package
Section 220
//_rk277__so1334 (_rk277__so1334)
package {
import mx.core.*;
public class _rk277__so1334 extends BitmapAsset {
}
}//package
Section 221
//_rk277__sp815 (_rk277__sp815)
package {
import mx.core.*;
public class _rk277__sp815 extends BitmapAsset {
}
}//package
Section 222
//_rk277__sq1001 (_rk277__sq1001)
package {
import mx.core.*;
public class _rk277__sq1001 extends BitmapAsset {
}
}//package
Section 223
//_rk277__su1700 (_rk277__su1700)
package {
import mx.core.*;
public class _rk277__su1700 extends BitmapAsset {
}
}//package
Section 224
//_rk277__su60 (_rk277__su60)
package {
import mx.core.*;
public class _rk277__su60 extends SoundAsset {
}
}//package
Section 225
//_rk277__sw1718 (_rk277__sw1718)
package {
import mx.core.*;
public class _rk277__sw1718 extends BitmapAsset {
}
}//package
Section 226
//_rk277__sx1317 (_rk277__sx1317)
package {
import mx.core.*;
public class _rk277__sx1317 extends BitmapAsset {
}
}//package
Section 227
//_rk277__ta771 (_rk277__ta771)
package {
import mx.core.*;
public class _rk277__ta771 extends BitmapAsset {
}
}//package
Section 228
//_rk277__tb229 (_rk277__tb229)
package {
import mx.core.*;
public class _rk277__tb229 extends BitmapAsset {
}
}//package
Section 229
//_rk277__th860 (_rk277__th860)
package {
import mx.core.*;
public class _rk277__th860 extends SoundAsset {
}
}//package
Section 230
//_rk277__tj1579 (_rk277__tj1579)
package {
import mx.core.*;
public class _rk277__tj1579 extends BitmapAsset {
}
}//package
Section 231
//_rk277__tk1693 (_rk277__tk1693)
package {
import mx.core.*;
public class _rk277__tk1693 extends BitmapAsset {
}
}//package
Section 232
//_rk277__tm1334 (_rk277__tm1334)
package {
import mx.core.*;
public class _rk277__tm1334 extends BitmapAsset {
}
}//package
Section 233
//_rk277__tm964 (_rk277__tm964)
package {
import mx.core.*;
public class _rk277__tm964 extends BitmapAsset {
}
}//package
Section 234
//_rk277__ts1391 (_rk277__ts1391)
package {
import mx.core.*;
public class _rk277__ts1391 extends BitmapAsset {
}
}//package
Section 235
//_rk277__tt1432 (_rk277__tt1432)
package {
import mx.core.*;
public class _rk277__tt1432 extends BitmapAsset {
}
}//package
Section 236
//_rk277__tv678 (_rk277__tv678)
package {
import mx.core.*;
public class _rk277__tv678 extends SoundAsset {
}
}//package
Section 237
//_rk277__uk426 (_rk277__uk426)
package {
import mx.core.*;
public class _rk277__uk426 extends SoundAsset {
}
}//package
Section 238
//_rk277__um425 (_rk277__um425)
package {
import mx.core.*;
public class _rk277__um425 extends BitmapAsset {
}
}//package
Section 239
//_rk277__ur59 (_rk277__ur59)
package {
import mx.core.*;
public class _rk277__ur59 extends BitmapAsset {
}
}//package
Section 240
//_rk277__uv1604 (_rk277__uv1604)
package {
import mx.core.*;
public class _rk277__uv1604 extends SoundAsset {
}
}//package
Section 241
//_rk277__ve601 (_rk277__ve601)
package {
import mx.core.*;
public class _rk277__ve601 extends BitmapAsset {
}
}//package
Section 242
//_rk277__vo1158 (_rk277__vo1158)
package {
import mx.core.*;
public class _rk277__vo1158 extends SoundAsset {
}
}//package
Section 243
//_rk277__vo1483 (_rk277__vo1483)
package {
import mx.core.*;
public class _rk277__vo1483 extends BitmapAsset {
}
}//package
Section 244
//_rk277__vr503 (_rk277__vr503)
package {
import mx.core.*;
public class _rk277__vr503 extends BitmapAsset {
}
}//package
Section 245
//_rk277__vy1130 (_rk277__vy1130)
package {
import mx.core.*;
public class _rk277__vy1130 extends BitmapAsset {
}
}//package
Section 246
//_rk277__vy754 (_rk277__vy754)
package {
import mx.core.*;
public class _rk277__vy754 extends BitmapAsset {
}
}//package
Section 247
//_rk277__wg1717 (_rk277__wg1717)
package {
import mx.core.*;
public class _rk277__wg1717 extends BitmapAsset {
}
}//package
Section 248
//_rk277__wg290 (_rk277__wg290)
package {
import mx.core.*;
public class _rk277__wg290 extends BitmapAsset {
}
}//package
Section 249
//_rk277__wn1135 (_rk277__wn1135)
package {
import mx.core.*;
public class _rk277__wn1135 extends BitmapAsset {
}
}//package
Section 250
//_rk277__wr566 (_rk277__wr566)
package {
import mx.core.*;
public class _rk277__wr566 extends BitmapAsset {
}
}//package
Section 251
//_rk277__ws496 (_rk277__ws496)
package {
import mx.core.*;
public class _rk277__ws496 extends BitmapAsset {
}
}//package
Section 252
//_rk277__wv1690 (_rk277__wv1690)
package {
import mx.core.*;
public class _rk277__wv1690 extends BitmapAsset {
}
}//package
Section 253
//_rk277__wv638 (_rk277__wv638)
package {
import mx.core.*;
public class _rk277__wv638 extends BitmapAsset {
}
}//package
Section 254
//_rk277__wy884 (_rk277__wy884)
package {
import mx.core.*;
public class _rk277__wy884 extends BitmapAsset {
}
}//package
Section 255
//_rk277__xf338 (_rk277__xf338)
package {
import mx.core.*;
public class _rk277__xf338 extends BitmapAsset {
}
}//package
Section 256
//_rk277__xh1606 (_rk277__xh1606)
package {
import mx.core.*;
public class _rk277__xh1606 extends BitmapAsset {
}
}//package
Section 257
//_rk277__xl254 (_rk277__xl254)
package {
import mx.core.*;
public class _rk277__xl254 extends BitmapAsset {
}
}//package
Section 258
//_rk277__xo802 (_rk277__xo802)
package {
import mx.core.*;
public class _rk277__xo802 extends BitmapAsset {
}
}//package
Section 259
//_rk277__xt661 (_rk277__xt661)
package {
import mx.core.*;
public class _rk277__xt661 extends BitmapAsset {
}
}//package
Section 260
//_rk277__xv534 (_rk277__xv534)
package {
import mx.core.*;
public class _rk277__xv534 extends BitmapAsset {
}
}//package
Section 261
//_rk277__yi925 (_rk277__yi925)
package {
import mx.core.*;
public class _rk277__yi925 extends BitmapAsset {
}
}//package
Section 262
//_rk277__yj1632 (_rk277__yj1632)
package {
import mx.core.*;
public class _rk277__yj1632 extends BitmapAsset {
}
}//package
Section 263
//_rk277__yr1121 (_rk277__yr1121)
package {
import mx.core.*;
public class _rk277__yr1121 extends SoundAsset {
}
}//package
Section 264
//_rk277__yt1579 (_rk277__yt1579)
package {
import mx.core.*;
public class _rk277__yt1579 extends BitmapAsset {
}
}//package
Section 265
//_rk277__yu1126 (_rk277__yu1126)
package {
import mx.core.*;
public class _rk277__yu1126 extends BitmapAsset {
}
}//package
Section 266
//_rk277_checked (_rk277_checked)
package {
import mx.core.*;
public class _rk277_checked extends BitmapAsset {
}
}//package
Section 267
//_rk277_high (_rk277_high)
package {
import mx.core.*;
public class _rk277_high extends BitmapAsset {
}
}//package
Section 268
//_rk277_lock (_rk277_lock)
package {
import mx.core.*;
public class _rk277_lock extends BitmapAsset {
}
}//package
Section 269
//_rk277_low (_rk277_low)
package {
import mx.core.*;
public class _rk277_low extends BitmapAsset {
}
}//package
Section 270
//_rk277_options (_rk277_options)
package {
import mx.core.*;
public class _rk277_options extends BitmapAsset {
}
}//package
Section 271
//_rk277_paused (_rk277_paused)
package {
import mx.core.*;
public class _rk277_paused extends BitmapAsset {
}
}//package
Section 272
//_rk277_reset (_rk277_reset)
package {
import mx.core.*;
public class _rk277_reset extends BitmapAsset {
}
}//package
Section 273
//_rk277_start (_rk277_start)
package {
import mx.core.*;
public class _rk277_start extends BitmapAsset {
}
}//package
Section 274
//_rk277_target (_rk277_target)
package {
import mx.core.*;
public class _rk277_target extends BitmapAsset {
}
}//package
Section 275
//_rv716 (_rv716)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _rv716 {
public static var _qi914:Array = [_aw1346, _lo1633, _ak1068, _gf209];
public static var _lo1633:Object = new Object();
public static var _ak1068:Object = new Object();
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static var _gf209:Object = new Object();
public static function _ax548(_arg1:BitmapData):void{
var _local2 = 500;
var _local3 = 20;
var _local4 = 4;
var _local5:int = _rw574._up1471._ma459(2, 3);
var _local6:Number = 0;
var _local7:Number = 0;
var _local8:int = _rw574._up1471._ma459(1, 4);
if (_ib16._ea276[_local4] > _local3){
_ib16._nk274--;
var _local9 = _ib16._ea276;
var _local10 = _local4;
var _local11 = (_local9[_local10] - 1);
_local9[_local10] = _local11;
} else {
if (_local5 == 1){
_local6 = 24;
_local7 = 24;
};
if (_local5 == 2){
_local6 = 36;
_local7 = 36;
};
if (_local5 == 3){
_local6 = 48;
_local7 = 48;
};
if (_local5 == 4){
_local6 = 60;
_local7 = 60;
};
_px1609 = _ib16._ij1088._kn515(_qi914[(_local5 - 1)][0], 0, 0, _local6, _local7, _arg1, -1, -1, 0);
if (_local5 == 1){
_px1609._qd1101 = _rw574._up1471._tp230(3, 6);
};
if (_local5 == 2){
_px1609._qd1101 = _rw574._up1471._tp230(6, 9);
};
if (_local5 == 3){
_px1609._qd1101 = _rw574._up1471._tp230(9, 12);
};
if (_local5 == 4){
_px1609._qd1101 = _rw574._up1471._tp230(12, 15);
};
_he1472._nx1028(_px1609, 64);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._io238(_rw574._up1471._tp230(0, 359), 0, _rw574._up1471._tp230(0.05, 0.2), 0, 0, false);
_px1609._mm1672(_qi914[(_local5 - 1)][0], _rw574._up1471._tp230(0.05, 0.2), 20, 1, 0);
_px1609._sh1626((_local6 * 0.4));
_px1609._gy1216(_cf73);
_px1609.id = _local4;
_px1609._gu403 = _local5;
_px1609._qy180 = _local2;
};
}
private static function _cf73(_arg1:_uf368):void{
var _local2:int;
var _local4:Object;
var _local3:Number = _rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y);
_local2 = (_local3 / 5.6);
if (_local2 > 63){
_local2 = 63;
};
_local4 = _qi914[(_arg1._gu403 - 1)];
_arg1._ud376 = _local4[_local2];
}
public static function _xh499():void{
var _local2:int;
var _local1:Number = 0;
_local1 = 0;
_local2 = 0;
while (_local2 < 64) {
_rw574._wy1430(_aw1346, _local2, _rk277._yd1390, 0, -0.015, 20, true, _local1, 0.5);
_rw574._wy1430(_lo1633, _local2, _rk277._yd1390, 0, -0.015, 20, true, _local1, 0.75);
_rw574._wy1430(_ak1068, _local2, _rk277._yd1390, 0, -0.015, 20, true, _local1, 1);
_rw574._wy1430(_gf209, _local2, _rk277._yd1390, 0, -0.015, 20, true, _local1, 1.25);
_local1 = (_local1 + (360 / 64));
_local2++;
};
}
}
}//package
Section 276
//_rx561 (_rx561)
package {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import caurina.transitions.*;
import classes.*;
import com.urbansquall.preloader.*;
import mochi.*;
import flash.utils.*;
import flash.net.*;
import flash.ui.*;
public class _rx561 extends Preloader {
private var _vo1344:BitmapData;
private var _dk189:BitmapData;
private var _px1609:_uf368;
private var _pg588:Object;
private var _lo1131:Class;
private var _vb933:Class;
private var _yh998:_ot570;
private var _bb468:Array;
private var _vo1364:Object;
private var _vx726:Boolean;
private var _fh1444:BitmapData;
private var _ni899:int;
private var _mx415:Class;
private var _uy863:Boolean;// = false
private var _gg961:Sprite;
private var _hc1597:MovieClip;
private var _dj1352:BitmapData;
private var _vy48:String;// = "f13537fc6a59520f"
private var _ah1103:Object;
private var _fp1498:Object;
private var _uy352:BitmapData;
private var _pf1083:Class;
private var _qa1596:Object;
private var _nm710:Class;
private var _po779:Boolean;
private var _ql667:_nx31;
public function _rx561(){
_vb933 = _rx561__vb933;
_uy352 = new _vb933().bitmapData;
_lo1131 = _rx561__lo1131;
_dj1352 = new _lo1131().bitmapData;
_nm710 = _rx561__nm710;
_fh1444 = new _nm710().bitmapData;
_mx415 = _rx561__mx415;
_vo1344 = new _mx415().bitmapData;
_pf1083 = _rx561__pf1083;
_dk189 = new _pf1083().bitmapData;
_yh998 = new _ot570();
_ql667 = new _nx31();
_pg588 = new Object();
_fp1498 = new Object();
_vo1364 = new Object();
_ah1103 = new Object();
_qa1596 = new Object();
super();
}
private function _df1009(_arg1:Event):void{
Tweener.addTween(_arg1.currentTarget, {brightness:2, time:0.25, transition:"linear"});
}
private function _le1096(_arg1:Event):void{
}
private function _tp992(_arg1:Event):void{
Tweener.addTween(_arg1.currentTarget, {brightness:1, time:0.25, transition:"linear"});
}
private function _ti1348():void{
_vx726 = true;
}
override protected function updateLoading(_arg1:Number):void{
var _local2:int = Math.round((_arg1 * 100));
var _local3:int = (607 * (_local2 / 100));
var _local4:int = (127 * (_local2 / 100));
_yh998._vt140();
_rw574._jy699(_uy352, 0, 0, 0, 0, 700, 500, _yh998._dn642, false);
_ql667._cd171(_bx367._oa876());
_rw574._jy699(_dj1352, 49, 73, 0, 0, _local3, 127, _yh998._dn642, true);
if (_local2 > 98){
_rw574._ci1517(_vo1344, 350, 220, 0, 0, _vo1344.width, _vo1344.height, _yh998._dn642);
_po779 = true;
};
_yh998._vm1651();
if ((((_vx726 == true)) && ((_local2 > 98)))){
_ni899 = (_ni899 - 1);
if (_ni899 < 1){
oktoexit = true;
};
};
if (_rw574._hg629(60) == true){
_af629(_rw574._up1471._ma459(0, 699), _rw574._up1471._ma459(0, 499));
};
}
private function _af629(_arg1:Number, _arg2:Number):void{
var _local5:int;
var _local6:Object;
var _local3:int = _rw574._up1471._ma459((10 * 4), (50 * 4));
var _local4:Number = (360 / _local3);
_local6 = _bb468[_rw574._up1471._ma459(0, 4)];
var _local7:int;
while (_local7 < _local3) {
_local4 = _rw574._up1471._tp230(0, 359);
_local5 = (_local4 / 5.6);
if (_local5 > 63){
_local5 = 63;
};
_px1609 = _ql667._kn515(_pg588[_local5], 0, 0, _dk189.width, _dk189.height, _yh998._dn642, 0, 0, 0);
_px1609._mm1672(_local6[_local5], _rw574._up1471._tp230(0.01, 0.05), 20, 4);
_px1609._ss1421(_arg1, _arg2);
_px1609._io238(_local4, 0, _rw574._up1471._tp230(0.08, 0.5), 0, 0, false);
_px1609._ai1537((1000 / 20), 0.95);
_local4 = (_local4 + (360 / _local3));
_local7++;
};
}
override protected function beginLoading():void{
var _local2:int;
var _local1:Number = 0;
_bx367._tn743((1000 / 25));
_vx726 = false;
_ni899 = (stage.frameRate * 2);
_gg961 = new Sprite();
addChild(_gg961);
_gg961.x = 0;
_gg961.y = 0;
_gg961.scrollRect = new Rectangle(0, 0, 700, 500);
_yh998.Init(_gg961, 700, 500, false, 267386880, true);
_yh998._na739(_uy352);
_po779 = false;
_yh998._rh308._kn515(_yh998._rl373, _fh1444, 0, 140, 1);
if (_uy863 == true){
_hc1597 = new MovieClip();
addChild(_hc1597);
MochiAd.showPreGameAd({id:_vy48, res:"700x500", clip:_hc1597, ad_failed:_ti1348, ad_skipped:_ti1348, ad_finished:_ti1348});
} else {
_ti1348();
};
_local2 = 0;
while (_local2 < 64) {
_rw574._th1227(_pg588, _local2, _dk189, 4, 4, 4, 0, true, 20, 0, -0.5, -0.5, false, 0, _local1);
_rw574._th1227(_fp1498, _local2, _dk189, 4, 4, 4, 0, true, 20, -0.5, 0, -0.5, false, 0, _local1);
_rw574._th1227(_vo1364, _local2, _dk189, 4, 4, 4, 0, true, 20, -0.5, -0.5, 0, false, 0, _local1);
_rw574._th1227(_ah1103, _local2, _dk189, 4, 4, 4, 0, true, 20, 0, 0, -0.5, false, 0, _local1);
_rw574._th1227(_qa1596, _local2, _dk189, 4, 4, 4, 0, true, 20, 0, -0.5, 0, false, 0, _local1);
_local1 = (_local1 + (360 / 64));
_local2++;
};
_bb468 = [_pg588, _fp1498, _vo1364, _ah1103, _qa1596];
}
override protected function endLoading():void{
_ql667._vc316();
_ql667 = null;
_yh998._ct375();
_uy352 = null;
_fh1444 = null;
_dj1352 = null;
_vo1344 = null;
_dk189 = null;
}
private function _pn1711(_arg1:String):void{
var _local2:URLRequest = new URLRequest(_arg1);
navigateToURL(_local2, "_blank");
}
}
}//package
Section 277
//_rx561__lo1131 (_rx561__lo1131)
package {
import mx.core.*;
public class _rx561__lo1131 extends BitmapAsset {
}
}//package
Section 278
//_rx561__mx415 (_rx561__mx415)
package {
import mx.core.*;
public class _rx561__mx415 extends BitmapAsset {
}
}//package
Section 279
//_rx561__nm710 (_rx561__nm710)
package {
import mx.core.*;
public class _rx561__nm710 extends BitmapAsset {
}
}//package
Section 280
//_rx561__pf1083 (_rx561__pf1083)
package {
import mx.core.*;
public class _rx561__pf1083 extends BitmapAsset {
}
}//package
Section 281
//_rx561__vb933 (_rx561__vb933)
package {
import mx.core.*;
public class _rx561__vb933 extends BitmapAsset {
}
}//package
Section 282
//_sc582 (_sc582)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _sc582 {
public static var _qi914:Array = [_aw1346, _lo1633, _ak1068, _gf209];
public static var _lo1633:Object = new Object();
public static var _ak1068:Object = new Object();
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static var _gf209:Object = new Object();
public static function _ax548(_arg1:BitmapData):void{
var _local2 = 800;
var _local3 = 15;
var _local4 = 5;
var _local5 = 3;
var _local6:Number = 0;
var _local7:Number = 0;
if (_ib16._ea276[_local4] > _local3){
_ib16._nk274--;
var _local8 = _ib16._ea276;
var _local9 = _local4;
var _local10 = (_local8[_local9] - 1);
_local8[_local9] = _local10;
} else {
if (_local5 == 3){
_local6 = 48;
_local7 = 48;
};
_px1609 = _ib16._ij1088._kn515(_rk277._ph1708, 0, 0, _local6, _local7, _arg1, -1, -1, 0);
_he1472._nx1028(_px1609, 64);
if (_local5 == 3){
_px1609._qd1101 = _rw574._up1471._tp230(5, 13);
};
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._mm1672(_qi914[(_local5 - 1)][0], _rw574._up1471._tp230(0.05, 0.2), 20, 1, 0);
_px1609._sh1626((_local6 * 0.4));
_px1609._gy1216(_cf73);
_px1609._ly281 = _rw574._up1471._tp230(0, 359);
_px1609._le23 = _rw574._up1471._tp230(0.05, 0.1);
_px1609._by428 = _rw574._up1471._tp230(0.01, 0.15);
_px1609._md1262 = _rw574._up1471._tp230(2000, 10000);
_px1609._se1147 = _px1609._md1262;
_px1609.id = _local4;
_px1609._gu403 = _local5;
_px1609._qy180 = _local2;
};
}
private static function _cf73(_arg1:_uf368):void{
var _local6:Object;
var _local2:Number = _rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y);
var _local3:Number = _arg1._ly281;
if (_local3 < _local2){
if ((_local2 - _local3) < 180){
_local3 = (_local3 + (_arg1._le23 * _he1472._mv493));
if (_local3 > _local2){
_local3 = _local2;
};
} else {
_local3 = (_local3 - (_arg1._le23 * _he1472._mv493));
if (_local3 < 0){
_local3 = (_local3 + 360);
};
};
} else {
if (_local3 > _local2){
if ((_local3 - _local2) < 180){
_local3 = (_local3 - (_arg1._le23 * _he1472._mv493));
if (_local3 < _local2){
_local3 = _local2;
};
} else {
_local3 = (_local3 + (_arg1._le23 * _he1472._mv493));
if (_local3 > 359){
_local3 = (_local3 - 360);
};
};
};
};
_arg1._ly281 = _local3;
_arg1._xx1283 = _rw574._be1379(_arg1._ly281, (_arg1._by428 * _he1472._mv493));
_arg1._ke128 = _rw574._dm1262(_arg1._ly281, (_arg1._by428 * _he1472._mv493));
_arg1.x = (_arg1.x + _arg1._xx1283);
_arg1.y = (_arg1.y + _arg1._ke128);
var _local4 = 64;
var _local5:Number = Math.round((_local3 / (360 / _local4)));
if (_local5 > (_local4 - 1)){
_local5 = (_local4 - 1);
};
_local6 = _qi914[(_arg1._gu403 - 1)];
_arg1._ud376 = _local6[_local5];
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._md1262 = _arg1._se1147;
_px1609 = _ib16._se1010._kn515(_rk277._fl527, 0, 0, 32, 32, _he822._yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._sh1626(12);
_px1609._mm1672(_rk277._fl527, 0.01, 2, 2);
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._io238(_local3, 0, 0.25, 0, 0, true);
_rm966._bw292("enemyfire");
};
}
public static function _xh499():void{
var _local2:int;
var _local1:Number = 0;
_local1 = 0;
_local2 = 0;
while (_local2 < 64) {
_rw574._wy1430(_aw1346, _local2, _rk277._ph1708, 0, -0.015, 20, true, _local1, 0.5);
_rw574._wy1430(_lo1633, _local2, _rk277._ph1708, 0, -0.015, 20, true, _local1, 0.75);
_rw574._wy1430(_ak1068, _local2, _rk277._ph1708, 0, -0.015, 20, true, _local1, 1);
_rw574._wy1430(_gf209, _local2, _rk277._ph1708, 0, -0.015, 20, true, _local1, 1.25);
_local1 = (_local1 + (360 / 64));
_local2++;
};
}
}
}//package
Section 283
//_sd877 (_sd877)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _sd877 {
public static var _eo1624:BitmapData;
private static var _px1609:_uf368;
public static var _uh966:Object = new Object();
public static var _lo1633:Object = new Object();
public static function _ax548(_arg1:BitmapData, _arg2:int=1):void{
var _local6:Number;
var _local3 = 10000;
var _local4 = 3;
var _local5 = 7;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local7 = _ib16._ea276;
var _local8 = _local5;
var _local9 = (_local7[_local8] - 1);
_local7[_local8] = _local9;
} else {
_local6 = _rw574._up1471._tp230(0.0003, 0.0006);
_eo1624 = _arg1;
_px1609 = _ib16._ij1088._kn515(_rk277._dy402, 0, 0, 112, 111, _eo1624, -1, -1, 1);
_px1609._qd1101 = 150;
_he1472._nx1028(_px1609, 60);
_px1609._io238(_rw574._up1471._tp230(0, 359), 0, _rw574._up1471._tp230(0.02, 0.06), 0, 0, false);
_px1609._me814(_local6, 0.9, 1.1, 1, 1);
_px1609._rn387(_local6, 0.9, 1.1, 1, 0.83);
_px1609._xy276(-60, -60, (_he1472._dj78 + 60), (_he1472._rc1179 + 60));
_px1609._sh1626(51);
_px1609._md1262 = _rw574._up1471._tp230(3000, 15000);
_px1609._gy1216(_vr697);
_px1609.id = _local5;
_px1609._gu403 = 4;
_px1609._qy180 = _local3;
_px1609._ah877(_pe216);
};
}
public static function _vr697(_arg1:_uf368):void{
var _local2:int;
var _local3:int;
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._md1262 = _rw574._up1471._tp230(4000, 6000);
_local2 = 28;
_local3 = 0;
while (_local3 < _local2) {
_px1609 = _ib16._se1010._kn515(_rk277._vg1447, 0, 0, 19, 19, _eo1624, _arg1.x, _arg1.y, 0);
_px1609._xy276(-16, -16, (700 + 16), (500 + 16));
_px1609._io238((_local3 * (360 / _local2)), 0, 0.1);
_px1609._sh1626(8);
_local3++;
};
_rm966._bw292("enemyfire");
};
}
public static function _pe216(_arg1:_uf368):void{
_af1146._wm534(_arg1, 12);
}
}
}//package
Section 284
//_sm596 (_sm596)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _sm596 {
public static var _lo1633:Object = new Object();
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static var _yx1156:BitmapData;
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local5:int;
var _local3 = 1500;
var _local4 = 5;
_local5 = 18;
var _local6 = 3;
_yx1156 = _arg1;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local7 = _ib16._ea276;
var _local8 = _local5;
var _local9 = (_local7[_local8] - 1);
_local7[_local8] = _local9;
} else {
_px1609 = _ib16._ij1088._kn515(_rk277._uj387, 0, 0, 57, 57, _arg1, -1, -1, 0);
_he1472._nx1028(_px1609, 64);
_px1609._qd1101 = 65;
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._mm1672(_aw1346[0], _rw574._up1471._tp230(0.025, 0.1), 20, 1, 0);
_px1609._sh1626(18);
_px1609._gy1216(_ym1079);
_px1609._md1262 = 0;
_px1609._se1147 = _rw574._up1471._tp230(5000, 10000);
_px1609.id = _local5;
_px1609._gu403 = _local6;
_px1609._qy180 = _local3;
};
}
public static function _xh499():void{
var _local2:int;
var _local1:Number = 0;
_local1 = 0;
_local2 = 0;
while (_local2 < 64) {
_rw574._wy1430(_aw1346, _local2, _rk277._uj387, 0, -0.01, 20, true, _local1, 1);
_rw574._wy1430(_lo1633, _local2, _rk277._cm944, 0, -0.015, 20, true, _local1, 1);
_local1 = (_local1 + (360 / 64));
_local2++;
};
}
private static function _ym1079(_arg1:_uf368):void{
var _local2:int;
var _local3:Number = _rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y);
_local2 = (_local3 / 5.6);
if (_local2 > 63){
_local2 = 63;
};
_arg1._ud376 = _aw1346[_local2];
if (_arg1._md1262 == 0){
if (_rw574._hg629(3) == true){
_arg1._io238(_local3, 25, 0.3, _rw574._up1471._tp230(10, 250), 0, false);
};
_arg1._se1147 = (_arg1._se1147 - _he1472._mv493);
if (_arg1._se1147 < 1){
_arg1._se1147 = _rw574._up1471._tp230(5000, 10000);
if (_rw574._hg629(70) == true){
if (_rw574._ct1463(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y) < 400){
_jy1348(_arg1);
};
};
};
} else {
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._md1262 = 0;
};
};
}
private static function _jy1348(_arg1:_uf368):void{
var _local2:int;
while (_local2 < 18) {
_px1609 = _ib16._ij1088._kn515(_rk277._cm944, 0, 0, 16, 16, _yx1156, _arg1.x, _arg1.y, 0);
_px1609._qd1101 = 0;
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._mm1672(_lo1633[0], _rw574._up1471._tp230(0.05, 0.2), 20, 1, 0);
_px1609._sh1626(5);
_px1609._gy1216(_tm422);
_px1609.id = 19;
_px1609._gu403 = 1;
_px1609._qy180 = 50;
_px1609._io238(_rw574._lb492(), 0, _rw574._up1471._tp230(0.2, 0.5), 0, 0, false);
_px1609._ai1537((1000 / 20), _rw574._up1471._tp230(0.65, 0.85));
_px1609._md1262 = 0;
_local2++;
};
}
private static function _tm422(_arg1:_uf368):void{
var _local2:int;
var _local3:Number = _rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y);
_local2 = (_local3 / 5.6);
if (_local2 > 63){
_local2 = 63;
};
_arg1._ud376 = _lo1633[_local2];
if (_arg1._md1262 == 0){
if (_arg1._gm610 == 0){
if (_rw574._hg629() == true){
_arg1._wh1061(_af1146._dg84, _rw574._up1471._tp230(0.03, 0.15), 0, 0, 0);
_arg1._md1262 = 1;
};
};
};
}
}
}//package
Section 285
//_so290 (_so290)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _so290 {
public static var _qi914:Array = [_aw1346, _lo1633, _ak1068, _gf209];
public static var _lo1633:Object = new Object();
public static var _ak1068:Object = new Object();
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static var _gf209:Object = new Object();
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local5:int;
var _local6:int;
var _local3 = 1300;
var _local4 = 2;
_local5 = 14;
_local6 = 2;
var _local7:Number = 0;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local8 = _ib16._ea276;
var _local9 = _local5;
var _local10 = (_local8[_local9] - 1);
_local8[_local9] = _local10;
} else {
_px1609 = _ib16._ij1088._kn515(_rk277._ot1449, 0, 0, 28, 32, _arg1, -1, -1, 0);
_px1609._qd1101 = _rw574._up1471._tp230(10, 30);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_he1472._nx1028(_px1609, 64);
_local7 = (_rw574._up1471._tp230(0.005, 0.08) / 4);
_px1609._mm1672(_rk277._ot1449, (_local7 / 4), 4, 2);
_px1609._wh1061(_af1146._dg84, _local7, 0, 0, 0);
_px1609._sh1626(11);
_px1609._md1262 = (1000 / 10);
_px1609._se1147 = _px1609._md1262;
_px1609._lc262 = 0;
_px1609._gy1216(_tq1674);
_px1609.id = _local5;
_px1609._gu403 = _local6;
_px1609._qy180 = _local3;
};
}
private static function _tq1674(_arg1:_uf368):void{
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._lc262 = (_arg1._lc262 + (360 / 64));
if (_arg1._lc262 > 360){
_arg1._lc262 = (_arg1._lc262 - 360);
};
_arg1._md1262 = _arg1._se1147;
_px1609 = _ib16._se1010._kn515(_rk277._ug1305, 0, 0, 16, 16, _he822._yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._sh1626(6);
_px1609._mm1672(_rk277._ug1305, 0.01, 2, 2);
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._io238(_rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y), 0, 0.1, 0, 0, true);
_rm966._bw292("enemyfire");
};
}
public static function _xh499():void{
}
}
}//package
Section 286
//_ss1375 (_ss1375)
package {
import flash.events.*;
import classes.*;
import flash.display.*;
import flash.net.*;
import mochi.*;
import flash.geom.*;
import flash.filters.*;
import flash.utils.*;
import caurina.transitions.*;
import flash.ui.*;
public class _ss1375 {
public static var _mt1037:_uf368;
public static var _ds1046:String;
public static var _px1609:_uf368;
public static var _cg222:Number = 0;
public static var _xo1655:_rd716;
public static var _mu903:int;
public static var _fy1689:_ot570;
public static var _gq1087:_rd716;
public static var _he1717:_ot570;
public static var State:int;
public static var _mx628:_ot570;
public static var _sb1415:_yi26 = new _yi26();
public static var _wq431:Boolean = false;
public static var _ql667:_nx31;
public static var _ba999:_rd716;
public static var _ec1037:Array = [809, 2016, 3224, 4431, 5592, 6753, 7961, 9215, 10422, 11629, 12790, 13951, 15205, 16413, 17620, 18781];
public static var _nt1424:_ot570;
public static var _jx1463:_kv1353;
public static var _lo1131:_rd716;
public static var _nr1154:_yi26 = new _yi26();
public static var _wy1546:_rd716;
public static var _gw558:Boolean;
public static var _cq79:Boolean;
public static var _yh998:_ot570;
private static var _qr783:Sprite;
public static var _bm218:_ot570;
public static var _xh1387:_rd716;
public static var _im1646:_rd716;
public static var _nj506:Number = 0;
public static var _fn1602:Boolean;
public static var _ic886:BitmapData;
public static var _mj1422:_ot570;
public static var _od579:Number = 0;
public static var _sk649:Number = 0;
public static var counter:Number = 0;
public static function _uo615(_arg1:Event):void{
Tweener.addTween(_mx628, {scale:0, time:0.5, transition:"linear", onComplete:_db1528});
}
public static function _tq1562(_arg1:Event):void{
_yh998._mx1114();
Tweener.addTween(_bm218._rl373, {alpha:0, time:1, onComplete:_hi819});
}
public static function _db1528():void{
_mx628._vc1162(false);
_yh998._mx1114();
if (_cq79 == true){
_bw1568();
};
}
public static function _ei1633():void{
if (_um1575._rr151() == false){
_he1717._mf1555();
_mj1422._vc1162(true);
_mj1422.scale = 1;
_mj1422._rl373.x = (700 + (_mj1422.width / 2));
Tweener.addTween(_mj1422._rl373, {x:350, time:2, delay:1.5});
};
}
private static function _vc335(_arg1:Event):void{
}
public static function _jh350():void{
_he1717._rl373.visible = false;
}
public static function _xp1604(_arg1:Event):void{
if (_xh1387.state == 1){
_xh1387.state = 0;
_xh1387._na739(_rk277._qx1719);
_rm966._cw945();
_rm966._xt1199(false);
} else {
_xh1387.state = 1;
_xh1387._na739(_rk277._ni1282);
_rm966._xt1199(true);
};
}
public static function _pm486():void{
_gq1087 = _nt1424._rh308._kn515(_nt1424._rl373, _rk277._vu1096, (-((_yh998.width / 2)) - (_rk277._vu1096.width / 2)), -130, 1);
Tweener.addTween(_gq1087, {x:0, time:0.3, transition:"linear"});
_gq1087._wh239 = 100;
Tweener.addTween(_gq1087, {_wh239:0, time:0.3, transition:"linear"});
_lo1131 = _nt1424._rh308._kn515(_nt1424._rl373, _rk277._qu1286, (((_yh998.width / 2) + (_rk277._qu1286.width / 2)) + 100), -180, 1);
Tweener.addTween(_lo1131, {x:205, time:0.3, delay:0.5, transition:"linear"});
_lo1131._wh239 = 100;
Tweener.addTween(_lo1131, {_wh239:0, time:0.3, delay:0.5, transition:"linear"});
var _local1 = "linear";
_ba999 = _nt1424._rh308._cc1534(_nt1424._rl373, _rk277._rm1173, 0, -45, 1, _bu608, _he1472._cr574, _he1472._fm1215);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, delay:1, transition:_local1});
_ba999 = _nt1424._rh308._cc1534(_nt1424._rl373, _rk277._dx383, -150, 15, 1, _ao530, _he1472._cr574, _he1472._fm1215);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, delay:1.25, transition:_local1});
_ba999 = _nt1424._rh308._cc1534(_nt1424._rl373, _rk277._ln486, 150, 15, 1, _mv1702, _he1472._cr574, _he1472._fm1215);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, delay:1.25, transition:_local1});
if (_wq431 == true){
_im1646 = _fy1689._rh308._kn515(_nt1424._rl373, _rk277._vf575, 234, -15, 1);
_im1646.scaleY = 0;
Tweener.addTween(_im1646, {scaleY:1, time:0.5, delay:1.25, transition:_local1});
};
_ba999 = _nt1424._rh308._cc1534(_nt1424._rl373, _rk277._rf1266, -200, 75, 1, _xj1556, _he1472._cr574, _he1472._fm1215);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, delay:1.5, transition:_local1});
_ba999 = _nt1424._rh308._cc1534(_nt1424._rl373, _rk277._tk1391, 200, 75, 1, _kg767, _he1472._cr574, _he1472._fm1215);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, delay:1.5, transition:_local1});
_ba999 = _nt1424._rh308._kn515(_nt1424._rl373, _rk277._mt1684, 0, 155, 1);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, delay:1.75, transition:_local1});
_ba999 = _nt1424._rh308._cc1534(_nt1424._rl373, _rk277._mw73, 0, 224, 1, _td1413, _he1472._cr574, _he1472._fm1215);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, delay:2, transition:_local1});
_ba999 = _nt1424._rh308._kn515(_nt1424._rl373, _rk277._mf1562, -173, -167, 1);
_ba999.scaleY = 0;
Tweener.addTween(_ba999, {scaleY:1, time:0.5, delay:3, transition:_local1});
_wy1546.scaleY = 0;
Tweener.addTween(_wy1546, {scaleY:1, time:0.5, delay:2.5, transition:_local1});
_xh1387.scaleY = 0;
Tweener.addTween(_xh1387, {scaleY:1, time:0.5, delay:2.5, transition:_local1});
_qf690();
_yh998._eg504(true);
}
private static function _td1413(_arg1:Event):void{
_rw574._pn1711("http://twitter.com/ArmorGames");
}
public static function _id1125():void{
_he822._yn1133 = false;
_ds1046 = "";
_cg222 = 2;
_of949._mu960();
_yh998._eg504(true);
_yh998._rl373.visible = true;
if (_he1472._wo1191 == true){
_wy1546.scaleY = 0;
_xh1387.scaleY = 0;
_nt1424._rh308._vc316();
_nt1424._wh239 = 0;
_nt1424._rl373.visible = true;
_nt1424._ss1421(0, 0);
_he1717._rh308._vc316();
_he1717._rl373.visible = false;
_he1717._ss1421(750, 0);
_he1717._wh239 = 50;
_he822._ur717();
_sk649 = 4500;
if (_um1575._ov905 == true){
_bw1568();
_um1575._ov905 = false;
_wq431 = true;
};
Tweener.addTween(_yh998._rl373, {alpha:1, time:2, transition:"linear", onComplete:_pm486});
_gj916._xm563("titleloop");
_he1472._ml674 = _ig1054;
} else {
_rw574._jy699(_rk277._md1406, 0, 0, 0, 0, _rk277._md1406.width, _rk277._md1406.height, _yh998._dn642);
_nt1424._rl373.visible = false;
_yh998._rl373.alpha = 1;
_yh998._rl373.visible = true;
_he1472._ml674 = _he1472._xy891;
};
_gw558 = true;
}
public static function _ap1596():void{
_he1472.agi_busy = false;
_yh998._mx1114();
}
private static function _bo793(_arg1:Event):void{
_rw574._pn1711("http://armorgames.com");
}
public static function Init(_arg1:Sprite):void{
var _local2:int;
_qr783 = _arg1;
_yh998 = new _ot570();
_yh998.Init(_arg1, _he1472._dj78, _he1472._rc1179, false, 4278190080);
_nt1424 = new _ot570();
_nt1424._nc1027(_yh998._rl373);
_mx628 = new _ot570();
_mx628.Init(_arg1, 0x0100, 299, false);
_mx628._na739(_rk277._op1273);
_mx628._rh308._cc1534(_mx628._rl373, _rk277._jp1243, 0, 116, 1, _uo615, _he1472._cr574, _he1472._fm1215);
_local2 = 0;
while (_local2 < 5) {
if (_local2 < 4){
_mx628._rh308._cc1534(_mx628._rl373, _rk277._ww1192, 95, (-79 + (_local2 * 35)), (_local2 + 1), _sq279, _he1472._cr574, _he1472._fm1215);
} else {
_mx628._rh308._cc1534(_mx628._rl373, _rk277._ci1087, 94, (-75 + (_local2 * 35)), (_local2 + 1), _sq279, _he1472._cr574, _he1472._fm1215);
};
_local2++;
};
_mx628._vc1162(false);
_mx628.scale = 0;
_mx628._ss1421(350, 250);
_he1717 = new _ot570();
_he1717._nc1027(_yh998._rl373);
_mj1422 = new _ot570();
_mj1422.Init(_arg1, _rk277._sk222.width, _rk277._sk222.height, false);
_mj1422._na739(_rk277._sk222);
_mj1422._rh308._cc1534(_mj1422._rl373, _rk277._da1257, 0, 50, 1, _lt1690, _he1472._cr574, _he1472._fm1215);
_mj1422._vc1162(false);
_mj1422.scale = 0;
_mj1422._ss1421(350, 250);
_bm218 = new _ot570();
_bm218.Init(_arg1, _rk277._kl437.width, _rk277._kl437.height, false);
_bm218._na739(_rk277._kl437);
_bm218._rh308._cc1534(_bm218._rl373, _rk277._jp1243, 0, 161, 1, _tq1562, _he1472._cr574, _he1472._fm1215);
_bm218._vc1162(false);
_bm218._ss1421(350, 250);
_fy1689 = new _ot570();
_fy1689.Init(_yh998._rl373, 678, 465, true);
_fy1689._vc1162(false);
_fy1689._ss1421(-750, 0);
_fy1689._rl373.visible = false;
_fy1689._wh239 = 50;
_aa1078();
if (_he1472._ur31 == true){
_ej75._le26();
_bw1568();
};
_vq69();
if (_he1472._wo1191 == true){
_sb1415.Init(_rk277._hp548, _yh998._dn642, 0, 0, 600, 600, 0, 0, _he1472._dj78, _he1472._rc1179);
_nr1154.Init(_rk277._ak1208, _yh998._dn642, 0, 0, 600, 600, 0, 0, _he1472._dj78, _he1472._rc1179);
_wy1546 = new _rd716();
_wy1546._vi803(_nt1424._rl373, _rk277._is359, -320, -220, 1, _mh1361, _he1472._cr574, _he1472._fm1215);
_wy1546.state = 1;
_wy1546.scaleY = 0;
_xh1387 = new _rd716();
_xh1387._vi803(_nt1424._rl373, _rk277._ni1282, (-320 + 48), -220, 1, _xp1604, _he1472._cr574, _he1472._fm1215);
_xh1387.state = 1;
_xh1387.scaleY = 0;
} else {
_rw574._jy699(_rk277._md1406, 0, 0, 0, 0, _rk277._md1406.width, _rk277._md1406.height, _yh998._dn642);
};
_yh998._rl373.alpha = 0;
_yh998._rl373.visible = false;
_nt1424._ss1421(0, 0);
_he1717._ss1421(750, 0);
_he1717._rl373.visible = false;
_he1717._wh239 = 50;
}
private static function _vy454():void{
_fy1689._rl373.visible = false;
_fy1689._rl373.alpha = 1;
_fy1689._rh308._vc316();
_fy1689._ss1421(-750, 0);
_fy1689._wh239 = 50;
_nt1424._ss1421(0, 0);
_nt1424._wh239 = 0;
}
public static function _qv303(_arg1:Event):void{
Tweener.addTween(_nt1424._rl373, {x:0, time:2, delay:1});
Tweener.addTween(_nt1424, {_wh239:0, time:0.5, delay:1, transition:"linear"});
Tweener.addTween(_he1717._rl373, {x:750, time:2, onComplete:_jh350});
Tweener.addTween(_he1717, {_wh239:50, time:0.5, transition:"linear"});
}
public static function _ex1322(_arg1:Event):void{
_arg1.currentTarget._re618 = 0;
_arg1.currentTarget._ln917 = 0;
_arg1.currentTarget.scaleX = 1;
_arg1.currentTarget.scaleY = 1;
}
public static function _tr389():void{
var _local1:Number = _gj916._xj1525("titleloop");
if (_cg222 == 16){
if (_local1 > 19060){
_cg222 = 0;
_gj916._xm563("titleloop");
};
} else {
if ((_local1 + 200) > _ec1037[_cg222]){
if (_gq1087 != null){
_gq1087.brightness = 2;
Tweener.addTween(_gq1087, {brightness:1, time:0.8, transition:"linear"});
_pc1126();
};
_cg222 = (_cg222 + 1);
};
};
}
private static function _mt806(_arg1:Event):void{
_rw574._pn1711("http://munsiegames.com");
}
public static function _di699(_arg1:Event):void{
_he1472._ml674 = _he822._ig1054;
_fj1529();
_rm547();
_he822._yn1133 = true;
_he822._id1125();
}
public static function _ig1054(_arg1:Number, _arg2:Number, _arg3:Number):void{
if (_he1472._wo1191 == true){
_he822._sk1086._ig1054(_arg3);
_yh998._vt140();
_sb1415._ks192(0, 0.015, _arg3);
_nr1154._ks192(0, 0.03, _arg3);
_sk649 = (_sk649 - _arg3);
if (_sk649 < 1){
_sk649 = 0;
};
_lv349._gm1204._cd171(_arg3);
_tr389();
_yh998._vm1651();
};
}
public static function _xl203(_arg1:Event):void{
_fj1529();
_rm547();
_og247._id1125();
}
public static function _jh58():void{
_ej75._nb496(0, 50);
var _local1 = 1;
while (_local1 < 18) {
_ej75._nb496(_local1, 1);
_local1++;
};
if (_wq431 == true){
_im1646._ct375();
_wq431 = false;
};
Tweener.addTween(_nt1424._rl373, {x:0, time:2, delay:1});
Tweener.addTween(_nt1424, {_wh239:0, time:0.5, delay:1, transition:"linear"});
Tweener.addTween(_fy1689._rl373, {x:-750, time:2, onComplete:_tp43});
Tweener.addTween(_fy1689, {_wh239:50, time:0.5, transition:"linear"});
_nt1424._eg504(true);
_bw1568();
_qf690();
}
private static function _wh1042(_arg1:Event):void{
_rw574._pn1711("http://armorgames.com");
}
public static function _qm348(_arg1:BitmapData):void{
}
public static function _fj1529():void{
if (_wq431 == true){
_im1646._ct375();
_wq431 = false;
};
_gj916._cw945();
Tweener.addTween(_yh998._rl373, {alpha:0, time:1, transition:"linear", onComplete:_aa1667});
_gw558 = false;
}
public static function _jx306():void{
_he1472._ml674 = _he822._ig1054;
_fj1529();
_he822._id1125();
}
public static function _eh582(_arg1:Event):void{
if (_wq431 == true){
_im1646._ct375();
_wq431 = false;
};
Tweener.addTween(_nt1424._rl373, {x:0, time:2, delay:1});
Tweener.addTween(_nt1424, {_wh239:0, time:0.5, delay:1, transition:"linear"});
Tweener.addTween(_fy1689._rl373, {x:-750, time:2, onComplete:_tp43});
Tweener.addTween(_fy1689, {_wh239:50, time:0.5, transition:"linear"});
_nt1424._eg504(true);
}
public static function _jw1536():void{
if (_he1472._yl1448 == true){
_he1472.agi_busy = true;
_he1472.agi_api.initAGUI({onClose:_ap1596});
_he1472.agi_api.showScoreboardList();
} else {
_yh998._mx1114();
};
}
private static function _ao530(_arg1:Event):void{
_yh998._mf1555();
_jw1536();
}
public static function _rm547():void{
Tweener.addTween(_fy1689._rl373, {alpha:0, time:1, transition:"linear", onComplete:_vy454});
if (_wq431 == true){
_im1646._ct375();
_wq431 = false;
};
}
public static function _sq279(_arg1:Event):void{
var _local2:Number = _arg1.currentTarget._aj1662;
_cq79 = true;
if (_local2 == 1){
if (_he822._tf1595 == true){
_he822._tf1595 = false;
} else {
_he822._tf1595 = true;
};
};
if (_local2 == 2){
if (_he822._id661 == true){
_he822._id661 = false;
} else {
_he822._id661 = true;
};
};
if (_local2 == 3){
if (_he822._dt1403 == true){
_he822._dt1403 = false;
} else {
_he822._dt1403 = true;
};
};
if (_local2 == 4){
if (_he822._rg598 == true){
_he822._rg598 = false;
} else {
_he822._rg598 = true;
};
};
if (_local2 == 5){
_he822._iy345 = (_he822._iy345 + 1);
if (_he822._iy345 > 3){
_he822._iy345 = 1;
};
};
_vq69();
}
public static function _dq1633(_arg1:Event):void{
_fj1529();
_rm547();
_om527._id1125();
}
public static function _kp906(_arg1:Event):void{
if (_arg1.currentTarget._re618 == 0){
_arg1.currentTarget._me814(5E-5, 0.9, 1, 1, 0.9);
_arg1.currentTarget._rn387(5E-5, 0.9, 1, 1, 1);
};
}
public static function _lx822():void{
var _local1:BitmapData = new _rk277._ow830().bitmapData;
_fy1689._na739(_local1);
_fy1689._rh308._cc1534(_fy1689._rl373, _rk277._jp1243, 0, 180, 1, _eh582, _he1472._cr574, _he1472._fm1215);
_fy1689._rh308._cc1534(_fy1689._rl373, _rk277._nw71, 0, 235, 1, _or672, _he1472._cr574, _he1472._fm1215);
if (_ej75._gr376(1) == 1){
_rw574._jy699(_rk277._vf575, 27, 82, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(2) == 1){
_rw574._jy699(_rk277._vf575, 153, 82, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(3) == 1){
_rw574._jy699(_rk277._vf575, 27, 185, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(4) == 1){
_rw574._jy699(_rk277._vf575, 153, 185, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(5) == 1){
_rw574._jy699(_rk277._vf575, 27, 288, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(6) == 1){
_rw574._jy699(_rk277._vf575, 153, 288, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(7) == 1){
_rw574._jy699(_rk277._vf575, 27, 380, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(8) == 1){
_ba999 = _fy1689._rh308._cc1534(_fy1689._rl373, _rk277._iu266, -153, 184, 1, _dq1633, _he1472._cr574, _he1472._fm1215);
};
if (_ej75._gr376(9) == 1){
_rw574._jy699(_rk277._vf575, 463, 82, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(10) == 1){
_rw574._jy699(_rk277._vf575, 589, 82, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(11) == 1){
_rw574._jy699(_rk277._vf575, 463, 185, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(12) == 1){
_rw574._jy699(_rk277._vf575, 589, 185, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(13) == 1){
_rw574._jy699(_rk277._vf575, 463, 288, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(14) == 1){
_rw574._jy699(_rk277._vf575, 589, 288, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(15) == 1){
_rw574._jy699(_rk277._vf575, 589, 380, 0, 0, 66, 72, _fy1689._dn642);
};
if (_ej75._gr376(16) == 1){
_ba999 = _fy1689._rh308._cc1534(_fy1689._rl373, _rk277._iu266, 157, 184, 1, _xl203, _he1472._cr574, _he1472._fm1215);
};
if (_ej75._gr376(17) == 1){
_rw574._jy699(_rk277._rs423, 274, 146, 0, 0, 132, 140, _fy1689._dn642);
_fy1689._rh308._cc1534(_fy1689._rl373, _rk277._xd739, 0, 120, 1, _di699, _he1472._cr574, _he1472._fm1215);
};
_local1 = null;
}
public static function _aa1078():void{
_he822._tf1595 = true;
_he822._id661 = true;
_he822._dt1403 = true;
_he822._rg598 = false;
_he822._iy345 = 2;
_ej75._id214(_he1472._ft187);
if (_he1472._ft187.data._tf1595 != null){
_he822._tf1595 = _he1472._ft187.data._tf1595;
};
if (_he1472._ft187.data._id661 != null){
_he822._id661 = _he1472._ft187.data._id661;
};
if (_he1472._ft187.data._dt1403 != null){
_he822._dt1403 = _he1472._ft187.data._dt1403;
};
if (_he1472._ft187.data._rg598 != null){
_he822._rg598 = _he1472._ft187.data._rg598;
};
if (_he1472._ft187.data._iy345 != null){
_he822._iy345 = _he1472._ft187.data._iy345;
};
}
private static function _pa478(_arg1:Event):void{
}
public static function _dx552(_arg1:Event):void{
_he822._ky836 = true;
_he822._tp1528 = 1;
_jx306();
}
private static function _bu608(_arg1:Event):void{
Tweener.addTween(_nt1424._rl373, {x:-750, time:2});
Tweener.addTween(_nt1424, {_wh239:50, time:0.5, transition:"linear"});
_he1717._rl373.visible = true;
Tweener.addTween(_he1717._rl373, {x:0, time:2, delay:1});
Tweener.addTween(_he1717, {_wh239:0, time:0.5, delay:1, transition:"linear"});
_ei1633();
}
private static function _le1096(_arg1:Event):void{
_rw574._pn1711("http://armorgames.com");
}
public static function _dc267():void{
_mj1422._vc1162(false);
_he1717._mx1114();
}
private static function _kg767(_arg1:Event):void{
_yh998._mf1555();
_bm218._rl373.alpha = 0;
_bm218._vc1162(true);
Tweener.addTween(_bm218._rl373, {alpha:1, time:1});
}
public static function _mh1361(_arg1:Event):void{
if (_wy1546.state == 1){
_wy1546.state = 0;
_wy1546._na739(_rk277._rw559);
_gj916._cw945();
_gj916._xt1199(false);
} else {
_wy1546.state = 1;
_wy1546._na739(_rk277._is359);
_gj916._xt1199(true);
_gj916._xm563("titleloop");
_cg222 = 0;
};
}
public static function _qf690():void{
var _local3:int;
var _local1:int;
_he1717._rh308._vc316();
_ba999 = _he1717._rh308._kn515(_he1717._rl373, _rk277._xa1562, 0, -210, 1);
var _local2:int;
while (_local2 < 5) {
_local3 = 0;
while (_local3 < 10) {
_local1++;
if (((((_um1575._lf1164() + 1) > (_local1 - 1))) && ((_um1575._rr151() == true)))){
_ba999 = _he1717._rh308._cc1534(_he1717._rl373, _rk277._io672, -1, -1, _local1, _te845, _he1472._cr574, _he1472._fm1215);
_he1472._sf1080._cl1397(_ba999._vp1496, ("" + _local1), 32, 25);
} else {
_ba999 = _he1717._rh308._kn515(_he1717._rl373, _rk277._ve581, -1, -1, _local1);
};
_ba999._ss1421((-316 + (_local3 * 70)), ((_local2 * 70) - 140));
_local3++;
};
_local2++;
};
_ba999 = _he1717._rh308._cc1534(_he1717._rl373, _rk277._jp1243, ((350 - (_rk277._jp1243.width / 2)) - 3), 214, 1, _qv303, _he1472._cr574, _he1472._fm1215);
_ba999 = _he1717._rh308._cc1534(_he1717._rl373, _rk277._io1423, ((-350 + (_rk277._io1423.width / 2)) + 3), 214, 1, _dx552, _he1472._cr574, _he1472._fm1215);
}
public static function _vq69():void{
_ba999 = _mx628._rh308._rh308[1];
if (_he822._tf1595 == true){
_ba999._na739(_rk277._br685);
} else {
_ba999._na739(_rk277._ww1192);
};
_ba999 = _mx628._rh308._rh308[2];
if (_he822._id661 == true){
_ba999._na739(_rk277._br685);
} else {
_ba999._na739(_rk277._ww1192);
};
_ba999 = _mx628._rh308._rh308[3];
if (_he822._dt1403 == true){
_ba999._na739(_rk277._br685);
} else {
_ba999._na739(_rk277._ww1192);
};
_ba999 = _mx628._rh308._rh308[4];
if (_he822._rg598 == true){
_ba999._na739(_rk277._br685);
} else {
_ba999._na739(_rk277._ww1192);
};
_ba999 = _mx628._rh308._rh308[5];
if (_he822._iy345 == 1){
_ba999._na739(_rk277._fc741);
_he1472._qr783.quality = StageQuality.LOW;
};
if (_he822._iy345 == 2){
_ba999._na739(_rk277._ci1087);
_he1472._qr783.quality = StageQuality.MEDIUM;
};
if (_he822._iy345 == 3){
_ba999._na739(_rk277._up442);
_he1472._qr783.quality = StageQuality.HIGH;
};
}
public static function _cd1024():void{
}
public static function _lt1690(_arg1:Event):void{
Tweener.addTween(_mj1422, {scale:0, time:0.5, transition:"linear", onComplete:_dc267});
}
public static function _ed683():void{
_he1472._ft187.data._tf1595 = _he822._tf1595;
_he1472._ft187.data._id661 = _he822._id661;
_he1472._ft187.data._dt1403 = _he822._dt1403;
_he1472._ft187.data._rg598 = _he822._rg598;
_he1472._ft187.data._iy345 = _he822._iy345;
}
public static function _te845(_arg1:Event):void{
_he822._tp1528 = _arg1.currentTarget._aj1662;
_jx306();
}
private static function _dd1462(_arg1:Event):void{
_rw574._pn1711("http://armorgames.com");
}
public static function _hi819():void{
_bm218._vc1162(false);
}
public static function _or672(_arg1:Event):void{
if (_wq431 == true){
_im1646._ct375();
_wq431 = false;
};
Tweener.addTween(_nt1424._rl373, {x:0, time:2, delay:1});
Tweener.addTween(_nt1424, {_wh239:0, time:0.5, delay:1, transition:"linear"});
Tweener.addTween(_fy1689._rl373, {x:-750, time:2, onComplete:_tp43});
Tweener.addTween(_fy1689, {_wh239:50, time:0.5, transition:"linear"});
_nt1424._eg504(true);
_ej75._le26();
_bw1568();
_qf690();
}
public static function _xj1556(_arg1:Event):void{
_yh998._mf1555();
_mx628._vc1162(true);
Tweener.addTween(_mx628, {scale:1, time:0.5, transition:"linear"});
_cq79 = false;
}
public static function _bw1568():void{
_ej75._dg183(_he1472._ft187, _ed683);
}
public static function _tp43():void{
_fy1689._rl373.visible = false;
_fy1689._rh308._vc316();
}
private static function _aa1667():void{
_yh998._rl373.visible = false;
}
private static function _mv1702(_arg1:Event):void{
_lx822();
Tweener.addTween(_nt1424._rl373, {x:750, time:2});
Tweener.addTween(_nt1424, {_wh239:50, time:0.5, transition:"linear"});
_fy1689._rl373.visible = true;
Tweener.addTween(_fy1689._rl373, {x:0, time:2, delay:1});
Tweener.addTween(_fy1689, {_wh239:0, time:0.5, delay:1, transition:"linear"});
}
public static function _pc1126():void{
var _local1:int;
var _local2:int;
if (_sk649 == 0){
_local1 = 1;
_local2 = 0;
while (_local2 < _local1) {
_lv349._af629(_rw574._up1471._tp230(0, 749), _rw574._up1471._tp230(0, 499), _yh998._dn642, _rw574._up1471._ma459(1, 4));
_local2++;
};
};
}
}
}//package
Section 287
//_sv1446 (_sv1446)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _sv1446 {
public static var _dm1060:Object = new Object();
private static var _px1609:_uf368;
public static var _uh966:Object = new Object();
public static function _ax548(_arg1:BitmapData):void{
var _local2 = 2000;
var _local3 = 15;
var _local4 = 16;
var _local5 = 3;
var _local6:Number = 58;
var _local7:Number = 58;
if (_ib16._ea276[_local4] > _local3){
_ib16._nk274--;
var _local8 = _ib16._ea276;
var _local9 = _local4;
var _local10 = (_local8[_local9] - 1);
_local8[_local9] = _local10;
} else {
_px1609 = _ib16._ij1088._kn515(_uh966[1], 0, 0, _local6, _local7, _arg1, -1, -1, 0);
_px1609._qd1101 = 50;
_he1472._nx1028(_px1609, 64);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._sh1626(24);
_px1609._gy1216(_pj1438);
_px1609.id = _local4;
_px1609._gu403 = _local5;
_px1609._qy180 = _local2;
_px1609.state = 0;
_px1609._md1262 = (1000 / 5);
_px1609._se1147 = _px1609._md1262;
_px1609._ah877(_nv552);
};
}
private static function _pj1438(_arg1:_uf368):void{
var _local2:int;
var _local3:Number = _rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y);
_local2 = (_local3 / 7.5);
if (_local2 > 47){
_local2 = 47;
};
_arg1._ps1590 = (_local2 * 58);
_px1609 = _lv349._va1163._kn515(_lv349._yl127[0], 0, 0, _rk277._jq897.width, _rk277._jq897.height, _he822._yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._mm1672(_lv349._yl127[5], 0.03, 20, 4);
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._io238(_local3, 0, 0.2, 0, 0, true);
_px1609._xx1283 = -(_px1609._xx1283);
_px1609._ke128 = -(_px1609._ke128);
_px1609._ss1421((_arg1.x + (_px1609._xx1283 * 100)), (_arg1.y + (_px1609._ke128 * 100)));
if (_arg1._gm610 == 0){
if (_rw574._hg629(35) == true){
if (_rw574._hg629() == true){
_arg1._oy1623(_rw574._lb492(), (1000 / 20), _rw574._up1471._tp230(0.003, 0.008), 1.1, 0.9);
} else {
_arg1._oy1623(_local3, (1000 / 20), _rw574._up1471._tp230(0.003, 0.008), 1.1, 0.9);
};
} else {
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1._md1262 = _arg1._se1147;
_px1609 = _ib16._se1010._kn515(_dm1060[1], 0, 0, 30, 31, _he822._yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._sh1626(6);
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._io238(_local3, 0, 0.3, 0, 0, true);
_px1609._ps1590 = (_local2 * 30);
_rm966._bw292("enemyfire");
};
};
};
}
public static function _nv552(_arg1:_uf368):void{
_af1146._wm534(_arg1, 10);
}
public static function _xh499():void{
_rw574._qh982(_uh966, 1, _rk277._jj1362, 1, 1, 1, 48, 1);
_rw574._qh982(_dm1060, 1, _rk277._ur1463, 1, 1, 1, 48, 1);
}
}
}//package
Section 288
//_tp1139 (_tp1139)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _tp1139 {
public static var _uh966:Object = new Object();
private static var _px1609:_uf368;
public static function _ax548(_arg1:BitmapData):void{
var _local6:BitmapData;
var _local2 = 600;
var _local3 = 40;
var _local4 = 8;
var _local5:int = _rw574._up1471._ma459(1, 3);
var _local7:Number = 0;
var _local8:Number = 0;
if (_ib16._ea276[_local4] > _local3){
_ib16._nk274--;
var _local9 = _ib16._ea276;
var _local10 = _local4;
var _local11 = (_local9[_local10] - 1);
_local9[_local10] = _local11;
} else {
if (_local5 == 1){
_local6 = _uh966[1];
_local7 = 18;
_local8 = 18;
};
if (_local5 == 2){
_local6 = _uh966[2];
_local7 = 27;
_local8 = 27;
};
if (_local5 == 3){
_local6 = _uh966[3];
_local7 = 36;
_local8 = 36;
};
_px1609 = _ib16._ij1088._kn515(_local6, 0, 0, _local7, _local8, _arg1, -1, -1, 0);
if (_local5 == 1){
_px1609._qd1101 = 0;
};
if (_local5 == 2){
_px1609._qd1101 = _rw574._up1471._tp230(2, 4);
};
if (_local5 == 3){
_px1609._qd1101 = _rw574._up1471._tp230(5, 7);
};
_he1472._nx1028(_px1609, 64);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._mm1672(_local6, _rw574._up1471._tp230(0.03, 0.06), 32, 2, 0);
if (_rw574._hg629() == true){
_px1609._xi1222 = -(_px1609._xi1222);
};
_px1609._sh1626(10);
_px1609._ly281 = _rw574._up1471._tp230(0, 359);
_px1609._le23 = _rw574._up1471._tp230(0.025, 0.06);
_px1609._by428 = _rw574._up1471._tp230(0.025, 0.18);
_px1609._gy1216(_tq1674);
_px1609.id = _local4;
_px1609._gu403 = 2;
_px1609._qy180 = _local2;
};
}
public static function _xh499():void{
_rw574._qh982(_uh966, 1, _rk277._of1277, 1, 1, 1, 32, 0.5);
_rw574._qh982(_uh966, 2, _rk277._of1277, 1, 1, 1, 32, 0.75);
_rw574._qh982(_uh966, 3, _rk277._of1277, 1, 1, 1, 32, 1);
}
private static function _eq85(_arg1:_uf368, _arg2:_uf368):void{
_arg1.x = (_arg1.x + (_arg2._xx1283 * _he1472._mv493));
_arg1.y = (_arg1.y + (_arg2._ke128 * _he1472._mv493));
}
private static function _tq1674(_arg1:_uf368):void{
var _local2:Number = _rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y);
var _local3:Number = _arg1._ly281;
if (_local3 < _local2){
if ((_local2 - _local3) < 180){
_local3 = (_local3 + (_arg1._le23 * _he1472._mv493));
if (_local3 > _local2){
_local3 = _local2;
};
} else {
_local3 = (_local3 - (_arg1._le23 * _he1472._mv493));
if (_local3 < 0){
_local3 = (_local3 + 360);
};
};
} else {
if (_local3 > _local2){
if ((_local3 - _local2) < 180){
_local3 = (_local3 - (_arg1._le23 * _he1472._mv493));
if (_local3 < _local2){
_local3 = _local2;
};
} else {
_local3 = (_local3 + (_arg1._le23 * _he1472._mv493));
if (_local3 > 359){
_local3 = (_local3 - 360);
};
};
};
};
_arg1._ly281 = _local3;
_arg1._xx1283 = _rw574._be1379(_arg1._ly281, (_arg1._by428 * _he1472._mv493));
_arg1._ke128 = _rw574._dm1262(_arg1._ly281, (_arg1._by428 * _he1472._mv493));
_arg1.x = (_arg1.x + _arg1._xx1283);
_arg1.y = (_arg1.y + _arg1._ke128);
}
}
}//package
Section 289
//_uh1173 (_uh1173)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _uh1173 {
public static var _qi914:Array = [_aw1346, _lo1633, _ak1068, _gf209];
public static var _lo1633:Object = new Object();
public static var _ak1068:Object = new Object();
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static var _gf209:Object = new Object();
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local3 = 1200;
var _local4 = 50;
var _local5 = 13;
var _local6 = 2;
var _local7:Number = 0;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local8 = _ib16._ea276;
var _local9 = _local5;
var _local10 = (_local8[_local9] - 1);
_local8[_local9] = _local10;
} else {
_px1609 = _ib16._ij1088._kn515(_rk277._hw234, 0, 0, 28, 32, _arg1, -1, -1, 0);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_he1472._nx1028(_px1609, 64);
_local7 = _rw574._up1471._tp230(0.025, 0.2);
_px1609._mm1672(_rk277._hw234, (_local7 / 4), 4, 2);
_px1609._wh1061(_af1146._dg84, _local7, 0, 0, 0);
_px1609._sh1626(11);
_px1609.id = _local5;
_px1609._gu403 = _local6;
_px1609._qy180 = _local3;
};
}
public static function _xh499():void{
}
}
}//package
Section 290
//_ul707 (_ul707)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _ul707 {
private static var _px1609:_uf368;
public static var _uh966:Object = new Object();
public static var _lo1633:Object = new Object();
public static function _ax548(_arg1:BitmapData, _arg2:int=1):void{
var _local4:BitmapData;
var _local3:int = _rw574._up1471._ma459(1, 4);
var _local5:Number = 0;
var _local6:Number = 0;
var _local7:int = _rw574._up1471._ma459(1, 4);
var _local8 = 200;
var _local9 = 30;
var _local10:int = _arg2;
if (_he822._gf734 == 48){
_arg2 = 2;
_local3 = 4;
};
if (_ib16._ea276[_local10] > _local9){
_ib16._nk274--;
var _local11 = _ib16._ea276;
var _local12 = _local10;
var _local13 = (_local11[_local12] - 1);
_local11[_local12] = _local13;
} else {
if (_arg2 == 1){
if (_local3 == 1){
_local4 = _uh966[1];
_local5 = 32;
_local6 = 32;
};
if (_local3 == 2){
_local4 = _uh966[2];
_local5 = 48;
_local6 = 48;
};
if (_local3 == 3){
_local4 = _uh966[3];
_local5 = 64;
_local6 = 64;
};
if (_local3 == 4){
_local4 = _uh966[4];
_local5 = 80;
_local6 = 80;
};
} else {
if (_local3 == 1){
_local4 = _lo1633[1];
_local5 = 32;
_local6 = 32;
};
if (_local3 == 2){
_local4 = _lo1633[2];
_local5 = 48;
_local6 = 48;
};
if (_local3 == 3){
_local4 = _lo1633[3];
_local5 = 64;
_local6 = 64;
};
if (_local3 == 4){
_local4 = _lo1633[4];
_local5 = 80;
_local6 = 80;
};
};
_px1609 = _ib16._ij1088._kn515(_local4, 0, 0, _local5, _local6, _arg1, -1, -1, 0);
if (_arg2 == 2){
if (_local3 == 1){
_px1609._qd1101 = _rw574._up1471._tp230(5, 13);
};
if (_local3 == 2){
_px1609._qd1101 = _rw574._up1471._tp230(10, 18);
};
if (_local3 == 3){
_px1609._qd1101 = _rw574._up1471._tp230(15, 23);
};
if (_local3 == 4){
_px1609._qd1101 = _rw574._up1471._tp230(20, 28);
};
};
_he1472._nx1028(_px1609, 64);
_px1609._io238(_rw574._up1471._tp230(0, 359), 0, _rw574._up1471._tp230(0.025, 0.15), 0, 0, false);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._mm1672(_local4, _rw574._up1471._tp230(0.025, 0.04), 32, 2, 0);
if (_rw574._hg629() == true){
_px1609._xi1222 = -(_px1609._xi1222);
};
_px1609._sh1626((_local5 * 0.4));
_px1609._gu403 = _local3;
_px1609.id = _local10;
_px1609._qy180 = _local8;
if (_he822._gf734 == 48){
_px1609._qd1101 = 100;
_px1609._ah877(_wp1591);
};
};
}
public static function _wp1591(_arg1:_uf368):void{
var _local3:int;
var _local4:BitmapData;
var _local5:Number;
var _local6:Number;
var _local7:int;
var _local8:int;
var _local9:int;
var _local2:int;
while (_local2 < 100) {
_local3 = 1;
_local5 = 0;
_local6 = 0;
_local7 = _rw574._up1471._ma459(1, 4);
_local8 = 200;
_local9 = 1;
_local4 = _uh966[1];
_local5 = 32;
_local6 = 32;
_px1609 = _ib16._ij1088._kn515(_local4, 0, 0, _local5, _local6, _he822._yh998._dn642, -1, -1, 0);
_px1609._ss1421(_arg1.x, _arg1.y);
_px1609._io238(_rw574._up1471._tp230(0, 359), 0, _rw574._up1471._tp230(0.05, 0.25), 0, 0, false);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._mm1672(_local4, _rw574._up1471._tp230(0.025, 0.04), 32, 2, 0);
if (_rw574._hg629() == true){
_px1609._xi1222 = -(_px1609._xi1222);
};
_px1609._sh1626((_local5 * 0.4));
_px1609._gu403 = _local3;
_px1609.id = _local9;
_px1609._qy180 = _local8;
_local2++;
};
}
public static function _xh499():void{
_rw574._qh982(_uh966, 1, _rk277._gu613, 1, 1, 1, 32, 0.5);
_rw574._qh982(_uh966, 2, _rk277._gu613, 1, 1, 1, 32, 0.75);
_rw574._qh982(_uh966, 3, _rk277._gu613, 1, 1, 1, 32, 1);
_rw574._qh982(_uh966, 4, _rk277._gu613, 1, 1, 1, 32, 1.25);
_rw574._qh982(_lo1633, 1, _rk277._vn1617, 1, 1, 1, 32, 0.5);
_rw574._qh982(_lo1633, 2, _rk277._vn1617, 1, 1, 1, 32, 0.75);
_rw574._qh982(_lo1633, 3, _rk277._vn1617, 1, 1, 1, 32, 1);
_rw574._qh982(_lo1633, 4, _rk277._vn1617, 1, 1, 1, 32, 1.25);
}
}
}//package
Section 291
//_um1575 (_um1575)
package {
import classes.*;
public class _um1575 {
public static var _ov905:Boolean;
public static function _au157():void{
_ej75._lk434("Total Levels Completed", "Total Levels Completed.", null);
_ej75._lk434("Training Finished", "Trainer Completed.", null);
_ej75._lk434("No strikes on level 6.", "", null);
_ej75._lk434("No strikes on level 10", " ", null);
_ej75._lk434("No strikes on level 20", " ", null);
_ej75._lk434("Duck Bonus", "Collected the duck bonus.", null);
_ej75._lk434("Beaver Bonus", "Collected the beaver bonus.", null);
_ej75._lk434("Superman Bonus", "Collected the superman bonus.", null);
_ej75._lk434("Unlocked AstroSmash Bonus Game", " ", null);
_ej75._lk434("125K CLUB", " ", null);
_ej75._lk434("250K CLUB", " ", null);
_ej75._lk434("500K CLUB", " ", null);
_ej75._lk434("1 MIL CLUB", " ", null);
_ej75._lk434("Earned a 1up.", " ", null);
_ej75._lk434("25% Award", " ", null);
_ej75._lk434("50% Award", " ", null);
_ej75._lk434("Unlocked BallieBubble", " ", null);
_ej75._lk434("Completed Game", " ", null);
}
public static function _pd461():void{
if (_ej75._gr376(16) == 0){
if ((((((_ej75._gr376(5) == 1)) && ((_ej75._gr376(6) == 1)))) && ((_ej75._gr376(7) == 1)))){
_ej75._nb496(16, 1);
_um1575._ov905 = true;
};
};
}
public static function _bd1294():void{
if (_ej75._gr376(11) == 0){
if (_he822._ao412.value > (500000 - 1)){
_ej75._nb496(11, 1);
_um1575._ov905 = true;
};
};
}
public static function _mu1098():void{
if (_ej75._gr376(3) == 0){
if ((((_af1146._sw930 == false)) && ((_he822._gf734 == 10)))){
_ej75._nb496(3, 1);
_um1575._ov905 = true;
_bk928();
};
};
}
public static function _wj1248():void{
if (_ej75._gr376(14) == 0){
if (_he822._gf734 == 12){
_ej75._nb496(14, 1);
_um1575._ov905 = true;
};
};
}
public static function _dt1276():void{
if (_ej75._gr376(17) == 0){
if (_he822._gf734 == 50){
_ej75._nb496(17, 1);
_um1575._ov905 = true;
};
};
}
public static function _di1225():void{
if (_ej75._gr376(1) == 0){
_ej75._nb496(1, 1);
_um1575._ov905 = true;
};
}
public static function _ck1065():void{
if (_ej75._gr376(5) == 0){
_ej75._nb496(5, 1);
_um1575._ov905 = true;
_pd461();
};
}
public static function _lo351():void{
if (_ej75._gr376(9) == 0){
if (_he822._ao412.value > (125000 - 1)){
_ej75._nb496(9, 1);
_um1575._ov905 = true;
};
};
}
public static function _rr151():Boolean{
if (_ej75._gr376(1) == 1){
return (true);
};
return (false);
}
public static function _js660():void{
if (_ej75._gr376(13) == 0){
_ej75._nb496(13, 1);
_um1575._ov905 = true;
};
}
public static function _xl1274():void{
if (_ej75._gr376(6) == 0){
_ej75._nb496(6, 1);
_um1575._ov905 = true;
_pd461();
};
}
public static function _nm881(_arg1:int):void{
if (_arg1 > _ej75._gr376(0)){
_ej75._nb496(0, _arg1);
_um1575._ov905 = true;
};
trace(((("" + _arg1) + " | ") + _ej75._gr376(0)));
}
public static function _vw400():void{
if (_ej75._gr376(15) == 0){
if (_he822._gf734 == 25){
_ej75._nb496(15, 1);
_um1575._ov905 = true;
};
};
}
public static function _fj856():void{
if (_ej75._gr376(10) == 0){
if (_he822._ao412.value > (250000 - 1)){
_ej75._nb496(10, 1);
_um1575._ov905 = true;
};
};
}
public static function _lf1164():int{
return (_ej75._gr376(0));
}
public static function _dm851():void{
if (_ej75._gr376(7) == 0){
_ej75._nb496(7, 1);
_um1575._ov905 = true;
_pd461();
};
}
public static function _nd870():void{
if (_ej75._gr376(12) == 0){
if (_he822._ao412.value > (1000000 - 1)){
_ej75._nb496(12, 1);
_um1575._ov905 = true;
};
};
}
public static function _ng1413():void{
if (_ej75._gr376(4) == 0){
if ((((_af1146._sw930 == false)) && ((_he822._gf734 == 20)))){
_ej75._nb496(4, 1);
_um1575._ov905 = true;
};
};
}
public static function _bk928():void{
if (_ej75._gr376(8) == 0){
if (_ej75._gr376(3) == 1){
_ej75._nb496(8, 1);
_um1575._ov905 = true;
};
};
}
public static function _mt336():void{
if (_ej75._gr376(2) == 0){
if ((((_af1146._sw930 == false)) && ((_he822._gf734 == 6)))){
_ej75._nb496(2, 1);
_um1575._ov905 = true;
};
};
}
}
}//package
Section 292
//_wd413 (_wd413)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _wd413 {
public static var _qi914:Array = [_aw1346, _lo1633, _ak1068, _gf209];
public static var _lo1633:Object = new Object();
public static var _ak1068:Object = new Object();
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static var _gf209:Object = new Object();
public static function _ax548(_arg1:BitmapData):void{
var _local2 = 200;
var _local3 = 1000;
var _local4 = 28;
var _local5 = 1;
var _local6:Number = 0;
if (_ib16._ea276[_local4] > _local3){
_ib16._nk274--;
var _local7 = _ib16._ea276;
var _local8 = _local4;
var _local9 = (_local7[_local8] - 1);
_local7[_local8] = _local9;
} else {
_px1609 = _ib16._ij1088._kn515(_rk277._et1432, 0, 0, 11, 8, _arg1, -1, -1, 0);
_px1609._qd1101 = 1;
_px1609._xy276(-16, -16, (_he1472._dj78 + 16), (_he1472._rc1179 + 16));
_he1472._nx1028(_px1609, 16);
_px1609._mm1672(_rk277._et1432, _rw574._up1471._tp230(0.0025, 0.005), 2, 2);
_px1609._sh1626(5.25);
_px1609._up929(_af1146._dg84, 0.00025, _rw574._up1471._tp230((0.04 / 2.8), (0.25 / 2.8)), 0.00025, _rw574._up1471._tp230((0.04 / 2.8), (0.25 / 2.8)));
_px1609.id = _local4;
_px1609._gu403 = _local5;
_px1609._qy180 = _local2;
};
}
public static function _xh499():void{
}
}
}//package
Section 293
//_xk709 (_xk709)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _xk709 {
public static var _aq1168:Number = 0.1;
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local3 = 1600;
var _local4 = 15;
var _local5 = 23;
var _local6 = 3;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local7 = _ib16._ea276;
var _local8 = _local5;
var _local9 = (_local7[_local8] - 1);
_local7[_local8] = _local9;
} else {
_px1609 = _ib16._ij1088._kn515(_rk277._gd266, 0, 0, 48, 48, _arg1, -1, -1, 0);
_px1609._ss1421(_rw574._up1471._tp230(0, 699), -64);
_px1609._qd1101 = _rw574._up1471._tp230(10, 35);
_px1609._xy276(-64, -6000, (_he1472._dj78 + 64), (_he1472._rc1179 + 6000));
_px1609._mm1672(_aw1346[0], _rw574._up1471._tp230(0.1, 0.2), 20, 1, 0);
_px1609._sh1626(15);
_px1609._gy1216(_cf73);
_px1609.state = 0;
_px1609._md1262 = _rw574._up1471._tp230(50, 300);
_px1609.id = _local5;
_px1609._gu403 = _local6;
_px1609._qy180 = _local3;
};
}
public static function _xh499():void{
_rw574._wy1430(_aw1346, 0, _rk277._gd266, -0.015, 0, 20, true, 0, 1);
}
private static function _cf73(_arg1:_uf368):void{
if (_arg1.state == 0){
_arg1.y = (_arg1.y + (0.1 * _he1472._mv493));
if (_arg1.y > _arg1._md1262){
_arg1.y = _arg1._md1262;
_arg1.state = 1;
_arg1._ru190(_rw574._lb492(), _rw574._up1471._tp230(0.001, 0.003), _rw574._up1471._tp230(0.035, 0.08), _rw574._lb492(), _rw574._up1471._tp230(0.001, 0.003), 0.035, 0, 0, 0, 0, false);
_arg1._md1262 = _rw574._up1471._tp230(2000, 6000);
};
} else {
if (_arg1.state == 1){
_arg1._md1262 = (_arg1._md1262 - _he1472._mv493);
if (_arg1._md1262 < 1){
_arg1.state = 2;
_arg1._ot621(_arg1.x, -1000, 0.01, 0.0002, false);
};
_arg1._se1147 = (_arg1._se1147 - _he1472._mv493);
if (_arg1._se1147 < 1){
_arg1._se1147 = (1000 / 15);
_px1609 = _ib16._se1010._kn515(_rk277._bf539, 0, 0, 20, 20, _he822._yh998._dn642, _arg1.x, _arg1.y, 0);
_px1609._sh1626(5);
_px1609._xy276(-32, -32, (_he1472._dj78 + 32), (_he1472._rc1179 + 32));
_px1609._io238(90, 0, 0.25, 0, 0, true);
};
} else {
if (_arg1.state == 2){
if (_arg1.y < -500){
_arg1._ss1421(_rw574._up1471._tp230(0, 699), -64);
_arg1._gm610 = 0;
_arg1.state = 0;
_arg1._md1262 = _rw574._up1471._tp230(50, 300);
};
};
};
};
}
}
}//package
Section 294
//_xy1313 (_xy1313)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _xy1313 {
public static var _qi914:Array = [_aw1346, _lo1633, _ak1068, _gf209];
public static var _lo1633:Object = new Object();
public static var _ak1068:Object = new Object();
private static var _px1609:_uf368;
public static var _aw1346:Object = new Object();
public static var _gf209:Object = new Object();
public static function _ax548(_arg1:BitmapData):void{
var _local6:BitmapData;
var _local7:int;
var _local8:Number;
var _local2 = 700;
var _local3 = 40;
var _local4 = 12;
var _local5 = 2;
if (_ib16._ea276[_local4] > _local3){
_ib16._nk274--;
var _local9 = _ib16._ea276;
var _local10 = _local4;
var _local11 = (_local9[_local10] - 1);
_local9[_local10] = _local11;
} else {
_local7 = 1;
_local6 = _rk277._dr599;
if (_rw574._hg629() == true){
_local7 = -1;
_local6 = _rk277._vt1555;
};
_px1609 = _ib16._ij1088._kn515(_local6, 0, 0, 45, 30, _arg1, -1, -1, 0);
_px1609._qd1101 = _rw574._up1471._tp230(3, 18);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._mm1672(_local6, _rw574._up1471._tp230(0.02, 0.07), 9, 2, 1);
_px1609.y = _rw574._up1471._tp230(0, 499);
_local8 = _rw574._up1471._tp230(0.025, 0.15);
if (_local7 == 1){
_px1609.x = -45;
_px1609._ru190(0, 0, 0, _rw574._lb492(), _rw574._up1471._tp230(0.001, 0.003), 0.05, _local8, 0, 0, 0, false);
} else {
_px1609.x = (699 + 45);
_px1609._ru190(0, 0, 0, _rw574._lb492(), _rw574._up1471._tp230(0.001, 0.003), 0.05, -(_local8), 0, 0, 0, false);
};
_px1609._sh1626(16);
_px1609.id = _local4;
_px1609._gu403 = _local5;
_px1609._qy180 = _local2;
};
}
public static function _xh499():void{
}
}
}//package
Section 295
//_yf349 (_yf349)
package {
import flash.display.*;
public class _yf349 {
public static var _sd176:Number = 1;
public static var _vk786:Number = (width / 2);
public static var color:uint;
public static var width:int = 700;
public static var height:int = 500;
public static var _mr590:int = 64;
public static var _rx708:Number = (height / 2);
public static var _wv811:BitmapData;
public static var _jh603:Array = [];
public static var _nd598:Number = 0;
public static function _ig1054():void{
var _local1:_id943;
var _local2:uint;
for each (_local1 in _jh603) {
if (_local1.z < _sd176){
_local1._ll258();
};
_local1.z = (_local1.z - _sd176);
_local1._cf892 = (((_local1.x * _mr590) / _local1.z) + _vk786);
_local1._pm15 = (((_local1.y * _mr590) / (4 + _local1.z)) + _rx708);
if ((((_local1._cf892 < 0)) || ((_local1._cf892 > width)))){
_local1._ll258();
};
if ((((_local1._pm15 < 0)) || ((_local1._pm15 > height)))){
_local1._ll258();
};
_local2 = (0xFF - _local1.z);
if (_local2 > 0){
color = (_local2 * 65793);
_wv811.setPixel(_local1._cf892, _local1._pm15, color);
};
};
}
public static function _bu163():void{
var _local1:int;
var _local2:_id943;
var _local3:int = (_jh603.length - 1);
_local1 = _local3;
while (_local1 >= 0) {
_local2 = _jh603[_local1];
_jh603.splice(_local1, 1);
_local2 = null;
_local1--;
};
_jh603 = null;
}
public static function Init(_arg1:Number, _arg2:BitmapData):void{
var _local3:int;
var _local4:_id943;
var _local5:int = (_jh603.length - 1);
_wv811 = _arg2;
_nd598 = _arg1;
_local3 = _local5;
while (_local3 >= 0) {
_local4 = _jh603[_local3];
_jh603.splice(_local3, 1);
_local4 = null;
_local3--;
};
var _local6:int;
while (_local6 < _nd598) {
_local4 = new _id943();
_local4._ll258();
_jh603.push(_local4);
_local6++;
};
}
}
}//package
Section 296
//_yf492 (_yf492)
package {
import classes.*;
public class _yf492 {
public static var _vu1130:int;
public static var _oa700:Array = [];
public static var _kw428:Number = 0;
public static function _xt1326():void{
_mx614(0, 0, [0]);
_mx614(20, 5, [1]);
_mx614(60, 5, [3]);
_mx614(25, 5, [1, 1, 1, 1, 1, 1, 1, 1, 2]);
_mx614(120, 10, [6]);
_mx614(30, 5, [1, 1, 1, 1, 1, 1, 1, 1, 2]);
_mx614(60, 5, [4]);
_mx614(35, 5, [1, 1, 1, 1, 1, 1, 1, 2]);
_mx614(60, 5, [8]);
_mx614(40, 5, [1, 1, 1, 1, 1, 1, 1, 2]);
_mx614(80, 5, [12]);
_mx614(45, 5, [1, 1, 1, 1, 1, 1, 2]);
_mx614(3, 10, [7]);
_mx614(50, 5, [1, 1, 1, 1, 1, 1, 2]);
_mx614(60, 5, [5]);
_mx614(55, 5, [1, 1, 1, 1, 1, 2]);
_mx614(8, 1, [9]);
_mx614(60, 5, [1, 1, 1, 1, 1, 2]);
_mx614(60, 5, [17]);
_mx614(65, 5, [1, 1, 1, 1, 2]);
_mx614(1, 5, [21]);
_mx614(60, 5, [1, 1, 1, 1, 2]);
_mx614(160, 10, [13]);
_mx614(160, 10, [13, 13, 14]);
_mx614(60, 5, [1, 1, 1, 2]);
_mx614(1, 5, [15]);
_mx614(60, 5, [1, 1, 1, 2]);
_mx614(20, 5, [16]);
_mx614(60, 5, [1, 1, 2]);
_mx614(5, 1, [18]);
_mx614(60, 5, [1, 1, 2]);
_mx614(30, 5, [23]);
_mx614(60, 5, [1, 2]);
_mx614(25, 5, [24]);
_mx614(60, 5, [1, 2]);
_mx614(12, 5, [26]);
_mx614(60, 5, [1, 2]);
_mx614(60, 5, [2]);
_mx614(20, 30, [3]);
_mx614(20, 30, [6]);
_mx614(20, 30, [4]);
_mx614(20, 30, [8]);
_mx614(20, 30, [12]);
_mx614(20, 30, [5]);
_mx614(20, 30, [17]);
_mx614(20, 30, [13]);
_mx614(10, 30, [16]);
_mx614(100, 2, [1, 2, 3, 6, 4, 8, 12, 5, 17, 13, 16]);
_mx614(1, 1, [2]);
_mx614(1000, 100, [28]);
_mx614(1, 5, [27]);
_mx614(1000000, 10, [1, 2, 3, 4, 5, 6, 8, 13, 17]);
}
private static function _mx614(_arg1:int, _arg2:Number, _arg3:Array):void{
var _local4:_dt1661 = new _dt1661();
_local4._wm1308 = _arg1;
_local4._ow842 = (1000 / _arg2);
_local4._em819 = _arg3;
_oa700[_oa700.length] = _local4;
_vu1130 = (_oa700.length - 1);
_kw428 = (_kw428 + _arg1);
trace(("" + _kw428));
}
}
}//package
Section 297
//_yg1481 (_yg1481)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _yg1481 {
public static var _tf1652:BitmapData;
private static var _px1609:_uf368;
public static var _uh966:Object = new Object();
public static var _lo1633:Object = new Object();
public static function _ax548(_arg1:BitmapData, _arg2:int=1):void{
var _local4:BitmapData;
var _local3 = 4;
var _local5:Number = 0;
var _local6:Number = 0;
var _local7:int = _rw574._up1471._ma459(1, 4);
var _local8 = 900;
var _local9 = 6;
var _local10 = 9;
_tf1652 = _arg1;
if (_ib16._ea276[_local10] > _local9){
_ib16._nk274--;
var _local11 = _ib16._ea276;
var _local12 = _local10;
var _local13 = (_local11[_local12] - 1);
_local11[_local12] = _local13;
} else {
_px1609 = _ib16._ij1088._kn515(_rk277._rw325, 0, 0, 80, 80, _arg1, -1, -1, 0);
_px1609._qd1101 = 10;
_he1472._nx1028(_px1609, 64);
_px1609._io238(_rw574._up1471._tp230(0, 359), 0, _rw574._up1471._tp230(0.025, 0.05), 0, 0, false);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._sh1626(40);
_px1609._gu403 = _local3;
_px1609.id = _local10;
_px1609._ah877(_gy330);
_px1609._qy180 = _local8;
};
}
public static function _xh499():void{
}
public static function _gy330(_arg1:_uf368):void{
var _local3:int;
var _local2 = 50;
if (_arg1.id == 9){
_local3 = 0;
while (_local3 < 3) {
_px1609 = _ib16._ij1088._kn515(_rk277._cc348, 0, 0, 40, 40, _tf1652, -1, -1, 0);
_px1609._qd1101 = 6;
_px1609._ss1421(_arg1.x, _arg1.y);
_px1609._io238(_rw574._up1471._tp230(0, 359), 0, _rw574._up1471._tp230(0.04, 0.08), 0, 0, false);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._sh1626(20);
_px1609._gu403 = 3;
_px1609.id = 10;
_px1609._ah877(_gy330);
_px1609._qy180 = _local2;
_local3++;
};
} else {
if (_arg1.id == 10){
_local3 = 0;
while (_local3 < 6) {
_px1609 = _ib16._ij1088._kn515(_rk277._vv1327, 0, 0, 20, 20, _tf1652, -1, -1, 0);
_px1609._qd1101 = 3;
_px1609._ss1421(_arg1.x, _arg1.y);
_px1609._io238(_rw574._up1471._tp230(0, 359), 0, _rw574._up1471._tp230(0.075, 0.15), 0, 0, false);
_px1609._xy276(-64, -64, (_he1472._dj78 + 64), (_he1472._rc1179 + 64));
_px1609._sh1626(10);
_px1609._gu403 = 2;
_px1609.id = 11;
_px1609._qy180 = _local2;
_local3++;
};
};
};
}
}
}//package
Section 298
//_yi1445 (_yi1445)
package {
import classes.*;
import flash.display.*;
import flash.geom.*;
public class _yi1445 {
public static var _nd709:Number = 0;
public static var state:Number = 0;
public static var _pa1499:Number = 0;
public static var _eh512:Number = 0;
public static var _sa517:Number;
public static var _ec624:_uf368;
private static var _px1609:_uf368;
public static var _kd438:_uf368;
public static var _cg1265:Number = 0;
public static var _gn1503:Number = 0;
public static var _lv231:Function;
public static var _ex614:Number = 0;
public static var _xv42:Number = 0;
public static var _yx1156:BitmapData;
public static function _rg851():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_pg766(100) == true){
_wc1092(20, 0.2);
};
if (_cj899() == true){
_ec624._ot621(350, 140, 0.05, 5E-5, false);
_ex614 = _ec624._qd1101;
_cg1265 = (15 * 1000);
_lv231 = _ao1651;
_sa517 = 14;
};
}
public static function _uw1157():void{
_ec624._qd1101 = 100;
_ec624._jq651 = 0;
if (_cj899() == true){
_ec624._ot621(350, 140, 0.05, 5E-5, false);
_ec624._me814(0.00025, 0.1, 1, 3, 0.1);
_ec624._rn387(0.00025, 0.1, 1, 3, 0.1);
_lv231 = _uv1590;
_sa517 = 2;
};
}
public static function _ms1352():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_pg766(100) == true){
_wc1092(20, 0.2);
};
if (_cj899() == true){
_ec624._ot621(350, 140, 0.05, 5E-5, false);
_ex614 = _ec624._qd1101;
_cg1265 = (15 * 1000);
_lv231 = _vw391;
_sa517 = 10;
};
}
public static function _kx41():void{
var _local1:_uf368;
for each (_local1 in _ib16._ij1088._rh308) {
if (_local1.id != 27){
_local1._tc794 = true;
_local1._os1213 = false;
_lv349._af629(_local1.x, _local1.y, _he822._yh998._dn642, 2, _rw574._up1471._ma459(0, 4));
};
};
_ib16._lf1282();
}
public static function _sv1255(_arg1:_uf368):void{
var _local2:_uf368;
_ib16._se1010._cu677();
_ec624._gy1216(null);
_kd438._gy1216(null);
_kd438._tc794 = true;
_px1609 = _lv349._gm1204._kn515(_rk277._oq751, 0, 0, _rk277._oq751.width, _rk277._oq751.height, _he822._yh998._dn642, 0, 0, 1);
_px1609._ss1421(_ec624.x, _ec624.y);
_px1609._br1109(0.005, 1, 100, 4, 1);
_px1609._ch630(-0.001, 1);
_ec624 = null;
_kd438 = null;
_he822._sl35 = true;
}
public static function _iq322(_arg1:Number):Boolean{
_eh512 = (_eh512 - _he1472._mv493);
if (_eh512 < 1){
_eh512 = _arg1;
return (true);
};
return (false);
}
public static function _vv805():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_pg766(1000) == true){
_ut1276(25, 0.2);
};
if (_cj899() == true){
_ec624._ot621(350, 140, 0.05, 5E-5, false);
_ex614 = _ec624._qd1101;
_cg1265 = (15 * 1000);
_lv231 = _ir272;
_sa517 = 16;
};
}
public static function _cj899():Boolean{
_cg1265 = (_cg1265 - _he1472._mv493);
if (_cg1265 < 1){
_cg1265 = 0;
return (true);
};
return (false);
}
public static function _yd506(_arg1:Number, _arg2:Number=0.15, _arg3:Number=0):void{
_px1609 = _ib16._se1010._kn515(_rk277._fl527, 0, 0, 32, 32, _he822._yh998._dn642, _kd438.x, _kd438.y, 0);
_px1609._mm1672(_rk277._fl527, 0.01, 2, 2);
_px1609._xy276(-32, -32, (700 + 32), (500 + 32));
_px1609._io238(_arg1, _arg3, _arg2, 0, 0, true);
_px1609._sh1626(12);
_rm966._bw292("enemyfire");
}
public static function _qp712(_arg1:_uf368):void{
_arg1.rotation = _rw574._vq657(_arg1.x, _arg1.y, _af1146._dg84.x, _af1146._dg84.y);
_lv231();
}
public static function _dx1006():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_pg766(2000) == true){
_ut1276(25);
};
if (_cj899() == true){
_ec624._ot621(350, 140, 0.05, 5E-5, false);
_ex614 = _ec624._qd1101;
_cg1265 = (15 * 1000);
_lv231 = _fi807;
_sa517 = 8;
};
}
public static function _wm203():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_ec624._gm610 == 0){
_cy269();
if (_pg766(250) == true){
_ib16._nk274++;
var _local1 = _ib16._ea276;
var _local2 = 16;
var _local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_sv1446._ax548(_he822._yh998._dn642);
};
if (_cj899() == true){
_kx41();
_ec624._wh1061(_af1146._dg84, 0.1, 0, 0, 0);
_cg1265 = (15 * 1000);
_pa1499 = _rw574._lb492();
_lv231 = _lg1505;
_sa517 = 19;
};
};
}
public static function _fi807():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_ec624._gm610 == 0){
_cy269();
if (_pg766(75) == true){
_ib16._nk274++;
var _local1 = _ib16._ea276;
var _local2 = 6;
var _local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_fq1664._ax548(_he822._yh998._dn642);
_ib16._nk274++;
_local1 = _ib16._ea276;
_local2 = 6;
_local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_fq1664._ax548(_he822._yh998._dn642);
};
if (_cj899() == true){
_kx41();
_ec624._wh1061(_af1146._dg84, 0.1, 0, 0, 0);
_cg1265 = (15 * 1000);
_pa1499 = _rw574._lb492();
_lv231 = _ms1352;
_sa517 = 9;
};
};
}
public static function _go872():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_pg766(40) == true){
_wc1092(10, 0.2);
};
if (_cj899() == true){
_ec624._ot621(350, 140, 0.05, 5E-5, false);
_ex614 = _ec624._qd1101;
_cg1265 = (15 * 1000);
_lv231 = _wm203;
_sa517 = 18;
};
}
public static function _gw990():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_pg766(2000) == true){
_ut1276(25);
};
if (_cj899() == true){
_ec624._ot621(350, 140, 0.05, 5E-5, false);
_ex614 = _ec624._qd1101;
_cg1265 = (15 * 1000);
_lv231 = _am192;
_sa517 = 12;
};
}
public static function _vw391():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_ec624._gm610 == 0){
_cy269();
if (_pg766(250) == true){
_ib16._nk274++;
var _local1 = _ib16._ea276;
var _local2 = 12;
var _local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_xy1313._ax548(_he822._yh998._dn642);
};
if (_cj899() == true){
_kx41();
_ec624._wh1061(_af1146._dg84, 0.1, 0, 0, 0);
_cg1265 = (15 * 1000);
_pa1499 = _rw574._lb492();
_lv231 = _gw990;
_sa517 = 11;
};
};
}
public static function _gk876():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_ec624._gm610 == 0){
_cy269();
if (_pg766(2000) == true){
_ib16._nk274++;
var _local1 = _ib16._ea276;
var _local2 = 26;
var _local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_bu568._ax548(_he822._yh998._dn642);
};
if (_cj899() == true){
_kx41();
_pa1499 = _rw574._lb492();
_lv231 = _og1088;
_kd438._ud376 = _rk277._lf1053;
_sa517 = 22;
};
};
}
public static function _cy269():void{
_ec624._ss1421((350 + _rw574._up1471._tp230(-5, 5)), (140 + _rw574._up1471._tp230(-5, 5)));
}
public static function _ee1498():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_ec624._gm610 == 0){
_cy269();
if (_pg766(250) == true){
_ib16._nk274++;
var _local1 = _ib16._ea276;
var _local2 = 3;
var _local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_ci552._ax548(_he822._yh998._dn642);
};
if (_cj899() == true){
_kx41();
_ec624._wh1061(_af1146._dg84, 0.1, 0, 0, 0);
_cg1265 = (15 * 1000);
_pa1499 = _rw574._lb492();
_lv231 = _dx1006;
_sa517 = 7;
};
};
}
public static function _lg1505():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_pg766(1000) == true){
_ut1276(26, 0.2);
};
if (_cj899() == true){
_ec624._ot621(350, 140, 0.05, 5E-5, false);
_ex614 = _ec624._qd1101;
_cg1265 = (15 * 1000);
_lv231 = _gk876;
_sa517 = 20;
};
}
public static function _ir272():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_ec624._gm610 == 0){
_cy269();
if (_pg766(75) == true){
_ib16._nk274++;
var _local1 = _ib16._ea276;
var _local2 = 13;
var _local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_uh1173._ax548(_he822._yh998._dn642);
_ib16._nk274++;
_local1 = _ib16._ea276;
_local2 = 13;
_local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_uh1173._ax548(_he822._yh998._dn642);
_ib16._nk274++;
_local1 = _ib16._ea276;
_local2 = 13;
_local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_uh1173._ax548(_he822._yh998._dn642);
};
if (_cj899() == true){
_kx41();
_ec624._wh1061(_af1146._dg84, 0.1, 0, 0, 0);
_cg1265 = (15 * 1000);
_pa1499 = _rw574._lb492();
_lv231 = _go872;
_sa517 = 17;
};
};
}
public static function _ao1651():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_ec624._gm610 == 0){
_cy269();
if (_pg766(250) == true){
_ib16._nk274++;
var _local1 = _ib16._ea276;
var _local2 = 17;
var _local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_jv1452._ax548(_he822._yh998._dn642);
};
if (_cj899() == true){
_kx41();
_ec624._wh1061(_af1146._dg84, 0.1, 0, 0, 0);
_cg1265 = (15 * 1000);
_pa1499 = _rw574._lb492();
_lv231 = _vv805;
_sa517 = 15;
};
};
}
public static function _og1088():void{
if (_pg766(5000) == true){
_ut1276(50, 0.2);
};
}
public static function _mj1261():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_pg766(2000) == true){
_ut1276(20);
};
if (_cj899() == true){
_ec624._ot621(350, 140, 0.05, 5E-5, false);
_ex614 = _ec624._qd1101;
_cg1265 = (15 * 1000);
_lv231 = _hd976;
_sa517 = 4;
};
}
public static function _hd976():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_ec624._gm610 == 0){
_cy269();
if (_pg766(500) == true){
_ib16._nk274++;
var _local1 = _ib16._ea276;
var _local2 = 1;
var _local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_ul707._ax548(_he822._yh998._dn642, 1);
if (_rw574._hg629() == true){
_local1 = _ib16._ea276;
_local2 = 2;
_local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_ul707._ax548(_he822._yh998._dn642, 2);
};
};
if (_cj899() == true){
_kx41();
_ec624._wh1061(_af1146._dg84, 0.1, 0, 0, 0);
_cg1265 = (15 * 1000);
_pa1499 = _rw574._lb492();
_lv231 = _gk176;
_sa517 = 5;
};
};
}
public static function _ao490(_arg1:Number=0.15, _arg2:Number=0):void{
var _local3:Number = _rw574._vq657(_kd438.x, _kd438.y, _af1146._dg84.x, _af1146._dg84.y);
_px1609 = _ib16._se1010._kn515(_rk277._fl527, 0, 0, 32, 32, _he822._yh998._dn642, _kd438.x, _kd438.y, 0);
_px1609._mm1672(_rk277._fl527, 0.01, 2, 2);
_px1609._xy276(-32, -32, (700 + 32), (500 + 32));
_px1609._io238(_rw574._by1162(_local3, _arg2), 0, _arg1, 0, 0, true);
_px1609._sh1626(12);
_rm966._bw292("enemyfire");
}
public static function _am192():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_ec624._gm610 == 0){
_cy269();
if (_pg766(250) == true){
_ib16._nk274++;
var _local1 = _ib16._ea276;
var _local2 = 5;
var _local3 = (_local1[_local2] + 1);
_local1[_local2] = _local3;
_sc582._ax548(_he822._yh998._dn642);
};
if (_cj899() == true){
_kx41();
_ec624._wh1061(_af1146._dg84, 0.1, 0, 0, 0);
_cg1265 = (15 * 1000);
_pa1499 = _rw574._lb492();
_lv231 = _rg851;
_sa517 = 13;
};
};
}
public static function _pg766(_arg1:Number):Boolean{
_xv42 = (_xv42 - _he1472._mv493);
if (_xv42 < 1){
_xv42 = _arg1;
return (true);
};
return (false);
}
public static function _ax548(_arg1:BitmapData, _arg2:int=0):void{
var _local3 = 200000;
var _local4 = 1;
var _local5 = 27;
var _local6 = 4;
if (_ib16._ea276[_local5] > _local4){
_ib16._nk274--;
var _local7 = _ib16._ea276;
var _local8 = _local5;
var _local9 = (_local7[_local8] - 1);
_local7[_local8] = _local9;
} else {
_yx1156 = _arg1;
_kd438 = _ib16._ij1088._kn515(_rk277._vf715, 0, 0, _rk277._vf715.width, _rk277._vf715.height, _arg1, -1, -1, 1);
_kd438._os1213 = false;
_kd438._gy1216(_ga1373);
_kd438.id = _local5;
_ec624 = _ib16._ij1088._kn515(_rk277._ds873, 0, 0, 274, 274, _arg1, -1, -1, 1);
_ec624._ss1421((700 / 2), -((200 / 2)));
_ec624._qd1101 = 100;
_ec624._xy276(-100, -100, (_he1472._dj78 + 100), (_he1472._rc1179 + 100));
_ec624._sh1626(99);
_ec624.id = _local5;
_ec624._gu403 = _local6;
_ec624._qy180 = _local3;
_ec624._gy1216(_qp712);
_ec624._yl1629 = 0.1;
_ec624._xf81 = 0.1;
_ec624._wh1061(_af1146._dg84, 0.05, 0, 0, 0);
_lv231 = _uw1157;
_sa517 = 1;
_cg1265 = (15 * 1000);
};
}
public static function _xh499():void{
}
public static function _wc1092(_arg1:Number, _arg2:Number):void{
_pa1499 = (_pa1499 + _arg1);
if (_pa1499 > 360){
_pa1499 = (_pa1499 - 360);
};
_yd506(_pa1499, _arg2, 0);
_rm966._bw292("enemyfire");
}
public static function _lx1277(_arg1:Number):Boolean{
_gn1503 = (_gn1503 - _he1472._mv493);
if (_gn1503 < 1){
_gn1503 = _arg1;
return (true);
};
return (false);
}
public static function _gk176():void{
_ec624._qd1101 = 500;
_ec624._jq651 = 0;
if (_pg766(100) == true){
_wc1092(12, 0.2);
};
if (_cj899() == true){
_ec624._ot621(350, 140, 0.05, 5E-5, false);
_ex614 = _ec624._qd1101;
_cg1265 = (15 * 1000);
_lv231 = _ee1498;
_sa517 = 6;
};
}
public static function _uy474(_arg1:Number=0.15, _arg2:Number=0):void{
_px1609 = _ib16._se1010._kn515(_rk277._fl527, 0, 0, 32, 32, _he822._yh998._dn642, _kd438.x, _kd438.y, 0);
_px1609._mm1672(_rk277._fl527, 0.01, 2, 2);
_px1609._xy276(-32, -32, (700 + 32), (500 + 32));
_px1609._io238(_rw574._vq657(_kd438.x, _kd438.y, _af1146._dg84.x, _af1146._dg84.y), _arg2, _arg1, 0, 0, true);
_px1609._sh1626(12);
_rm966._bw292("enemyfire");
}
public static function _ga1373(_arg1:_uf368):void{
if (_ec624._tc794 == true){
_arg1._tc794 = true;
_arg1._gy1216(null);
} else {
_arg1._ss1421((_ec624.x + _rw574._be1379(_ec624.rotation, (25 * _ec624._yl1629))), (_ec624.y + _rw574._dm1262(_ec624.rotation, (25 * _ec624._xf81))));
_arg1._yl1629 = _ec624._yl1629;
_arg1._xf81 = _ec624._xf81;
};
}
public static function _uv1590():void{
_ec624._qd1101 = 100;
_ec624._jq651 = 0;
if (_ec624._gm610 == 0){
_ec624._wh1061(_af1146._dg84, 0.1, 0, 0, 0);
_cg1265 = (15 * 1000);
_lv231 = _mj1261;
_sa517 = 3;
};
}
public static function _ut1276(_arg1:int, _arg2:Number=0.15):void{
var _local3:int;
while (_local3 < _arg1) {
_px1609 = _ib16._se1010._kn515(_rk277._fl527, 0, 0, 32, 32, _he822._yh998._dn642, _kd438.x, _kd438.y, 0);
_px1609._mm1672(_rk277._fl527, 0.01, 2, 2);
_px1609._xy276(-32, -32, (700 + 32), (500 + 32));
_px1609._io238((_local3 * (360 / _arg1)), 0, _arg2);
_px1609._sh1626(12);
_local3++;
};
_rm966._bw292("enemyfire");
}
}
}//package
Section 299
//armorGamesIntroMC (armorGamesIntroMC)
package {
import flash.events.*;
import flash.media.*;
import flash.display.*;
import flash.net.*;
import flash.geom.*;
import flash.filters.*;
import flash.utils.*;
import flash.system.*;
import flash.text.*;
import flash.ui.*;
import flash.accessibility.*;
import flash.errors.*;
public dynamic class armorGamesIntroMC extends MovieClip {
public function armorGamesIntroMC(){
addFrameScript(0, frame1, 217, frame218);
}
function frame218(){
stop();
}
function frame1(){
stop();
}
}
}//package