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

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

skeet-shoot.swf

This is the info page for
Flash #22485

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


Text
20

50

30

30

Loading...

Percentage loaded :

0:00

Load-Info

At the beginning of each level you will
be given a number of targets to hit.
Hit this many to continue to the next
level!

Fail to meet the quota and it's end of
game.  Make the most of the bonus rounds
to help rack up the high Scores!

At the beginning of each level you will
be given a number of targets to hit.
Hit this many to continue to the next
level!

Fail to meet the quota and it's end of
game.  Make the most of the bonus rounds
to help rack up the high Scores!

Your Email :

Friend's Email :

Send

Send

Send

Your message :

Email this game to your friend with your own message:

Back

Back

Back

Thanks...
Your friend has been emailed!

Hit

clays to continue!

Level

Click to Play

Click to Play

Skeet Shoot

actions

Try and hit the clays as they
fly past.  You have 2 shots
per pair of clays... try not
to miss!

Try and hit the clays as they
fly past.  You have 2 shots
per pair of clays... try not
to miss!

Ready...

Quota :

0

Hit :

0

Congratulations!

Points this stage :

Total points :

Congratulations!

Quota Met

!

t

i

e

k

a

m

e

t

i

u

q

t

'

n

d

i

d

u

o

Y

!

k

c

u

l

d

a

B

Continue

Continue

Continue

Bad luck!

Hit

Targets to continue!

Level

t

o

o

h

S

a

r

a

P

Try and hit the targets as they
fall.  Hit nearer the centre for
higher scores but make sure
you don't hit the black skulls!

Try and hit the targets as they
fall.  Hit nearer the centre for
higher scores but make sure
you don't hit the black skulls!

Not these:

Hit these:

Ready...

0

0

Congratulations!

Targets hit :

Quota Met

Congratulations!

You have 5 seconds to hit
as many bottles as you can...

Round

Bonus Round

Bonus Round

Hit :

0

0

Ready...

Bonus round scores:

Bottles hit :

Bonus round scores:

ActionScript [AS1/AS2]

Frame 1
stop();
Instance of Symbol 120 MovieClip in Frame 4
onClipEvent (load) { var myStartWidth = this._width; this._width = 0; } onClipEvent (enterFrame) { this._width = myStartWidth * _root.mc_load_info.fractionLoaded; }
Instance of Symbol 123 MovieClip "mc_load_info" in Frame 4
//component parameters onClipEvent (initialize) { STREAM = false; PLAY_TYPE = "bytes"; PLAY_BYTES = 10000; PLAY_FRAMES = 0; PLAY_PERCENTAGE = 0; }
Frame 6
Mouse.show(); sight._x = 1000; stop();
Frame 7
stop();
Frame 11
stop(); name_txt.restrict = "a-z 0-9.:\\-@"; Selection.setFocus(name_txt); Selection.setSelection(name_txt.length, name_txt.length); ok_btn.onRelease = function () { if (name_txt.length > 0) { _root.game_so.data.playerName = name_txt.text; } Body = "Check out KwikShot - at www.kwikgames.com/kwikshot.htm\n\n" + Body; loadVariablesNum ("http://www.kwikgames.com/cgi/flashemail.php", 0, "POST"); nextFrame(); }; ok_btn.onKeyDown = function () { if (Key.getCode() == 13) { Key.removeListener(ok_btn); this.onRelease(); } }; Key.addListener(ok_btn);
Frame 12
stop();
Frame 13
thisPoints = 0; totalPoints = 0; gameLevel = 0; gameLevelShow = 0;
Frame 14
function sightGun() { var _local1 = _root; _local1.clayMove(); _local1.sight._x = _local1._xmouse; _local1.sight._y = _local1._ymouse; } function startLevel() { shots = 2; reps = 0; } function myRandom(minval, maxval) { return(minval + Math.floor(Math.random() * ((maxval + 1) - minval))); } function launch(y, speed) { if (myRandom(1, 2) == 2) { x = 0; dir = "right"; rot = -8; } else { x = 550; dir = "left"; rot = 8; } newClay(50, x, y, rot, dir, speed + (level * 2)); _root.shotsFired++; } function newClay(size, x, y, rot, dir, speed) { level++; attachMovie("clay", "clay" + level, level); clip = _root["clay" + level]; clip._x = x; clip._y = y; clip._xscale = size; clip._yscale = size; clip._rotation = rot; clip.direction = dir; clip.dx = 1.5 * speed; clip.dy = 0.4 * speed; clays.push(clay); if (level == 2) { level = 0; } } function newPara() { level++; attachMovie("paras", "paras" + level, level); clip = _root["paras" + level]; clip._x = myRandom(40, 510); clip._y = myRandom(0, 150); } function newBad() { level++; attachMovie("parasBad", "parasBad" + level, level); clip = _root["parasBad" + level]; clip._x = myRandom(40, 510); clip._y = myRandom(0, 150); } function clayMove() { var _local1 = _root; i = 1; while (i < 3) { clip = _local1["clay" + i]; if (clip.direction == "right") { clip._x = clip._x + clip.dx; } else if (clip.direction == "left") { clip._x = clip._x - clip.dx; } clip._y = clip._y - clip.dy; clip._y = clip._y * 0.98; clip._width = clip._width * 0.99; clip._height = clip._height * 0.99; if ((clip._x > 550) && (clip.direction == "right")) { clip.removeMovieClip(); if (i == 1) { clays.pop(); } else { clays.shift(); } } else if ((clip._x < 0) && (clip.direction == "left")) { clip.removeMovieClip(); if (i == 1) { clays.pop(); } else { clays.shift(); } } i++; } } function iGotClicked(who) { _root.score++; } reps = 0; parasHit = 0; level = 0; score = 0; shots = 2; clays = new Array(); attachMovie("sight", "sight", 1000); attachMovie("gun", "gun", 999); _root.sight._x = 5000; _root.gun._x = 5000; click = new Sound(); click.attachSound("click"); shot = new Sound(); shot.attachSound("shot");
Frame 15
gameLevel++; gameLevelShow++; if (gameLevel >= 5) { objective = 12; } else if (gameLevel == 4) { objective = 10; } else if (gameLevel == 3) { objective = 8; } else if (gameLevel == 2) { objective = 6; } else { objective = 4; } stop();
Instance of Symbol 212 MovieClip in Frame 15
onClipEvent (enterFrame) { _root.sightGun(); }
Frame 49
_root.carts.gotoAndStop(_root.shots + 2); launchHeight = myRandom(150, 350); launchSpeed = myRandom(5, 7); launch(launchHeight, launchSpeed);
Instance of Symbol 212 MovieClip in Frame 49
onClipEvent (enterFrame) { _root.sightGun(); } onClipEvent (mouseDown) { if (_root.shots > 0) { _root.shot.start(); } else { _root.click.start(); } _root.shots--; }
Frame 55
launchHeight = myRandom(150, 350); launchSpeed = myRandom(5, 8); launch(launchHeight, launchSpeed);
Instance of Symbol 212 MovieClip in Frame 55
onClipEvent (enterFrame) { _root.sightGun(); } onClipEvent (mouseDown) { if (_root.shots > 0) { _root.shot.start(); } else { _root.click.start(); } _root.shots--; if (_root.shots >= 0) { _root.carts.gotoAndStop(_root.shots + 2); } }
Frame 134
shots = 2; reps++; if (reps != 6) { gotoAndPlay ("level1"); } else { nextFrame(); }
Instance of Symbol 212 MovieClip in Frame 134
onClipEvent (enterFrame) { _root.clayMove(); _root.sight._x = _root._xmouse; _root.sight._y = _root._ymouse; } on (keyPress "<Space>") { _root.launch(); } onClipEvent (mouseDown) { if (_root.shots > 0) { _root.shot.start(); } else { _root.click.start(); } _root.shots--; }
Frame 135
Mouse.show(); gameLevelShow++; if (gameLevel >= 5) { if (score == 12) { gotoAndStop ("skeetWin"); } else { gotoAndStop ("skeetLose"); } } else if (gameLevel == 4) { if (score >= 10) { gotoAndStop ("skeetWin"); } else { gotoAndStop ("skeetLose"); } } else if (gameLevel >= 3) { if (score >= 8) { gotoAndStop ("skeetWin"); } else { gotoAndStop ("skeetLose"); } } else if (gameLevel >= 2) { if (score >= 6) { gotoAndStop ("skeetWin"); } else { gotoAndStop ("skeetLose"); } } else if (score >= 4) { gotoAndStop ("skeetWin"); } else { gotoAndStop ("skeetLose"); } stop();
Frame 136
thisPoints = score * 100; totalPoints = totalPoints + thisPoints; numHit = "Hit : " + score; stop();
Instance of Symbol 212 MovieClip in Frame 136
onClipEvent (enterFrame) { _root.clayMove(); _root.sight._x = _root._xmouse; _root.sight._y = _root._ymouse; }
Instance of Symbol 212 MovieClip in Frame 136
onClipEvent (enterFrame) { _root.sightGun(); }
Frame 143
thisPoints = score * 100; totalPoints = totalPoints + thisPoints; numHit = "Hit : " + score; stop();
Instance of Symbol 212 MovieClip in Frame 143
onClipEvent (enterFrame) { _root.sightGun(); }
Frame 151
if (gameLevel >= 5) { objective = 30; } else if (gameLevel == 4) { objective = 25; } else if (gameLevel == 3) { objective = 20; } else if (gameLevel == 2) { objective = 15; } else { objective = 10; } stop();
Frame 152
parasHit = 0; score = 0; mouse.hide();
Frame 164
stop();
Instance of Symbol 212 MovieClip in Frame 164
onClipEvent (load) { parasDropped = 0; } onClipEvent (enterFrame) { _root.sightGun(); if (parasDropped >= 30) { _root.play(); } if ((_root.myRandom(1, 30) == 1) && (parasDropped < 30)) { _root.newPara(); parasDropped++; } if ((_root.myRandom(1, 30) == 1) && (parasDropped < 30)) { _root.newBad(); } } onClipEvent (mouseDown) { _root.shot.start(); }
Frame 317
if (parasHit < objective) { gotoAndStop ("skeetLose"); }
Instance of Symbol 212 MovieClip in Frame 317
onClipEvent (load) { parasDropped = 0; } onClipEvent (enterFrame) { _root.sightGun(); if (parasDropped >= 30) { _root.play(); } if ((_root.myRandom(1, 30) == 1) && (parasDropped < 30)) { _root.newPara(); parasDropped++; } } onClipEvent (mouseDown) { _root.shot.start(); }
Frame 318
gameLevelShow++; thisPoints = score; totalPoints = totalPoints + thisPoints; _root.sight._x = 5000; mouse.show(); stop();
Instance of Symbol 212 MovieClip in Frame 318
onClipEvent (enterFrame) { _root.sightGun(); }
Frame 325
bottlesHit = 0; stop();
Instance of Symbol 212 MovieClip in Frame 336
onClipEvent (enterFrame) { _root.sightGun(); } onClipEvent (mouseDown) { _root.shot.start(); }
Instance of Symbol 212 MovieClip in Frame 461
onClipEvent (enterFrame) { _root.sightGun(); }
Instance of Symbol 212 MovieClip in Frame 461
onClipEvent (enterFrame) { _root.sightGun(); }
Frame 475
stop();
Symbol 5 Button
on (press) { if (_root.shots > 0) { gotoAndPlay ("parachuteHit"); } }
Symbol 7 Button
on (press) { nextFrame(); play(); _root.score = _root.score - 100; _root.parasHit--; }
Symbol 14 Button
on (press) { if (_root.shots > 0) { nextFrame(); play(); } }
Symbol 15 Button
on (press) { nextFrame(); play(); _root.score = _root.score - 100; }
Symbol 18 Button
on (press) { if (_root.shots > 0) { nextFrame(); play(); } }
Symbol 20 Button
on (press) { if (_root.shots > 0) { nextFrame(); play(); } }
Symbol 21 MovieClip Frame 1
stop();
Symbol 21 MovieClip Frame 13
stop();
Symbol 21 MovieClip Frame 14
stop();
Symbol 21 MovieClip Frame 77
stop();
Symbol 25 Button
on (press) { if (_root.shots > 0) { gotoAndPlay ("hit50"); _root.score = _root.score + 50; _root.parasHit++; } }
Symbol 26 Button
on (press) { if (_root.shots > 0) { gotoAndPlay ("hit30"); _root.score = _root.score + 30; _root.parasHit++; } }
Symbol 27 Button
on (press) { if (_root.shots > 0) { gotoAndPlay ("hit20"); _root.score = _root.score + 20; _root.parasHit++; } }
Symbol 38 MovieClip Frame 1
stop();
Symbol 38 MovieClip Frame 13
stop();
Symbol 38 MovieClip Frame 25
stop();
Symbol 38 MovieClip Frame 37
stop();
Symbol 38 MovieClip Frame 100
stop();
Symbol 41 MovieClip [parasBad] Frame 190
stop();
Symbol 42 MovieClip [paras] Frame 190
stop();
Symbol 45 Button
on (press) { if (_root.shots >= 0) { nextFrame(); play(); _root.iGotClicked(this); } }
Symbol 52 MovieClip [clay] Frame 1
stop();
Symbol 52 MovieClip [clay] Frame 9
this.removeMovieClip();
Symbol 70 MovieClip Frame 140
stop();
Symbol 109 MovieClip Frame 1
this.t = getTimer(); this.tm = 0; this.onEnterFrame = function () { var _local1 = this; if (_root._framesloaded < 2) { _local1.t = getTimer(); } else { _local1.tm = _local1.tm + (getTimer() - _local1.t); var _local2 = Math.round(_local1.tm / 33); if (_local2 < 1) { _local1.stop(); } else { _local1.t = getTimer(); if (_local2 >= 145) { _local1.onEnterFrame = null; _local1.gotoAndStop(145); _root.play(); } else { _local1.gotoAndStop(_local2); } } } }; stop();
Symbol 123 MovieClip Frame 1
function formatBytes(bytes) { var _local3 = bytes; var _local2 = 1024; var mb = (_local2 * 1024); var _local1 = 0; if (_local3 >= mb) { _local1 = String(Math.floor((_local3 / mb) * 100) / 100); if (_local1.substring(_local1.indexOf("."), _local1.length).length == 2) { _local1 = _local1 + "0"; } _local1 = _local1 + " MB"; } else if (_local3 >= _local2) { _local1 = String(Math.floor((_local3 / _local2) * 100) / 100); if (_local1.substring(_local1.indexOf("."), _local1.length).length == 2) { _local1 = _local1 + "0"; } _local1 = _local1 + " KB"; } else { _local1 = _local3 + " B"; } return(_local1); } this._visible = false; var isLoaded = false; var totalBytes = _parent.getBytesTotal(); var loadedBytes = _parent.getBytesLoaded(); var totalFrames = _parent._totalFrames(); var loadedFrames = _parent._framesLoaded(); var fractionLoaded = 0; var percentLoaded = "0%"; var bytesPerSecond = 0; var sizePerSecond = formatBytes(bytesPerSecond); var elapsedTime = "0:00"; var estimatedTime = "0:00"; var estimatedTimeLeft = "0:00"; var gStartTime = getTimer(); var gCurrentTime = getTimer(); var gSampleTimer = (gCurrentTime - gStartTime); var gSizeSample = loadedBytes; var framesPerSecond = 0; var frameCounter = 0; var totalSize = formatBytes(totalBytes); var loadedSize = formatBytes(loadedBytes); var loadedBytes = 0; var gLoading = true; var gPlaying = false; _parent.stop();
Symbol 123 MovieClip Frame 2
if (gLoading) { loadedBytes = _parent.getBytesLoaded(); loadedSize = formatBytes(loadedBytes); loadedFrames = _parent._framesLoaded; gCurrentTime = getTimer(); var elapsedMinutes = Math.floor(((gCurrentTime - gStartTime) / 1000) / 60); var elapsedSeconds = Math.floor(((gCurrentTime - gStartTime) / 1000) % 60); if (String(elapsedSeconds).length == 1) { elapsedSeconds = "0" + elapsedSeconds; } elapsedTime = (elapsedMinutes + ":") + elapsedSeconds; frameCounter++; if ((gCurrentTime - gStartTime) >= (gSampleTimer + 1000)) { framesPerSecond = frameCounter; frameCounter = 0; bytesPerSecond = loadedBytes - gSizeSample; sizePerSecond = formatBytes(bytesPerSecond); if (STREAM && (PLAY_TYPE == "auto")) { if ((loadedFrames / framesPerSecond) > ((totalBytes - loadedBytes) / bytesPerSecond)) { _parent.play(); } } var estimatedMinutes = Math.floor((totalBytes / bytesPerSecond) / 60); var estimatedSeconds = Math.floor((totalBytes / bytesPerSecond) % 60); if (String(estimatedSeconds).length == 1) { estimatedSeconds = "0" + estimatedSeconds; } estimatedTime = (estimatedMinutes + ":") + estimatedSeconds; var estimatedMinutesLeft = Math.floor(((totalBytes - loadedBytes) / bytesPerSecond) / 60); var estimatedSecondsLeft = Math.floor(((totalBytes - loadedBytes) / bytesPerSecond) % 60); if (String(estimatedSecondsLeft).length == 1) { estimatedSecondsLeft = "0" + estimatedSecondsLeft; } estimatedTimeLeft = (estimatedMinutesLeft + ":") + estimatedSecondsLeft; gSizeSample = loadedBytes; gSampleTimer = gCurrentTime - gStartTime; } fractionLoaded = loadedBytes / totalBytes; percentLoaded = Math.floor(fractionLoaded * 100) + "%"; if (STREAM) { switch (PLAY_TYPE) { case "bytes" : if (loadedBytes >= PLAY_BYTES) { if (!gPlaying) { _parent.play(); gPlaying = true; } } break; case "frames" : if (loadedFrames >= PLAY_FRAMES) { if (!gPlaying) { _parent.play(); gPlaying = true; } } break; case "percent" : if ((fractionLoaded * 100) < PLAY_PERCENT) { break; } if (gPlaying) { break; } _parent.play(); gPlaying = true; } } if (loadedBytes == totalBytes) { isLoaded = true; } if (isLoaded) { if (!STREAM) { _parent.play(); } gLoading = false; stop(); } }
Symbol 123 MovieClip Frame 3
gotoAndPlay (2);
Symbol 128 Button
on (release) { gotoAndPlay (13); }
Symbol 132 Button
on (release) { nextFrame(); }
Symbol 136 Button
on (release) { getURL ("http://www.kwikgames.com", _blank); }
Symbol 140 Button
on (release) { gotoAndStop ("tell"); }
Symbol 144 MovieClip Frame 1
this.t = getTimer(); this.tm = 0; this.onEnterFrame = function () { var _local1 = this; _local1.tm = _local1.tm + (getTimer() - _local1.t); var _local2 = Math.round(_local1.tm / 33); _local1.t = getTimer(); if (_local2 >= 10) { _local1.onEnterFrame = null; _local1.gotoAndStop(10); } else { _local1.gotoAndStop(_local2); } }; stop();
Symbol 144 MovieClip Frame 10
stop();
Symbol 144 MovieClip Frame 11
this.t = getTimer(); this.tm = 0; this.onEnterFrame = function () { var _local1 = this; _local1.tm = _local1.tm + (getTimer() - _local1.t); var _local2 = Math.round(_local1.tm / 33) + 10; _local1.t = getTimer(); if (_local2 >= 15) { _local1.onEnterFrame = null; _local1.gotoAndStop(15); } else { _local1.gotoAndStop(_local2); } }; stop();
Symbol 144 MovieClip Frame 15
stop();
Symbol 146 Button
on (rollOver) { tellTarget ("logo") { gotoAndPlay (11); }; } on (rollOut) { tellTarget ("logo") { gotoAndPlay (10); }; } on (release) { getURL ("http://www.netstupidity.com"); }
Symbol 158 MovieClip Frame 1
this.t = getTimer(); this.tm = 0; this.onEnterFrame = function () { var _local1 = this; _local1.tm = _local1.tm + (getTimer() - _local1.t); var _local2 = Math.round(_local1.tm / 33); _local1.t = getTimer(); if (_local2 >= 5) { _local1.onEnterFrame = null; _local1.gotoAndStop(5); } else { _local1.gotoAndStop(_local2); } }; stop();
Symbol 158 MovieClip Frame 5
stop();
Symbol 158 MovieClip Frame 6
this.t = getTimer(); this.tm = 0; this.onEnterFrame = function () { var _local1 = this; _local1.tm = _local1.tm + (getTimer() - _local1.t); var _local2 = Math.round(_local1.tm / 33) + 5; _local1.t = getTimer(); if (_local2 >= 10) { _local1.onEnterFrame = null; _local1.gotoAndStop(10); } else { _local1.gotoAndStop(_local2); } }; stop();
Symbol 158 MovieClip Frame 10
stop();
Symbol 158 MovieClip Frame 11
this.t = getTimer(); this.tm = 0; this.onEnterFrame = function () { var _local1 = this; _local1.tm = _local1.tm + (getTimer() - _local1.t); var _local2 = Math.round(_local1.tm / 33) + 10; _local1.t = getTimer(); if (_local2 >= 15) { _local1.onEnterFrame = null; _local1.gotoAndStop(15); } else { _local1.gotoAndStop(_local2); } }; stop();
Symbol 158 MovieClip Frame 15
stop();
Symbol 158 MovieClip Frame 16
this.t = getTimer(); this.tm = 0; this.onEnterFrame = function () { var _local1 = this; _local1.tm = _local1.tm + (getTimer() - _local1.t); var _local2 = Math.round(_local1.tm / 33) + 15; _local1.t = getTimer(); if (_local2 >= 20) { _local1.onEnterFrame = null; _local1.gotoAndStop(20); } else { _local1.gotoAndStop(_local2); } }; stop();
Symbol 158 MovieClip Frame 20
stop();
Symbol 161 Button
on (rollOver) { tellTarget ("icons") { gotoAndPlay (6); }; } on (rollOut) { tellTarget ("icons") { gotoAndPlay (5); }; } on (release) { getURL ("http://netstupidity.com/game/Kwik_Shot/38/download/", "_blank"); }
Symbol 162 Button
on (rollOver) { tellTarget ("icons") { gotoAndPlay (11); }; } on (rollOut) { tellTarget ("icons") { gotoAndPlay (5); }; } on (release) { getURL ("http://netstupidity.com/game/Kwik_Shot/38/discuss/", "_blank"); }
Symbol 163 Button
on (rollOver) { tellTarget ("icons") { gotoAndPlay (16); }; } on (rollOut) { tellTarget ("icons") { gotoAndPlay (5); }; } on (release) { getURL ("http://netstupidity.com/game/Kwik_Shot/38/rate/", "_blank"); }
Symbol 191 Button
on (release) { gotoAndStop ("intro"); }
Symbol 208 Button
on (release) { Mouse.hide(); nextFrame(); play(); }
Symbol 217 MovieClip Frame 1
gotoAndStop (4);
Symbol 217 MovieClip Frame 2
stop();
Symbol 217 MovieClip Frame 3
stop();
Symbol 217 MovieClip Frame 4
stop();
Symbol 230 Button
on (release) { gotoAndPlay ("paraStart"); }
Symbol 270 Button
on (release) { gotoAndPlay ("intro1"); }
Symbol 283 Button
on (release) { nextFrame(); play(); }
Symbol 305 Button
on (release) { gotoAndStop ("bottlestart"); }
Symbol 312 Button
on (press) { _root.bottlesHit++; _root.score = _root.score + 20; nextFrame(); play(); }
Symbol 317 MovieClip Frame 1
stop();
Symbol 317 MovieClip Frame 7
stop();
Symbol 319 Button
on (press) { _root.bottlesHit++; _root.score = _root.score + 20; nextFrame(); play(); }
Symbol 324 MovieClip Frame 1
stop();
Symbol 324 MovieClip Frame 7
stop();
Symbol 326 Button
on (press) { _root.bottlesHit++; _root.score = _root.score + 20; nextFrame(); play(); }
Symbol 330 MovieClip Frame 1
stop();
Symbol 330 MovieClip Frame 6
stop();
Symbol 332 Button
on (press) { _root.bottlesHit++; _root.score = _root.score + 20; nextFrame(); play(); }
Symbol 337 MovieClip Frame 1
stop();
Symbol 337 MovieClip Frame 7
stop();
Symbol 339 Button
on (press) { _root.bottlesHit++; _root.score = _root.score + 20; nextFrame(); play(); }
Symbol 344 MovieClip Frame 1
stop();
Symbol 344 MovieClip Frame 7
stop();
Symbol 347 Button
on (release) { nextFrame(); play(); }
Symbol 368 Button
on (release) { _root.level++; gotoAndPlay ("skeet"); }

Library Items

Symbol 1 Sound [shot]
Symbol 2 Sound [click]
Symbol 3 GraphicUsed by:21
Symbol 4 GraphicUsed by:5
Symbol 5 ButtonUses:4Used by:21 38
Symbol 6 GraphicUsed by:7 15  Timeline
Symbol 7 ButtonUses:6Used by:21
Symbol 8 GraphicUsed by:21
Symbol 9 GraphicUsed by:21
Symbol 10 GraphicUsed by:21
Symbol 11 GraphicUsed by:21
Symbol 12 GraphicUsed by:21 38
Symbol 13 GraphicUsed by:14 26
Symbol 14 ButtonUses:13Used by:21 38
Symbol 15 ButtonUses:6Used by:21
Symbol 16 GraphicUsed by:21
Symbol 17 GraphicUsed by:18 25
Symbol 18 ButtonUses:17Used by:21 38
Symbol 19 GraphicUsed by:20 27
Symbol 20 ButtonUses:19Used by:21 38
Symbol 21 MovieClipUses:3 5 7 8 9 10 11 12 14 15 16 18 20Used by:22
Symbol 22 MovieClipUses:21Used by:23
Symbol 23 MovieClipUses:22Used by:41
Symbol 24 GraphicUsed by:38
Symbol 25 ButtonUses:17Used by:38
Symbol 26 ButtonUses:13Used by:38
Symbol 27 ButtonUses:19Used by:38
Symbol 28 GraphicUsed by:38
Symbol 29 FontUsed by:30 33 35 36 113 167 168 175 176 178 186 188 190 192 198 199 200 201 202 204 206 209 211 213 214 215 219 220 221 222 224 225 226 227 228 229 231 232 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 266 267 269 272 273 274 275 278 279 280 281 282 284 285 286 287 288 289 290 291 292 293 294 295 297 298 300 301 302 303 304 306 307 308 309 348 349 350 351 352 353 354 355 356 359 360 361 362 363 365 366 367 369
Symbol 30 TextUses:29Used by:38
Symbol 31 GraphicUsed by:38
Symbol 32 GraphicUsed by:38
Symbol 33 TextUses:29Used by:38
Symbol 34 GraphicUsed by:38
Symbol 35 TextUses:29Used by:38
Symbol 36 TextUses:29Used by:38
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:24 25 26 27 5 28 30 31 32 33 34 35 36 12 14 37 18 20Used by:39
Symbol 39 MovieClipUses:38Used by:40
Symbol 40 MovieClipUses:39Used by:41 42
Symbol 41 MovieClip [parasBad]Uses:23 40
Symbol 42 MovieClip [paras]Uses:40
Symbol 43 GraphicUsed by:45
Symbol 44 GraphicUsed by:45
Symbol 45 ButtonUses:43 44Used by:52
Symbol 46 GraphicUsed by:52
Symbol 47 GraphicUsed by:52
Symbol 48 GraphicUsed by:52
Symbol 49 GraphicUsed by:52
Symbol 50 GraphicUsed by:52
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClip [clay]Uses:45 46 47 48 49 50 51
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClip [sight]Uses:53Used by:Timeline
Symbol 55 GraphicUsed by:Timeline
Symbol 56 GraphicUsed by:70
Symbol 57 GraphicUsed by:70
Symbol 58 GraphicUsed by:70
Symbol 59 GraphicUsed by:70
Symbol 60 GraphicUsed by:70
Symbol 61 GraphicUsed by:70
Symbol 62 GraphicUsed by:70
Symbol 63 GraphicUsed by:70
Symbol 64 GraphicUsed by:70
Symbol 65 GraphicUsed by:70
Symbol 66 GraphicUsed by:70
Symbol 67 GraphicUsed by:70
Symbol 68 GraphicUsed by:70
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:56 57 58 59 60 61 62 63 64 65 66 67 68 69Used by:109
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:109
Symbol 73 GraphicUsed by:109
Symbol 74 GraphicUsed by:109
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:109
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:109
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:109
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:109
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:109
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:109
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:109
Symbol 89 BitmapUsed by:90
Symbol 90 GraphicUses:89Used by:109
Symbol 91 BitmapUsed by:92
Symbol 92 GraphicUses:91Used by:109
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:109
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:109
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:109
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:109
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:109
Symbol 103 BitmapUsed by:104
Symbol 104 GraphicUses:103Used by:109
Symbol 105 BitmapUsed by:106
Symbol 106 GraphicUses:105Used by:109
Symbol 107 BitmapUsed by:108
Symbol 108 GraphicUses:107Used by:109
Symbol 109 MovieClipUses:70 72 73 74 76 78 80 82 84 86 88 90 92 94 96 98 100 102 104 106 108Used by:110
Symbol 110 MovieClipUses:109Used by:Timeline
Symbol 111 SoundUsed by:Timeline
Symbol 112 GraphicUsed by:Timeline
Symbol 113 TextUses:29Used by:Timeline
Symbol 114 FontUsed by:115 116 122 171 172 173 180 181 182 183
Symbol 115 EditableTextUses:114Used by:Timeline
Symbol 116 EditableTextUses:114Used by:Timeline
Symbol 117 GraphicUsed by:Timeline
Symbol 118 GraphicUsed by:358  Timeline
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:Timeline
Symbol 121 GraphicUsed by:123
Symbol 122 TextUses:114Used by:123
Symbol 123 MovieClipUses:121 122Used by:Timeline
Symbol 124 GraphicUsed by:Timeline
Symbol 125 GraphicUsed by:128
Symbol 126 GraphicUsed by:128
Symbol 127 GraphicUsed by:128
Symbol 128 ButtonUses:125 126 127Used by:Timeline
Symbol 129 GraphicUsed by:132
Symbol 130 GraphicUsed by:132
Symbol 131 GraphicUsed by:132
Symbol 132 ButtonUses:129 130 131Used by:Timeline
Symbol 133 GraphicUsed by:136
Symbol 134 GraphicUsed by:136
Symbol 135 GraphicUsed by:136
Symbol 136 ButtonUses:133 134 135Used by:Timeline
Symbol 137 GraphicUsed by:140
Symbol 138 GraphicUsed by:140
Symbol 139 GraphicUsed by:140
Symbol 140 ButtonUses:137 138 139Used by:Timeline
Symbol 141 BitmapUsed by:142
Symbol 142 GraphicUses:141Used by:144
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:142 143Used by:147
Symbol 145 GraphicUsed by:146 161 162 163
Symbol 146 ButtonUses:145Used by:147
Symbol 147 MovieClipUses:144 146Used by:Timeline
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:164
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:158
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:158
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:158
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:156Used by:158
Symbol 158 MovieClipUses:151 153 155 157Used by:164
Symbol 159 GraphicUsed by:160
Symbol 160 MovieClipUses:159Used by:164
Symbol 161 ButtonUses:145Used by:164
Symbol 162 ButtonUses:145Used by:164
Symbol 163 ButtonUses:145Used by:164
Symbol 164 MovieClipUses:149 158 160 161 162 163Used by:Timeline
Symbol 165 GraphicUsed by:Timeline
Symbol 166 GraphicUsed by:Timeline
Symbol 167 EditableTextUses:29Used by:Timeline
Symbol 168 EditableTextUses:29Used by:Timeline
Symbol 169 GraphicUsed by:Timeline
Symbol 170 GraphicUsed by:Timeline
Symbol 171 EditableTextUses:114Used by:Timeline
Symbol 172 TextUses:114Used by:Timeline
Symbol 173 TextUses:114Used by:Timeline
Symbol 174 GraphicUsed by:179
Symbol 175 EditableTextUses:29Used by:179
Symbol 176 EditableTextUses:29Used by:179
Symbol 177 GraphicUsed by:179
Symbol 178 EditableTextUses:29Used by:179
Symbol 179 ButtonUses:174 175 176 177 178Used by:Timeline
Symbol 180 EditableTextUses:114Used by:Timeline
Symbol 181 EditableTextUses:114Used by:Timeline
Symbol 182 TextUses:114Used by:Timeline
Symbol 183 TextUses:114Used by:Timeline
Symbol 184 GraphicUsed by:Timeline
Symbol 185 GraphicUsed by:191
Symbol 186 EditableTextUses:29Used by:191
Symbol 187 GraphicUsed by:191
Symbol 188 EditableTextUses:29Used by:191
Symbol 189 GraphicUsed by:191
Symbol 190 EditableTextUses:29Used by:191
Symbol 191 ButtonUses:185 186 187 188 189 190Used by:Timeline
Symbol 192 EditableTextUses:29Used by:Timeline
Symbol 193 GraphicUsed by:Timeline
Symbol 194 BitmapUsed by:195
Symbol 195 GraphicUses:194Used by:Timeline
Symbol 196 GraphicUsed by:Timeline
Symbol 197 GraphicUsed by:Timeline
Symbol 198 EditableTextUses:29Used by:Timeline
Symbol 199 EditableTextUses:29Used by:Timeline
Symbol 200 EditableTextUses:29Used by:Timeline
Symbol 201 EditableTextUses:29Used by:Timeline
Symbol 202 EditableTextUses:29Used by:Timeline
Symbol 203 GraphicUsed by:208 230 283 305 347 368
Symbol 204 EditableTextUses:29Used by:208 230 283 305 347 368
Symbol 205 GraphicUsed by:208 230 283 305 347 368
Symbol 206 EditableTextUses:29Used by:208 230 283 305 347 368
Symbol 207 GraphicUsed by:208 230 283 305 347 368
Symbol 208 ButtonUses:203 204 205 206 207Used by:Timeline
Symbol 209 EditableTextUses:29Used by:Timeline
Symbol 210 GraphicUsed by:212
Symbol 211 TextUses:29Used by:212
Symbol 212 MovieClipUses:210 211Used by:Timeline
Symbol 213 EditableTextUses:29Used by:Timeline
Symbol 214 EditableTextUses:29Used by:Timeline
Symbol 215 EditableTextUses:29Used by:Timeline
Symbol 216 GraphicUsed by:217
Symbol 217 MovieClipUses:216Used by:Timeline
Symbol 218 TextUsed by:Timeline
Symbol 219 TextUses:29Used by:Timeline
Symbol 220 EditableTextUses:29Used by:Timeline
Symbol 221 TextUses:29Used by:Timeline
Symbol 222 EditableTextUses:29Used by:Timeline
Symbol 223 GraphicUsed by:Timeline
Symbol 224 EditableTextUses:29Used by:Timeline
Symbol 225 EditableTextUses:29Used by:Timeline
Symbol 226 TextUses:29Used by:Timeline
Symbol 227 TextUses:29Used by:Timeline
Symbol 228 EditableTextUses:29Used by:Timeline
Symbol 229 EditableTextUses:29Used by:Timeline
Symbol 230 ButtonUses:203 204 205 206 207Used by:Timeline
Symbol 231 EditableTextUses:29Used by:Timeline
Symbol 232 EditableTextUses:29Used by:Timeline
Symbol 233 GraphicUsed by:Timeline
Symbol 234 GraphicUsed by:Timeline
Symbol 235 EditableTextUses:29Used by:Timeline
Symbol 236 EditableTextUses:29Used by:Timeline
Symbol 237 EditableTextUses:29Used by:Timeline
Symbol 238 EditableTextUses:29Used by:Timeline
Symbol 239 EditableTextUses:29Used by:Timeline
Symbol 240 EditableTextUses:29Used by:Timeline
Symbol 241 EditableTextUses:29Used by:Timeline
Symbol 242 EditableTextUses:29Used by:Timeline
Symbol 243 EditableTextUses:29Used by:Timeline
Symbol 244 EditableTextUses:29Used by:Timeline
Symbol 245 EditableTextUses:29Used by:Timeline
Symbol 246 EditableTextUses:29Used by:Timeline
Symbol 247 EditableTextUses:29Used by:Timeline
Symbol 248 EditableTextUses:29Used by:Timeline
Symbol 249 EditableTextUses:29Used by:Timeline
Symbol 250 EditableTextUses:29Used by:Timeline
Symbol 251 EditableTextUses:29Used by:Timeline
Symbol 252 EditableTextUses:29Used by:Timeline
Symbol 253 EditableTextUses:29Used by:Timeline
Symbol 254 EditableTextUses:29Used by:Timeline
Symbol 255 EditableTextUses:29Used by:Timeline
Symbol 256 EditableTextUses:29Used by:Timeline
Symbol 257 EditableTextUses:29Used by:Timeline
Symbol 258 EditableTextUses:29Used by:Timeline
Symbol 259 EditableTextUses:29Used by:Timeline
Symbol 260 EditableTextUses:29Used by:Timeline
Symbol 261 EditableTextUses:29Used by:Timeline
Symbol 262 EditableTextUses:29Used by:Timeline
Symbol 263 EditableTextUses:29Used by:Timeline
Symbol 264 EditableTextUses:29Used by:Timeline
Symbol 265 GraphicUsed by:270
Symbol 266 EditableTextUses:29Used by:270
Symbol 267 EditableTextUses:29Used by:270
Symbol 268 GraphicUsed by:270
Symbol 269 EditableTextUses:29Used by:270
Symbol 270 ButtonUses:265 266 267 268 269Used by:Timeline
Symbol 271 GraphicUsed by:Timeline
Symbol 272 EditableTextUses:29Used by:Timeline
Symbol 273 TextUses:29Used by:Timeline
Symbol 274 EditableTextUses:29Used by:Timeline
Symbol 275 EditableTextUses:29Used by:Timeline
Symbol 276 GraphicUsed by:Timeline
Symbol 277 GraphicUsed by:Timeline
Symbol 278 EditableTextUses:29Used by:Timeline
Symbol 279 EditableTextUses:29Used by:Timeline
Symbol 280 EditableTextUses:29Used by:Timeline
Symbol 281 EditableTextUses:29Used by:Timeline
Symbol 282 EditableTextUses:29Used by:Timeline
Symbol 283 ButtonUses:203 204 205 206 207Used by:Timeline
Symbol 284 EditableTextUses:29Used by:Timeline
Symbol 285 EditableTextUses:29Used by:Timeline
Symbol 286 EditableTextUses:29Used by:Timeline
Symbol 287 EditableTextUses:29Used by:Timeline
Symbol 288 EditableTextUses:29Used by:Timeline
Symbol 289 EditableTextUses:29Used by:Timeline
Symbol 290 EditableTextUses:29Used by:Timeline
Symbol 291 EditableTextUses:29Used by:Timeline
Symbol 292 EditableTextUses:29Used by:Timeline
Symbol 293 EditableTextUses:29Used by:Timeline
Symbol 294 EditableTextUses:29Used by:Timeline
Symbol 295 EditableTextUses:29Used by:Timeline
Symbol 296 GraphicUsed by:Timeline
Symbol 297 EditableTextUses:29Used by:Timeline
Symbol 298 EditableTextUses:29Used by:Timeline
Symbol 299 GraphicUsed by:Timeline
Symbol 300 EditableTextUses:29Used by:Timeline
Symbol 301 EditableTextUses:29Used by:Timeline
Symbol 302 EditableTextUses:29Used by:Timeline
Symbol 303 EditableTextUses:29Used by:Timeline
Symbol 304 EditableTextUses:29Used by:Timeline
Symbol 305 ButtonUses:203 204 205 206 207Used by:Timeline
Symbol 306 TextUses:29Used by:Timeline
Symbol 307 EditableTextUses:29Used by:Timeline
Symbol 308 EditableTextUses:29Used by:Timeline
Symbol 309 EditableTextUses:29Used by:Timeline
Symbol 310 GraphicUsed by:Timeline
Symbol 311 GraphicUsed by:312
Symbol 312 ButtonUses:311Used by:317
Symbol 313 GraphicUsed by:317
Symbol 314 GraphicUsed by:317
Symbol 315 GraphicUsed by:317
Symbol 316 GraphicUsed by:317
Symbol 317 MovieClipUses:312 313 314 315 316Used by:Timeline
Symbol 318 GraphicUsed by:319
Symbol 319 ButtonUses:318Used by:324
Symbol 320 GraphicUsed by:324
Symbol 321 GraphicUsed by:324
Symbol 322 GraphicUsed by:324
Symbol 323 GraphicUsed by:324
Symbol 324 MovieClipUses:319 320 321 322 323Used by:Timeline
Symbol 325 GraphicUsed by:326
Symbol 326 ButtonUses:325Used by:330
Symbol 327 GraphicUsed by:330
Symbol 328 GraphicUsed by:330
Symbol 329 GraphicUsed by:330
Symbol 330 MovieClipUses:326 327 328 329Used by:Timeline
Symbol 331 GraphicUsed by:332
Symbol 332 ButtonUses:331Used by:337
Symbol 333 GraphicUsed by:337
Symbol 334 GraphicUsed by:337
Symbol 335 GraphicUsed by:337
Symbol 336 GraphicUsed by:337
Symbol 337 MovieClipUses:332 333 334 335 336Used by:Timeline
Symbol 338 GraphicUsed by:339
Symbol 339 ButtonUses:338Used by:344
Symbol 340 GraphicUsed by:344
Symbol 341 GraphicUsed by:344
Symbol 342 GraphicUsed by:344
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClipUses:339 340 341 342 343Used by:Timeline
Symbol 345 BitmapUsed by:346
Symbol 346 GraphicUses:345Used by:Timeline
Symbol 347 ButtonUses:203 204 205 206 207Used by:Timeline
Symbol 348 EditableTextUses:29Used by:Timeline
Symbol 349 EditableTextUses:29Used by:Timeline
Symbol 350 EditableTextUses:29Used by:Timeline
Symbol 351 EditableTextUses:29Used by:Timeline
Symbol 352 EditableTextUses:29Used by:Timeline
Symbol 353 TextUses:29Used by:Timeline
Symbol 354 EditableTextUses:29Used by:Timeline
Symbol 355 EditableTextUses:29Used by:Timeline
Symbol 356 EditableTextUses:29Used by:Timeline
Symbol 357 GraphicUsed by:Timeline
Symbol 358 ButtonUses:118Used by:Timeline
Symbol 359 EditableTextUses:29Used by:Timeline
Symbol 360 EditableTextUses:29Used by:Timeline
Symbol 361 EditableTextUses:29Used by:Timeline
Symbol 362 TextUses:29Used by:Timeline
Symbol 363 EditableTextUses:29Used by:Timeline
Symbol 364 GraphicUsed by:Timeline
Symbol 365 EditableTextUses:29Used by:Timeline
Symbol 366 EditableTextUses:29Used by:Timeline
Symbol 367 EditableTextUses:29Used by:Timeline
Symbol 368 ButtonUses:203 204 205 206 207Used by:Timeline
Symbol 369 EditableTextUses:29Used by:Timeline

Instance Names

"mc_load_info"Frame 4Symbol 123 MovieClip
"name_txt"Frame 11Symbol 171 EditableText
"ok_btn"Frame 11Symbol 179 Button
"name_txt"Frame 11Symbol 180 EditableText
"name_txt"Frame 11Symbol 181 EditableText
"carts"Frame 49Symbol 217 MovieClip
"logo"Symbol 147 MovieClip Frame 1Symbol 144 MovieClip
"icons"Symbol 164 MovieClip Frame 1Symbol 158 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "shot"
ExportAssets (56)Timeline Frame 1Symbol 2 as "click"
ExportAssets (56)Timeline Frame 1Symbol 41 as "parasBad"
ExportAssets (56)Timeline Frame 1Symbol 42 as "paras"
ExportAssets (56)Timeline Frame 1Symbol 52 as "clay"
ExportAssets (56)Timeline Frame 1Symbol 54 as "sight"
ExportAssets (56)Timeline Frame 5Symbol 54 as "sight"
ExportAssets (56)Timeline Frame 6Symbol 54 as "sight"
ExportAssets (56)Timeline Frame 7Symbol 54 as "sight"
ExportAssets (56)Timeline Frame 8Symbol 54 as "sight"
ExportAssets (56)Timeline Frame 9Symbol 54 as "sight"
ExportAssets (56)Timeline Frame 10Symbol 54 as "sight"
ExportAssets (56)Timeline Frame 11Symbol 54 as "sight"
ExportAssets (56)Timeline Frame 12Symbol 54 as "sight"

Labels

"intro"Frame 6
"tell"Frame 11
"skeet"Frame 14
"level1"Frame 49
"skeetWin"Frame 136
"skeetLose"Frame 143
"paraStart"Frame 151
"para"Frame 164
"paraEnd"Frame 318
"bottlestart"Frame 325
"bottles"Frame 336
"bottleEnd"Frame 461
"normal"Symbol 21 MovieClip Frame 1
"hitBad"Symbol 21 MovieClip Frame 2
"parachuteHit"Symbol 21 MovieClip Frame 35
"normal"Symbol 38 MovieClip Frame 1
"hit20"Symbol 38 MovieClip Frame 2
"hit50"Symbol 38 MovieClip Frame 14
"hit30"Symbol 38 MovieClip Frame 26
"parachuteHit"Symbol 38 MovieClip Frame 58

Dynamic Text Variables

mc_load_info.percentLoadedSymbol 116 EditableText"0:00"
MailFromSymbol 171 EditableText""
MailToSymbol 180 EditableText""
BodySymbol 181 EditableText""
objectiveSymbol 200 EditableText""
gameLevelShowSymbol 202 EditableText""
objectiveSymbol 220 EditableText"0"
scoreSymbol 222 EditableText"0"
numHitSymbol 224 EditableText""
thisPointsSymbol 228 EditableText""
totalPointsSymbol 229 EditableText""
totalPointsSymbol 235 EditableText""
numHitSymbol 272 EditableText""
thisPointsSymbol 274 EditableText""
totalPointsSymbol 275 EditableText""
objectiveSymbol 280 EditableText""
gameLevelShowSymbol 282 EditableText""
objectiveSymbol 300 EditableText"0"
parasHitSymbol 301 EditableText"0"
thisPointsSymbol 303 EditableText""
totalPointsSymbol 304 EditableText""
parasHitSymbol 307 EditableText""
gameLevelShowSymbol 350 EditableText""
bottlesHitSymbol 354 EditableText"0"
bottlesHitSymbol 355 EditableText"0"
thisPointsSymbol 360 EditableText""
totalPointsSymbol 361 EditableText""
parasHitSymbol 363 EditableText""
thisPointsSymbol 366 EditableText""
totalPointsSymbol 367 EditableText""
bottlesHitSymbol 369 EditableText""




http://swfchan.com/5/22485/info.shtml
Created: 26/5 -2019 21:52:41 Last modified: 26/5 -2019 21:52:41 Server time: 15/05 -2024 06:34:54