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

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

Super Mario Resident Evil.swf

This is the info page for
Flash #64875

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


Text
<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"> </FONT></P>

<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">PushButton</FONT></P>

S

e

p

S

t

e

e

p

m

t

b

e

e

m

r

b

e

r

2

8

t

2

h

8

t

h

D

a

y

l

i

g

h

t

.

.

.

T

h

e

m

o

n

s

t

e

r

s

h

a

v

e

o

v

e

r

t

a

k

e

n

t

h

e

c

i

t

y

.

S

o

m

e

h

o

q

w

I

'

m

s

t

i

l

l

a

v

i

r

g

i

n

l

i

v

e

e

Equip

Pacifier

ActionScript [AS1/AS2]

Frame 4495
stop();
Frame 4496
stopAllSounds(); stopAllSounds();
Frame 4497
stopAllSounds();
Frame 4651
gotoAndPlay (4969);
Frame 4652
stopAllSounds();
Frame 4653
stopAllSounds();
Frame 4967
stopAllSounds();
Frame 4968
gotoAndPlay (4969);
Frame 4969
stopAllSounds();
Symbol 11 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 14 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 17 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 19 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 22 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "foregroundDisabled");
Symbol 25 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "check");
Symbol 26 MovieClip [fcb_states] Frame 1
stop();
Symbol 26 MovieClip [fcb_states] Frame 2
stop();
Symbol 26 MovieClip [fcb_states] Frame 3
stop();
Symbol 26 MovieClip [fcb_states] Frame 4
stop();
Symbol 26 MovieClip [fcb_states] Frame 5
stop();
Symbol 26 MovieClip [fcb_states] Frame 6
stop();
Symbol 29 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 29 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 32 MovieClip [FCheckBoxSymbol] Frame 1
#initclip 7 function FCheckBoxClass() { this.init(); } FCheckBoxClass.prototype = new FUIComponentClass(); Object.registerClass("FCheckBoxSymbol", FCheckBoxClass); FCheckBoxClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fcb_hitArea", "fcb_hitArea_mc", 1); this.attachMovie("fcb_states", "fcb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this.setChangeHandler(this.changeHandler); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); if (this.initialValue == undefined) { this.setCheckState(false); } else { this.setCheckState(this.initialValue); } if (this.label != undefined) { this.setLabel(this.label); } this.ROLE_SYSTEM_CHECKBUTTON = 44; this.STATE_SYSTEM_CHECKED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FCheckBoxClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var halfLabelH = (this.fLabel_mc._height / 2); var halfFrameH = (this.fcb_states_mc._height / 2); var vertCenter = (halfFrameH - halfLabelH); var checkWidth = this.fcb_states_mc._width; var frame = this.fcb_states_mc; var label = this.fLabel_mc; var w = 0; if (frame._width > this.width) { w = 0; } else { w = this.width - frame._width; } this.fLabel_mc.setSize(w); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.fcb_states_mc._x = 0; this.fLabel_mc._x = checkWidth; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.fcb_states_mc._x = this.width - checkWidth; this.txtFormat("right"); } this.fLabel_mc._y = vertCenter; this.fcb_hitArea_mc._y = vertCenter; }; FCheckBoxClass.prototype.txtFormat = function (pos) { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = pos)) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 0)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); }; FCheckBoxClass.prototype.setHitArea = function (w, h) { var hit = this.fcb_hitArea_mc; this.hitArea = hit; if (this.fcb_states_mc._width > w) { hit._width = this.fcb_states_mc._width; } else { hit._width = w; } hit._visible = false; if (arguments.length > 1) { hit._height = h; } }; FCheckBoxClass.prototype.setSize = function (w) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.fcb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FCheckBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 1); }; FCheckBoxClass.prototype.onPress = function () { this.pressFocus(); _root.focusRect.removeMovieClip(); var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedPress"); } else { states.gotoAndStop("press"); } }; FCheckBoxClass.prototype.onRelease = function () { this.fcb_states_mc.gotoAndStop("up"); this.setValue(!this.checked); }; FCheckBoxClass.prototype.onReleaseOutside = function () { var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedEnabled"); } else { states.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOut = function () { var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedEnabled"); } else { states.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOver = function () { var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedPress"); } else { states.gotoAndStop("press"); } }; FCheckBoxClass.prototype.setValue = function (checkedValue) { if (checkedValue || (checkedValue == undefined)) { this.setCheckState(checkedValue); } else if (checkedValue == false) { this.setCheckState(checkedValue); } this.executeCallBack(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FCheckBoxClass.prototype.setCheckState = function (checkedValue) { var states = this.fcb_states_mc; if (this.enable) { this.flabel_mc.setEnabled(true); if (checkedValue || (checkedValue == undefined)) { states.gotoAndStop("checkedEnabled"); this.enabled = true; this.checked = true; } else { states.gotoAndStop("up"); this.enabled = true; this.checked = false; } } else { this.flabel_mc.setEnabled(false); if (checkedValue || (checkedValue == undefined)) { states.gotoAndStop("checkedDisabled"); this.enabled = false; this.checked = true; } else { states.gotoAndStop("uncheckedDisabled"); this.enabled = false; this.checked = false; this.focusRect.removeMovieClip(); } } }; FCheckBoxClass.prototype.getValue = function () { return(this.checked); }; FCheckBoxClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; Super.setEnabled(true); } else { this.enable = false; Super.setEnabled(false); } this.setCheckState(this.checked); }; FCheckBoxClass.prototype.getEnabled = function () { return(this.enable); }; FCheckBoxClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FCheckBoxClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FCheckBoxClass.prototype.setTextColor = function (color) { this.fLabel_mc.labelField.textColor = color; }; FCheckBoxClass.prototype.myOnKeyDown = function () { if (((Key.getCode() == 32) && (this.pressOnce == undefined)) && (this.enabled == true)) { this.setValue(!this.getValue()); this.pressOnce = true; } }; FCheckBoxClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.pressOnce = undefined; } }; FCheckBoxClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_CHECKBUTTON); }; FCheckBoxClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FCheckBoxClass.prototype.get_accState = function (childId) { if (this.master.getValue()) { return(this.master.STATE_SYSTEM_CHECKED); } return(0); }; FCheckBoxClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getValue()) { return("UnCheck"); } return("Check"); }; FCheckBoxClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 43 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 53 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 62 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 63 MovieClip [UpArrow] Frame 1
stop();
Symbol 63 MovieClip [UpArrow] Frame 2
stop();
Symbol 63 MovieClip [UpArrow] Frame 3
stop();
Symbol 69 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 76 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 81 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(highlight3D_mc, "highlight3D"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight");
Symbol 82 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 90 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 98 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 106 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 107 MovieClip [DownArrow] Frame 1
stop();
Symbol 107 MovieClip [DownArrow] Frame 2
stop();
Symbol 107 MovieClip [DownArrow] Frame 3
stop();
Symbol 109 MovieClip Frame 1
var component = _parent; component.registerSkinElement(track_mc, "scrollTrack");
Symbol 110 MovieClip [FScrollBarSymbol] Frame 1
#initclip 4 FScrollBarClass = function () { if (this._height == 4) { return(undefined); } this.init(); this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0))); this.smallScroll = 1; this.width = (this.horizontal ? (this._width) : (this._height)); this._xscale = (this._yscale = 100); this.setScrollPosition(0); this.tabEnabled = false; if (this._targetInstanceName.length > 0) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); }; FScrollBarClass.prototype = new FUIComponentClass(); FScrollBarClass.prototype.setHorizontal = function (flag) { if (this.horizontal && (!flag)) { this._xscale = 100; this._rotation = 0; } else if (flag && (!this.horizontal)) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; }; FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) { if (!this.enable) { return(undefined); } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos, 0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if ((this.maxPos - this.minPos) <= 0) { this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null)); this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null)); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null); this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null); this.scrollTrack_mc.useHandCursor = false; } else { var tmp = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller); this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling); this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller); this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller); this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb); this.scrollThumb_mc.useHandCursor = false; this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max(this.thumbHeight, 6); this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height; this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; tmp = Math.min(tmp, this.maxPos); this.setScrollPosition(Math.max(tmp, this.minPos)); } }; FScrollBarClass.prototype.getScrollPosition = function () { return(this.scrollPosition); }; FScrollBarClass.prototype.setScrollPosition = function (pos) { this.scrollPosition = pos; if (this.scrollThumb_mc != undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop; this.executeCallBack(); }; FScrollBarClass.prototype.setLargeScroll = function (lScroll) { this.largeScroll = lScroll; }; FScrollBarClass.prototype.setSmallScroll = function (sScroll) { this.smallScroll = sScroll; }; FScrollBarClass.prototype.setEnabled = function (enabledFlag) { var wasEnabled = this.enable; if (enabledFlag && (!wasEnabled)) { this.enable = enabledFlag; if (this.textField != undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if ((!enabledFlag) && (wasEnabled)) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter == undefined) { this.setScrollProperties(this.pageSize, 0, 0); } else { this.clickFilter = true; } this.enable = enabledFlag; } }; FScrollBarClass.prototype.setSize = function (hgt) { if (this._height == 1) { return(undefined); } this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height; if (this.upArrow_mc == undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); this.attachMovie("DownArrow", "downArrow_mc", 2); this.downArrow_mc.controller = (this.upArrow_mc.controller = this); this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false); this.upArrow_mc._x = (this.upArrow_mc._y = 0); this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField != undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } }; FScrollBarClass.prototype.scrollIt = function (inc, mode) { var delt = this.smallScroll; if (inc != "one") { delt = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll)); } var newPos = (this.getScrollPosition() + (mode * delt)); if (newPos > this.maxPos) { newPos = this.maxPos; } else if (newPos < this.minPos) { newPos = this.minPos; } this.setScrollPosition(newPos); }; FScrollBarClass.prototype.startDragThumb = function () { this.lastY = this._ymouse; this.onMouseMove = this.controller.dragThumb; }; FScrollBarClass.prototype.dragThumb = function () { this.scrollMove = this._ymouse - this.lastY; this.scrollMove = this.scrollMove + this._y; if (this.scrollMove < this.controller.scrollTop) { this.scrollMove = this.controller.scrollTop; } else if (this.scrollMove > this.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var c = this.controller; c.scrollPosition = Math.round(((c.maxPos - c.minPos) * (this._y - c.scrollTop)) / c.trackHeight) + c.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); }; FScrollBarClass.prototype.stopDragThumb = function () { this.controller.isScrolling = false; this.onMouseMove = null; }; FScrollBarClass.prototype.startTrackScroller = function () { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); }; FScrollBarClass.prototype.scrollInterval = function (inc, mode) { clearInterval(this.scrolling); if (inc == "page") { this.trackScroller(); } else { this.scrollIt(inc, mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); }; FScrollBarClass.prototype.trackScroller = function () { if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) { this.scrollIt("page", 1); } else if (this.scrollThumb_mc._y > this._ymouse) { this.scrollIt("page", -1); } }; FScrollBarClass.prototype.stopScrolling = function () { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); }; FScrollBarClass.prototype.startUpScroller = function () { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", -1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1); }; FScrollBarClass.prototype.startDownScroller = function () { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", 1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); }; FScrollBarClass.prototype.setScrollTarget = function (tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[(this.horizontal ? "hScroller" : "vScroller")]; if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) { this.textField.unwatch("text"); this.textField.unwatch("htmltext"); } } this.textField = undefined; if (!(tF instanceof TextField)) { return(undefined); } this.textField = tF; this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this; this.onTextChanged(); this.onChanged = function () { this.onTextChanged(); }; this.onScroller = function () { if (!this.isScrolling) { if (!this.horizontal) { this.setScrollPosition(this.textField.scroll); } else { this.setScrollPosition(this.textField.hscroll); } } }; this.textField.addListener(this); this.textField.watch("text", this.callback); this.textField.watch("htmlText", this.callback); }; FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) { clearInterval(this.hScroller.synchScroll); clearInterval(this.vScroller.synchScroll); this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50); this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50); return(newVal); }; FScrollBarClass.prototype.onTextChanged = function () { if ((!this.enable) || (this.textField == undefined)) { return(undefined); } clearInterval(this.synchScroll); if (this.horizontal) { var pos = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(pos, this.textField.maxhscroll)); } else { var pos = this.textField.scroll; var pageSize = (this.textField.bottomScroll - this.textField.scroll); this.setScrollProperties(pageSize, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(pos, this.textField.maxscroll)); } }; FScrollBarClass.prototype.executeCallBack = function () { if (this.textField == undefined) { super.executeCallBack(); } else if (this.horizontal) { this.textField.hscroll = this.getScrollPosition(); } else { this.textField.scroll = this.getScrollPosition(); } }; Object.registerClass("FScrollBarSymbol", FScrollBarClass); #endinitclip
Symbol 120 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 123 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 126 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 128 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 131 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(disabled_mc, "foregroundDisabled");
Symbol 134 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(dot_mc, "radioDot");
Symbol 135 MovieClip [frb_states] Frame 1
stop();
Symbol 135 MovieClip [frb_states] Frame 2
stop();
Symbol 135 MovieClip [frb_states] Frame 3
stop();
Symbol 135 MovieClip [frb_states] Frame 4
stop();
Symbol 135 MovieClip [frb_states] Frame 5
stop();
Symbol 138 MovieClip [FRadioButtonSymbol] Frame 1
#initclip 5 function FRadioButtonClass() { this.init(); } function FRadioButtonGroupClass() { this.radioInstances = new Array(); } FRadioButtonClass.prototype = new FUIComponentClass(); FRadioButtonGroupClass.prototype = new FUIComponentClass(); Object.registerClass("FRadioButtonSymbol", FRadioButtonClass); FRadioButtonClass.prototype.init = function () { if (this.initialState == undefined) { this.selected = false; } else { this.selected = this.initialState; } super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("frb_hitArea", "frb_hitArea_mc", 1); this.attachMovie("frb_states", "frb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this.setSize(this.width, this.height); this.setChangeHandler(this.changeHandler); if (this.label != undefined) { this.setLabel(this.label); } if (this.initialState == undefined) { this.setValue(false); } else { this.setValue(this.initialState); } this.setData(this.data); this.addToRadioGroup(); if ((this._parent[this.groupName].getValue() == undefined) || (this._parent[this.groupName].getValue() == "")) { this._parent[this.groupName].radioInstances[0].tabEnabled = true; } if (Accessibility.isActive()) { this.ROLE_SYSTEM_RADIOBUTTON = 45; this.STATE_SYSTEM_SELECTED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; } }; FRadioButtonClass.prototype.setHitArea = function (w, h) { var hit = this.frb_hitArea_mc; this.hitArea = hit; hit._width = w; hit._visible = false; if (arguments.length > 1) { hit._height = h; } }; FRadioButtonClass.prototype.txtFormat = function (pos) { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = pos)) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 0)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.setEnabled(this.enable); }; FRadioButtonClass.prototype.setSize = function (w, h) { this._xscale = 100; this._yscale = 100; this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.frb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FRadioButtonClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var halfLabelH = (this.fLabel_mc._height / 2); var halfFrameH = (this.frb_states_mc._height / 2); var vertCenter = (halfFrameH - halfLabelH); var radioWidth = this.frb_states_mc._width; var frame = this.frb_states_mc; var label = this.fLabel_mc; var w = (this.width - frame._width); this.fLabel_mc.setSize(w); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.frb_states_mc._x = 0; this.fLabel_mc._x = radioWidth; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.frb_states_mc._x = this.width - radioWidth; this.txtFormat("right"); } this.fLabel_mc._y = vertCenter; this.frb_hitArea_mc._y = vertCenter; this.setLabel(this.getLabel()); }; FRadioButtonClass.prototype.setData = function (dataValue) { this.data = dataValue; }; FRadioButtonClass.prototype.getData = function () { return(this.data); }; FRadioButtonClass.prototype.getState = function () { return(this.selected); }; FRadioButtonClass.prototype.getSize = function () { return(this.width); }; FRadioButtonClass.prototype.getGroupName = function () { return(this.groupName); }; FRadioButtonClass.prototype.setGroupName = function (groupName) { var i = 0; while (i < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[i] == this) { delete this._parent[this.groupName].radioInstances[i]; } i++; } this.groupName = groupName; this.addToRadioGroup(); }; FRadioButtonClass.prototype.addToRadioGroup = function () { if (this._parent[this.groupName] == undefined) { this._parent[this.groupName] = new FRadioButtonGroupClass(); } this._parent[this.groupName].addRadioInstance(this); }; FRadioButtonClass.prototype.setValue = function (selected) { if (selected || (selected == undefined)) { this.setState(true); this.focusRect.removeMovieClip(); this.executeCallBack(); } else if (selected == false) { this.setState(false); } }; FRadioButtonClass.prototype.setTabState = function (selected) { Selection.setFocus(this); this.setState(selected); this.executeCallBack(); }; FRadioButtonClass.prototype.setState = function (selected) { if (selected || (selected == undefined)) { this.tabEnabled = true; for (i in this._parent) { if ((this != this._parent[i]) && (this._parent[i].groupName == this.groupName)) { this._parent[i].setState(false); } } } if (this.enable) { if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE); } this.flabel_mc.setEnabled(true); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedEnabled"); this.enabled = false; this.selected = true; this.tabEnabled = true; } else { this.frb_states_mc.gotoAndStop("unselectedEnabled"); this.enabled = true; this.selected = false; this.tabEnabled = false; } } else { this.flabel_mc.setEnabled(false); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedDisabled"); this.enabled = false; this.selected = true; this.tabEnabled = false; this._parent[this.groupName].radioInstances[0].tabEnabled = true; } else { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.enabled = false; this.selected = false; this.tabEnabled = false; } } }; FRadioButtonClass.prototype.getValue = function () { if (this.selected) { if ((this.data == "") || (this.data == undefined)) { return(this.getLabel()); } return(this.data); } }; FRadioButtonClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; super.setEnabled(true); } else { this.enable = false; super.setEnabled(false); } this.setState(this.selected); }; FRadioButtonClass.prototype.getEnabled = function () { return(this.enable); }; FRadioButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FRadioButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.getLabel()); }; FRadioButtonClass.prototype.onPress = function () { this.pressFocus(); this.frb_states_mc.gotoAndStop("press"); this.pressFocus(); _root.focusRect.removeMovieClip(); }; FRadioButtonClass.prototype.onRelease = function () { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.setValue(!this.selected); }; FRadioButtonClass.prototype.onReleaseOutside = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOut = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOver = function () { this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this._parent[this.groupName]); }; FRadioButtonGroupClass.prototype.addRadioInstance = function (instance) { this.radioInstances.push(instance); this.radioInstances[0].tabEnabled = true; }; FRadioButtonGroupClass.prototype.setEnabled = function (enableFlag) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setEnabled(enableFlag); i++; } }; FRadioButtonGroupClass.prototype.getEnabled = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].getEnabled() != this.radioInstances[0].getEnabled()) { return(undefined); } i++; } return(this.radioInstances[0].getEnabled()); }; FRadioButtonGroupClass.prototype.setChangeHandler = function (changeHandler) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setChangeHandler(changeHandler); i++; } }; FRadioButtonGroupClass.prototype.getValue = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].selected == true) { if ((this.radioInstances[i].data == "") || (this.radioInstances[i].data == undefined)) { return(this.radioInstances[i].getLabel()); } return(this.radioInstances[i].data); } i++; } }; FRadioButtonGroupClass.prototype.getData = function () { var i = 0; if (i < this.radioInstances.length) { if (this.radioInstances[i].selected == true) { return(this.radioInstances[i].data); } return(undefined); } }; FRadioButtonGroupClass.prototype.getInstance = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].selected == true) { return(i); } i++; } }; FRadioButtonGroupClass.prototype.setValue = function (dataValue) { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].data == dataValue) { this.radioInstances[i].setValue(true); return(undefined); } i++; } var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].getLabel() == dataValue) { this.radioInstances[i].setValue(true); } i++; } }; FRadioButtonGroupClass.prototype.setSize = function (w) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setSize(w); i++; } }; FRadioButtonGroupClass.prototype.getSize = function () { var widestRadio = 0; var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].width >= widestRadio) { widestRadio = this.radioInstances[i].width; } i++; } return(widestRadio); }; FRadioButtonGroupClass.prototype.setGroupName = function (groupName) { this.oldGroupName = this.radioInstances[0].groupName; var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].groupName = groupName; this.radioInstances[i].addToRadioGroup(); i++; } delete this._parent[this.oldGroupName]; }; FRadioButtonGroupClass.prototype.setLabelPlacement = function (pos) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setLabelPlacement(pos); i++; } }; FRadioButtonGroupClass.prototype.setStyleProperty = function (propName, value, isGlobal) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setStyleProperty(propName, value, isGlobal); i++; } }; FRadioButtonGroupClass.prototype.addListener = function () { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].addListener(); i++; } }; FRadioButtonGroupClass.prototype.applyChanges = function () { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].applyChanges(); i++; } }; FRadioButtonGroupClass.prototype.removeListener = function (component) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].removeListener(component); i++; } }; FRadioButtonClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 3); }; FRadioButtonClass.prototype.myOnKillFocus = function () { Key.removeListener(this.keyListener); this.focused = false; this.focusRect.removeMovieClip(); this._parent[this.groupName].foobar = 0; }; FRadioButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this._parent[this.groupName].getValue() == undefined)) { if (this._parent[this.groupName].radioInstances[0] == this) { this.setTabState(true); } } if ((Key.getCode() == 40) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); i = this.foobar; while (i < this._parent[this.groupName].radioInstances.length) { var inc = (i + 1); if (this._parent[this.groupName].radioInstances[inc].getEnabled()) { this._parent[this.groupName].radioInstances[inc].setTabState(true); return(undefined); } i++; } } if ((Key.getCode() == 38) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); i = this.foobar; while (i >= 0) { var inc = (i - 1); if (this._parent[this.groupName].radioInstances[inc].getEnabled()) { this._parent[this.groupName].radioInstances[inc].setTabState(true); return(undefined); } i--; } } }; FRadioButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_RADIOBUTTON); }; FRadioButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FRadioButtonClass.prototype.get_accState = function (childId) { if (this.master.getState()) { return(this.master.STATE_SYSTEM_SELECTED); } return(0); }; FRadioButtonClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getState()) { return("UnCheck"); } return("Check"); }; FRadioButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip
Symbol 139 MovieClip [LSuperClass] Frame 1
#initclip 1 _global.LToolBox = function () { this.interaction_id = undefined; this.interaction_type = undefined; this.correct_response = undefined; this.student_response = undefined; this.result = undefined; this.feedback = undefined; this.numOfTries = 1; this.feedback_list = undefined; this.tracking = undefined; this.weighting = undefined; this.objective_id = undefined; this.latency = undefined; this.navigation = undefined; }; _global.LToolBox.prototype = new Object(); LToolBox.prototype.setTextField = function (fieldName, val) { eval (fieldName).text = val; }; LToolBox.prototype.setCompLabel = function (UIComponent, val) { eval (UIComponent).setLabel(val); }; LToolBox.prototype.setCompCallBack = function (UIComponent, val) { if (eval (UIComponent).setClickHandler) { eval (UIComponent).setClickHandler(val); } else if (eval (UIComponent).setChangeHandler) { eval (UIComponent).setChangeHandler(val); } }; LToolBox.prototype.setCompState = function (UIComponent, val) { eval (UIComponent).setEnabled(val); }; LToolBox.prototype.getCompLabel = function (UIComponent) { return(eval (UIComponent).getLabel()); }; LToolBox.prototype.initControlButton = function (callBack) { var initial_state; if (this.feedback == true) { initial_state = "Check Answer"; if (this.navigation == "Auto GoTo Next Frame") { trace("WARNING: Feedback must be false and Tracking turned true \rto use Auto GoTo Next Frame. Navigation reset to Next Button."); this.navigation = "Next Button"; } } else if (this.tracking == true) { initial_state = "Submit"; } else if (this.navigation != "Off") { initial_state = "Next Question"; if (this.navigation == "Auto GoTo Next Frame") { trace("WARNING: Feedback must be false and Tracking turned true \rto use Auto GoTo Next Frame. Navigation reset to Next Button."); this.navigation = "Next Button"; } } else { initial_state = ""; } this.label_state = initial_state; this.setCompLabel(this.Assets.ControlButton, initial_state); this.setCompState(this.Assets.ControlButton, false); this.setCompCallBack(this.Assets.ControlButton, callBack); }; LToolBox.prototype.setFeedback = function (val) { if (this.feedback == true) { if (val.toLowerCase() == "init") { this.setTextField(this.Assets.FeedbackField, this.feedback_list[0]); } else if (val.toLowerCase() == "button") { var buttonState = this.getCompLabel(this.Assets.ControlButton); this.setTextField(this.Assets.FeedbackField, ("Click the " + buttonState) + " button."); } else if (val.toLowerCase() == "c") { this.setTextField(this.Assets.FeedbackField, this.feedback_list[1]); } else if (val.toLowerCase() == "w") { if (this.numOfTries > 1) { this.setTextField(this.Assets.FeedbackField, this.feedback_list[3]); } else { this.setTextField(this.Assets.FeedbackField, this.feedback_list[2]); } } } else { this.setTextField(this.Assets.FeedbackField, ""); } }; LToolBox.prototype.setNavigation = function () { if (this.navigation == "Off") { this.setCompState(this.Assets.ControlButton, false); } else if (this.navigation == "Next Button") { if ((!this.buttonFlag) || (this.buttonFlag == false)) { this.setCompLabel(this.Assets.ControlButton, "Next Question"); this.buttonFlag = true; } else if (this.navAction == "Stop") { if (this.navLabel == "") { eval (this.assets_path.nextFrame()); } else { eval (this.assets_path.gotoAndStop(this.navLabel)); } } else if (this.navAction == "Play") { if (this.navLabel == "") { eval (this.assets_path.gotoAndPlay(this._currentframe + 1)); } else { eval (this.assets_path.gotoAndPlay(this.navLabel)); } } } else if (this.navigation == "Auto GoTo Next Frame") { eval (this.assets_path.nextFrame()); } }; LToolBox.prototype.sessionStart = function () { this.dateStamp = this.getDateStamp(); this.timeStamp = this.getTimeStamp(); this.sessionTimer("start"); }; LToolBox.prototype.sessionStop = function () { this.latency = this.getLatency(this.sessionTimer("stop")); }; LToolBox.prototype.submitScore = function () { if ((this.weighting <= 0) || (this.weighting == undefined)) { this.weighting = 1; } var weight; if (this.result == "C") { weight = this.weighting; } else if (this.result == "W") { weight = -1 * this.weighting; } if (this.tracking == true) { var intData = ((((((((((((((((((this.dateStamp + ";") + this.timeStamp) + ";") + this.interaction_ID) + ";") + this.objective_ID) + ";") + this.interaction_type) + ";") + this.correct_response) + ";") + this.student_response) + ";") + this.result) + ";") + this.weighting) + ";") + this.latency); fscommand ("MM_cmiSendInteractionInfo", intData); } _root.QuizTrack.countScore(weight); }; LToolBox.prototype.getDateStamp = function () { var dateObj = new Date(); var year = dateObj.getFullYear(); var month = this.formatNum(dateObj.getMonth() + 1); var day = this.formatNum(dateObj.getDate()); var dateString = ((((year + "/") + month) + "/") + day); return(dateString); }; LToolBox.prototype.getTimeStamp = function () { var timeObj = new Date(); var hours = this.formatNum(timeObj.getHours()); var minutes = this.formatNum(timeObj.getMinutes()); var seconds = this.formatNum(timeObj.getSeconds()); var timeString = ((((hours + ":") + minutes) + ":") + seconds); return(timeString); }; LToolBox.prototype.sessionTimer = function (action) { if (action.toLowerCase() == "start") { this.startTime = int(getTimer() / 1000); } else if (action.toLowerCase() == "stop") { this.stopTime = int(getTimer() / 1000); var elapsedSec = (this.stopTime - this.startTime); return(elapsedSec); } }; LToolBox.prototype.getLatency = function (timeInSec) { var l_seconds; var l_minutes; var l_hours; var timeInHours; if (timeInSec <= 9) { l_seconds = "0" + timeInSec; l_minutes = "00"; l_hours = "00"; } else { l_seconds = timeInSec; l_minutes = "00"; l_hours = "00"; } if (l_seconds > 59) { l_minutes = int(l_seconds / 60); l_minutes = this.formatNum(l_minutes); l_seconds = l_seconds - (l_minutes * 60); l_seconds = this.formatNum(l_seconds); l_hours = "00"; } if (l_minutes > 59) { l_hours = int(l_minutes / 60); l_hours = this.formatNum(l_hours); l_minutes = l_minutes - (l_hours * 60); l_minutes = this.formatNum(l_minutes); } timeInHours = (((l_hours + ":") + l_minutes) + ":") + l_seconds; return(timeInHours); }; LToolBox.prototype.formatNum = function (num) { if (num <= 9) { num = "0" + num; } return(num); }; LToolBox.prototype.getObjProp = function (objName, Trace) { var objNameArray = new Array(); var i = 0; for (x in objName) { objNameArray[i] = objName[x]; if (arguments[1] == true) { trace((x + " : ") + objName[x]); } i++; } return(objNameArray.reverse()); }; LToolBox.prototype.reportToOutput = function (defined) { var x; var y; for (prop in this) { x = this[prop]; y = typeof(this[prop]); if (defined == true) { if (((x != undefined) && (y != "function")) && (y != "object")) { trace((("this." + prop) + " : ") + this[prop]); } } else if ((defined == false) || (eval (defined) == undefined)) { trace((("this." + prop) + " : ") + this[prop]); } else if (defined.toLowerCase() == "object") { if (y == "object") { trace("this." + prop); } } else if (defined.toLowerCase() == "function") { if (y == "function") { trace("this." + prop); } } } trace("-------------------"); trace(""); }; #endinitclip
Symbol 142 MovieClip [FLabelSymbol] Frame 1
#initclip 2 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { this.labelField.embedFonts = this.hostComponent.styleTable.embedFonts.value; this.labelField.setNewTextFormat(this.hostComponent.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var tmpColor = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (tmpColor == undefined) { tmpColor = (enable ? 0 : 8947848); } this.setColor(tmpColor); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 149 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 155 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 161 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame4, "shadow"); component.registerSkinElement(frame2, "darkshadow"); component.registerSkinElement(frame3, "highlight"); component.registerSkinElement(frame1, "highlight3D");
Symbol 167 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 168 MovieClip [fpb_states] Frame 1
stop();
Symbol 168 MovieClip [fpb_states] Frame 2
stop();
Symbol 168 MovieClip [fpb_states] Frame 3
stop();
Symbol 168 MovieClip [fpb_states] Frame 4
stop();
Symbol 169 MovieClip [FUIComponentSymbol] Frame 1
#initclip 3 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); Object.registerClass("FUIComponentSymbol", FUIComponentClass); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (!this.hasOwnProperty("hostStyle")) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.onUnload = function () { if (this.focused) { Selection.setFocus(_root); } }; this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; if (this.focused) { this.myOnSetFocus(); } }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { if (this.methodTable.initScrollBar) { this.initScrollBar(); } if (this.methodTable.updateControl) { this.updateControl(); } } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var inner = this.styleTable.focusRectInner.value; var outer = this.styleTable.focusRectOuter.value; if (inner == undefined) { inner = 16777215 /* 0xFFFFFF */; } if (outer == undefined) { outer = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; with (this.focusRect) { lineStyle(1, outer); moveTo(x, y); lineTo(x + w, y); lineTo(x + w, y + h); lineTo(x, y + h); lineTo(x, y); lineStyle(1, inner); moveTo(x + 1, y + 1); lineTo((x + w) - 1, y + 1); lineTo((x + w) - 1, (y + h) - 1); lineTo(x + 1, (y + h) - 1); lineTo(x + 1, y + 1); } }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { this._parent.localToGlobal({x:this._x, y:this._y}); this.drawFocusRect(); } this.tabFocused = true; }; FUIComponentClass.prototype.myOnKillFocus = function () { this.focused = false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); }; FUIComponentClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this); }; FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); }; FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) { var global = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!global)) { this.styleTable[propName].value = value; if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var textProp = propName.subString(4, propName.length); this.textStyle[textProp] = value; this.invalidate("setSize"); } else { for (var j in this.styleTable[propName].coloredMCs) { var myColor = new Color(this.styleTable[propName].coloredMCs[j]); if (this.styleTable[propName].value == undefined) { var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; myColor.setTransform(myTObj); } else { myColor.setRGB(value); } } } this.styleTable[propName].useGlobal = global; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var myColor = new Color(skinMCRef); myColor.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var i in arguments[0]) { this[i] = arguments[0][i]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var arg = 0; while (arg < arguments.length) { var mcRef = arguments[arg]; this.listeners[arguments[arg]] = mcRef; for (var i in this) { if (this.isAStyle(i)) { mcRef.updateStyleProperty(this, i.toString()); } } arg++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var prop in this) { if (this.isAStyle(prop)) { if (component.styleTable[prop].useGlobal == this.isGlobal) { component.styleTable[prop].useGlobal = true; var value = (this.isGlobal ? undefined : (globalStyleFormat[prop])); component.setStyleProperty(prop, value, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var count = 0; for (var i in this.listeners) { var component = this.listeners[i]; if (arguments.length > 0) { var j = 0; while (j < arguments.length) { if (this.isAStyle(arguments[j])) { component.updateStyleProperty(this, arguments[j]); } j++; } } else { for (var j in this) { if (this.isAStyle(j)) { component.updateStyleProperty(this, j.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 172 MovieClip [FPushButtonSymbol] Frame 1
#initclip 6 function FPushButtonClass() { this.init(); } FPushButtonClass.prototype = new FUIComponentClass(); Object.registerClass("FPushButtonSymbol", FPushButtonClass); FPushButtonClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fpb_states", "fpbState_mc", 1); this.attachMovie("FLabelSymbol", "fLabel_mc", 2); this.attachMovie("fpb_hitArea", "fpb_hitArea_mc", 3); super.init(); this.setClickHandler(this.clickHandler); if (this.label != undefined) { this.setLabel(this.label); } this.setSize(this.width, this.height); if (Accessibility.isActive()) { this.ROLE_SYSTEM_PUSHBUTTON = 43; this.STATE_SYSTEM_PRESSED = 8; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; } }; FPushButtonClass.prototype.setHitArea = function (w, h) { var hit = this.fpb_hitArea_mc; this.hitArea = hit; hit._visible = false; hit._width = w; if (arguments.length > 1) { hit._height = h; } }; FPushButtonClass.prototype.setSize = function (w, h) { this._xscale = 100; this._yscale = 100; this.setLabel(this.getLabel()); if (arguments.length > 1) { if (h <= this.fLabel_mc.labelField._height) { super.setSize(w, this.fLabel_mc.labelField._height); } else { super.setSize(w, h); } } else { super.setSize(w, this.height); } this.setHitArea(w, h); this.arrangeLabel(); this.drawFrame(); if (this.focused) { super.myOnSetFocus(); } }; FPushButtonClass.prototype.arrangeLabel = function () { var label = this.fLabel_mc; var labelField = this.fLabel_mc.labelField; var h = this.height; var w = (this.width - 8); var b = 1; this.fLabel_mc.setSize(w - (b * 4)); label._x = b * 2; label._y = (h / 2) - (label._height / 2); }; FPushButtonClass.prototype.txtFormat = function () { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = "center")) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 5)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 5)) : undefined); if (this.fLabel_mc._height > this.height) { super.setSize(this.width, this.fLabel_mc._height); } else { super.setSize(this.width, this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); }; FPushButtonClass.prototype.drawFrame = function () { var b = 1; var x1 = 0; var y1 = 0; var x2 = this.width; var y2 = this.height; var mc_array = ["up_mc", "over_mc", "down_mc", "disabled_mc"]; var frame = mc_array[this.fpbState_mc._currentframe - 1]; var mc = "frame"; i = 0; while (i < 6) { x1 = x1 + ((i % 2) * b); y1 = y1 + ((i % 2) * b); x2 = x2 - (((i + 1) % 2) * b); y2 = y2 - (((i + 1) % 2) * b); var w = (Math.abs(x1 - x2) + (2 * b)); var h = (Math.abs(y1 - y2) + (2 * b)); this.fpbState_mc[frame][mc + i]._width = w; this.fpbState_mc[frame][mc + i]._height = h; this.fpbState_mc[frame][mc + i]._x = x1 - b; this.fpbState_mc[frame][mc + i]._y = y1 - b; i++; } }; FPushButtonClass.prototype.setClickHandler = function (chng, obj) { this.handlerObj = ((arguments.length < 2) ? (this._parent) : (obj)); this.clickHandler = chng; }; FPushButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.clickHandler](this); }; FPushButtonClass.prototype.onPress = function () { this.pressFocus(); this.labelPosX = this.fLabel_mc._x; this.labelPosY = this.fLabel_mc._y; this.fLabel_mc._x = this.labelPosX + 1; this.fLabel_mc._y = this.labelPosY + 1; this.fpbState_mc.gotoAndStop(3); this.drawFrame(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE); } }; FPushButtonClass.prototype.onRelease = function () { this.fLabel_mc._x = this.labelPosX; this.fLabel_mc._y = this.labelPosY; this.fpbState_mc.gotoAndStop(2); this.drawFrame(); this.executeCallBack(); }; FPushButtonClass.prototype.onRollOver = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); }; FPushButtonClass.prototype.onRollOut = function () { this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onReleaseOutside = function () { this.fLabel_mc._x = this.labelPosX; this.fLabel_mc._y = this.labelPosY; this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onDragOut = function () { this.fLabel_mc._x = this.labelPosX; this.fLabel_mc._y = this.labelPosY; this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onDragOver = function () { this.fLabel_mc._x = this.labelPosX + 1; this.fLabel_mc._y = this.labelPosY + 1; this.fpbState_mc.gotoAndStop(3); this.drawFrame(); }; FPushButtonClass.prototype.getEnabled = function () { return(this.enabled); }; FPushButtonClass.prototype.setEnabled = function (enable) { if (enable || (enable == undefined)) { this.gotoFrame(1); this.drawFrame(); this.flabel_mc.setEnabled(true); this.enabled = true; super.setEnabled(true); } else { this.gotoFrame(4); this.drawFrame(); this.flabel_mc.setEnabled(false); this.enabled = false; super.setEnabled(false); } }; FPushButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FPushButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FPushButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this.pressOnce == undefined)) { this.onPress(); this.pressOnce = 1; } }; FPushButtonClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.onRelease(); this.pressOnce = undefined; } }; FPushButtonClass.prototype.myOnSetFocus = function () { this.focused = true; super.myOnSetFocus(); }; FPushButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_PUSHBUTTON); }; FPushButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FPushButtonClass.prototype.get_accState = function (childId) { return(this.master.STATE_SYSTEM_DEFAULT); }; FPushButtonClass.prototype.get_accDefaultAction = function (childId) { return("Press"); }; FPushButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.onPress(); this.master.onRelease(); }; #endinitclip
Symbol 181 Button
on (release) { _root.play(); }
Symbol 182 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop (3); }
Symbol 182 MovieClip Frame 2
gotoAndPlay (1);
Symbol 184 Button
on (release) { gotoAndPlay (1); }
Symbol 557 Button
on (release) { gotoAndPlay (4660); }
Symbol 561 Button
on (release) { gotoAndPlay (4497); }

Library Items

Symbol 1 GraphicUsed by:2 66 70 71 80 111
Symbol 2 MovieClip [fcb_hitArea]Uses:1
Symbol 3 GraphicUsed by:4 41 45 55 88 92 100
Symbol 4 MovieClipUses:3Used by:11
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:11
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:11
Symbol 9 GraphicUsed by:10 42 44 54 89 91 99
Symbol 10 MovieClipUses:9Used by:11
Symbol 11 MovieClipUses:4 6 8 10Used by:26
Symbol 12 GraphicUsed by:13 27
Symbol 13 MovieClipUses:12Used by:14
Symbol 14 MovieClipUses:13Used by:26
Symbol 15 GraphicUsed by:16 18 108 146 147 152 153 164 165
Symbol 16 MovieClipUses:15Used by:17
Symbol 17 MovieClipUses:16Used by:26
Symbol 18 MovieClipUses:15Used by:19
Symbol 19 MovieClipUses:18Used by:26
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20Used by:22
Symbol 22 MovieClipUses:21Used by:26
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:25
Symbol 25 MovieClipUses:24Used by:26
Symbol 26 MovieClip [fcb_states]Uses:11 14 17 19 22 25
Symbol 27 MovieClipUses:12Used by:29
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClip [FBoundingBoxSymbol]Uses:27 28Used by:32 138 172
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:32
Symbol 32 MovieClip [FCheckBoxSymbol]Uses:29 31
Symbol 33 GraphicUsed by:34 50 67 68 74 75 77 83 95 148 154 160 166
Symbol 34 MovieClipUses:33Used by:43
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:43
Symbol 37 GraphicUsed by:38 56 86 101
Symbol 38 MovieClipUses:37Used by:43
Symbol 39 GraphicUsed by:40 57 87 102
Symbol 40 MovieClipUses:39Used by:43
Symbol 41 MovieClipUses:3Used by:43
Symbol 42 MovieClipUses:9Used by:43
Symbol 43 MovieClipUses:34 36 38 40 41 42Used by:63
Symbol 44 MovieClipUses:9Used by:53
Symbol 45 MovieClipUses:3Used by:53
Symbol 46 GraphicUsed by:47 93
Symbol 47 MovieClipUses:46Used by:53
Symbol 48 GraphicUsed by:49 94
Symbol 49 MovieClipUses:48Used by:53
Symbol 50 MovieClipUses:33Used by:53
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:53
Symbol 53 MovieClipUses:44 45 47 49 50 52Used by:63
Symbol 54 MovieClipUses:9Used by:62
Symbol 55 MovieClipUses:3Used by:62
Symbol 56 MovieClipUses:37Used by:62
Symbol 57 MovieClipUses:39Used by:62
Symbol 58 GraphicUsed by:59 103
Symbol 59 MovieClipUses:58Used by:62
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:62
Symbol 62 MovieClipUses:54 55 56 57 59 61Used by:63
Symbol 63 MovieClip [UpArrow]Uses:43 53 62
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:69
Symbol 66 MovieClipUses:1Used by:69
Symbol 67 MovieClipUses:33Used by:69
Symbol 68 MovieClipUses:33Used by:69
Symbol 69 MovieClipUses:65 66 67 68Used by:82
Symbol 70 MovieClipUses:1Used by:76
Symbol 71 MovieClipUses:1Used by:76
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:76
Symbol 74 MovieClipUses:33Used by:76
Symbol 75 MovieClipUses:33Used by:76
Symbol 76 MovieClipUses:70 71 73 74 75Used by:82
Symbol 77 MovieClipUses:33Used by:81
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:81
Symbol 80 MovieClipUses:1Used by:81
Symbol 81 MovieClipUses:77 79 80Used by:82
Symbol 82 MovieClip [ScrollThumb]Uses:69 76 81
Symbol 83 MovieClipUses:33Used by:90
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:90
Symbol 86 MovieClipUses:37Used by:90
Symbol 87 MovieClipUses:39Used by:90
Symbol 88 MovieClipUses:3Used by:90
Symbol 89 MovieClipUses:9Used by:90
Symbol 90 MovieClipUses:83 85 86 87 88 89Used by:107
Symbol 91 MovieClipUses:9Used by:98
Symbol 92 MovieClipUses:3Used by:98
Symbol 93 MovieClipUses:46Used by:98
Symbol 94 MovieClipUses:48Used by:98
Symbol 95 MovieClipUses:33Used by:98
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:98
Symbol 98 MovieClipUses:91 92 93 94 95 97Used by:107
Symbol 99 MovieClipUses:9Used by:106
Symbol 100 MovieClipUses:3Used by:106
Symbol 101 MovieClipUses:37Used by:106
Symbol 102 MovieClipUses:39Used by:106
Symbol 103 MovieClipUses:58Used by:106
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:106
Symbol 106 MovieClipUses:99 100 101 102 103 105Used by:107
Symbol 107 MovieClip [DownArrow]Uses:90 98 106
Symbol 108 MovieClipUses:15Used by:109
Symbol 109 MovieClipUses:108Used by:110
Symbol 110 MovieClip [FScrollBarSymbol]Uses:109
Symbol 111 MovieClip [frb_hitArea]Uses:1
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:120
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:120
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:120
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:118Used by:120
Symbol 120 MovieClipUses:113 115 117 119Used by:135
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121Used by:123
Symbol 123 MovieClipUses:122Used by:135
Symbol 124 GraphicUsed by:125 127
Symbol 125 MovieClipUses:124Used by:126
Symbol 126 MovieClipUses:125Used by:135
Symbol 127 MovieClipUses:124Used by:128
Symbol 128 MovieClipUses:127Used by:135
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:129Used by:131
Symbol 131 MovieClipUses:130Used by:135
Symbol 132 GraphicUsed by:133  Timeline
Symbol 133 MovieClipUses:132Used by:134
Symbol 134 MovieClipUses:133Used by:135
Symbol 135 MovieClip [frb_states]Uses:120 123 126 128 131 134
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:136Used by:138
Symbol 138 MovieClip [FRadioButtonSymbol]Uses:29 137
Symbol 139 MovieClip [LSuperClass]
Symbol 140 FontUsed by:141 170
Symbol 141 EditableTextUses:140Used by:142
Symbol 142 MovieClip [FLabelSymbol]Uses:141
Symbol 143 GraphicUsed by:144 145 150 151 156 157 158 159 162 163
Symbol 144 MovieClipUses:143Used by:149
Symbol 145 MovieClipUses:143Used by:149
Symbol 146 MovieClipUses:15Used by:149
Symbol 147 MovieClipUses:15Used by:149
Symbol 148 MovieClipUses:33Used by:149
Symbol 149 MovieClipUses:144 145 146 147 148Used by:168
Symbol 150 MovieClipUses:143Used by:155
Symbol 151 MovieClipUses:143Used by:155
Symbol 152 MovieClipUses:15Used by:155
Symbol 153 MovieClipUses:15Used by:155
Symbol 154 MovieClipUses:33Used by:155
Symbol 155 MovieClipUses:150 151 152 153 154Used by:168
Symbol 156 MovieClipUses:143Used by:161
Symbol 157 MovieClipUses:143Used by:161
Symbol 158 MovieClipUses:143Used by:161
Symbol 159 MovieClipUses:143Used by:161
Symbol 160 MovieClipUses:33Used by:161
Symbol 161 MovieClipUses:156 157 158 159 160Used by:168
Symbol 162 MovieClipUses:143Used by:167
Symbol 163 MovieClipUses:143Used by:167
Symbol 164 MovieClipUses:15Used by:167
Symbol 165 MovieClipUses:15Used by:167
Symbol 166 MovieClipUses:33Used by:167
Symbol 167 MovieClipUses:162 163 164 165 166Used by:168
Symbol 168 MovieClip [fpb_states]Uses:149 155 161 167
Symbol 169 MovieClip [FUIComponentSymbol]
Symbol 170 EditableTextUses:140Used by:171
Symbol 171 MovieClipUses:170Used by:172
Symbol 172 MovieClip [FPushButtonSymbol]Uses:29 171
Symbol 173 BitmapUsed by:174
Symbol 174 GraphicUses:173Used by:Timeline
Symbol 175 BitmapUsed by:176 544
Symbol 176 GraphicUses:175Used by:Timeline
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClipUses:177Used by:182
Symbol 179 GraphicUsed by:182
Symbol 180 GraphicUsed by:181
Symbol 181 ButtonUses:180Used by:182
Symbol 182 MovieClipUses:178 179 181Used by:Timeline
Symbol 183 GraphicUsed by:184
Symbol 184 ButtonUses:183Used by:Timeline
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClipUses:185Used by:Timeline
Symbol 187 FontUsed by:188 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
Symbol 188 EditableTextUses:187Used by:Timeline
Symbol 189 SoundUsed by:Timeline
Symbol 190 EditableTextUses:187Used by:Timeline
Symbol 191 EditableTextUses:187Used by:Timeline
Symbol 192 EditableTextUses:187Used by:Timeline
Symbol 193 EditableTextUses:187Used by:Timeline
Symbol 194 EditableTextUses:187Used by:Timeline
Symbol 195 EditableTextUses:187Used by:Timeline
Symbol 196 EditableTextUses:187Used by:Timeline
Symbol 197 EditableTextUses:187Used by:Timeline
Symbol 198 EditableTextUses:187Used by:Timeline
Symbol 199 EditableTextUses:187Used by:Timeline
Symbol 200 EditableTextUses:187Used by:Timeline
Symbol 201 EditableTextUses:187Used by:Timeline
Symbol 202 EditableTextUses:187Used by:Timeline
Symbol 203 EditableTextUses:187Used by:Timeline
Symbol 204 EditableTextUses:187Used by:Timeline
Symbol 205 EditableTextUses:187Used by:Timeline
Symbol 206 EditableTextUses:187Used by:Timeline
Symbol 207 EditableTextUses:187Used by:Timeline
Symbol 208 EditableTextUses:187Used by:Timeline
Symbol 209 EditableTextUses:187Used by:Timeline
Symbol 210 EditableTextUses:187Used by:Timeline
Symbol 211 EditableTextUses:187Used by:Timeline
Symbol 212 EditableTextUses:187Used by:Timeline
Symbol 213 EditableTextUses:187Used by:Timeline
Symbol 214 EditableTextUses:187Used by:Timeline
Symbol 215 EditableTextUses:187Used by:Timeline
Symbol 216 EditableTextUses:187Used by:Timeline
Symbol 217 EditableTextUses:187Used by:Timeline
Symbol 218 EditableTextUses:187Used by:Timeline
Symbol 219 EditableTextUses:187Used by:Timeline
Symbol 220 EditableTextUses:187Used by:Timeline
Symbol 221 EditableTextUses:187Used by:Timeline
Symbol 222 EditableTextUses:187Used by:Timeline
Symbol 223 EditableTextUses:187Used by:Timeline
Symbol 224 EditableTextUses:187Used by:Timeline
Symbol 225 EditableTextUses:187Used by:Timeline
Symbol 226 EditableTextUses:187Used by:Timeline
Symbol 227 EditableTextUses:187Used by:Timeline
Symbol 228 EditableTextUses:187Used by:Timeline
Symbol 229 EditableTextUses:187Used by:Timeline
Symbol 230 EditableTextUses:187Used by:Timeline
Symbol 231 EditableTextUses:187Used by:Timeline
Symbol 232 EditableTextUses:187Used by:Timeline
Symbol 233 EditableTextUses:187Used by:Timeline
Symbol 234 EditableTextUses:187Used by:Timeline
Symbol 235 EditableTextUses:187Used by:Timeline
Symbol 236 EditableTextUses:187Used by:Timeline
Symbol 237 EditableTextUses:187Used by:Timeline
Symbol 238 EditableTextUses:187Used by:Timeline
Symbol 239 EditableTextUses:187Used by:Timeline
Symbol 240 EditableTextUses:187Used by:Timeline
Symbol 241 EditableTextUses:187Used by:Timeline
Symbol 242 EditableTextUses:187Used by:Timeline
Symbol 243 EditableTextUses:187Used by:Timeline
Symbol 244 EditableTextUses:187Used by:Timeline
Symbol 245 EditableTextUses:187Used by:Timeline
Symbol 246 EditableTextUses:187Used by:Timeline
Symbol 247 EditableTextUses:187Used by:Timeline
Symbol 248 EditableTextUses:187Used by:Timeline
Symbol 249 EditableTextUses:187Used by:Timeline
Symbol 250 EditableTextUses:187Used by:Timeline
Symbol 251 EditableTextUses:187Used by:Timeline
Symbol 252 EditableTextUses:187Used by:Timeline
Symbol 253 EditableTextUses:187Used by:Timeline
Symbol 254 EditableTextUses:187Used by:Timeline
Symbol 255 EditableTextUses:187Used by:Timeline
Symbol 256 EditableTextUses:187Used by:Timeline
Symbol 257 EditableTextUses:187Used by:Timeline
Symbol 258 EditableTextUses:187Used by:Timeline
Symbol 259 EditableTextUses:187Used by:Timeline
Symbol 260 EditableTextUses:187Used by:Timeline
Symbol 261 EditableTextUses:187Used by:Timeline
Symbol 262 EditableTextUses:187Used by:Timeline
Symbol 263 EditableTextUses:187Used by:Timeline
Symbol 264 EditableTextUses:187Used by:Timeline
Symbol 265 EditableTextUses:187Used by:Timeline
Symbol 266 EditableTextUses:187Used by:Timeline
Symbol 267 EditableTextUses:187Used by:Timeline
Symbol 268 EditableTextUses:187Used by:Timeline
Symbol 269 EditableTextUses:187Used by:Timeline
Symbol 270 EditableTextUses:187Used by:Timeline
Symbol 271 EditableTextUses:187Used by:Timeline
Symbol 272 EditableTextUses:187Used by:Timeline
Symbol 273 EditableTextUses:187Used by:Timeline
Symbol 274 EditableTextUses:187Used by:Timeline
Symbol 275 EditableTextUses:187Used by:Timeline
Symbol 276 EditableTextUses:187Used by:Timeline
Symbol 277 EditableTextUses:187Used by:Timeline
Symbol 278 EditableTextUses:187Used by:Timeline
Symbol 279 EditableTextUses:187Used by:Timeline
Symbol 280 EditableTextUses:187Used by:Timeline
Symbol 281 EditableTextUses:187Used by:Timeline
Symbol 282 EditableTextUses:187Used by:Timeline
Symbol 283 EditableTextUses:187Used by:Timeline
Symbol 284 EditableTextUses:187Used by:Timeline
Symbol 285 EditableTextUses:187Used by:Timeline
Symbol 286 GraphicUsed by:Timeline
Symbol 287 GraphicUsed by:Timeline
Symbol 288 BitmapUsed by:289
Symbol 289 GraphicUses:288Used by:304
Symbol 290 BitmapUsed by:291
Symbol 291 GraphicUses:290Used by:304
Symbol 292 BitmapUsed by:293
Symbol 293 GraphicUses:292Used by:304
Symbol 294 BitmapUsed by:295
Symbol 295 GraphicUses:294Used by:304
Symbol 296 BitmapUsed by:297
Symbol 297 GraphicUses:296Used by:304
Symbol 298 BitmapUsed by:299
Symbol 299 GraphicUses:298Used by:304
Symbol 300 BitmapUsed by:301
Symbol 301 GraphicUses:300Used by:304
Symbol 302 BitmapUsed by:303
Symbol 303 GraphicUses:302Used by:304
Symbol 304 MovieClipUses:289 291 293 295 297 299 301 303Used by:Timeline
Symbol 305 BitmapUsed by:306 360
Symbol 306 GraphicUses:305Used by:Timeline
Symbol 307 GraphicUsed by:308  Timeline
Symbol 308 MovieClipUses:307Used by:Timeline
Symbol 309 BitmapUsed by:313
Symbol 310 BitmapUsed by:313
Symbol 311 BitmapUsed by:313
Symbol 312 BitmapUsed by:313
Symbol 313 GraphicUses:309 310 311 312Used by:Timeline
Symbol 314 GraphicUsed by:328
Symbol 315 GraphicUsed by:328
Symbol 316 GraphicUsed by:328
Symbol 317 GraphicUsed by:328
Symbol 318 GraphicUsed by:328
Symbol 319 GraphicUsed by:328
Symbol 320 GraphicUsed by:328
Symbol 321 GraphicUsed by:328
Symbol 322 GraphicUsed by:328
Symbol 323 GraphicUsed by:328
Symbol 324 GraphicUsed by:328
Symbol 325 GraphicUsed by:328
Symbol 326 GraphicUsed by:328
Symbol 327 GraphicUsed by:328
Symbol 328 MovieClipUses:314 315 316 317 318 319 320 321 322 323 324 325 326 327Used by:Timeline
Symbol 329 FontUsed by:330 334
Symbol 330 TextUses:329Used by:Timeline
Symbol 331 GraphicUsed by:Timeline
Symbol 332 GraphicUsed by:Timeline
Symbol 333 GraphicUsed by:Timeline
Symbol 334 TextUses:329Used by:Timeline
Symbol 335 GraphicUsed by:Timeline
Symbol 336 BitmapUsed by:337
Symbol 337 GraphicUses:336Used by:Timeline
Symbol 338 BitmapUsed by:339 377
Symbol 339 GraphicUses:338Used by:Timeline
Symbol 340 BitmapUsed by:341 342 375 376 398 402
Symbol 341 GraphicUses:340Used by:Timeline
Symbol 342 GraphicUses:340Used by:347
Symbol 343 BitmapUsed by:344
Symbol 344 GraphicUses:343Used by:347
Symbol 345 BitmapUsed by:346 403
Symbol 346 GraphicUses:345Used by:347
Symbol 347 MovieClipUses:342 344 346Used by:Timeline
Symbol 348 GraphicUsed by:Timeline
Symbol 349 GraphicUsed by:Timeline
Symbol 350 GraphicUsed by:Timeline
Symbol 351 GraphicUsed by:Timeline
Symbol 352 BitmapUsed by:353 366
Symbol 353 GraphicUses:352Used by:Timeline
Symbol 354 GraphicUsed by:Timeline
Symbol 355 GraphicUsed by:Timeline
Symbol 356 BitmapUsed by:357
Symbol 357 GraphicUses:356Used by:Timeline
Symbol 358 BitmapUsed by:359 371
Symbol 359 GraphicUses:358Used by:Timeline
Symbol 360 GraphicUses:305Used by:Timeline
Symbol 361 BitmapUsed by:362
Symbol 362 GraphicUses:361Used by:Timeline
Symbol 363 GraphicUsed by:Timeline
Symbol 364 GraphicUsed by:Timeline
Symbol 365 GraphicUsed by:Timeline
Symbol 366 GraphicUses:352Used by:Timeline
Symbol 367 BitmapUsed by:369
Symbol 368 BitmapUsed by:369
Symbol 369 GraphicUses:367 368Used by:Timeline
Symbol 370 GraphicUsed by:Timeline
Symbol 371 GraphicUses:358Used by:Timeline
Symbol 372 GraphicUsed by:Timeline
Symbol 373 BitmapUsed by:374
Symbol 374 GraphicUses:373Used by:Timeline
Symbol 375 GraphicUses:340Used by:Timeline
Symbol 376 GraphicUses:340Used by:Timeline
Symbol 377 GraphicUses:338Used by:Timeline
Symbol 378 GraphicUsed by:Timeline
Symbol 379 BitmapUsed by:380
Symbol 380 GraphicUses:379Used by:Timeline
Symbol 381 BitmapUsed by:382 399
Symbol 382 GraphicUses:381Used by:Timeline
Symbol 383 GraphicUsed by:Timeline
Symbol 384 BitmapUsed by:385 397
Symbol 385 GraphicUses:384Used by:Timeline
Symbol 386 BitmapUsed by:387 391
Symbol 387 GraphicUses:386Used by:Timeline
Symbol 388 BitmapUsed by:389
Symbol 389 GraphicUses:388Used by:Timeline
Symbol 390 GraphicUsed by:Timeline
Symbol 391 GraphicUses:386Used by:Timeline
Symbol 392 BitmapUsed by:393
Symbol 393 GraphicUses:392Used by:396
Symbol 394 BitmapUsed by:395
Symbol 395 GraphicUses:394Used by:396
Symbol 396 MovieClipUses:393 395Used by:Timeline
Symbol 397 GraphicUses:384Used by:Timeline
Symbol 398 GraphicUses:340Used by:Timeline
Symbol 399 GraphicUses:381Used by:Timeline
Symbol 400 BitmapUsed by:401
Symbol 401 GraphicUses:400Used by:Timeline
Symbol 402 GraphicUses:340Used by:Timeline
Symbol 403 GraphicUses:345Used by:Timeline
Symbol 404 BitmapUsed by:405
Symbol 405 GraphicUses:404Used by:Timeline
Symbol 406 BitmapUsed by:407
Symbol 407 GraphicUses:406Used by:Timeline
Symbol 408 BitmapUsed by:409 537
Symbol 409 GraphicUses:408Used by:Timeline
Symbol 410 GraphicUsed by:Timeline
Symbol 411 BitmapUsed by:412
Symbol 412 GraphicUses:411Used by:Timeline
Symbol 413 GraphicUsed by:Timeline
Symbol 414 BitmapUsed by:415
Symbol 415 GraphicUses:414Used by:Timeline
Symbol 416 GraphicUsed by:Timeline
Symbol 417 GraphicUsed by:Timeline
Symbol 418 BitmapUsed by:419
Symbol 419 GraphicUses:418Used by:Timeline
Symbol 420 GraphicUsed by:Timeline
Symbol 421 BitmapUsed by:422
Symbol 422 GraphicUses:421Used by:Timeline
Symbol 423 BitmapUsed by:424
Symbol 424 GraphicUses:423Used by:Timeline
Symbol 425 BitmapUsed by:426 593
Symbol 426 GraphicUses:425Used by:Timeline
Symbol 427 BitmapUsed by:428 592 594
Symbol 428 GraphicUses:427Used by:Timeline
Symbol 429 BitmapUsed by:430
Symbol 430 GraphicUses:429Used by:Timeline
Symbol 431 BitmapUsed by:432
Symbol 432 GraphicUses:431Used by:Timeline
Symbol 433 BitmapUsed by:434
Symbol 434 GraphicUses:433Used by:Timeline
Symbol 435 GraphicUsed by:Timeline
Symbol 436 GraphicUsed by:Timeline
Symbol 437 GraphicUsed by:Timeline
Symbol 438 GraphicUsed by:Timeline
Symbol 439 GraphicUsed by:Timeline
Symbol 440 GraphicUsed by:Timeline
Symbol 441 GraphicUsed by:Timeline
Symbol 442 GraphicUsed by:Timeline
Symbol 443 GraphicUsed by:Timeline
Symbol 444 BitmapUsed by:445 452 464 517
Symbol 445 GraphicUses:444Used by:Timeline
Symbol 446 BitmapUsed by:447 464
Symbol 447 GraphicUses:446Used by:Timeline
Symbol 448 BitmapUsed by:449
Symbol 449 GraphicUses:448Used by:Timeline
Symbol 450 BitmapUsed by:451
Symbol 451 GraphicUses:450Used by:Timeline
Symbol 452 GraphicUses:444Used by:Timeline
Symbol 453 BitmapUsed by:454 568
Symbol 454 GraphicUses:453Used by:Timeline
Symbol 455 BitmapUsed by:456
Symbol 456 GraphicUses:455Used by:457  Timeline
Symbol 457 MovieClipUses:456Used by:Timeline
Symbol 458 BitmapUsed by:459
Symbol 459 GraphicUses:458Used by:Timeline
Symbol 460 GraphicUsed by:Timeline
Symbol 461 BitmapUsed by:462 473
Symbol 462 GraphicUses:461Used by:Timeline
Symbol 463 GraphicUsed by:Timeline
Symbol 464 GraphicUses:446 444Used by:Timeline
Symbol 465 GraphicUsed by:Timeline
Symbol 466 GraphicUsed by:Timeline
Symbol 467 BitmapUsed by:468 471
Symbol 468 GraphicUses:467Used by:Timeline
Symbol 469 GraphicUsed by:Timeline
Symbol 470 GraphicUsed by:Timeline
Symbol 471 GraphicUses:467Used by:Timeline
Symbol 472 GraphicUsed by:Timeline
Symbol 473 GraphicUses:461Used by:Timeline
Symbol 474 GraphicUsed by:Timeline
Symbol 475 GraphicUsed by:Timeline
Symbol 476 GraphicUsed by:Timeline
Symbol 477 GraphicUsed by:Timeline
Symbol 478 GraphicUsed by:Timeline
Symbol 479 GraphicUsed by:Timeline
Symbol 480 GraphicUsed by:Timeline
Symbol 481 GraphicUsed by:Timeline
Symbol 482 GraphicUsed by:Timeline
Symbol 483 GraphicUsed by:Timeline
Symbol 484 GraphicUsed by:Timeline
Symbol 485 GraphicUsed by:Timeline
Symbol 486 GraphicUsed by:Timeline
Symbol 487 GraphicUsed by:Timeline
Symbol 488 GraphicUsed by:Timeline
Symbol 489 GraphicUsed by:Timeline
Symbol 490 GraphicUsed by:Timeline
Symbol 491 GraphicUsed by:Timeline
Symbol 492 GraphicUsed by:Timeline
Symbol 493 GraphicUsed by:Timeline
Symbol 494 BitmapUsed by:495
Symbol 495 GraphicUses:494Used by:Timeline
Symbol 496 GraphicUsed by:Timeline
Symbol 497 GraphicUsed by:Timeline
Symbol 498 GraphicUsed by:Timeline
Symbol 499 GraphicUsed by:Timeline
Symbol 500 GraphicUsed by:Timeline
Symbol 501 GraphicUsed by:Timeline
Symbol 502 GraphicUsed by:Timeline
Symbol 503 GraphicUsed by:Timeline
Symbol 504 GraphicUsed by:Timeline
Symbol 505 GraphicUsed by:Timeline
Symbol 506 GraphicUsed by:Timeline
Symbol 507 GraphicUsed by:Timeline
Symbol 508 GraphicUsed by:Timeline
Symbol 509 GraphicUsed by:Timeline
Symbol 510 GraphicUsed by:Timeline
Symbol 511 GraphicUsed by:Timeline
Symbol 512 GraphicUsed by:Timeline
Symbol 513 GraphicUsed by:Timeline
Symbol 514 GraphicUsed by:Timeline
Symbol 515 GraphicUsed by:Timeline
Symbol 516 GraphicUsed by:Timeline
Symbol 517 GraphicUses:444Used by:Timeline
Symbol 518 GraphicUsed by:Timeline
Symbol 519 GraphicUsed by:Timeline
Symbol 520 GraphicUsed by:Timeline
Symbol 521 BitmapUsed by:522
Symbol 522 GraphicUses:521Used by:Timeline
Symbol 523 BitmapUsed by:524
Symbol 524 GraphicUses:523Used by:Timeline
Symbol 525 BitmapUsed by:526 538
Symbol 526 GraphicUses:525Used by:Timeline
Symbol 527 BitmapUsed by:528 539
Symbol 528 GraphicUses:527Used by:Timeline
Symbol 529 BitmapUsed by:530
Symbol 530 GraphicUses:529Used by:Timeline
Symbol 531 BitmapUsed by:532
Symbol 532 GraphicUses:531Used by:Timeline
Symbol 533 BitmapUsed by:534
Symbol 534 GraphicUses:533Used by:Timeline
Symbol 535 BitmapUsed by:536
Symbol 536 GraphicUses:535Used by:Timeline
Symbol 537 GraphicUses:408Used by:Timeline
Symbol 538 GraphicUses:525Used by:Timeline
Symbol 539 GraphicUses:527Used by:Timeline
Symbol 540 GraphicUsed by:Timeline
Symbol 541 GraphicUsed by:Timeline
Symbol 542 GraphicUsed by:Timeline
Symbol 543 GraphicUsed by:Timeline
Symbol 544 GraphicUses:175Used by:Timeline
Symbol 545 SoundUsed by:Timeline
Symbol 546 BitmapUsed by:547
Symbol 547 GraphicUses:546Used by:Timeline
Symbol 548 BitmapUsed by:549
Symbol 549 GraphicUses:548Used by:Timeline
Symbol 550 GraphicUsed by:Timeline
Symbol 551 BitmapUsed by:552
Symbol 552 GraphicUses:551Used by:Timeline
Symbol 553 GraphicUsed by:Timeline
Symbol 554 GraphicUsed by:557
Symbol 555 GraphicUsed by:557
Symbol 556 GraphicUsed by:557
Symbol 557 ButtonUses:554 555 556Used by:Timeline
Symbol 558 GraphicUsed by:561
Symbol 559 GraphicUsed by:561
Symbol 560 GraphicUsed by:561
Symbol 561 ButtonUses:558 559 560Used by:Timeline
Symbol 562 BitmapUsed by:563
Symbol 563 GraphicUses:562Used by:Timeline
Symbol 564 BitmapUsed by:565
Symbol 565 GraphicUses:564Used by:Timeline
Symbol 566 BitmapUsed by:567
Symbol 567 GraphicUses:566Used by:Timeline
Symbol 568 GraphicUses:453Used by:Timeline
Symbol 569 BitmapUsed by:572 573 652
Symbol 570 BitmapUsed by:572 575 654
Symbol 571 BitmapUsed by:572 574 653
Symbol 572 GraphicUses:569 570 571Used by:Timeline
Symbol 573 GraphicUses:569Used by:Timeline
Symbol 574 GraphicUses:571Used by:Timeline
Symbol 575 GraphicUses:570Used by:Timeline
Symbol 576 BitmapUsed by:577 578 629 632 639 649 684 685
Symbol 577 GraphicUses:576Used by:Timeline
Symbol 578 GraphicUses:576Used by:Timeline
Symbol 579 BitmapUsed by:580
Symbol 580 GraphicUses:579Used by:Timeline
Symbol 581 BitmapUsed by:582 681
Symbol 582 GraphicUses:581Used by:Timeline
Symbol 583 BitmapUsed by:584
Symbol 584 GraphicUses:583Used by:Timeline
Symbol 585 BitmapUsed by:586
Symbol 586 GraphicUses:585Used by:Timeline
Symbol 587 BitmapUsed by:588
Symbol 588 GraphicUses:587Used by:Timeline
Symbol 589 BitmapUsed by:591
Symbol 590 BitmapUsed by:591
Symbol 591 GraphicUses:589 590Used by:Timeline
Symbol 592 GraphicUses:427Used by:Timeline
Symbol 593 GraphicUses:425Used by:Timeline
Symbol 594 GraphicUses:427Used by:Timeline
Symbol 595 GraphicUsed by:Timeline
Symbol 596 GraphicUsed by:Timeline
Symbol 597 GraphicUsed by:Timeline
Symbol 598 GraphicUsed by:Timeline
Symbol 599 GraphicUsed by:Timeline
Symbol 600 GraphicUsed by:Timeline
Symbol 601 GraphicUsed by:Timeline
Symbol 602 GraphicUsed by:Timeline
Symbol 603 GraphicUsed by:Timeline
Symbol 604 GraphicUsed by:Timeline
Symbol 605 GraphicUsed by:Timeline
Symbol 606 GraphicUsed by:Timeline
Symbol 607 GraphicUsed by:Timeline
Symbol 608 GraphicUsed by:Timeline
Symbol 609 GraphicUsed by:Timeline
Symbol 610 BitmapUsed by:611
Symbol 611 GraphicUses:610Used by:Timeline
Symbol 612 BitmapUsed by:613
Symbol 613 GraphicUses:612Used by:Timeline
Symbol 614 BitmapUsed by:615
Symbol 615 GraphicUses:614Used by:Timeline
Symbol 616 BitmapUsed by:617 620
Symbol 617 GraphicUses:616Used by:Timeline
Symbol 618 GraphicUsed by:Timeline
Symbol 619 GraphicUsed by:Timeline
Symbol 620 GraphicUses:616Used by:Timeline
Symbol 621 GraphicUsed by:Timeline
Symbol 622 BitmapUsed by:623
Symbol 623 GraphicUses:622Used by:Timeline
Symbol 624 GraphicUsed by:Timeline
Symbol 625 GraphicUsed by:Timeline
Symbol 626 GraphicUsed by:Timeline
Symbol 627 GraphicUsed by:Timeline
Symbol 628 GraphicUsed by:Timeline
Symbol 629 GraphicUses:576Used by:Timeline
Symbol 630 GraphicUsed by:Timeline
Symbol 631 GraphicUsed by:Timeline
Symbol 632 GraphicUses:576Used by:Timeline
Symbol 633 GraphicUsed by:Timeline
Symbol 634 BitmapUsed by:635
Symbol 635 GraphicUses:634Used by:Timeline
Symbol 636 ShapeTweeningUsed by:Timeline
Symbol 637 ShapeTweeningUsed by:Timeline
Symbol 638 GraphicUsed by:Timeline
Symbol 639 GraphicUses:576Used by:Timeline
Symbol 640 GraphicUsed by:Timeline
Symbol 641 GraphicUsed by:Timeline
Symbol 642 GraphicUsed by:Timeline
Symbol 643 GraphicUsed by:Timeline
Symbol 644 GraphicUsed by:Timeline
Symbol 645 BitmapUsed by:646 666
Symbol 646 GraphicUses:645Used by:Timeline
Symbol 647 BitmapUsed by:648 661 689
Symbol 648 GraphicUses:647Used by:Timeline
Symbol 649 GraphicUses:576Used by:Timeline
Symbol 650 BitmapUsed by:651
Symbol 651 GraphicUses:650Used by:Timeline
Symbol 652 GraphicUses:569Used by:Timeline
Symbol 653 GraphicUses:571Used by:Timeline
Symbol 654 GraphicUses:570Used by:Timeline
Symbol 655 BitmapUsed by:656
Symbol 656 GraphicUses:655Used by:Timeline
Symbol 657 BitmapUsed by:658
Symbol 658 GraphicUses:657Used by:Timeline
Symbol 659 BitmapUsed by:660
Symbol 660 GraphicUses:659Used by:Timeline
Symbol 661 GraphicUses:647Used by:662 686  Timeline
Symbol 662 MovieClipUses:661Used by:Timeline
Symbol 663 ShapeTweeningUsed by:Timeline
Symbol 664 ShapeTweeningUsed by:Timeline
Symbol 665 GraphicUsed by:Timeline
Symbol 666 GraphicUses:645Used by:667
Symbol 667 MovieClipUses:666Used by:Timeline
Symbol 668 GraphicUsed by:Timeline
Symbol 669 ShapeTweeningUsed by:Timeline
Symbol 670 GraphicUsed by:Timeline
Symbol 671 GraphicUsed by:Timeline
Symbol 672 GraphicUsed by:Timeline
Symbol 673 GraphicUsed by:Timeline
Symbol 674 GraphicUsed by:Timeline
Symbol 675 GraphicUsed by:Timeline
Symbol 676 GraphicUsed by:Timeline
Symbol 677 GraphicUsed by:Timeline
Symbol 678 GraphicUsed by:Timeline
Symbol 679 GraphicUsed by:Timeline
Symbol 680 GraphicUsed by:Timeline
Symbol 681 GraphicUses:581Used by:Timeline
Symbol 682 BitmapUsed by:683
Symbol 683 GraphicUses:682Used by:Timeline
Symbol 684 GraphicUses:576Used by:Timeline
Symbol 685 GraphicUses:576Used by:Timeline
Symbol 686 MovieClipUses:661Used by:Timeline
Symbol 687 GraphicUsed by:Timeline
Symbol 688 GraphicUsed by:Timeline
Symbol 689 GraphicUses:647Used by:Timeline
Symbol 690 BitmapUsed by:691
Symbol 691 GraphicUses:690Used by:Timeline
Symbol 692 GraphicUsed by:Timeline
Symbol 693 BitmapUsed by:694
Symbol 694 GraphicUses:693Used by:Timeline
Symbol 695 BitmapUsed by:696
Symbol 696 GraphicUses:695Used by:Timeline
Symbol 697 BitmapUsed by:698
Symbol 698 GraphicUses:697Used by:Timeline
Symbol 699 BitmapUsed by:700
Symbol 700 GraphicUses:699Used by:Timeline
Symbol 701 GraphicUsed by:Timeline
Symbol 702 BitmapUsed by:703
Symbol 703 GraphicUses:702Used by:Timeline
Symbol 704 GraphicUsed by:Timeline
Symbol 705 BitmapUsed by:706
Symbol 706 GraphicUses:705Used by:Timeline
Symbol 707 GraphicUsed by:Timeline
Symbol 708 BitmapUsed by:709
Symbol 709 GraphicUses:708Used by:Timeline
Symbol 710 BitmapUsed by:711
Symbol 711 GraphicUses:710Used by:Timeline
Symbol 712 GraphicUsed by:Timeline
Streaming Sound 1Used by:Timeline

Instance Names

"InstanceName_0"Frame 5505Symbol 308 MovieClip
"highlight3D_mc"Symbol 11 MovieClip Frame 1Symbol 4 MovieClip
"highlight_mc"Symbol 11 MovieClip Frame 1Symbol 6 MovieClip
"shadow_mc"Symbol 11 MovieClip Frame 1Symbol 8 MovieClip
"darkshadow_mc"Symbol 11 MovieClip Frame 1Symbol 10 MovieClip
"background_mc"Symbol 14 MovieClip Frame 1Symbol 13 MovieClip
"background_mc"Symbol 17 MovieClip Frame 1Symbol 16 MovieClip
"background_mc"Symbol 19 MovieClip Frame 1Symbol 18 MovieClip
"check_mc"Symbol 22 MovieClip Frame 1Symbol 21 MovieClip
"check_mc"Symbol 25 MovieClip Frame 1Symbol 24 MovieClip
"fcb_frame_mc"Symbol 26 MovieClip [fcb_states] Frame 1Symbol 11 MovieClip
"frb_frame_mc"Symbol 26 MovieClip [fcb_states] Frame 1Symbol 14 MovieClip
"boundingBox"Symbol 29 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 27 MovieClip
"boundingBox2"Symbol 29 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 27 MovieClip
"boundingBox_mc"Symbol 32 MovieClip [FCheckBoxSymbol] Frame 1Symbol 29 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 32 MovieClip [FCheckBoxSymbol] Frame 1Symbol 31 MovieClip
"face_mc"Symbol 43 MovieClip Frame 1Symbol 34 MovieClip
"arrow_mc"Symbol 43 MovieClip Frame 1Symbol 36 MovieClip
"highlight_mc"Symbol 43 MovieClip Frame 1Symbol 38 MovieClip
"shadow_mc"Symbol 43 MovieClip Frame 1Symbol 40 MovieClip
"darkshadow_mc"Symbol 43 MovieClip Frame 1Symbol 41 MovieClip
"highlight3D_mc"Symbol 43 MovieClip Frame 1Symbol 42 MovieClip
"darkshadow_mc"Symbol 53 MovieClip Frame 1Symbol 44 MovieClip
"highlight3D_mc"Symbol 53 MovieClip Frame 1Symbol 45 MovieClip
"highlight_mc"Symbol 53 MovieClip Frame 1Symbol 47 MovieClip
"shadow_mc"Symbol 53 MovieClip Frame 1Symbol 49 MovieClip
"face_mc"Symbol 53 MovieClip Frame 1Symbol 50 MovieClip
"arrow_mc"Symbol 53 MovieClip Frame 1Symbol 52 MovieClip
"highlight3D_mc"Symbol 62 MovieClip Frame 1Symbol 54 MovieClip
"darkshadow_mc"Symbol 62 MovieClip Frame 1Symbol 55 MovieClip
"highlight_mc"Symbol 62 MovieClip Frame 1Symbol 56 MovieClip
"shadow_mc"Symbol 62 MovieClip Frame 1Symbol 57 MovieClip
"face_mc"Symbol 62 MovieClip Frame 1Symbol 59 MovieClip
"arrow_mc"Symbol 62 MovieClip Frame 1Symbol 61 MovieClip
"up"Symbol 63 MovieClip [UpArrow] Frame 1Symbol 43 MovieClip
"down"Symbol 63 MovieClip [UpArrow] Frame 2Symbol 53 MovieClip
"disabled"Symbol 63 MovieClip [UpArrow] Frame 3Symbol 62 MovieClip
"highlight3D_mc"Symbol 69 MovieClip Frame 1Symbol 65 MovieClip
"darkshadow_mc"Symbol 69 MovieClip Frame 1Symbol 66 MovieClip
"highlight_mc"Symbol 69 MovieClip Frame 1Symbol 67 MovieClip
"shadow_mc"Symbol 69 MovieClip Frame 1Symbol 68 MovieClip
"highlight3D_mc"Symbol 76 MovieClip Frame 1Symbol 70 MovieClip
"darkshadow_mc"Symbol 76 MovieClip Frame 1Symbol 71 MovieClip
"shadow_mc"Symbol 76 MovieClip Frame 1Symbol 73 MovieClip
"face_mc"Symbol 76 MovieClip Frame 1Symbol 74 MovieClip
"highlight_mc"Symbol 76 MovieClip Frame 1Symbol 75 MovieClip
"shadow_mc"Symbol 81 MovieClip Frame 1Symbol 77 MovieClip
"darkshadow_mc"Symbol 81 MovieClip Frame 1Symbol 79 MovieClip
"highlight3D_mc"Symbol 81 MovieClip Frame 1Symbol 80 MovieClip
"mc_sliderTop"Symbol 82 MovieClip [ScrollThumb] Frame 1Symbol 69 MovieClip
"mc_sliderMid"Symbol 82 MovieClip [ScrollThumb] Frame 1Symbol 76 MovieClip
"mc_sliderBot"Symbol 82 MovieClip [ScrollThumb] Frame 1Symbol 81 MovieClip
"face_mc"Symbol 90 MovieClip Frame 1Symbol 83 MovieClip
"arrow_mc"Symbol 90 MovieClip Frame 1Symbol 85 MovieClip
"highlight_mc"Symbol 90 MovieClip Frame 1Symbol 86 MovieClip
"shadow_mc"Symbol 90 MovieClip Frame 1Symbol 87 MovieClip
"darkshadow_mc"Symbol 90 MovieClip Frame 1Symbol 88 MovieClip
"highlight3D_mc"Symbol 90 MovieClip Frame 1Symbol 89 MovieClip
"darkshadow_mc"Symbol 98 MovieClip Frame 1Symbol 91 MovieClip
"highlight3D_mc"Symbol 98 MovieClip Frame 1Symbol 92 MovieClip
"highlight_mc"Symbol 98 MovieClip Frame 1Symbol 93 MovieClip
"shadow_mc"Symbol 98 MovieClip Frame 1Symbol 94 MovieClip
"face_mc"Symbol 98 MovieClip Frame 1Symbol 95 MovieClip
"arrow_mc"Symbol 98 MovieClip Frame 1Symbol 97 MovieClip
"highlight3D_mc"Symbol 106 MovieClip Frame 1Symbol 99 MovieClip
"darkshadow_mc"Symbol 106 MovieClip Frame 1Symbol 100 MovieClip
"highlight_mc"Symbol 106 MovieClip Frame 1Symbol 101 MovieClip
"shadow_mc"Symbol 106 MovieClip Frame 1Symbol 102 MovieClip
"face_mc"Symbol 106 MovieClip Frame 1Symbol 103 MovieClip
"arrow_mc"Symbol 106 MovieClip Frame 1Symbol 105 MovieClip
"up"Symbol 107 MovieClip [DownArrow] Frame 1Symbol 90 MovieClip
"down"Symbol 107 MovieClip [DownArrow] Frame 2Symbol 98 MovieClip
"disabled"Symbol 107 MovieClip [DownArrow] Frame 3Symbol 106 MovieClip
"track_mc"Symbol 109 MovieClip Frame 1Symbol 108 MovieClip
"scrollTrack_mc"Symbol 110 MovieClip [FScrollBarSymbol] Frame 1Symbol 109 MovieClip
"darkshadow_mc"Symbol 120 MovieClip Frame 1Symbol 113 MovieClip
"shadow_mc"Symbol 120 MovieClip Frame 1Symbol 115 MovieClip
"highlight_mc"Symbol 120 MovieClip Frame 1Symbol 117 MovieClip
"highlight3D_mc"Symbol 120 MovieClip Frame 1Symbol 119 MovieClip
"background_mc"Symbol 123 MovieClip Frame 1Symbol 122 MovieClip
"background_mc"Symbol 126 MovieClip Frame 1Symbol 125 MovieClip
"background_mc"Symbol 128 MovieClip Frame 1Symbol 127 MovieClip
"disabled_mc"Symbol 131 MovieClip Frame 1Symbol 130 MovieClip
"dot_mc"Symbol 134 MovieClip Frame 1Symbol 133 MovieClip
"frb_frame_mc"Symbol 135 MovieClip [frb_states] Frame 1Symbol 120 MovieClip
"boundingBox_mc"Symbol 138 MovieClip [FRadioButtonSymbol] Frame 1Symbol 29 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 138 MovieClip [FRadioButtonSymbol] Frame 1Symbol 137 MovieClip
"labelField"Symbol 142 MovieClip [FLabelSymbol] Frame 1Symbol 141 EditableText
"frame1"Symbol 149 MovieClip Frame 1Symbol 144 MovieClip
"frame2"Symbol 149 MovieClip Frame 1Symbol 145 MovieClip
"frame3"Symbol 149 MovieClip Frame 1Symbol 146 MovieClip
"frame4"Symbol 149 MovieClip Frame 1Symbol 147 MovieClip
"frame5"Symbol 149 MovieClip Frame 1Symbol 148 MovieClip
"frame1"Symbol 155 MovieClip Frame 1Symbol 150 MovieClip
"frame2"Symbol 155 MovieClip Frame 1Symbol 151 MovieClip
"frame3"Symbol 155 MovieClip Frame 1Symbol 152 MovieClip
"frame4"Symbol 155 MovieClip Frame 1Symbol 153 MovieClip
"frame5"Symbol 155 MovieClip Frame 1Symbol 154 MovieClip
"frame1"Symbol 161 MovieClip Frame 1Symbol 156 MovieClip
"frame2"Symbol 161 MovieClip Frame 1Symbol 157 MovieClip
"frame3"Symbol 161 MovieClip Frame 1Symbol 158 MovieClip
"frame4"Symbol 161 MovieClip Frame 1Symbol 159 MovieClip
"frame5"Symbol 161 MovieClip Frame 1Symbol 160 MovieClip
"frame1"Symbol 167 MovieClip Frame 1Symbol 162 MovieClip
"frame2"Symbol 167 MovieClip Frame 1Symbol 163 MovieClip
"frame3"Symbol 167 MovieClip Frame 1Symbol 164 MovieClip
"frame4"Symbol 167 MovieClip Frame 1Symbol 165 MovieClip
"frame5"Symbol 167 MovieClip Frame 1Symbol 166 MovieClip
"up_mc"Symbol 168 MovieClip [fpb_states] Frame 1Symbol 149 MovieClip
"over_mc"Symbol 168 MovieClip [fpb_states] Frame 2Symbol 155 MovieClip
"down_mc"Symbol 168 MovieClip [fpb_states] Frame 3Symbol 161 MovieClip
"disabled_mc"Symbol 168 MovieClip [fpb_states] Frame 4Symbol 167 MovieClip
"boundingBox_mc"Symbol 172 MovieClip [FPushButtonSymbol] Frame 1Symbol 29 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 172 MovieClip [FPushButtonSymbol] Frame 1Symbol 171 MovieClip
"bar"Symbol 182 MovieClip Frame 1Symbol 178 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 2 as "fcb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 26 as "fcb_states"
ExportAssets (56)Timeline Frame 1Symbol 29 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 32 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 63 as "UpArrow"
ExportAssets (56)Timeline Frame 1Symbol 82 as "ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 107 as "DownArrow"
ExportAssets (56)Timeline Frame 1Symbol 110 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 111 as "frb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 135 as "frb_states"
ExportAssets (56)Timeline Frame 1Symbol 29 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 138 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 1Symbol 139 as "LSuperClass"
ExportAssets (56)Timeline Frame 1Symbol 142 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 168 as "fpb_states"
ExportAssets (56)Timeline Frame 1Symbol 169 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 29 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 29 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 172 as "FPushButtonSymbol"

Labels

"up"Symbol 26 MovieClip [fcb_states] Frame 1
"press"Symbol 26 MovieClip [fcb_states] Frame 2
"uncheckedDisabled"Symbol 26 MovieClip [fcb_states] Frame 3
"checkedDisabled"Symbol 26 MovieClip [fcb_states] Frame 4
"checkedPress"Symbol 26 MovieClip [fcb_states] Frame 5
"checkedEnabled"Symbol 26 MovieClip [fcb_states] Frame 6
#"Symbol_654"Symbol 27 MovieClip Frame 1
"enabled"Symbol 29 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 29 MovieClip [FBoundingBoxSymbol] Frame 2
#"Symbol_10"Symbol 111 MovieClip [frb_hitArea] Frame 1
#"Symbol_22"Symbol 113 MovieClip Frame 1
#"Symbol_23"Symbol 115 MovieClip Frame 1
#"Symbol_24"Symbol 117 MovieClip Frame 1
#"Symbol_25"Symbol 119 MovieClip Frame 1
"Symbol_21"Symbol 120 MovieClip Frame 1
"Symbol_26"Symbol 123 MovieClip Frame 1
"Symbol_26"Symbol 126 MovieClip Frame 1
"Symbol_26"Symbol 128 MovieClip Frame 1
"Symbol_31"Symbol 131 MovieClip Frame 1
"Symbol_31"Symbol 134 MovieClip Frame 1
"unselectedEnabled"Symbol 135 MovieClip [frb_states] Frame 1
"press"Symbol 135 MovieClip [frb_states] Frame 2
"unselectedDisabled"Symbol 135 MovieClip [frb_states] Frame 3
"selectedDisabled"Symbol 135 MovieClip [frb_states] Frame 4
"selectedEnabled"Symbol 135 MovieClip [frb_states] Frame 5
"Symbol_94"Symbol 138 MovieClip [FRadioButtonSymbol] Frame 1
"Symbol_36"Symbol 139 MovieClip [LSuperClass] Frame 1
"Symbol_32"Symbol 142 MovieClip [FLabelSymbol] Frame 1
"up"Symbol 168 MovieClip [fpb_states] Frame 1
"over"Symbol 168 MovieClip [fpb_states] Frame 2
"down"Symbol 168 MovieClip [fpb_states] Frame 3
"disabled"Symbol 168 MovieClip [fpb_states] Frame 4
"Symbol_36"Symbol 169 MovieClip [FUIComponentSymbol] Frame 1
"Symbol_94"Symbol 172 MovieClip [FPushButtonSymbol] Frame 1
"loaded"Symbol 182 MovieClip Frame 3




http://swfchan.com/13/64875/info.shtml
Created: 12/4 -2019 21:44:52 Last modified: 12/4 -2019 21:44:52 Server time: 03/05 -2024 08:54:21